@nypl/design-system-react-components 0.28.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (99) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/README.md +10 -10
  3. package/dist/components/Checkbox/Checkbox.d.ts +0 -1
  4. package/dist/components/ComponentWrapper/ComponentWrapper.d.ts +8 -0
  5. package/dist/components/Heading/Heading.d.ts +2 -0
  6. package/dist/components/Logo/Logo.d.ts +1 -1
  7. package/dist/components/Logo/LogoSvgs.d.ts +4 -0
  8. package/dist/design-system-react-components.cjs.development.js +1021 -683
  9. package/dist/design-system-react-components.cjs.development.js.map +1 -1
  10. package/dist/design-system-react-components.cjs.production.min.js +1 -1
  11. package/dist/design-system-react-components.cjs.production.min.js.map +1 -1
  12. package/dist/design-system-react-components.esm.js +1022 -684
  13. package/dist/design-system-react-components.esm.js.map +1 -1
  14. package/dist/theme/components/button.d.ts +1 -0
  15. package/dist/theme/components/card.d.ts +98 -13
  16. package/dist/theme/components/checkboxGroup.d.ts +1 -1
  17. package/dist/theme/components/global.d.ts +1 -1
  18. package/dist/theme/components/heading.d.ts +4 -16
  19. package/dist/theme/components/image.d.ts +6 -0
  20. package/dist/theme/components/radioGroup.d.ts +1 -1
  21. package/dist/theme/components/skipNavigation.d.ts +3 -0
  22. package/dist/theme/components/structuredContent.d.ts +0 -5
  23. package/dist/utils/utils.d.ts +15 -0
  24. package/package.json +6 -6
  25. package/src/components/Accordion/Accordion.stories.mdx +18 -46
  26. package/src/components/Accordion/Accordion.tsx +3 -2
  27. package/src/components/Accordion/__snapshots__/Accordion.test.tsx.snap +12 -12
  28. package/src/components/Button/Button.stories.mdx +1 -1
  29. package/src/components/ButtonGroup/ButtonGroup.stories.mdx +33 -2
  30. package/src/components/ButtonGroup/ButtonGroup.tsx +2 -1
  31. package/src/components/Card/Card.stories.mdx +2 -4
  32. package/src/components/Card/Card.tsx +2 -1
  33. package/src/components/Chakra/Box.stories.mdx +1 -1
  34. package/src/components/Chakra/Center.stories.mdx +1 -1
  35. package/src/components/Chakra/Flex.stories.mdx +1 -1
  36. package/src/components/Chakra/Grid.stories.mdx +1 -1
  37. package/src/components/Chakra/Stack.stories.mdx +1 -1
  38. package/src/components/Checkbox/Checkbox.stories.mdx +1 -1
  39. package/src/components/Checkbox/Checkbox.test.tsx +42 -11
  40. package/src/components/Checkbox/Checkbox.tsx +25 -39
  41. package/src/components/Checkbox/__snapshots__/Checkbox.test.tsx.snap +589 -544
  42. package/src/components/CheckboxGroup/CheckboxGroup.stories.mdx +1 -1
  43. package/src/components/CheckboxGroup/CheckboxGroup.tsx +1 -1
  44. package/src/components/CheckboxGroup/__snapshots__/CheckboxGroup.test.tsx.snap +1540 -1420
  45. package/src/components/ComponentWrapper/ComponentWrapper.tsx +12 -3
  46. package/src/components/ComponentWrapper/__snapshots__/ComponentWrapper.test.tsx.snap +5 -0
  47. package/src/components/DatePicker/__snapshots__/DatePicker.test.tsx.snap +36 -17
  48. package/src/components/Grid/SimpleGrid.stories.mdx +1 -3
  49. package/src/components/Heading/Heading.stories.mdx +4 -1
  50. package/src/components/Heading/Heading.tsx +4 -1
  51. package/src/components/Image/Image.stories.mdx +1 -1
  52. package/src/components/Logo/Logo.stories.mdx +10 -5
  53. package/src/components/Logo/Logo.tsx +4 -0
  54. package/src/components/Logo/LogoSvgs.tsx +8 -0
  55. package/src/components/Modal/Modal.stories.mdx +83 -90
  56. package/src/components/Pagination/Pagination.stories.mdx +1 -1
  57. package/src/components/Radio/Radio.stories.mdx +1 -1
  58. package/src/components/Radio/Radio.tsx +22 -31
  59. package/src/components/Radio/__snapshots__/Radio.test.tsx.snap +405 -365
  60. package/src/components/RadioGroup/RadioGroup.stories.mdx +2 -1
  61. package/src/components/RadioGroup/RadioGroup.tsx +2 -1
  62. package/src/components/RadioGroup/__snapshots__/RadioGroup.test.tsx.snap +1236 -1116
  63. package/src/components/SearchBar/SearchBar.stories.mdx +3 -3
  64. package/src/components/SearchBar/__snapshots__/SearchBar.test.tsx.snap +32 -10
  65. package/src/components/Select/Select.stories.mdx +1 -1
  66. package/src/components/Select/Select.tsx +24 -22
  67. package/src/components/Select/__snapshots__/Select.test.tsx.snap +21 -11
  68. package/src/components/SkipNavigation/SkipNavigation.stories.mdx +2 -2
  69. package/src/components/Slider/Slider.stories.mdx +1 -1
  70. package/src/components/Slider/Slider.tsx +14 -14
  71. package/src/components/Slider/__snapshots__/Slider.test.tsx.snap +66 -33
  72. package/src/components/StyleGuide/Buttons.stories.mdx +1 -1
  73. package/src/components/StyleGuide/Colors.stories.mdx +2 -2
  74. package/src/components/StyleGuide/Forms.stories.mdx +2 -1
  75. package/src/components/StyleGuide/Iconography.stories.mdx +2 -2
  76. package/src/components/StyleGuide/Spacing.stories.mdx +1 -1
  77. package/src/components/StyleGuide/Typography.stories.mdx +1 -1
  78. package/src/components/Table/Table.stories.mdx +1 -5
  79. package/src/components/Table/Table.test.tsx +33 -0
  80. package/src/components/Table/Table.tsx +21 -0
  81. package/src/components/Template/Template.stories.mdx +9 -5
  82. package/src/components/TextInput/TextInput.stories.mdx +1 -1
  83. package/src/components/TextInput/TextInput.tsx +21 -21
  84. package/src/components/TextInput/__snapshots__/TextInput.test.tsx.snap +19 -9
  85. package/src/components/Toggle/Toggle.stories.mdx +1 -1
  86. package/src/components/Toggle/Toggle.tsx +22 -20
  87. package/src/components/Toggle/__snapshots__/Toggle.test.tsx.snap +400 -372
  88. package/src/components/VideoPlayer/VideoPlayer.stories.mdx +1 -0
  89. package/src/components/VideoPlayer/__snapshots__/VideoPlayer.test.tsx.snap +5 -0
  90. package/src/docs/Chakra.stories.mdx +2 -2
  91. package/src/theme/components/button.ts +1 -0
  92. package/src/theme/components/card.ts +9 -3
  93. package/src/theme/components/componentWrapper.ts +1 -1
  94. package/src/theme/components/global.ts +1 -1
  95. package/src/theme/components/heading.ts +3 -3
  96. package/src/theme/components/image.ts +1 -0
  97. package/src/theme/components/skipNavigation.ts +3 -0
  98. package/src/theme/foundations/colors.ts +6 -9
  99. package/src/utils/utils.ts +40 -0
@@ -1,2 +1,2 @@
1
- "use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var t,l,a,r=require("@chakra-ui/react"),n=require("react"),c=e(n),i=e(require("react-datepicker")),o=require("@chakra-ui/theme-tools"),s=require("@chakra-ui/system");function h(){return(h=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}function d(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}var v,m,u,p=["title","titleId"];function f(){return(f=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var g,b=["title","titleId"];function z(){return(z=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var y,x=["title","titleId"];function w(){return(w=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var E,O=["title","titleId"];function M(){return(M=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var C,k=["title","titleId"];function j(){return(j=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var S,T=["title","titleId"];function V(){return(V=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var L,_=["title","titleId"];function I(){return(I=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var P,B=["title","titleId"];function R(){return(R=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var H,F=["title","titleId"];function N(){return(N=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var D,A=["title","titleId"];function W(){return(W=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var q,Y,G,U=["title","titleId"];function X(){return(X=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var J,K,Q,Z=["title","titleId"];function $(){return($=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ee,te,le=["title","titleId"];function ae(){return(ae=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var re,ne,ce,ie,oe,se=["title","titleId"];function he(){return(he=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var de,ve,me,ue=["title","titleId"];function pe(){return(pe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var fe,ge,be,ze=["title","titleId"];function ye(){return(ye=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xe,we,Ee=["title","titleId"];function Oe(){return(Oe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Me,Ce=["title","titleId"];function ke(){return(ke=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var je,Se=["title","titleId"];function Te(){return(Te=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ve,Le=["title","titleId"];function _e(){return(_e=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ie,Pe=["title","titleId"];function Be(){return(Be=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Re,He=["title","titleId"];function Fe(){return(Fe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ne,De,Ae=["title","titleId"];function We(){return(We=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var qe,Ye=["title","titleId"];function Ge(){return(Ge=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ue,Xe=["title","titleId"];function Je(){return(Je=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}function Ke(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Xe);return n.createElement("svg",Je({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,qe||(qe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-1.671 7.743A9.958 9.958 0 0110 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10a9.958 9.958 0 01-2.257 6.329l5.96 5.96a1 1 0 01-1.414 1.414l-5.96-5.96z"})))}var Qe,Ze,$e=["title","titleId"];function et(){return(et=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var tt,lt,at=["title","titleId"];function rt(){return(rt=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var nt,ct=["title","titleId"];function it(){return(it=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ot=["title","titleId"];function st(){return(st=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ht={accessibilityFull:function(e){var r=e.title,c=e.titleId,i=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,p);return n.createElement("svg",f({viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":c},i),r?n.createElement("title",{id:c},r):null,t||(t=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.257 0h15.485C17.434 0 18 .566 18 1.257v15.486A1.26 1.26 0 0116.742 18H1.257A1.26 1.26 0 010 16.743V1.257C0 .566.566 0 1.257 0z",fill:"#155196"})),l||(l=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.055 4.195a1.336 1.336 0 001.201-1.326c0-.733-.597-1.33-1.33-1.33a1.333 1.333 0 00-1.165 1.975l.475 6.671 4.883.002 2.003 4.692 2.629-1.031-.407-.97-1.472.531-1.938-4.473-4.54.03-.062-.845 3.287.001v-1.25l-3.412-.001-.152-2.676z",fill:"#fff"})),a||(a=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.967 13.763a4.973 4.973 0 01-4.39 2.702 4.917 4.917 0 01-4.907-4.907c0-1.897 1.15-3.66 2.867-4.442l.111 1.449a3.571 3.571 0 00-1.641 3.004c0 1.96 1.6 3.559 3.56 3.559 1.794 0 3.323-1.377 3.532-3.143l.868 1.778z",fill:"#fff"})))},accessibilityPartial:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,b);return n.createElement("svg",z({viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,v||(v=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.257 0h15.485C17.434 0 18 .566 18 1.257v15.485c0 .692-.566 1.258-1.258 1.258H1.257A1.26 1.26 0 010 16.742V1.257C0 .566.566 0 1.257 0z",fill:"#EFEDEB"})),m||(m=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.055 4.194A1.336 1.336 0 008.256 2.87c0-.733-.597-1.33-1.33-1.33a1.333 1.333 0 00-1.165 1.975l.475 6.67 4.883.003 2.003 4.692 2.629-1.031-.407-.97-1.472.531-1.938-4.473-4.54.03-.062-.845 3.287.001v-1.25l-3.412-.001-.152-2.677z",fill:"#000"})),u||(u=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.967 13.762a4.973 4.973 0 01-4.39 2.703 4.917 4.917 0 01-4.907-4.907c0-1.897 1.15-3.66 2.867-4.443l.111 1.45a3.571 3.571 0 00-1.641 3.003c0 1.96 1.6 3.56 3.56 3.56 1.794 0 3.323-1.377 3.532-3.143l.868 1.777z",fill:"#000"})))},actionCheckCircle:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,x);return n.createElement("svg",w({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,g||(g=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2-5.83l6.59-6.59L18 9l-8 8-4-4 1.41-1.41L10 14.17z"})))},actionHelpDefault:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,O);return n.createElement("svg",M({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,y||(y=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17v-2h2v2h-2zm3.17-6.83l.9-.92c.57-.57.93-1.37.93-2.25 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2s2 .9 2 2c0 .55-.22 1.05-.59 1.41l-1.24 1.26C11.45 12.4 11 13.4 11 14.5v.5h2c0-1.5.45-2.1 1.17-2.83z"})))},actionHelpOutline:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,k);return n.createElement("svg",j({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,E||(E=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm11 4v2h-2v-2h2zm-1 4c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM8 10c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.283-.79 1.973-1.56 2.646C13.712 13.283 13 13.905 13 15h-2c0-1.821.942-2.543 1.77-3.178.65-.498 1.23-.943 1.23-1.822 0-1.1-.9-2-2-2s-2 .9-2 2H8z"})))},actionLaunch:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,T);return n.createElement("svg",V({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,C||(C=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 5v14h14v-7h2v7c0 1.1-.9 2-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h7v2H5zm9 0V3h7v7h-2V6.41l-9.83 9.83-1.41-1.41L17.59 5H14z"})))},alertNotificationImportant:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,_);return n.createElement("svg",I({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,S||(S=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5 2.75c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1.17c3.14.68 5.5 3.48 5.5 6.83v6l2 2v1H3v-1l2-2v-6C5 7.4 7.36 4.6 10.5 3.92V2.75zm1.5 3c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm-1.99 15.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM13 7.75v4h-2v-4h2zm0 8v-2h-2v2h2z"})))},arrow:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,B);return n.createElement("svg",R({viewBox:"0 0 24 14",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,L||(L=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.526 12.871L.263 1.676 1.737.324 12 11.52 22.263.324l1.474 1.352L13.474 12.87a2 2 0 01-2.948 0z"})))},check:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,F);return n.createElement("svg",N({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,P||(P=n.createElement("path",{d:"M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"})))},clock:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,A);return n.createElement("svg",W({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,H||(H=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13V7z"})))},close:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,U);return n.createElement("svg",X({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,D||(D=n.createElement("path",{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"})))},download:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Se);return n.createElement("svg",Te({viewBox:"0 0 14 18",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Me||(Me=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"})))},errorFilled:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Le);return n.createElement("svg",_e({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,je||(je=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm1.2 13.2h-2.4V6h2.4v7.2zM10.8 18h2.4v-2.4h-2.4V18z"})))},errorOutline:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Pe);return n.createElement("svg",Be({viewBox:"0 0 24 25",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ve||(Ve=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.988.912C5.364.912 0 6.288 0 12.912s5.364 12 11.988 12c6.636 0 12.012-5.376 12.012-12s-5.376-12-12.012-12zm1.212 13.2v-7.2h-2.4v7.2h2.4zm0 4.8v-2.4h-2.4v2.4h2.4zm-10.8-6c0 5.304 4.296 9.6 9.6 9.6 5.304 0 9.6-4.296 9.6-9.6 0-5.304-4.296-9.6-9.6-9.6a9.597 9.597 0 00-9.6 9.6z"})))},fileTypeAudio:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Z);return n.createElement("svg",$({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,q||(q=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),Y||(Y=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),G||(G=n.createElement("path",{d:"M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"})))},fileTypeDoc:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,le);return n.createElement("svg",ae({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,J||(J=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2.188a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705v15.971a1 1 0 01-1 1H4a1 1 0 01-1-1v-20zm2 1v18h14V6.627l-3.416-3.44H5z"})),K||(K=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"})),Q||(Q=n.createElement("path",{d:"M7 11.188h10v2H7zM7 15.188h10v2H7z"})))},fileTypeGenericDoc:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,se);return n.createElement("svg",he({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ee||(ee=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),te||(te=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})))},fileTypeImage:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ue);return n.createElement("svg",pe({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,re||(re=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),ne||(ne=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),ce||(ce=n.createElement("path",{d:"M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"})),ie||(ie=n.createElement("circle",{cx:9.375,cy:10.125,r:1.125})),oe||(oe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})))},fileTypePdf:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ze);return n.createElement("svg",ye({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,de||(de=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),ve||(ve=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),me||(me=n.createElement("path",{d:"M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"})))},fileTypeSpreadsheet:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ee);return n.createElement("svg",Oe({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,fe||(fe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),ge||(ge=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),be||(be=n.createElement("path",{d:"M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"})))},fileTypeVideo:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ce);return n.createElement("svg",ke({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xe||(xe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),we||(we=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2zM7.333 10.5h7c.321 0 .584.262.584.583v2.042l2.333-2.333v6.416l-2.333-2.333v2.042c0 .32-.263.583-.584.583h-7a.585.585 0 01-.583-.583v-5.834c0-.32.263-.583.583-.583zm6.417 5.833v-4.666H7.917v4.666h5.833z"})))},headset:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,He);return n.createElement("svg",Fe({viewBox:"0 0 18 19",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ie||(Ie=n.createElement("path",{d:"M9 0a9 9 0 00-9 9v7c0 1.66 1.34 3 3 3h3v-8H2V9c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3V9a9 9 0 00-9-9z"})))},minus:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ae);return n.createElement("svg",We({viewBox:"0 -11 24 24",width:24,height:2,xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Re||(Re=n.createElement("rect",{width:24,height:2,rx:1})))},plus:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ye);return n.createElement("svg",Ge({viewBox:"0 0 23 23",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ne||(Ne=n.createElement("rect",{x:11,y:24,width:24,height:2,rx:1,transform:"rotate(-90 11 24)"})),De||(De=n.createElement("rect",{y:11,width:24,height:2,rx:1})))},search:Ke,speakerNotes:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,$e);return n.createElement("svg",et({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ue||(Ue=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H6l-4 4 .01-18c0-1.1.89-2 1.99-2zm1.17 14H20V4H4v13.17l.58-.58.59-.59zM6 12h2v2H6v-2zm2-3H6v2h2V9zM6 6h2v2H6V6zm9 6h-5v2h5v-2zm-5-3h8v2h-8V9zm8-3h-8v2h8V6z"})))},utilityAccountFilled:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,at);return n.createElement("svg",rt({viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Qe||(Qe=n.createElement("path",{clipRule:"evenodd",d:"M18.25 7.866c0 3.136-2.798 5.678-6.25 5.678s-6.25-2.542-6.25-5.678S8.548 2.188 12 2.188s6.25 2.542 6.25 5.678z"})),Ze||(Ze=n.createElement("path",{clipRule:"evenodd",d:"M11.225 12.993c-6.245.466-8.974 5.763-9.23 9.206h20s-3.078-9.78-10.77-9.206z"})))},utilityAccountUnfilled:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ct);return n.createElement("svg",it({viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,tt||(tt=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.8 7.807c0 2.87-2.558 5.263-5.8 5.263s-5.8-2.393-5.8-5.263S8.758 2.544 12 2.544s5.8 2.393 5.8 5.263z",fill:"#fff",stroke:"#000"})),lt||(lt=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.225 13.071c-6.245.466-8.974 5.763-9.23 9.207h20s-3.078-9.78-10.77-9.207z",fill:"#fff",stroke:"#000"})))},utilityHamburger:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ot);return n.createElement("svg",st({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,nt||(nt=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",stroke:"#000",strokeWidth:2,strokeLinecap:"round",d:"M4 16.938h16M4 11.938h16M4 6.938h16"})))},utilitySearch:Ke},dt=["align","children","className","color","decorative","iconRotation","id","name","size","title","type"],vt=r.chakra((function(e){var t,l,a=e.align,c=void 0===a?"none":a,i=e.children,o=e.className,s=e.color,v=void 0===s?"ui.black":s,m=e.decorative,u=void 0===m||m,p=e.iconRotation,f=void 0===p?"rotate0":p,g=e.id,b=e.name,z=e.size,y=void 0===z?"default":z,x=e.title,w=void 0===x?b+" icon":x,E=e.type,O=void 0===E?"default":E,M=d(e,dt),C=r.useStyleConfig("Icon",{align:c,color:v,iconRotation:f,size:y,variant:O}),k=h({"aria-hidden":u,className:o,id:g,role:"img",title:w},M),j=null;return b&&i?(console.warn("NYPL Reservoir Icon: Pass in either a `name` prop or an `svg` element child. Do not pass both."),null):b||i?b?n.createElement(r.Icon,Object.assign({as:ht[b]},k,{__css:C})):("svg"===i.type||"svg"===(null==(t=i.props)?void 0:t.type)||"svg"===(null==(l=i.props)?void 0:l.mdxType)?j=n.cloneElement(i,h({},k)):console.warn("NYPL Reservoir Icon: An `svg` element must be passed to the `Icon` component as its child."),n.createElement(r.Box,{__css:C},j)):(console.warn("NYPL Reservoir Icon: Pass an icon `name` prop or an SVG child to ensure an icon appears."),null)}),{shouldForwardProp:function(){return!0}}),mt=["accordionData","id","isDefaultOpen"],ut=r.chakra((function(e){var t=e.accordionData,l=e.id,a=e.isDefaultOpen,c=void 0!==a&&a,i=d(e,mt);return n.createElement(r.Accordion,Object.assign({id:l,defaultIndex:c?[0]:void 0,allowMultiple:!0},i),function(e,t){var l;void 0===e&&(e=[]);var a={default:"ui.white",warning:"ui.status.primary",error:"ui.status.secondary"},c=(null==(l=e)?void 0:l.length)>1?"4":"initial";return e.map((function(e,l){var i="string"==typeof e.panel?n.createElement(r.AccordionPanel,{id:t+"-panel-"+l,key:l,dangerouslySetInnerHTML:{__html:e.panel}}):n.createElement(r.AccordionPanel,{id:t+"-panel-"+l,key:l},e.panel);return n.createElement(r.AccordionItem,{id:t+"-item-"+l,key:l},(function(o){var s=o.isExpanded,h=a[e.accordionType];return n.createElement(n.Fragment,null,n.createElement(r.AccordionButton,{id:t+"-button-"+l,padding:c,bg:e.accordionType?h:a.default,_expanded:{bg:e.accordionType&&"default"!==e.accordionType?h:"ui.gray.light-cool"},_hover:{bg:e.accordionType&&"default"!==e.accordionType?h:"transparent",borderColor:"ui.gray.dark"}},n.createElement(r.Box,{flex:"1",textAlign:"left"},e.label),function(e,t,l){return void 0===e&&(e=!1),n.createElement(vt,{id:"accordion-"+l+"-icon-"+t,name:e?"minus":"plus",size:"small"})}(s,l,t)),i)}))}))}(t,l))})),pt=["breadcrumbsData","breadcrumbsType","className","id"],ft=r.chakra((function(e){var t=e.breadcrumbsData,l=e.breadcrumbsType,a=void 0===l?"whatsOn":l,c=e.className,i=e.id,o=d(e,pt);if(!t||0===t.length)throw new Error("NYPL Reservoir Breadcrumbs: No data was passed to the `breadcrumbsData` prop.");var s,h,v=r.useStyleConfig("Breadcrumb",{variant:a}),m=(h=i,null!=(s=t)&&s.length?s.map((function(e,t){return n.createElement(r.BreadcrumbItem,{key:t,isCurrentPage:t===s.length-1},n.createElement(r.BreadcrumbLink,{href:e.url},t===s.length-2&&n.createElement(vt,{name:"arrow",size:"small",iconRotation:"rotate90",id:h+"__backarrow",className:"breadcrumbs-icon",type:"breadcrumbs"}),n.createElement("span",{className:"breadcrumb-label"},e.text)))})):{});return n.createElement(r.Breadcrumb,Object.assign({"aria-label":"Breadcrumb",className:c,id:i,__css:v},o),m)})),gt=["buttonType","children","className","id","isDisabled","mouseDown","onClick","type"],bt=r.chakra((function(e){var t,l=e.buttonType,a=void 0===l?"primary":l,c=e.children,i=e.className,o=void 0===i?"":i,s=e.id,h=e.isDisabled,v=void 0!==h&&h,m=e.mouseDown,u=void 0!==m&&m,p=e.onClick,f=e.type,g=void 0===f?"button":f,b=d(e,gt),z=u?{onMouseDown:p}:{onClick:p},y=0,x=!1,w=a;return s||console.warn("NYPL Reservoir Button: This component's required `id` prop was not passed."),n.Children.map(c,(function(e){var t;y++,null!=e&&(e.type!==vt&&"Icon"!==(null==e||null==(t=e.props)?void 0:t.mdxType)||(x=!0))})),1===y&&x&&(w="iconOnly"),t=r.useStyleConfig("Button",{variant:w}),n.createElement(r.Button,Object.assign({id:s,"data-testid":"button",className:o,type:g,isDisabled:v},z,{__css:t},b),c)}));function zt(){var e=c.useState({width:0,height:0}),t=e[0],l=e[1];return c.useEffect((function(){var e=function(){l({width:window.innerWidth,height:window.innerHeight})};return e(),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e)}}),[]),t}var yt=["buttonWidth","children","className","id","isDisabled","layout"],xt=r.chakra((function(e){var t=e.buttonWidth,l=void 0===t?"default":t,a=e.children,c=e.className,i=void 0===c?"":c,o=e.id,s=e.isDisabled,h=void 0!==s&&s,v=e.layout,m=void 0===v?"row":v,u=d(e,yt),p=[],f=n.useState(m),g=f[0],b=f[1],z=n.useState(l),y=z[0],x=z[1],w=zt();n.useEffect((function(){w.width<=600?(x("full"),b("column")):(x(l),b(m))}),[l,m,w.width]);var E=r.useStyleConfig("ButtonGroup",{buttonWidth:y});return n.Children.map(a,(function(e,t){e.type===bt||e.props.mdxType&&"Button"===e.props.mdxType?p.push(n.cloneElement(e,{key:t,isDisabled:h})):console.warn("NYPL Reservoir ButtonGroup: Only Button components can be children of ButtonGroup.")})),n.createElement(r.Stack,Object.assign({id:o,className:i,direction:g,spacing:"xs",sx:E},u),p)})),wt=["children","className","href","id","type"],Et=r.chakra(n.forwardRef((function(e,t){var l=e.children,a=e.className,c=e.href,i=e.id,o=e.type,s=void 0===o?"default":o,v=h({id:i,href:c},d(e,wt)),m="link";if("string"==typeof l&&!c)throw new Error("`Link` needs the `href` prop.");"action"===s||"forwards"===s||"backwards"===s||"external"===s?m="moreLink":"button"===s&&(m="button");var u=r.useStyleConfig("Link",{variant:m}),p="external"===s?"nofollow":null,f="external"===s?"_blank":null,g=("forwards"===s||"backwards"===s)&&function(e,t,l){var a,r,c;return"backwards"===t?(a="rotate90",r="left"):"forwards"===t&&(a="rotate270",r="right"),c=n.createElement(vt,{align:r,className:"more-link",iconRotation:a,id:l+"-icon",name:"arrow",size:"medium"}),n.createElement(n.Fragment,null,"backwards"===t&&c,e,"forwards"===t&&c)}(l,s,i)||"external"===s&&function(e,t){var l=n.createElement(vt,{align:"right",className:"more-link",id:t+"-icon",name:"actionLaunch",size:"medium"});return n.createElement(n.Fragment,null,e,l)}(l,i)||l;if(c)return n.createElement(r.Box,Object.assign({as:"a",className:a,ref:t,rel:p,target:f},v,{__css:u}),g);if(n.Children.count(l)>1)throw new Error("Please pass only one child into `Link`.");var b=l[0]?l[0]:l;return n.createElement(r.Box,{as:"span",__css:u},n.cloneElement(b,h({className:a},v,b.props,{ref:t,rel:p,target:f}),[b.props.children]))}))),Ot=["className","id","level","size","text","url","urlClass"],Mt=r.chakra((function(e){var t=e.className,l=e.id,a=e.level,c=void 0===a?"two":a,i=e.size,o=e.text,s=e.url,h=e.urlClass,v=d(e,Ot),m=function(e){return void 0===e&&(e="two"),{one:1,two:2,three:3,four:4,five:5,six:6}[e]||2}(c),u=r.useStyleConfig("Heading",{variant:i||"h"+m}),p="h"+m;if(!e.children&&!o)throw new Error("NYPL Reservoir Heading: No children or value was passed to the `text` prop.");if(n.Children.count(e.children)>1)throw new Error("NYPL Reservoir Heading: Only pass one child into Heading.");var f=e.children?e.children:o,g=s?n.createElement(Et,{className:h,href:s,id:l+"-link"},f):f;return n.createElement(r.Heading,Object.assign({as:p,className:t,id:l,sx:u},v),g)})),Ct=["additionalWrapperStyles","className","children","aspectRatio","size"],kt=["additionalFigureStyles","additionalImageStyles","additionalWrapperStyles","alt","aspectRatio","caption","className","component","credit","imageType","size","src"],jt=r.chakra((function(e){var t=e.additionalWrapperStyles,l=void 0===t?{}:t,a=e.className,c=void 0===a?"":a,i=e.children,o=e.aspectRatio,s=void 0===o?"original":o,v=e.size,m=void 0===v?"default":v,u=d(e,Ct),p=r.useMultiStyleConfig("CustomImageWrapper",{ratio:s,size:m});return n.createElement(r.Box,Object.assign({className:"the-wrap "+c,__css:h({},p,l)},u),n.createElement(r.Box,{className:"the-crop",__css:p.crop},i))})),St=r.chakra((function(e){var t=e.additionalFigureStyles,l=void 0===t?{}:t,a=e.additionalImageStyles,c=void 0===a?{}:a,i=e.additionalWrapperStyles,o=void 0===i?{}:i,s=e.alt,v=e.aspectRatio,m=void 0===v?"original":v,u=e.caption,p=e.className,f=void 0===p?"":p,g=e.component,b=e.credit,z=e.imageType,y=void 0===z?"default":z,x=e.size,w=void 0===x?"default":x,E=e.src,O=d(e,kt),M="original"!==m,C=r.useMultiStyleConfig("CustomImage",{variant:y,size:w});if(s&&s.length>300)throw new Error("NYPL Reservoir Image: Alt text must be less than 300 characters.");var k=g||n.createElement(r.Box,{as:"img",src:E,alt:s,__css:h({},C.img,c)}),j=M?n.createElement(jt,Object.assign({additionalWrapperStyles:o,aspectRatio:m,className:f,size:w},u||b?{}:O),k):k;return u||b?n.createElement(r.Box,Object.assign({as:"figure",__css:h({},C.figure,l)},O),j,n.createElement(r.Box,{as:"figcaption",__css:C.figcaption},u&&n.createElement(r.Box,{__css:C.captionWrappers},u),b&&n.createElement(r.Box,{__css:C.captionWrappers},b))):j})),Tt=["children"],Vt=["bottomBorder","children","isCentered","layout","topBorder"],Lt=["backgroundColor","children","className","foregroundColor","id","imageProps","isAlignedRightActions","isBordered","isCentered","layout","mainActionLink"];function _t(e){var t=e.alt,l=e.aspectRatio,a=e.caption,c=e.component,i=e.credit,o=e.size,s=e.src,h=r.useStyleConfig("CardImage",{imageIsAtEnd:e.isAtEnd,isCentered:e.isCentered,layout:e.layout,size:o});return n.createElement(r.Box,{__css:h},n.createElement(St,{alt:t,caption:a,component:c,credit:i,aspectRatio:l,size:o,src:s}))}var It=r.chakra(Mt),Pt=r.chakra((function(e){var t=e.children,l=d(e,Tt),a=r.useStyleConfig("CardContent");return t?n.createElement(r.Box,Object.assign({__css:a},l),t):null})),Bt=r.chakra((function(e){var t=e.bottomBorder,l=e.children,a=e.isCentered,c=e.layout,i=e.topBorder,o=d(e,Vt),s=r.useStyleConfig("CardActions",{bottomBorder:t,isCentered:a,layout:c,topBorder:i});return l?n.createElement(r.Box,Object.assign({__css:s},o),l):null}));function Rt(e){return n.createElement(e.mainActionLink?r.LinkBox:n.Fragment,null,e.children)}function Ht(e){var t=e.children,l=e.mainActionLink;return l?n.createElement(r.LinkOverlay,{href:l},t):n.createElement(n.Fragment,null,t)}var Ft=r.chakra((function(e){var t=e.backgroundColor,l=e.children,a=e.className,c=e.foregroundColor,i=e.id,o=e.imageProps,s=void 0===o?{alt:"",aspectRatio:"square",caption:void 0,component:void 0,credit:void 0,isAtEnd:!1,size:"default",src:""}:o,v=e.isAlignedRightActions,m=void 0!==v&&v,u=e.isBordered,p=e.isCentered,f=void 0!==p&&p,g=e.layout,b=void 0===g?"column":g,z=e.mainActionLink,y=d(e,Lt),x=s.src||s.component,w=n.useState(s.size||"default"),E=w[0],O=w[1],M=s.component?"original":s.aspectRatio,C={},k=[],j=[],S=zt(),T=0;s.component&&"square"!==s.aspectRatio&&console.warn("NYPL Reservoir Card: Both the `imageProps.component` and `imageProps.aspectRatio` props were set but `imageProps.aspectRatio` will be ignored in favor of the aspect ratio on `imageProps.component` prop."),n.useEffect((function(){O(S.width<600?"default":s.size)}),[S.width,s.size]),t&&(C.backgroundColor=t),c&&(C.color=c);var V=r.useMultiStyleConfig("Card",{hasImage:x,imageIsAtEnd:s.isAtEnd,isBordered:u,isCentered:f,layout:b,mainActionLink:z});return n.Children.map(l,(function(e,t){var l=e.type===Bt||"CardActions"===e.props.mdxType;if(e.type===It||"CardHeading"===e.props.mdxType){var a=0===T?n.createElement(Ht,{mainActionLink:z},e.props.children):e.props.children,r=n.cloneElement(e,{key:t,children:a,layout:b,__css:V.heading});k.push(r),T++}else if(e.type===Pt||"CardContent"===e.props.mdxType){var c=n.cloneElement(e,{key:t});k.push(c)}else if(l){var i=n.cloneElement(e,{key:t,isCentered:f,layout:b});m&&"row"===b?j.push(i):k.push(i)}})),n.createElement(Rt,{mainActionLink:z},n.createElement(r.Box,Object.assign({id:i,className:a,__css:h({},V,C)},y),x&&n.createElement(_t,{alt:s.alt,aspectRatio:M,caption:s.caption,component:s.component,credit:s.credit,isAtEnd:s.isAtEnd,layout:b,size:E,src:s.src?s.src:void 0}),n.createElement(r.Box,{className:"card-body",__css:V.body},k),j.length?n.createElement(r.Box,{className:"card-right",__css:h({},V.body,V.actions)},j):null))})),Nt=["ariaAtomic","ariaLive","className","id","isInvalid","text"],Dt=r.chakra((function(e){var t=e.ariaAtomic,l=void 0===t||t,a=e.ariaLive,c=void 0===a?"polite":a,i=e.className,o=void 0===i?"":i,s=e.id,v=e.isInvalid,m=void 0!==v&&v,u=e.text,p=d(e,Nt),f=h({"aria-atomic":l,"aria-live":m?c:"off",className:o,"data-isinvalid":m,id:s,__css:r.useStyleConfig("HelperErrorText",{isInvalid:m})},p);return"string"==typeof u?n.createElement(r.Box,Object.assign({},f,{dangerouslySetInnerHTML:{__html:u}})):n.createElement(r.Box,Object.assign({},f),u)})),At=["isIndeterminate","isChecked"],Wt=["className","invalidText","helperText","id","isChecked","isDisabled","isIndeterminate","isInvalid","isRequired","labelText","name","showHelperInvalidText","showLabel","value"],qt=function(){};function Yt(e){var t=d(e,At);return n.createElement(r.Icon,Object.assign({viewBox:"0 0 24 24"},t),n.createElement("path",{fill:"currentColor",d:"M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"}))}var Gt,Ut,Xt,Jt,Kt,Qt,Zt,$t,el=r.chakra(n.forwardRef((function(e,t){var l=e.className,a=e.invalidText,c=e.helperText,i=e.id,o=e.isChecked,s=e.isDisabled,h=void 0!==s&&s,v=e.isIndeterminate,m=void 0!==v&&v,u=e.isInvalid,p=void 0!==u&&u,f=e.isRequired,g=void 0!==f&&f,b=e.labelText,z=e.name,y=e.showHelperInvalidText,x=void 0===y||y,w=e.showLabel,E=void 0===w||w,O=e.value,M=d(e,Wt),C=r.useMultiStyleConfig("Checkbox",{}),k=p?a:c,j={},S=e.onChange||qt,T=m?void 0:n.createElement(Yt,null);return i||console.warn("NYPL Reservoir Checkbox: This component's required `id` prop was not passed."),E?k&&(j["aria-describedby"]=i+"-helperText"):("string"!=typeof b&&console.warn("NYPL Reservoir Checkbox: `labelText` must be a string when `showLabel` is false."),j["aria-label"]=b&&k?b+" - "+k:b),n.createElement(n.Fragment,null,n.createElement(r.Checkbox,Object.assign({id:i,className:l,name:z||"default",isDisabled:h,isInvalid:p,isRequired:g,isIndeterminate:m,ref:t,value:O},void 0!==o?{isChecked:o,onChange:S}:{defaultIsChecked:!1},{icon:T,alignItems:"flex-start",__css:C},j,M),E&&b),k&&x&&n.createElement(Dt,{id:i+"-helperText",isInvalid:p,text:k,__css:C.helperErrorText}))}))),tl=["children","className","id","isLegendHidden","isRequired","legendText","showRequiredLabel"],ll=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,n=e.isLegendHidden,i=void 0!==n&&n,o=e.isRequired,s=void 0!==o&&o,h=e.legendText,v=e.showRequiredLabel,m=void 0===v||v,u=d(e,tl),p=r.useMultiStyleConfig("Fieldset",{isLegendHidden:i});return a||console.warn("NYPL Reservoir Fieldset: This component's required `id` prop was not passed."),c.createElement(r.Box,Object.assign({as:"fieldset",id:a,__css:p,className:l},u),c.createElement("legend",null,h,m&&s&&c.createElement("span",null," (Required)")),t)})),al=h({},{px:"1px",0:"0",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},{xxxs:"0.125rem",xxs:"0.25rem",xs:"0.5rem",s:"1rem",m:"1.5rem",l:"2rem",xl:"3rem",xxl:"4rem",xxxl:"6rem",input:{group:{button:{hstack:"0.5rem",vstack:"0.5rem"},default:{hstack:"2rem",vstack:"1rem"}}},inset:{default:"1rem",extranarrow:"0.25rem",extrawide:"3rem",narrow:"0.5rem",wide:"2rem"},grid:{default:"2rem",xxs:"0.25rem",xs:"0.5rem",s:"1rem",m:"1.5rem",l:"2rem",xl:"3rem",xxl:"4rem"},page:{hstack:"2rem",vstack:"2rem"},table:{column:"1.5rem",row:"2rem"}}),rl=["children","defaultValue","helperText","id","invalidText","isDisabled","isFullWidth","isInvalid","isRequired","labelText","layout","name","onChange","showHelperInvalidText","showLabel","showRequiredLabel"],nl=r.chakra(n.forwardRef((function(e,t){var l=e.children,a=e.defaultValue,c=void 0===a?[]:a,i=e.helperText,o=e.id,s=e.invalidText,h=e.isDisabled,v=void 0!==h&&h,m=e.isFullWidth,u=void 0!==m&&m,p=e.isInvalid,f=void 0!==p&&p,g=e.isRequired,b=void 0!==g&&g,z=e.labelText,y=e.layout,x=void 0===y?"column":y,w=e.name,E=e.onChange,O=e.showHelperInvalidText,M=void 0===O||O,C=e.showLabel,k=void 0===C||C,j=e.showRequiredLabel,S=void 0===j||j,T=d(e,rl),V=f?s:i,L=[],_="column"===x?al.input.group.default.vstack:al.input.group.default.hstack,I=c&&E?{defaultValue:c,onChange:E}:{};o||console.warn("NYPL Reservoir CheckboxGroup: This component's required `id` prop was not passed."),n.Children.map(l,(function(e,t){e.type!==el&&(e.props.mdxType&&"Checkbox"===e.props.mdxType||console.warn("NYPL Reservoir CheckboxGroup: Only `Checkbox` components are allowed as children.")),null!=e&&L.push(n.cloneElement(e,{key:t,id:o+"-"+t,name:w,isDisabled:v,isInvalid:f,isRequired:b}))}));var P=r.useMultiStyleConfig("CheckboxGroup",{isFullWidth:u});return n.createElement(ll,Object.assign({id:o+"-checkbox-group",isLegendHidden:!k,isRequired:b,legendText:z,showRequiredLabel:S},T),n.createElement(r.CheckboxGroup,Object.assign({},I),n.createElement(r.Stack,{id:o,"data-testid":"checkbox-group",direction:[x],spacing:_,ref:t,"aria-label":k?void 0:z,sx:P.stack},L)),V&&M&&n.createElement(Dt,{id:o+"-helperErrorText",isInvalid:f,text:V,__css:P.helperErrorText}))}))),cl=["children","columns","className","gap","id"],il=r.chakra((function(e){var t=e.children,l=e.columns,a=e.className,c=e.gap,i=void 0===c?"grid.l":c,o=e.id,s=d(e,cl);return n.createElement(r.SimpleGrid,Object.assign({columns:l?{base:1,md:l}:{base:1,md:2,lg:3},gap:i,id:o,className:a},s),t)}),{shouldForwardProp:function(){return!0}}),ol=["children","className","gap","id"],sl=["children","className","gap","id"],hl=["action","children","className","gap","id","method","onSubmit"],dl=r.chakra((function(e){var t=e.children,l=e.className,a=e.gap,r=e.id,c=d(e,ol),i=n.Children.count(t),o=n.Children.map(t,(function(e,t){return e?e.type===vl||"FormField"===e.props.mdxType?n.cloneElement(e,{id:r+"-grandchild"+t}):(console.warn("NYPL Reservoir FormRow: Children must be `FormField` components."),null):null}));return n.createElement(il,Object.assign({columns:i,className:l,gap:a,id:r},c),o)})),vl=r.chakra((function(e){var t=e.children,l=e.className,a=e.gap,r=e.id,c=d(e,sl);return n.createElement(il,Object.assign({columns:1,className:l,gap:a,id:r},c),t)})),ml=r.chakra((function(e){var t=e.action,l=e.children,a=e.className,r=e.gap,c=void 0===r?"grid.l":r,i=e.id,o=e.method,s=e.onSubmit,h=d(e,hl);i||console.warn("NYPL Reservoir Form: This component's required `id` prop was not passed.");var v={};t&&(v.action=t),o&&("get"===o||"post"===o)&&(v.method=o);var m=n.Children.map(l,(function(e,t){return n.cloneElement(e,{gap:c,id:i+"-child"+t})}));return n.createElement("form",Object.assign({"aria-label":"form",className:a,id:i,onSubmit:s},v,h),n.createElement(il,{columns:1,gap:c,id:i+"-parent"},m))}),{shouldForwardProp:function(){return!0}}),ul=["children","className","htmlFor","id","isInlined","isRequired"],pl=r.chakra((function(e){var t=e.children,l=e.className,a=e.htmlFor,c=e.id,i=e.isInlined,o=void 0!==i&&i,s=e.isRequired,h=void 0!==s&&s,v=d(e,ul),m=r.useStyleConfig("Label",{isInlined:o});return c||console.warn("NYPL Reservoir Label: This component's required `id` prop was not passed."),n.createElement(r.Box,Object.assign({as:"label",id:c,className:l,htmlFor:a,__css:m},v),t,h&&n.createElement("span",null," (Required)"))})),fl=["className","defaultValue","helperText","id","invalidText","isDisabled","isInvalid","isRequired","labelText","max","maxLength","min","name","onChange","onClick","onFocus","placeholder","showHelperInvalidText","showLabel","showRequiredLabel","step","textInputType","type","value"],gl={email:"jdoe@domain.com",hidden:"",password:"",text:"",tel:"(123) 123-1234",textarea:"",url:"https://domain.com"},bl=r.chakra(n.forwardRef((function(e,t){var l,a,c=e.className,i=e.defaultValue,o=e.helperText,s=e.id,v=e.invalidText,m=e.isDisabled,u=void 0!==m&&m,p=e.isInvalid,f=void 0!==p&&p,g=e.isRequired,b=void 0!==g&&g,z=e.labelText,y=e.max,x=e.maxLength,w=e.min,E=e.name,O=e.onChange,M=e.onClick,C=e.onFocus,k=e.placeholder,j=e.showHelperInvalidText,S=void 0===j||j,T=e.showLabel,V=void 0===T||T,L=e.showRequiredLabel,_=void 0===L||L,I=e.step,P=void 0===I?1:I,B=e.textInputType,R=void 0===B?"default":B,H=e.type,F=void 0===H?"text":H,N=e.value,D=d(e,fl),A=r.useMultiStyleConfig("TextInput",{variant:R}),W="textarea"===F,q="hidden"===F,Y=f?v||"There is an error related to this field.":o,G={};return s||console.warn("NYPL Reservoir TextInput: This component's required `id` prop was not passed."),V?o&&(G["aria-describedby"]=s+"-helperText"):G["aria-label"]=z&&Y?z+" - "+Y:z,("tel"===F||"url"===F||"email"===F)&&(Y=n.createElement(n.Fragment,null,"Ex: ",gl[F]||"",n.createElement("br",null),Y)),a=q?{id:s,"aria-hidden":q,name:E,onChange:O,ref:t}:h({"aria-required":b,defaultValue:i,id:s,isDisabled:u,isRequired:b,isInvalid:f,max:y,maxLength:x,min:w,name:E,onChange:O,onClick:M,onFocus:C,placeholder:k,ref:t,step:"number"===F?P:null},G,D),W?l=n.createElement(r.Textarea,Object.assign({},a,{__css:A.textarea}),N):(a=h({type:F,value:N},a),l=n.createElement(r.Input,Object.assign({},a,{__css:A.input}))),n.createElement(r.Box,Object.assign({__css:A,className:c},D),z&&V&&!q&&n.createElement(pl,{htmlFor:s,id:s+"-label",isRequired:_&&b},z),l,Y&&S&&!q&&n.createElement(Dt,{id:s+"-helperText",isInvalid:f,text:Y}))}))),zl=["children","className","id","isDateRange","isRequired","labelText","showLabel","showRequiredLabel"],yl=["className","dateFormat","dateType","helperText","helperTextFrom","helperTextTo","id","initialDate","initialDateTo","invalidText","isDateRange","isDisabled","isInvalid","isRequired","labelText","maxDate","minDate","nameFrom","nameTo","onChange","refTo","showHelperInvalidText","showLabel","showRequiredLabel"],xl=n.forwardRef((function(e,t){return c.createElement(bl,{helperText:e.helperText,id:e.id,invalidText:e.invalidText,isDisabled:e.isDisabled,isInvalid:e.isInvalid,isRequired:e.isRequired,labelText:e.labelText,name:e.name,onChange:e.onChange,onClick:e.onClick,showHelperInvalidText:e.showHelperInvalidText,showLabel:e.showLabel,showRequiredLabel:e.showRequiredLabel,value:e.value,ref:e.dsRef||t})})),wl=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,r=e.isDateRange,n=e.isRequired,i=e.labelText,o=e.showLabel,s=e.showRequiredLabel,h=d(e,zl);return c.createElement(vl,Object.assign({id:a+"-form-field"},h),r?c.createElement(ll,{className:l,id:a,isLegendHidden:!o,isRequired:n,legendText:i,showRequiredLabel:s},t):t)}),{shouldForwardProp:function(){return!0}}),El=function(e){var t=e.children;return e.isDateRange?c.createElement(dl,{id:e.id+"-form-row",gap:"grid.xs"},t):c.createElement(c.Fragment,null,t)},Ol=r.chakra(c.forwardRef((function(e,t){var l=e.className,a=e.dateFormat,o=void 0===a?"yyyy-MM-dd":a,s=e.dateType,v=void 0===s?"full":s,m=e.helperText,u=e.helperTextFrom,p=e.helperTextTo,f=e.id,g=e.initialDate,b=e.initialDateTo,z=e.invalidText,y=e.isDateRange,x=void 0!==y&&y,w=e.isDisabled,E=e.isInvalid,O=e.isRequired,M=e.labelText,C=void 0===M?"From":M,k=e.maxDate,j=e.minDate,S=e.nameFrom,T=e.nameTo,V=e.onChange,L=e.refTo,_=e.showHelperInvalidText,I=void 0===_||_,P=e.showLabel,B=void 0===P||P,R=e.showRequiredLabel,H=void 0===R||R,F=d(e,yl),N=r.useMultiStyleConfig("DatePicker",{}),D=x?N:{},A=g?new Date(g):new Date,W=b?new Date(b):new Date,q={startDate:A};x&&(q=h({},q,{endDate:W}));var Y=n.useState(q),G=Y[0],U=Y[1],X=function(e,t){var l,a;U(h({},G,((l={})[t]=e,l))),V&&V(h({},G,((a={})[t]=e,a)))},J={popperClassName:"date-picker-calendar",popperPlacement:"bottom-start",popperModifiers:[{name:"offset",options:{offset:[0,-8]}}],minDate:j?new Date(j):null,maxDate:k?new Date(k):null,dateFormat:o},K={isRequired:O,showRequiredLabel:!x&&H,showLabel:!!x||B,isDisabled:w,isInvalid:E,helperText:x?u:m,showHelperInvalidText:I,invalidText:z,__css:D.subLabels},Q={},Z={},$=null,ee=C;if("month"===v?(J.showMonthYearPicker=!0,J.dateFormat="MM-yyyy"):"year"===v&&(J.showYearPicker=!0,J.yearItemNumber=12,J.dateFormat="yyyy"),f||console.warn("NYPL Reservoir DatePicker: This component's required `id` prop was not passed."),(t&&!S||L&&!T)&&console.warn("NYPL Reservoir DatePicker: A `ref` or `refTo` prop was passed but not the equivalent `nameFrom` or `nameTo` prop."),V&&(t||L||S||T)&&console.warn("NYPL Reservoir DatePicker: A `ref`, `refTo`, `nameFrom`, or `nameTo` prop was passed and an `onChange` prop as well. Use whichever is best for your app but not both."),Q=h({},J),x){var te=h({},K,{helperText:p});Q=h({},Q,{selectsStart:!0,startDate:G.startDate,endDate:G.endDate}),Z=h({},J,{selectsEnd:!0,minDate:G.startDate,startDate:G.startDate,endDate:G.endDate}),ee="From",$=c.createElement(i,Object.assign({customInput:c.createElement(xl,Object.assign({dsRef:L,labelText:"To"},te)),id:f+"-end",name:T,onChange:function(e){return X(e,"endDate")},selected:G.endDate},Z))}var le=c.createElement(i,Object.assign({customInput:c.createElement(xl,Object.assign({dsRef:t,labelText:ee},K)),id:f+"-start",name:S,onChange:function(e){return X(e,"startDate")},selected:G.startDate},Q));return c.createElement(wl,Object.assign({id:f,isDateRange:x,showLabel:B,labelText:C,className:l,isRequired:O,showRequiredLabel:H},F),c.createElement(El,{id:f,isDateRange:x},c.createElement(vl,{id:f+"-start-form"},le),$&&c.createElement(vl,{id:f+"-end-form"},$)),m&&x&&I&&c.createElement(Dt,{id:f+"-helper-text",isInvalid:!1,text:m}))})),{shouldForwardProp:function(){return!0}}),Ml={clip:"rect(1px, 1px, 1px, 1px)",height:"1px",overflow:"hidden",position:"absolute !important",width:"1px",wordWrap:"normal"},Cl={marginY:"0",marginX:"auto",maxWidth:"1280px",paddingTop:"0",paddingBottom:"0",paddingRight:"0",paddingLeft:"0",width:"100%"},kl=function(e){return void 0===e&&(e=!1),{boxShadow:"none",outline:"2px solid",outlineOffset:"2px",outlineColor:e?"ui.white":"ui.focus",zIndex:"9999"}},jl={userSelect:"none",fontWeight:"text.default",marginBottom:"0",marginLeft:"xs",width:"100%",_disabled:{color:"ui.gray.dark",opacity:1,fontStyle:"italic"},_invalid:{color:"ui.error.primary"}},Sl={h:"1.375rem",w:"1.375rem"},Tl={marginLeft:"30px",_disabled:{color:"ui.gray.dark",fontStyle:"italic"}},Vl=function(e){return void 0===e&&(e=!1),{helperErrorText:{marginTop:"xs"},stack:{width:e?"100%":"fit-content"}}},Ll={display:"inline-block",fontSize:"label.default",fontWeight:"label.default",marginBottom:"xs",width:"100%",span:{fontWeight:"regular"}},_l={bg:"ui.disabled.secondary",borderColor:"ui.disabled.primary",color:"ui.gray.dark",opacity:"1"},Il=h({},kl(),{borderColor:"ui.focus"}),Pl={margin:"0",marginBottom:"s"},Bl={body:{boxSizing:"border-box",bg:"ui.white",color:"ui.black",fontFamily:"body",fontSize:"text.default",fontWeight:"text.default",lineHeight:"1.5",overflowX:"hidden"},a:{color:"ui.link.primary"},svg:{display:"inline"},"button, select, input, textarea":{"&:not([disabled])":{_focus:kl()}},"iframe, [href], [tabindex], [contentEditable='true']":{_focus:kl()},p:Pl,ul:Pl,ol:Pl,"*, *::before, &::after":{boxSizing:"inherit"}},Rl=o.createBreakpoints({sm:"20em",md:"38em",lg:"60em",xl:"80em","2xl":"96em"}),Hl={primary:"#C60917",secondary:"#760000"},Fl={transparent:"transparent",ui:{black:"#000",white:"#fff",disabled:{primary:"#E9E9E9",secondary:"#FAFAFA"},error:{primary:"#97272C",secondary:"#6F0106"},focus:"#4181F1",link:{primary:"#0576D3",secondary:"#004B98"},status:{primary:"#F9E08E",secondary:"#FBE7E1"},success:{primary:"#077719",secondary:"#095212"},test:"#FF6347",warning:{primary:"#F0974E",secondary:"#EC7B1F"},gray:{xdark:"#424242",dark:"#616161",medium:"#BDBDBD","light-cool":"#E9E9E9","light-warm":"#EFEDEB","x-light-cool":"#F5F5F5","x-light-warm":"#F8F8F7","xx-light-cool":"#FAFAFA"}},brand:Hl,section:{blogs:{primary:"#E9E9E9",secondary:"#BDBDBD"},"books-and-more":Hl,education:{primary:"#1D62E6",secondary:"#2540A4"},locations:Hl,research:{primary:"#00838a",secondary:"#006166"},"research-library":{lpa:"#005d53",schomburg:"#a03e31",schwartzman:"#760000"},"whats-on":{primary:"#242424",secondary:"#000000"}},gray:{50:"#F2F2F2",100:"#DBDBDB",200:"#C4C4C4",300:"#ADADAD",400:"#969696",500:"#808080",600:"#666666",700:"#4D4D4D",800:"#333333",900:"#1A1A1A"},red:{50:"#FEE7E8",100:"#FCBBC0",200:"#FA8F97",300:"#F8636E",400:"#F63745",500:"#F40B1C",600:"#C30917",700:"#920711",800:"#62040B",900:"#310206"},orange:{50:"#FDF1E7",100:"#F9D8BD",200:"#F6BF93",300:"#F2A769",400:"#EF8E3E",500:"#EB7514",600:"#BC5E10",700:"#8D460C",800:"#5E2F08",900:"#2F1704"},yellow:{50:"#FEF8E7",100:"#FBECBB",200:"#F9E090",300:"#F7D464",400:"#F4C938",500:"#F2BD0D",600:"#C2970A",700:"#917108",800:"#614B05",900:"#302603"},green:{50:"#E7FEEB",100:"#BCFBC6",200:"#90F8A1",300:"#65F67C",400:"#3AF357",500:"#0EF133",600:"#0BC128",700:"#08911E",800:"#066014",900:"#03300A"},blue:{50:"#E6F3FE",100:"#B9DFFD",200:"#8CCAFC",300:"#60B5FB",400:"#33A0FA",500:"#068BF9",600:"#056FC7",700:"#045495",800:"#023864",900:"#011C32"}},Nl={fonts:{body:"-apple-system, BlinkMacSystemFont, system-ui, sans-serif",heading:"-apple-system, BlinkMacSystemFont, system-ui, sans-serif"},fontSizes:{"-3":"0.625rem","-2":"0.75rem","-1":"0.875rem",0:"1rem",1:"1.125rem",2:"1.375rem",3:"1.75rem",4:"2.25rem",breadcrumbs:{default:"0.875rem"},button:{default:"0.875rem"},heading:{primary:"2.25rem",secondary:"1.75rem",tertiary:"1.375rem",callout:"1.125rem"},helper:{default:"0.75rem"},label:{default:"0.875rem",secondary:"0.75rem"},text:{default:"1rem",caption:"0.875rem",tag:"0.75rem",mini:"0.625rem"}},fontWeights:{light:300,regular:400,medium:500,bold:700,breadcrumbs:{default:400,lastChild:700},button:{default:400},heading:{primary:300,secondary:500,tertiary:500,callout:500},helper:{default:300},label:{default:500},text:{default:300,caption:300,tag:400,mini:400}}},Dl={bg:"ui.link.primary",minWidth:"none",height:"none",fontSize:"button.default"},Al={baseStyle:{borderRadius:"sm",lineHeight:"1.5",display:"flex",cursor:"pointer",color:"ui.white",justifyContent:"center",maxHeight:"2.5rem",py:"inset.narrow",px:"inset.default",textDecoration:"none",wordWrap:"normal",fontWeight:"button.default",svg:{fill:"currentColor",marginTop:"xxs"},_hover:{bg:"ui.link.secondary"},_visited:{color:"ui.white"},_disabled:{bg:"ui.gray.light-cool",color:"ui.gray.dark",pointerEvents:"none",opacity:"1"}},variants:{primary:Dl,secondary:{bg:"ui.white",border:"1px solid",borderColor:"ui.gray.light-cool",color:"inherit",fontSize:"button.default",_hover:{bg:"ui.gray.xx-light-cool",borderColor:"ui.gray.medium"},_disabled:{bg:"ui.gray.x-light-cool"}},link:{bg:"transparent",lineHeight:"2.5",color:"ui.link.primary",textDecoration:"underline",_disabled:{bg:"transparent"},_hover:{bg:"transparent",color:"ui.link.secondary"}},pill:{bg:"ui.white",border:"1px solid",borderColor:"ui.gray.light-cool",color:"inherit",borderRadius:"pill",py:"inset.narrow",px:"inset.wide",fontSize:"button.default",_hover:{bg:"ui.gray.xx-light-cool",borderColor:"ui.gray.medium"},_disabled:{bg:"ui.gray.x-light-cool"}},iconOnly:{bg:"ui.white",border:"1px solid",borderColor:"ui.gray.light-cool",color:"inherit",_hover:{bg:"ui.gray.xx-light-cool"},paddingInlineStart:"inset.narrow",paddingInlineEnd:"inset.narrow"},callout:{bg:"brand.primary",fontSize:"button.default",_hover:{bg:"brand.secondary"},_active:{bg:"brand.secondary"}},noBrand:h({},Dl,{bg:"ui.black",color:"ui.white",_hover:{bg:"ui.gray.xdark"}})},defaultProps:{variant:"primary"}},Wl={xxsmall:{flex:{base:"0 0 100%",md:"0 0 64px"},width:"100%"},xsmall:{flex:{md:"0 0 96px"}},small:{flex:{md:"0 0 165px"}},medium:{flex:{md:"0 0 225px"}},large:{flex:{md:"0 0 360px"}}},ql={Card:{parts:["actions","body","heading"],baseStyle:function(e){var t=e.isBordered,l=e.isCentered,a=e.mainActionLink,r="row"===e.layout,n=r?{display:"flex",flexFlow:{base:"column nowrap",md:"row"},maxWidth:"100%",textAlign:"left",alignItems:l?"center":null}:{},c=t?{border:"1px solid",borderColor:"ui.gray.medium"}:{},i=null;return l&&(i="auto",r&&(i="0")),h({alignItems:"flex-start",display:"flex",flexFlow:"column wrap",textAlign:l?"center":null,actions:{width:["100%","100%","180px"],marginLeft:["0","0","m"],marginTop:["xs","xs","0"]},body:{display:{md:"block"},flexFlow:{md:"row nowrap"},margin:i,padding:function(e){var t=e.hasImage,l=e.isBordered,a=e.isRow,r=null;return l&&(r="inset.default",t&&(r="0 var(--nypl-space-inset-default) var(--nypl-space-inset-default)")),a&&l&&(r="inset.default"),a&&l&&t&&(r={base:"0 var(--nypl-space-inset-default) var(--nypl-space-inset-default)",md:"var(--nypl-space-inset-default) var(--nypl-space-inset-default) var(--nypl-space-inset-default) 0"},e.imageIsAtEnd&&(r={base:"var(--nypl-space-inset-default) var(--nypl-space-inset-default) 0",md:"var(--nypl-space-inset-default) 0 var(--nypl-space-inset-default) var(--nypl-space-inset-default)"})),r}({isBordered:t,hasImage:e.hasImage,imageIsAtEnd:e.imageIsAtEnd,isRow:r})},heading:{marginBottom:"xs",a:a?{color:"ui.black"}:null}},c,n)}},CardActions:{baseStyle:function(e){var t=null;return"row"===e.layout?t="left":e.isCentered&&(t="center"),h({marginBottom:"xs",columnGap:"var(--nypl-space-xs)",display:"flex",_last:{marginBottom:"0"}},e.topBorder?{borderTop:"1px solid",paddingTop:"xs"}:{},e.bottomBorder?{borderBottom:"1px solid",paddingBottom:"xs"}:{},{justifyContent:t,borderColor:"ui.gray.medium"})}},CardContent:{baseStyle:{marginBottom:"xs",_last:{marginBottom:"0"}}},CardImage:{baseStyle:function(e){var t=e.imageIsAtEnd,l=e.size,a="row"===e.layout?h({flex:{md:"0 0 225px"},maxWidth:{base:"100%",md:"50%"},textAlign:"left",alignItems:e.isCentered?"center":null,margin:{base:t?"var(--nypl-space-m) 0 0":null,md:t?"0 0 0 var(--nypl-space-m)":"0 var(--nypl-space-m) 0 0"},width:{base:"100%",md:null},marginBottom:["xs","xs"]},l?Wl[l]:{}):{marginBottom:"xs",width:"100%"};return h({},t?{marginBottom:"0",marginTop:"s",order:"2"}:{},a)}}},Yl={parts:["helperErrorText","icon","control","label"],baseStyle:{icon:{transitionProperty:"transform",transitionDuration:"normal",width:"22px",height:"22px"},control:{border:"2px solid",borderRadius:"sm",borderColor:"ui.black",color:"ui.black",outline:"none",transitionProperty:"box-shadow",transitionDuration:"normal",_checked:{bg:"ui.white",borderColor:"ui.focus",color:"ui.focus",_hover:{bg:"ui.white"},_disabled:{bg:"ui.white",borderColor:"ui.disabled.primary",svg:{color:"ui.disabled.primary"}},_indeterminate:{color:"ui.focus",borderColor:"ui.focus"}},_indeterminate:{color:"ui.focus",borderColor:"ui.focus"},_disabled:{bg:"ui.white",borderColor:"ui.disabled.primary"},_focus:{borderColor:"ui.focus",boxShadow:"none",outlineColor:"ui.focus"},_invalid:{borderColor:"ui.error.primary",color:"ui.error.primary"}},label:jl,helperErrorText:Tl},sizes:{lg:{control:h({},Sl,{borderRadius:"checkbox"}),label:{fontSize:"label.default"}}},defaultProps:{size:"lg",colorScheme:"white"}},Gl={parts:["helperErrorText","stack"],baseStyle:function(e){var t=e.isFullWidth;return h({},Vl(void 0!==t&&t))}},Ul={position:"relative",width:"100%",height:"auto",overflow:"hidden"},Xl={marginLeft:"auto",marginRight:"auto"},Jl={default:{maxWidth:"100%"},xxsmall:h({},Xl,{maxWidth:"64px"}),xsmall:h({},Xl,{maxWidth:"96px"}),small:h({},Xl,{maxWidth:"165px"}),medium:h({},Xl,{maxWidth:"225px"}),large:h({},Xl,{maxWidth:"360px"})},Kl={fourByThree:h({},Ul,{paddingBottom:"75%"}),oneByTwo:h({},Ul,{paddingBottom:"200%"}),original:h({},Ul),sixteenByNine:h({},Ul,{paddingBottom:"56.25%"}),square:h({},Ul,{paddingBottom:"100%"}),threeByFour:h({},Ul,{paddingBottom:"133.33%"}),threeByTwo:h({},Ul,{paddingBottom:"66.66%"}),twoByOne:h({},Ul,{paddingBottom:"50%"})},Ql={parts:["captionWrappers"],variants:{circle:{img:{borderRadius:"50%"}}},baseStyle:function(e){var t=e.size,l=void 0===t?"default":t;return{figure:h({margin:"auto"},Jl[l],{img:{marginBottom:"xxs"}}),figcaption:{fontStyle:"italic",fontSize:"text.tag"},img:h({display:"block",boxSizing:"border-box",objectFit:"cover",position:"relative",width:"100%"},Jl[l]),captionWrappers:{marginTop:"xxs"}}}},Zl={parts:["crop"],baseStyle:function(e){var t=e.ratio,l=e.size;return h({marginLeft:"auto",marginRight:"auto",width:"100%"},Jl[void 0===l?"default":l],{crop:h({},Kl[void 0===t?"original":t]),img:{height:"100%",left:"0",maxWidth:"100%",position:"absolute",top:"0",width:"100%"}})}},$l={backgroundColor:"ui.white",borderRadius:"sm",borderColor:"ui.gray.medium",fontSize:"text.caption",paddingTop:"inset.narrow",paddingRight:"inset.extrawide",paddingBottom:"inset.narrow",paddingLeft:"inset.default",_hover:{borderColor:"ui.gray.dark"},_active:Il,_disabled:h({},_l),_focus:Il,_invalid:{border:"1px solid",borderColor:"ui.error.primary",boxShadow:"none"}},ea={parts:["helperText","inline","select"],baseStyle:function(e){return{".chakra-select__icon-wrapper":{zIndex:"9999"},inline:{display:{md:"flex"},gap:{md:"var(--nypl-space-xs)"},alignItems:{md:"flex-end"}},select:h({},$l,{flex:"inline"===e.labelPosition?{md:"1"}:null})}},variants:{searchbar:{select:{flex:"1 1 20%",borderRightColor:{md:"transparent"},borderRightRadius:{md:"none"},_hover:{borderRightColor:{md:"transparent"}}}}},defaultProps:{size:"md"}},ta={baseStyle:function(e){return{border:0,padding:0,legend:h({},Ll,e.isLegendHidden?Ml:{})}}},la={color:"ui.link.primary",textDecoration:"underline",_hover:{color:"ui.link.secondary"}},aa={baseStyle:h({},la,{a:{_hover:{color:"ui.link.secondary"}}}),variants:{link:{},disabled:{color:"ui.gray.dark",pointerEvents:"none"},moreLink:{alignItems:"center",display:"inline-flex",svg:{height:"s",width:"s",textDecoration:"none",fill:"currentColor"},_hover:{color:"ui.link.secondary",textDecoration:"underline"}},button:{width:"100px",borderRadius:"sm",lineHeight:"1.5",display:"flex",cursor:"pointer",color:"ui.white",justifyContent:"center",py:"xs",px:"xs",textDecoration:"none",fontWeight:"button.default",bg:"ui.link.primary",_hover:{color:"ui.white",bg:"ui.link.secondary",textDecoration:"none"}}}},ra={marginTop:"0",marginLeft:"0",marginRight:"0",marginBottom:"s"},na={h1:h({fontSize:"heading.primary",fontWeight:"heading.primary",letterSpacing:"0",lineHeight:"1.1"},ra,{width:"auto"}),h2:h({fontSize:"heading.secondary",fontWeight:"heading.secondary",lineHeight:"1.25"},ra,{width:"auto"}),h3:h({fontSize:"heading.tertiary",fontWeight:"heading.tertiary",lineHeight:"1.25"},ra,{width:"auto"}),h4:h({fontSize:"heading.callout",fontWeight:"heading.callout",lineHeight:"1.15"},ra,{width:"auto"}),fallback:h({fontSize:"1",fontWeight:"regular",lineHeight:"1.15"},ra,{width:"auto"})},ca={baseStyle:{a:la},variants:{h1:na.h1,h2:na.h2,h3:na.h3,h4:na.h4,h5:na.fallback,h6:na.fallback,primary:na.h1,secondary:na.h2,tertiary:na.h3,callout:na.h4},defaultProps:{variant:"secondary"}},ia={overflowX:"hidden",content:h({},Cl,{paddingRight:"inset.default",paddingLeft:"inset.default",display:"flex",flexFlow:{base:"column nowrap",md:"row wrap"},img:{flex:{base:"1 1 100%",md:"0 0 250px"},order:{md:"3"},height:"150px",minWidth:"0",objectFit:"cover",width:"100%"}}),bodyText:{paddingBottom:"inset.default",paddingTop:"inset.default",paddingRight:{md:"inset.default"},flex:{md:"1 1 50%"},order:{md:"2"}}},oa={marginBottom:"0",bg:"ui.black",color:"ui.white",flex:"1 1 100%",marginTop:"0",paddingBottom:"xxs",position:"relative",zIndex:"0",order:{md:"1"},_before:{bg:"ui.black",content:'""',height:"100%",left:"-2000px",position:"absolute",width:"4000px",zIndex:"-1"}},sa=function(e){return h({},ia,{heading:h({},oa,{bg:e,_before:h({},oa._before,{bg:e})})})},ha={baseStyle:{bg:"ui.gray.x-light-cool"},variants:{primary:{alignItems:"center",display:"flex",flexFlow:{base:"column nowrap",md:"row nowrap"},justifyContent:"center",minHeight:"350px",content:{bg:"ui.black",color:"ui.white",flex:{base:"0 0 100%",md:"0 0 60%"},maxWidth:{md:"960px"},paddingTop:"inset.extrawide",paddingBottom:"inset.extrawide",paddingRight:"inset.wide",paddingLeft:"inset.wide",a:{color:"inherit",display:"inline-block"},heading:{marginBottom:"0"},bodyText:{marginBottom:"0"}}},secondary:h({},ia,{heading:h({},oa)}),secondaryBooksAndMore:sa("section.books-and-more.primary"),secondaryLocations:sa("section.locations.primary"),secondaryResearch:sa("section.research.primary"),secondaryWhatsOn:sa("section.whats-on.primary"),tertiary:{bg:"ui.gray.xdark",content:h({},Cl,{color:"ui.white",display:"flex",flexFlow:"column nowrap",padding:"inset.default",p:{marginBottom:"0",marginTop:"s"}}),heading:{marginBottom:"0",_lastChild:{marginBottom:"0"}},p:{marginBottom:"0"}},campaign:{alignItems:"center",display:"flex",justifyContent:"center",marginBottom:["0","0","xxl"],minHeight:"300px",overflow:"visible",padding:{base:"inset.wide",md:"0"},position:"relative",content:{alignItems:"center",bg:"ui.black",color:"ui.white",display:"flex",flexFlow:{base:"column nowrap",md:"row nowrap"},minHeight:"320px",flex:{md:"0 0 90%"},maxWidth:{md:"1280px"},position:{md:"relative"},top:{md:"xxl"}},a:{color:"inherit",display:"inline-block"},img:{flex:{base:"1 1 100%",md:"0 0 50%"},minWidth:"0",objectFit:"cover",width:"100%",height:{md:"320px"}},interior:{flex:{base:"0 0 100%",md:"0 0 50%"},padding:"inset.wide",maxWidth:{md:"960px"}}},fiftyFifty:{content:h({},Cl,{alignItems:"center",display:"flex",flexFlow:{base:"column nowrap",lg:"row nowrap"},paddingBottom:"s",paddingRight:"s",paddingLeft:"s",padding:{lg:"unset"}}),img:{marginBottom:{base:"s",lg:"unset"},marginRight:{lg:"s"},maxWidth:{base:"fit-content",lg:"50%"}}}}},da={display:"inline-block",fill:"currentColor",width:"auto",height:"100%"},va={none:{},left:{marginRight:"xxs"},right:{marginLeft:"xxs"}},ma={rotate180:{transform:"rotate(180deg)"},rotate270:{transform:"rotate(270deg)"},rotate0:{transform:"rotate(0deg)"},rotate90:{transform:"rotate(90deg)"}},ua={xxxlarge:{height:"var(--nypl-space-xxl)",width:"var(--nypl-space-xxl)"},xxlarge:{height:"var(--nypl-space-xl)",width:"var(--nypl-space-xl)"},xlarge:{height:"var(--nypl-space-l)",width:"var(--nypl-space-l)"},large:{height:"var(--nypl-space-m)",width:"var(--nypl-space-m)"},default:{width:"100%"},medium:{height:"1.125rem",width:"1.125rem"},small:{height:"0.875rem",width:"0.875rem"}},pa={baseStyle:function(e){var t=h({},da,va[e.align],{fill:e.color},ma[e.iconRotation],ua[e.size]);return h({},t,{svg:h({},t)})},variants:{default:{},breadcrumbs:{fill:"var(--nypl-colors-ui-white)",display:{md:"none"}}}},fa={baseStyle:function(e){var t=e.isInlined;return h({},Ll,{flex:t?"1":null,whiteSpace:t?"nowrap":null})}},ga=function(e,t){return void 0===e&&(e=!1),void 0===t&&(t=!1),{margin:t?"0":"unset",listStyle:t?"none":null,marginInlineStart:"unset",paddingLeft:t?"0":"l",padding:t?"0":null,display:e?"flex":null,li:{marginRight:e?"xs":null,listStyleType:e?"none":null,_notFirst:{marginTop:e?null:"xxs"}}}},ba=function(e){return void 0===e&&(e=!1),h({},Pl,{listStyle:"none",li:{_before:{color:"ui.gray.medium",content:e?"unset":'"\\2022"',display:"inline-block",fontWeight:"bold",fontSize:"2",lineHeight:"0.9",marginLeft:"-1rem",width:"1rem"}}})},za={borderBottom:"1px solid",borderColor:"ui.gray.light-cool",paddingLeft:"0",h2:{borderTop:"3px solid",borderColor:"section.research.primary",margin:"0",padding:"var(--nypl-space-xs) 0 0"}},ya=h({},za,{dl:{display:"grid",gridTemplateColumns:{base:"100%",md:"max(250px) 1fr"},gridTemplateRows:"1fr",margin:"var(--nypl-space-xs) 0 0"},dt:{borderTop:"1px solid",borderColor:"ui.gray.light-cool",fontWeight:"label.default",paddingBottom:{base:"0",md:"s"},paddingTop:"s",paddingRight:{md:"table.column"}},dd:{margin:"0",paddingBottom:"s",borderTop:{base:"none",md:"1px solid"},borderColor:{md:"ui.gray.light-cool"},paddingTop:{md:"s"}}}),xa={baseStyle:function(e){return ga(e.inline,e.noStyling)},variants:{ul:function(e){return ba(e.noStyling)},ol:Pl,dl:ya}},wa={display:"inline-block",height:"auto",width:"100%"},Ea={default:{maxWidth:"100%"},xxsmall:{maxWidth:"64px"},xsmall:{maxWidth:"96px"},small:{maxWidth:"165px"},medium:{maxWidth:"225px"},large:{maxWidth:"360px"},xlarge:{maxWidth:"360px"},xxlarge:{height:"var(--nypl-space-xl)",width:"var(--nypl-space-xl)"},xxxlarge:{height:"var(--nypl-space-xxl)",width:"var(--nypl-space-xxl)"}},Oa={baseStyle:function(e){var t=h({},wa,Ea[e.size]);return h({},t,{svg:h({},t)})}},Ma={Notification:{parts:["container","dismissibleButton","icon"],baseStyle:function(e){var t=e.dismissible,l=e.isCentered,a=e.noMargin,r=e.notificationType,n="ui.status.primary";return"announcement"!==r&&"warning"!==r||(n="ui.gray.x-light-cool"),{bg:n,display:"flex",fontSize:"text.caption",position:"relative",textAlign:l?"center":null,borderRadius:a?"0":"4px",margin:a?"0":"s",container:{margin:"auto",maxWidth:"var(--nypl-breakpoint-xl)",padding:"inset.default",paddingRight:t?"l":null,paddingLeft:l&&t?"l":null,width:"100%"},dismissibleButton:{border:"none",bgColor:"inherit",alignItems:"center",color:"ui.black",display:"flex",height:"32px",width:"32px",minWidth:"0",position:"absolute",right:"0",top:"0",svg:{marginTop:"0"},_hover:{bg:"inherit"}},icon:{flexShrink:"0",marginRight:"s"}}}},NotificationContent:{parts:["content"],baseStyle:function(e){return{display:"flex",justifyContent:"center",content:{color:"warning"===e.notificationType?"brand.primary":"currentColor",marginTop:e.icon?"xxxs":"0",paddingLeft:e.alignText?"calc(var(--nypl-space-m) + var(--nypl-space-s))":null,width:"100%",a:{color:"ui.black",_hover:{color:"ui.black"}}}}}},NotificationHeading:{parts:["heading"],baseStyle:function(e){var t=e.notificationType,l="ui.black";return"announcement"===t?l="section.research.secondary":"warning"===t&&(l="brand.primary"),{display:"flex",marginBottom:"xxs",justifyContent:e.isCentered?"center":null,heading:{marginBottom:"0",marginTop:e.icon?"xxxs":"0",color:l}}}}},Ca={parts:["control","helperErrorText","label"],baseStyle:{control:{verticalAlign:"middle",transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"round",borderColor:"ui.black",color:"ui.white",outline:"none",_checked:{bg:"ui.white",borderColor:"ui.focus",color:"ui.white",_disabled:{borderColor:"ui.disabled.primary",bg:"ui.white",_before:{bg:"ui.disabled.primary"}},_invalid:{_hover:{borderColor:"ui.error.primary"},_before:{borderColor:"ui.error.primary",bg:"ui.error.primary"}},_hover:{bg:"ui.white"},_before:{content:'""',display:"block",w:"3",h:"3",borderRadius:"round",bg:"ui.focus"}},_disabled:{borderColor:"ui.disabled.primary",bg:"ui.white"},_focus:h({},kl(),{boxShadow:"outline",borderColor:"ui.focus"}),_invalid:{borderColor:"ui.error.primary"}},label:jl,helperErrorText:Tl},sizes:{md:{control:h({},Sl),label:{fontSize:"label.default"}}},defaultProps:{size:"md"}},ka={parts:["helperErrorText","stack"],baseStyle:function(e){var t=e.isFullWidth;return h({},Vl(void 0!==t&&t))}},ja={borderRadius:"2px",boxSizing:"border-box",marginBottom:"xs"},Sa={border:"1px solid",borderColor:"ui.gray.light-cool",padding:"s"},Ta={landscape:"50%",portrait:"133%",square:"100%"},Va={landscape:"110px",portrait:"294px",square:"220px"},La={parts:["section","image","container","heading","content","button"],baseStyle:function(e){var t=e.imageAspectRatio,l=e.isBordered?h({},Sa):{};return h({margin:"auto",width:"100%"},l,{section:{marginBottom:"s",_last:{marginBottom:"0"}},image:h({},ja,{boxSizing:"border-box",flexShrink:"0",height:"0",overflow:"hidden",paddingBottom:Ta[t],position:"relative",width:"100%"}),container:{marginTop:"s",width:"100%"},heading:h({},ja,{height:"32px"}),content:h({},ja,{height:"20px"}),button:{height:"32px",margin:"auto",maxWidth:"160px",width:"100%"}})},variants:{row:function(e){return{alignItems:"flex-start",display:{md:"flex"},image:{overflow:{md:"visible"},paddingBottom:{md:"0"},position:{md:"relative"},width:{md:"220px"},height:{md:Va[e.imageAspectRatio]}},container:{marginLeft:e.showImage?{md:"m"}:null,marginTop:{md:"0"}},button:{margin:{md:"0"}}}}}},_a={baseStyle:{borderRadius:"2px",background:"ui.gray.light-cool",animation:function(){return s.keyframes({from:{opacity:.9},"50%":{opacity:.7},to:{opacity:.9}})}()+" 1000ms cubic-bezier(0.25, -0.5, 1, 0) infinite"}},Ia={marginTop:"xs",marginBottom:"xs",marginRight:"s",marginLeft:"0"},Pa={parts:["container","leftValue","rightValue","textInput","sliderContainer","filledTrack","track","thumb"],baseStyle:function(e){var t=e.isDisabled,l=e.isInvalid,a=e.showBoxes,r=e.showValues,n="ui.link.primary";return l?n="ui.error.primary":t&&(n="ui.disabled.primary"),{container:{display:"flex",alignItems:"center"},leftValue:h({},Ia,{color:t?"ui.gray.dark":null}),rightValue:h({},Ia,{marginLeft:"s",marginRight:a?"0":"s",color:t?"ui.gray.dark":null}),textInput:{minWidth:"65px",color:l?"ui.error.primary":"ui.black"},sliderContainer:{marginLeft:r?null:"xs",marginRight:a||r?null:"xs"},filledTrack:{bgColor:n},track:{bgColor:"ui.gray.light-cool",_disabled:{bgColor:"ui.disabled.primary"}},thumb:{border:"1px solid",borderColor:n,boxShadow:"none",_active:{transform:"translateY(-50%) scale(1.0)"},_disabled:{bgColor:"ui.disabled.secondary",borderColor:"ui.disabled.primary"}}}}},Ba=function(e,t){return void 0===e&&(e=!1),void 0===t&&(t=""),{border:e?void 0:"none",borderBottom:e?void 0:"0px",color:t||"ui.black",fontSize:"0",fontWeight:"bold",letterSpacing:"0",paddingLeft:0,paddingRight:"m",textTransform:"capitalize",_first:{paddingLeft:e?"m":null},_last:{paddingRight:e?"m":"0"}}},Ra=function(e,t){return void 0===e&&(e=!1),void 0===t&&(t=!1),{border:e?void 0:"none",borderBottom:e?void 0:"0px",letterSpacing:"0",paddingLeft:0,paddingRight:"m",_first:{paddingLeft:e&&!t?"m":null},_last:{paddingRight:e?"m":"0"}}},Ha={baseStyle:function(e){var t=e.showRowDividers,l=e.useRowHeaders;return{tbody:{th:{color:"var(--nypl-colors-ui-black)"}},th:Ba(t,e.columnHeadersTextColor),td:Ra(t,l),caption:{captionSide:"top",color:"ui.black",fontSize:"heading.secondary",fontWeight:"heading.secondary",marginBottom:"s",marginLeft:"0",marginRight:"0",marginTop:"0",padding:"0",textAlign:"left"}}}},Fa={parts:["image","imageFigure","imageWrapper"],baseStyle:function(e){var t=e.hasFigureImage,l=e.imageAspectRatio,a=e.imagePosition,r={},n=h({float:["none","none","center"!==a?a:void 0],marginLeft:["auto","auto","center"===a?null:"left"===a?"0":"l"],marginRight:["auto","auto","center"===a?null:"left"===a?"m":"0"],width:"center"!==a?"100%":void 0},r);return"center"===a&&(r.maxWidth="100%"),h({imageFigure:h({},n,{marginBottom:"m"}),imageWrapper:h({},n,{marginBottom:t?null:"m"}),image:h({float:["none","none","center"!==a?a:void 0],marginLeft:["auto","auto","right"===a&&"original"===l?"m":void 0],marginRight:["auto","auto","left"===a&&"original"===l?"m":void 0],marginBottom:t&&"original"!==l?null:"m"},r),".structuredcontent-body > div":{marginTop:"var(--nypl-space-l)",marginInlineEnd:"var(--nypl-space-0)",marginBottom:"var(--nypl-space-0)",marginInlineStart:"var(--nypl-space-0)"},a:la,ul:h({},ga(),{listStyle:"none"},ba()),ol:h({},ga(),Pl),section:za,dl:ya.dl,dt:ya.dt,dd:ya.dd,table:{width:"100%",th:h({textAlign:"start",paddingInlineStart:"var(--nypl-space-6)",paddingInlineEnd:"var(--nypl-space-6)",paddingTop:"var(--nypl-space-3)",paddingBottom:"var(--nypl-space-3)",lineHeight:"var(--nypl-lineHeights-4)"},Ba()),td:h({textAlign:"start",paddingInlineStart:"var(--nypl-space-6)",paddingInlineEnd:"var(--nypl-space-6)",paddingTop:"var(--nypl-space-4)",paddingBottom:"var(--nypl-space-4)",lineHeight:"var(--nypl-lineHeights-5)"},Ra())}},na)}},Na={marginY:0,marginX:"auto",maxWidth:"1280px",paddingTop:0,paddingBottom:0,paddingRight:"s",paddingLeft:"s",width:"100%"},Da={Template:{baseStyle:{boxSizing:"border-box",color:"ui.black",overflowX:"hidden","*":{boxSizing:"inherit"},"*::after":{boxSizing:"inherit"},"*::before":{boxSizing:"inherit"}},sizes:{},defaultProps:{}},TemplateHeader:{baseStyle:{marginBottom:"page.hstack"}},TemplateBreakout:{baseStyle:h({},{marginLeft:"calc(-50vw + 50%)",marginRight:"calc(-50vw + 50%)"},{width:"100vw",marginBottom:"page.hstack"})},TemplateContent:{baseStyle:h({},Na,{display:"block",marginBottom:"page.hstack"}),variants:{sidebar:{display:"flex",flexFlow:{base:"column nowrap",md:"row wrap"}}}},TemplateContentTop:{baseStyle:{flex:"1 0 100%",marginBottom:"page.hstack"}},TemplateContentPrimary:{baseStyle:{flex:"1 1",marginBottom:"page.hstack"},variants:{left:{display:"flex",flexFlow:"column nowrap",order:"1",marginRight:{md:0},minWidth:{md:0}}}},TemplateContentSidebar:{baseStyle:{flex:"0 0 255px",order:{md:"page.vstack"},marginBottom:"page.hstack"},variants:{left:{marginRight:{base:0,md:"page.vstack"}},right:{marginLeft:{base:0,md:"page.vstack"}}}}},Aa={bgColor:"ui.white",border:"1px solid",borderColor:"ui.gray.medium",borderRadius:"sm",fontSize:"text.caption",py:"inset.narrow",px:"inset.default",_hover:{borderColor:"ui.gray.dark"},_disabled:h({},_l,{_placeholder:{color:"ui.gray.medium"}}),_active:Il,_focus:Il,_placeholder:{color:"ui.gray.dark",fontStyle:"italic",lineHeight:"21px"},_invalid:{border:"1px solid",borderColor:"ui.error.primary",boxShadow:"none"}},Wa={parts:["input","textarea"],baseStyle:{input:Aa,textarea:h({},Aa,{lineheight:"1.5",minHeight:"xxl"})},variants:{searchBar:{flex:"1 1 80%",input:{borderRightRadius:"none"}},searchBarSelect:{flex:"1 1 80%",input:{borderRadius:"none",borderTopLeftRadius:{base:"sm",md:"none"},borderTopRightRadius:{base:"sm",md:"none"}}}}},qa=o.cssVar("switch-track-width"),Ya=o.cssVar("switch-track-height"),Ga={baseStyle:function(e){return{alignItems:"start",opacity:.4,track:{border:"1px solid",borderColor:"ui.gray.medium",p:"1px",_checked:{bg:"ui.link.primary",borderColor:"ui.link.primary",opacity:1},_invalid:{bg:"inherit",borderColor:"ui.error.primary","> span":{bg:"ui.error.primary"}},_disabled:{bg:"ui.gray.medium",borderColor:"ui.gray.medium",_checked:{opacity:.4}},_focus:{outline:"2px solid",outlineColor:"ui.focus",outlineOffset:"2px",zIndex:"9999"}},label:{fontSize:"label.default",marginLeft:"xs",marginTop:"lg"===e.size?"xxxs":null,_disabled:{color:"ui.gray.dark",fontStyle:"italic"}},thumb:{_disabled:{bg:"ui.error.primary"}}}},sizes:{sm:{container:(Gt={},Gt[qa.variable]="2.25rem",Gt[Ya.variable]="1rem",Gt)},lg:{container:(Ut={},Ut[qa.variable]="3.25rem",Ut[Ya.variable]="1.5rem",Ut)}},defaultProps:{colorScheme:"white"}},Ua=r.extendTheme(h({styles:{global:Bl},breakpoints:Rl,colors:Fl,radii:{checkbox:"3px",pill:"20px",round:"100%"},shadows:{outline:"none"},space:al},Nl,{components:h({Accordion:{parts:["container","button","panel"],baseStyle:{container:{border:"none",width:"100%"},button:{borderWidth:"1px",fontWeight:"medium"},panel:{padding:"s",borderLeftWidth:"1px",borderRightWidth:"1px",borderBottomWidth:"1px"}}},Breadcrumb:{baseStyle:{bg:"ui.black",color:"ui.white",fontSize:"breadcrumbs.default",fontWeight:"breadcrumbs.default",paddingBottom:"xs",paddingTop:"xs",ol:{alignItems:{base:"center",md:"unset"},display:{base:"flex",md:"block"},margin:"auto",maxWidth:"1280px",paddingLeft:"s",paddingRight:"s"},a:{_hover:{color:"ui.gray.light-cool"}},"li:last-child":{fontWeight:{base:"breadcrumbs.default",md:"breadcrumbs.lastChild"},".chakra-breadcrumb__link":{_hover:{cursor:"default",textDecoration:"none"}},".icon":{display:"none"}},"li:not(:last-child)":{display:{base:"none",md:"inline-block"},a:{marginRight:{base:"xs",md:"0"}},".icon":{display:{base:"inline",md:"none"}},"span:not(.breadcrumb-label)":{marginInlineEnd:"xxs",marginInlineStart:"xxs"}},"li:nth-last-of-type(2)":{display:"inline-block",span:{display:{base:"none",md:"inline"}}}},variants:{blogs:{bg:"section.blogs.secondary",color:"ui.black",a:{_hover:{color:"ui.gray.xdark"}},svg:{fill:"ui.black"}},booksAndMore:{bg:"section.books-and-more.secondary"},education:{bg:"section.education.secondary"},locations:{bg:"section.locations.primary"},research:{bg:"section.research.secondary"},whatsOn:{bg:"section.whats-on.secondary"}}},Button:Al,ButtonGroup:{baseStyle:function(e){var t=e.buttonWidth;return{width:"default"===t?"fit-content":"100%",button:{flexGrow:"default"===t?void 0:"1"}}}}},ql,{Checkbox:Yl,CheckboxGroup:Gl,ComponentWrapper:{parts:["helperErrorText"],baseStyle:function(e){return{helperErrorText:{marginTop:e.hasChildren?"xs":"0"}}}},CustomImage:Ql,CustomImageWrapper:Zl,CustomSelect:ea,DatePicker:{parts:["subLabels"],baseStyle:{subLabels:{label:{fontSize:"label.secondary",marginBottom:"0"}}}},Fieldset:ta,Heading:ca,HelperErrorText:{baseStyle:function(e){return{marginTop:"xxs",marginBottom:"0",fontSize:"helper.default",color:e.isInvalid?"ui.error.primary":"ui.black"}}},Hero:ha,HorizontalRule:{baseStyle:function(e){var t=e.align;return{bg:"ui.gray.light-cool",border:"0",height:"2px",marginBottom:"s",marginTop:"s",marginLeft:"left"===t?0:"auto",marginRight:"right"===t?0:"auto"}}},Icon:pa,Label:fa,Link:aa,List:xa,Logo:Oa},Ma,{Pagination:{parts:["link"],baseStyle:{alignItems:"stretch",display:"flex",width:"100%",link:{lineHeight:"1.15",textDecoration:"none"},ul:{marginBottom:"0"}}},ProgressIndicator:{parts:["circular","circularLabel","linear","linearContainer","linearPercentage"],baseStyle:function(e){var t=e.darkMode,l=e.size;return{color:t?"ui.white":"ui.black",circular:{svg:{height:"default"===l?"48px":"24px",width:"default"===l?"48px":"24px",display:"block",circle:{_first:{stroke:t?"ui.gray.dark":"ui.gray.light-cool"},_last:{stroke:t?"ui.white":"ui.link.primary"}}}},circularContainer:{alignItems:"center",display:"flex",flexDirection:"column",width:"fit-content"},linear:{"> div":{bg:t?"ui.white":"ui.link.primary"},flex:25,bg:t?"ui.gray.dark":"ui.gray.light-cool",height:{base:"4px",md:"default"===l?"8px":"4px"}},linearContainer:{display:"flex",alignItems:"center"},linearPercentage:{padding:"0 var(--nypl-space-xs)",flex:1}}}},Radio:Ca,RadioGroup:ka,SearchBar:{parts:["select"],baseStyle:{display:"flex",marginBottom:{base:"xs",md:"auto"},flexFlow:{base:"column nowrap",md:"row nowrap"},select:{marginBottom:"0"}}},Skeleton:_a,SkeletonLoader:La,SkipNavigation:{baseStyle:{a:{backgroundColor:"ui.white",height:"1px",left:"-10000px",overflow:"hidden",position:"absolute",top:"auto",width:"1px",_focus:{border:"1px solid var(—nypl-colors-ui-gray-dark)",height:"auto",left:"2rem",padding:"var(--nypl-space-inset-extranarrow) var(--nypl-space-inset-narrow)",top:"3rem",width:"auto"}}}},CustomSlider:Pa,StatusBadge:{baseStyle:{borderRadius:"base",color:"ui.black",display:"block",fontSize:"-1",fontStyle:"italic",py:"inset.extranarrow",px:"inset.narrow",textAlign:"center",width:"fit-content"},variants:{low:{bg:"ui.gray.light-cool"},medium:{bg:"ui.status.primary"},high:{bg:"ui.status.secondary"}}},StructuredContent:Fa,Tabs:{parts:["buttonArrows","tablistWrapper","carouselParent"],baseStyle:{tablist:{borderColor:"ui.black"},tab:{color:"black !important",paddingInlineStart:"s",paddingLeft:"s",background:"transparent",border:"0",borderBottom:"1px solid",borderColor:"red",height:{base:"44px"},marginRight:{base:"0",md:"1px"},paddingRight:{base:"s",md:"l",lg:"xl"},whiteSpace:"nowrap",_hover:{bg:"ui.gray.x-light-cool",borderTopRadius:"sm",borderBottom:"1px solid",borderBottomColor:"ui.black"},_selected:{fontWeight:"bold",bg:"ui.gray.light-cool",border:"0",borderTopRadius:"sm",borderBottom:"3px solid",borderBottomColor:"ui.black",paddingBottom:"5px"},_focus:{boxShadow:"0"}},buttonArrows:{border:"0",borderRadius:"0",display:{md:"none"},height:"44px",width:"44px !important",top:"8px",marginLeft:"4px",marginRight:"4px",pos:"absolute",transition:"0.6s ease",zIndex:"9999"},tablistWrapper:{display:"flex",alignItems:"center",borderBottom:{base:"0",md:"1px solid black"},height:{base:"58px",md:"auto"},margin:"0",overflowX:{base:"auto",md:"visible"},paddingBottom:{base:"5px",md:"0"},paddingLeft:{base:"4px",md:"0"},paddingRight:{base:"4px",md:"0"},paddingTop:{base:"4px",md:"0"},position:"relative"},tabpanels:{paddingTop:"2px"},carouselParent:{position:{base:"absolute",md:"relative"},left:{base:"50px",md:"auto"},paddingBottom:{base:"5px",md:"0"},paddingLeft:{base:"4px",md:"0"},paddingRight:"0",paddingTop:{base:"4px",md:"0"},right:{base:"52px",md:"auto"},top:{base:"4px",md:"0"},overflowX:{base:"hidden",md:"visible"}}}},CustomTable:Ha},Da,{Text:{baseStyle:function(e){var t=e.variant;return{fontStyle:e.isItalic?"italic":null,fontWeight:e.isBold?"tag"===t||"mini"===t?"medium":"bold":null,marginBottom:e.noSpace?"0 !important":null}},variants:{default:{},caption:{fontSize:"text.caption"},tag:{fontSize:"text.tag"},mini:{fontSize:"text.mini"}}},TextInput:Wa},{Toggle:{parts:["helperErrorText"],baseStyle:function(e){return{label:{alignItems:"start",display:"flex",width:"fit-content"},helperErrorText:{marginLeft:"default"===e.size?"xxl":"xl",fontStyle:e.isDisabled?"italic":null}}},defaultProps:{size:"lg"}},Switch:Ga},{VideoPlayer:{baseStyle:{inside:{height:"0",overflow:"hidden",paddingBottom:"56.25%",position:"relative"},iframe:{height:"100%",left:"0",margin:"auto",position:"absolute",top:"0",width:"100%"},helperText:{marginBottom:"0",marginTop:"xs"}},variants:{fourByThree:{inside:{paddingBottom:"75%"}},invalid:{backgroundColor:"ui.gray.light-cool",height:"auto",padding:"s"},square:{inside:{paddingBottom:"100%"}}}}}),config:{cssVarPrefix:"nypl"}})),Xa=["backgroundColor","backgroundImageSrc","foregroundColor","heading","heroType","imageProps","locationDetails","subHeaderText"],Ja=["secondary","secondaryBooksAndMore","secondaryLocations","secondaryResearch","secondaryWhatsOn"],Ka=r.chakra((function(e){var t=e.backgroundColor,l=e.backgroundImageSrc,a=e.foregroundColor,c=e.heading,i=e.heroType,o=e.imageProps,s=void 0===o?{alt:"",src:""}:o,h=e.locationDetails,v=e.subHeaderText,m=d(e,Xa),u=r.useMultiStyleConfig("Hero",{variant:i}),p=c&&n.cloneElement(c,{__css:u.heading}),f={},g={};s.src&&!s.alt&&console.warn('NYPL Reservoir Hero: The "imageProps.src" prop was passed but the "imageProps.alt" props was not. This will make the rendered image inaccessible.'),"primary"===i?(l||console.warn("NYPL Reservoir Hero: It is recommended to use the `backgroundImageSrc` prop for the `'primary'` `heroType` variant."),s.alt&&s.src&&console.warn("NYPL Reservoir Hero: The `imageProps.src` and `imageProps.alt` props have been passed, but the `'primary'` `heroType` variant will not use it.")):h&&console.warn("NYPL Reservoir Hero: The `locationDetails` prop should only be used with the `'primary'` `heroType` variant."),Ja.includes(i)&&l&&console.warn("NYPL Reservoir Hero: The `backgroundImageSrc` prop has been passed, but the `'secondary'` `heroType` variant will not use it."),"tertiary"===i&&(l||s.src)&&console.warn("NYPL Reservoir Hero: The `'tertiary'` `heroType` variant hero will not use any of the image props."),"campaign"!==i||l&&s.src||console.warn("NYPL Reservoir Hero: It is recommended to use both the `backgroundImageSrc` and `imageProps.src` props for the `'campaign'` `heroType` variant."),"fiftyFifty"===i&&l&&console.warn("NYPL Reservoir Hero: The `backgroundImageSrc` prop has been passed, but the `'fiftyFifty'` `heroType` variant hero will not use it."),"primary"===i?f=l?{backgroundImage:"url("+l+")"}:{}:"campaign"===i?f=l?{backgroundImage:"url("+l+")"}:{backgroundColor:t}:"tertiary"!==i&&"fiftyFifty"!==i||(f={backgroundColor:t}),Ja.includes(i)?(a||t)&&console.warn("NYPL Reservoir Hero: The `foregroundColor` and/or `backgroundColor` props have been passed, but the `'secondary'` `heroType` variant will not use them."):g={color:a,backgroundColor:t};var b="campaign"===i?n.createElement(n.Fragment,null,n.createElement(St,{alt:s.alt,src:s.src}),n.createElement(r.Box,{__css:u.interior},p,v)):n.createElement(n.Fragment,null,"primary"!==i&&"tertiary"!==i&&n.createElement(St,{alt:s.alt,src:s.src}),p,"tertiary"===i&&v?n.createElement("p",null,v):n.createElement(r.Box,{__css:u.bodyText},v));return n.createElement(r.Box,Object.assign({"data-testid":"hero","data-responsive-background-image":!0,style:f,__css:u},m),n.createElement(r.Box,{"data-testid":"hero-content",style:g,__css:u.content},b))}),{shouldForwardProp:function(){return!0}}),Qa=["align","className"],Za=r.chakra((function(e){var t=e.align,l=e.className,a=d(e,Qa),c=h({},r.useStyleConfig("HorizontalRule",{align:t}),{height:"2px",width:"100%"});return n.createElement(r.Box,Object.assign({as:"hr",className:l,__css:c},a))})),$a=["children","className","id","inline","listItems","noStyling","title","type"],er=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,c=e.inline,i=void 0!==c&&c,o=e.listItems,s=e.noStyling,h=void 0!==s&&s,v=e.title,m=e.type,u=void 0===m?"ul":m,p=d(e,$a),f=r.useStyleConfig("List",{inline:i,noStyling:h,variant:u}),g=null;if(t&&o&&(null==o?void 0:o.length)>0)return console.warn("NYPL Reservoir List: Pass in either `<li>`, `<dt>`, or `<dd>` children or use the `listItems` data prop. Do not use both."),null;if(!t&&!o)return console.warn("NYPL Reservoir List: Pass in either `<li>` children or pass data in the `listItems` prop, not both."),null;var b,z=function(e){return t||(o?"ol"===e||"ul"===e?o.map((function(e,t){return n.createElement("li",{key:t},e)})):"dl"===e?o.map((function(e,t){return[n.createElement("dt",{key:t+"-term"},e.term),n.createElement("dd",{key:t+"-des"},e.description)]})):null:null)};return"ol"===u||"ul"===u?(b=u,n.Children.map(t,(function(e){var t;e&&"li"!==(null==e?void 0:e.type)&&"li"!==(null==e||null==(t=e.props)?void 0:t.mdxType)&&console.warn("NYPL Reservoir List: Direct children of `List` ("+b+") must be `<li>`s.")})),g=n.createElement(r.Box,Object.assign({as:u,id:a,className:l,__css:f},p),z(u))):"dl"===u&&(n.Children.map(t,(function(e){"dt"!==e.type&&"dd"!==e.type&&e.type!==n.Fragment&&"dt"!==e.props.mdxType&&"dd"!==e.props.mdxType&&e.props.mdxType!==n.Fragment&&console.warn("NYPL Reservoir List: Direct children of `List` (description) must be `<dt>`s and `<dd>`s.")})),g=n.createElement(r.Box,Object.assign({as:"section",id:a,className:l,__css:f},p),v&&n.createElement(Mt,{id:a+"-heading"},v),n.createElement("dl",null,z(u)))),g})),tr=["title","titleId"];function lr(){return(lr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ar,rr=["title","titleId"];function nr(){return(nr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var cr,ir=["title","titleId"];function or(){return(or=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var sr,hr,dr,vr,mr,ur,pr,fr,gr,br,zr,yr,xr,wr=["title","titleId"];function Er(){return(Er=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Or,Mr=["title","titleId"];function Cr(){return(Cr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var kr,jr,Sr=["title","titleId"];function Tr(){return(Tr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Vr,Lr=["title","titleId"];function _r(){return(_r=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ir,Pr=["title","titleId"];function Br(){return(Br=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Rr,Hr=["title","titleId"];function Fr(){return(Fr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Nr,Dr=["title","titleId"];function Ar(){return(Ar=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Wr,qr,Yr,Gr,Ur,Xr,Jr,Kr=["title","titleId"];function Qr(){return(Qr=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Zr,$r,en=["title","titleId"];function tn(){return(tn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ln,an,rn,nn=["title","titleId"];function cn(){return(cn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var on,sn,hn,dn=["title","titleId"];function vn(){return(vn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var mn,un,pn=["title","titleId"];function fn(){return(fn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var gn,bn,zn=["title","titleId"];function yn(){return(yn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xn,wn,En=["title","titleId"];function On(){return(On=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Mn,Cn,kn=["title","titleId"];function jn(){return(jn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Sn,Tn=["title","titleId"];function Vn(){return(Vn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ln,_n=["title","titleId"];function In(){return(In=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Pn,Bn,Rn,Hn,Fn,Nn=["title","titleId"];function Dn(){return(Dn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var An,Wn,qn=["title","titleId"];function Yn(){return(Yn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Gn,Un,Xn,Jn,Kn,Qn=["title","titleId"];function Zn(){return(Zn=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var $n,ec,tc,lc,ac,rc=["title","titleId"];function nc(){return(nc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var cc,ic=["title","titleId"];function oc(){return(oc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var sc,hc,dc,vc,mc,uc=["title","titleId"];function pc(){return(pc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var fc,gc,bc,zc,yc,xc=["title","titleId"];function wc(){return(wc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ec,Oc,Mc,Cc,kc,jc=["title","titleId"];function Sc(){return(Sc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Tc,Vc,Lc,_c,Ic,Pc=["title","titleId"];function Bc(){return(Bc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Rc,Hc,Fc,Nc,Dc,Ac,Wc,qc=["title","titleId"];function Yc(){return(Yc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Gc,Uc,Xc,Jc,Kc,Qc=["title","titleId"];function Zc(){return(Zc=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var $c,ei,ti=["title","titleId"];function li(){return(li=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ai,ri,ni=["title","titleId"];function ci(){return(ci=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ii,oi,si=["title","titleId"];function hi(){return(hi=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var di,vi=["title","titleId"];function mi(){return(mi=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ui,pi=["title","titleId"];function fi(){return(fi=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var gi,bi,zi,yi,xi,wi,Ei,Oi,Mi,Ci,ki,ji,Si,Ti,Vi,Li,_i,Ii,Pi,Bi,Ri,Hi,Fi,Ni,Di,Ai,Wi,qi,Yi,Gi,Ui,Xi,Ji,Ki,Qi,Zi,$i,eo,to,lo,ao,ro,no,co,io,oo,so,ho,vo,mo,uo,po,fo,go,bo,zo=["title","titleId"];function yo(){return(yo=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xo,wo,Eo,Oo,Mo,Co,ko,jo,So,To,Vo,Lo,_o,Io,Po,Bo,Ro,Ho,Fo,No,Do,Ao,Wo,qo,Yo,Go,Uo,Xo,Jo,Ko,Qo,Zo,$o,es,ts,ls,as,rs,ns,cs,is,os,ss,hs,ds,vs,ms,us,ps,fs,gs,bs,zs,ys,xs,ws=["title","titleId"];function Es(){return(Es=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Os=["title","titleId"];function Ms(){return(Ms=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Cs={bplBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,tr);return n.createElement("svg",lr({viewBox:"0 0 328 120",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Xt||(Xt=n.createElement("path",{d:"M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.793 21.793 0 00-3.504-.857 26.033 26.033 0 00-9.896.857 22.683 22.683 0 00-6.023 3.272c-.433.31-1.281 1.032-1.839 1.528a37.42 37.42 0 00-3.353 3.46c-.026 0 .271-7.03.304-8.416h-47.732c-.104.227-6.666 24.573-7.274 26.683-.514-2.001-7.572-25.973-7.748-26.683h-25.154V0h-25.465v24.455c-.027.02-27.162 0-27.324 0-.047.048-12.675 10.12-13.121 10.465 0-12.655.003-34.704.003-34.885C79.384.035 70.97 0 62.612 0l.003 14.073a17.495 17.495 0 00-5.506-7.93c-.265-.22-.914-.769-1.43-1.115-3.792-2.545-5.283-3.012-9.714-4.107-1.293-.25-2.599-.428-3.912-.532-.714-.067-3.53-.218-4.05-.233a511.856 511.856 0 00-8.722-.078H0c0 25.333.016 50.656.047 75.97.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.593-.06a54.641 54.641 0 008.575-.913 22.543 22.543 0 009.106-4.218c5.638-4.787 6.307-8.214 6.529-8.579l-.012 13.608h24.978V61.406c.345-.284 2.788-2.312 2.84-2.312.998 1.287 12.898 15.798 13.608 16.65h49.625V29.749c.026 0 19.356 42.224 19.62 42.873-.63 1.275-18.374 38.247-18.374 38.273h27.074c.365-.877 35.612-80.465 35.612-80.517.026 0-.02 18.05-.02 45.473h25.574v-22.78c0-5.166-.943-9.81 5.232-9.633 2.316.067 3.614 2.61 3.711 3.975v28.438h25.518zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.163 5.163 0 013.279 4.881c0 2.353-.525 3.341-1.244 4.104zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.161 5.161 0 013.279 4.88c0 2.353-.525 3.341-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.146 28.146 0 00-2.657-1.48c-.37-.184-1.21-.522-1.237-.548a21.838 21.838 0 008.863-6.267 12.437 12.437 0 002.481-4.32c0 6.93-.002 21.315-.027 21.315zm65.599 21.213c-.026 0-20.484-26.864-20.51-26.864.717-.568 20.484-15.963 20.51-15.963v42.827z"})),Jt||(Jt=n.createElement("path",{d:"M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"})),Kt||(Kt=n.createElement("path",{d:"M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"})))},bplWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,rr);return n.createElement("svg",nr({viewBox:"0 0 328 120",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Qt||(Qt=n.createElement("path",{d:"M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.793 21.793 0 00-3.504-.857 26.033 26.033 0 00-9.896.857 22.683 22.683 0 00-6.023 3.272c-.433.31-1.281 1.032-1.839 1.528a37.42 37.42 0 00-3.353 3.46c-.026 0 .271-7.03.304-8.416h-47.732c-.104.227-6.666 24.573-7.274 26.683-.514-2.001-7.572-25.973-7.748-26.683h-25.154V0h-25.465v24.455c-.027.02-27.162 0-27.324 0-.047.048-12.675 10.12-13.121 10.465 0-12.655.003-34.704.003-34.885C79.384.035 70.97 0 62.612 0l.003 14.073a17.495 17.495 0 00-5.506-7.93c-.265-.22-.914-.769-1.43-1.115-3.792-2.545-5.283-3.012-9.714-4.107-1.293-.25-2.599-.428-3.912-.532-.714-.067-3.53-.218-4.05-.233a511.856 511.856 0 00-8.722-.078H0c0 25.333.016 50.656.047 75.97.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.593-.06a54.641 54.641 0 008.575-.913 22.543 22.543 0 009.106-4.218c5.638-4.787 6.307-8.214 6.529-8.579l-.012 13.608h24.978V61.406c.345-.284 2.788-2.312 2.84-2.312.998 1.287 12.898 15.798 13.608 16.65h49.625V29.749c.026 0 19.356 42.224 19.62 42.873-.63 1.275-18.374 38.247-18.374 38.273h27.074c.365-.877 35.612-80.465 35.612-80.517.026 0-.02 18.05-.02 45.473h25.574v-22.78c0-5.166-.943-9.81 5.232-9.633 2.316.067 3.614 2.61 3.711 3.975v28.438h25.518zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.163 5.163 0 013.279 4.881c0 2.353-.525 3.341-1.244 4.104zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.161 5.161 0 013.279 4.88c0 2.353-.525 3.341-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.146 28.146 0 00-2.657-1.48c-.37-.184-1.21-.522-1.237-.548a21.838 21.838 0 008.863-6.267 12.437 12.437 0 002.481-4.32c0 6.93-.002 21.315-.027 21.315zm65.599 21.213c-.026 0-20.484-26.864-20.51-26.864.717-.568 20.484-15.963 20.51-15.963v42.827z"})),Zt||(Zt=n.createElement("path",{d:"M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"})),$t||($t=n.createElement("path",{d:"M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"})))},cleverColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ir);return n.createElement("svg",or({viewBox:"0 0 312 88",fill:"#436CF2",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ar||(ar=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 44.275C0 20.342 17.667.92 42.993.92c15.532 0 24.838 5.247 32.497 12.856l-11.534 13.47c-6.347-5.83-12.846-9.42-21.085-9.42-13.883 0-23.922 11.66-23.922 25.958 0 14.543 9.764 26.448 23.922 26.448 9.43 0 15.196-3.805 21.665-9.757L76.07 72.257c-8.483 9.174-17.911 14.88-33.809 14.88C18.003 87.138 0 68.208 0 44.276zM77.718 0H95.63v86.954H77.718V0zM128.828 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.514 24.884h-43.94c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.375-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.948 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.244 4.51zM193.638 86.8h-16.264l-24.838-64.31h18.949l14.127 42.772 14.25-42.772h18.614L193.638 86.8zM241.665 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.513 24.884h-43.939c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.374-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.949 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.245 4.51zM311.054 40.87c-11.9 0-19.193 7.27-19.193 22.52v23.595H273.95V23.104h17.911V35.96c3.662-8.806 9.551-14.544 20.139-14.053v18.931h-.946"})))},cleverWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,wr);return n.createElement("svg",Er({viewBox:"0 0 312 88",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,cr||(cr=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 44.275C0 20.342 17.667.92 42.993.92c15.532 0 24.838 5.247 32.497 12.856l-11.534 13.47c-6.347-5.83-12.846-9.42-21.085-9.42-13.883 0-23.922 11.66-23.922 25.958 0 14.543 9.764 26.448 23.922 26.448 9.43 0 15.196-3.805 21.665-9.757L76.07 72.257c-8.483 9.174-17.911 14.88-33.809 14.88C18.003 87.138 0 68.208 0 44.276zM77.718 0H95.63v86.954H77.718V0zM128.828 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.514 24.884h-43.94c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.375-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.948 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.244 4.51zM193.638 86.8h-16.264l-24.838-64.31h18.949l14.127 42.772 14.25-42.772h18.614L193.638 86.8zM241.665 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.513 24.884h-43.939c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.374-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.949 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.245 4.51zM311.054 40.87c-11.9 0-19.193 7.27-19.193 22.52v23.595H273.95V23.104h17.911V35.96c3.662-8.806 9.551-14.544 20.139-14.053v18.931h-.946"})))},firstbookColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Mr);return n.createElement("svg",Cr({viewBox:"0 0 172 152",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,sr||(sr=n.createElement("path",{d:"M154.516 34.244l-46.123 6.988 44.085-9.731a.68.68 0 00.411-.344.736.736 0 00.057-.547.726.726 0 00-.289-.395.677.677 0 00-.463-.112l-46.156 9.784 43.418-12.51a.655.655 0 00.237-.123.705.705 0 00.254-.474.715.715 0 00-.024-.276.714.714 0 00-.317-.434.66.66 0 00-.518-.073l-43.601 12.23 40.546-14.501a.696.696 0 00.396-.36.749.749 0 00.038-.549.712.712 0 00-.345-.415.658.658 0 00-.524-.039l-42.666 14.659 39.026-16.965a.704.704 0 00.373-.386.753.753 0 00.003-.549.705.705 0 00-.369-.39.658.658 0 00-.525-.003L99.893 36.393l37.172-19.813a.714.714 0 00.319-.435.749.749 0 00-.068-.543.71.71 0 00-.382-.317.673.673 0 00-.487.02l-38.575 19.97 33.95-21.822a.76.76 0 00.233-.891.674.674 0 00-.697-.344.665.665 0 00-.254.1L94.766 35.03l31.144-24.46a.715.715 0 00.253-.746.73.73 0 00-.119-.25.694.694 0 00-.194-.193.646.646 0 00-.758.036L92.128 34.593l27.42-26.609a.757.757 0 00-.038-.976.68.68 0 00-.931-.072L89.523 34.331l23.262-28.583a.745.745 0 00-.067-1.013.668.668 0 00-.969.07l-24.08 28.617 18.486-29.404a.752.752 0 00.005-.797.676.676 0 00-.702-.31.697.697 0 00-.438.302l-20.04 30.49 14.111-31.1a.746.746 0 00-.03-.544.697.697 0 00-.387-.364.656.656 0 00-.447-.005.69.69 0 00-.355.284L83.195 32.76l9.168-31.134a.73.73 0 00-.084-.528.687.687 0 00-.417-.31.658.658 0 00-.456.066.705.705 0 00-.312.353l-10.02 31.308 4.61-31.448a.742.742 0 00-.122-.534.662.662 0 00-.957-.16.722.722 0 00-.274.467l-5.444 32.2L78.719.715a.733.733 0 00-.2-.506.67.67 0 00-.485-.21.67.67 0 00-.484.21.733.733 0 00-.2.506l-.518 32.532L71.605.786a.72.72 0 00-.278-.444.661.661 0 00-.932.145.74.74 0 00-.143.509l4.459 32.531L64.274 1.24a.704.704 0 00-.341-.372.657.657 0 00-.492-.036.69.69 0 00-.387.32.745.745 0 00-.083.508l9.502 31.867L57.11 2.08a.69.69 0 00-.416-.334.658.658 0 00-.519.072.73.73 0 00-.303.4.766.766 0 00.02.509l14.444 31.098L49.93 3.39a.706.706 0 00-.194-.196.672.672 0 00-.52-.099.675.675 0 00-.247.112.741.741 0 00-.282.746c.02.093.056.18.107.259l19.054 29.578L43.033 5.05a.69.69 0 00-.474-.236.658.658 0 00-.495.184.716.716 0 00-.225.496.75.75 0 00.175.517L65.66 34.296 36.253 7.181a.668.668 0 00-.968.052.738.738 0 00.05 1.013L62.42 34 30.175 9.54a.656.656 0 00-.508-.133.65.65 0 00-.25.098.681.681 0 00-.194.193.712.712 0 00-.136.527.72.72 0 00.27.468l30.776 23.971-35.72-22.38a.65.65 0 00-.517-.087.657.657 0 00-.241.12.691.691 0 00-.177.21.745.745 0 00-.083.537c.041.183.149.342.3.442L58.08 35.624l-39.126-20.18a.657.657 0 00-.504-.015.696.696 0 00-.378.35.747.747 0 00-.046.525c.049.175.16.324.31.416l36.788 19.498L14.16 18.747a.659.659 0 00-.746.16.721.721 0 00-.198.508.746.746 0 00.204.505c.063.066.14.119.223.154l39.81 17.454L9.835 22.503a.66.66 0 00-.735.21.727.727 0 00-.167.522c.007.094.03.186.071.27.082.171.224.3.397.36L51.399 38.77 6.128 26.539a.66.66 0 00-.49.1.715.715 0 00-.295.42.746.746 0 00.057.52c.08.158.215.28.377.34l43.819 12.23-46.49-9.487a.658.658 0 00-.523.06.73.73 0 00-.352.709.743.743 0 00.253.482c.07.059.15.103.237.13h.1l43.535 9.294-45.421-6.64a.663.663 0 00-.487.15.742.742 0 00-.138.975c.1.15.252.255.424.291l32.68 5.084 44.303 5.434 37.84-4.7 39.159-6.272a.666.666 0 00.466-.258.732.732 0 00.126-.248c.026-.091.035-.186.026-.28a.742.742 0 00-.247-.487.674.674 0 00-.505-.16l-.066.018z",fill:"#ED1C24"})),hr||(hr=n.createElement("path",{d:"M167.41 138.023a1.828 1.828 0 00-.484-.402c.338-.034.652-.195.885-.454.205-.246.313-.565.3-.891a1.428 1.428 0 00-.2-.734 1.032 1.032 0 00-.518-.454 3.043 3.043 0 00-1.052-.122h-1.67v4.699h.819v-1.747h.167c.133-.016.267-.016.4 0a.756.756 0 01.234.175c.15.192.284.402.418.612l.567.891h1.119l-.551-.891a4.553 4.553 0 00-.434-.682zm-1.336-.908h-.518v-1.276h.552c.195.106.414.154.634.14a.494.494 0 01.334.175.559.559 0 01.117.367.586.586 0 010 .332.446.446 0 01-.234.192 3.21 3.21 0 01-.885.07z",fill:"#00ACE4"})),dr||(dr=n.createElement("path",{d:"M166.258 133.114a4.07 4.07 0 00-2.341.732 4.367 4.367 0 00-1.558 1.969 4.598 4.598 0 00-.249 2.543 4.47 4.47 0 001.143 2.259 4.16 4.16 0 002.151 1.214c.815.173 1.662.09 2.432-.24a4.26 4.26 0 001.895-1.614 4.545 4.545 0 00.718-2.443 4.573 4.573 0 00-.314-1.686 4.43 4.43 0 00-.907-1.433 4.222 4.222 0 00-1.361-.96 4.051 4.051 0 00-1.609-.341zm0 8.194c-.72 0-1.424-.224-2.023-.642a3.783 3.783 0 01-1.341-1.71 3.98 3.98 0 01-.207-2.2 3.867 3.867 0 01.996-1.95 3.597 3.597 0 011.864-1.043 3.496 3.496 0 012.104.217 3.675 3.675 0 011.633 1.403c.4.626.614 1.363.614 2.116a3.913 3.913 0 01-1.071 2.688 3.58 3.58 0 01-2.569 1.121zM77.868 51.156h.167L56.409 48.64v.017L0 41.861v99.691l76.481 10.238 79.672-9.556V41.861l-78.285 9.295z",fill:"#00ACE4"})),vr||(vr=n.createElement("path",{d:"M8.183 99.674V67.666L25.35 69.85v6.657l-9.82-1.258v6.115l6.964.89v6.465l-6.963-.89V100.6l-7.348-.926z",fill:"#ED1C24"})),mr||(mr=n.createElement("path",{d:"M8.483 68.47l16.048 2.027v5.241l-9.401-1.205v7.39l6.946.891v5.241l-6.946-.89v12.753l-6.546-.838V68.26l-.1.21zm-1.119-1.537v33.195l1.103.14 6.479.821 1.403.175v-12.72l5.61.717 1.437.175v-7.74l-1.053-.14-5.894-.751v-4.822l8.082 1.048 1.32.175v-7.932l-1.07-.14-16.047-2.01-1.37-.174v-.017z",fill:"#fff"})),ur||(ur=n.createElement("path",{d:"M25.349 101.787v-23.22l6.546.84v23.201l-6.546-.821z",fill:"#ED1C24"})),pr||(pr=n.createElement("path",{d:"M26.186 79.32l5.294.68v21.857l-5.31-.681V79.372l.016-.053zm-1.235-1.486v24.46l1.068.14 5.327.681 1.37.175V78.83l-1.069-.14-5.327-.681-1.37-.175z",fill:"#fff"})),fr||(fr=n.createElement("path",{d:"M33.933 102.94V79.511l5.627.734.184 2.376c.38-.667.921-1.219 1.569-1.599a4.095 4.095 0 012.122-.567c.792.02 1.575.174 2.32.454l.401.157v6.796l-.75-.174a9.875 9.875 0 00-2.656-.472c-1.553 0-2.271.647-2.271 2.044v14.501l-6.546-.821z",fill:"#ED1C24"})),gr||(gr=n.createElement("path",{d:"M34.317 80.245l4.458.56.35 4.42c.736-2.848 2.172-4.141 4.126-4.141a6.42 6.42 0 012.12.42v5.485a9.788 9.788 0 00-2.839-.49c-2.104 0-2.888 1.154-2.888 2.692v13.854l-5.31-.681V80.228l-.017.017zm-1.203-1.467v24.739l1.069.14 5.327.681 1.37.175v-15.34c0-.716.133-1.415 1.67-1.415a9.2 9.2 0 012.487.437l1.587.471v-8.071l-.819-.297a7.48 7.48 0 00-2.538-.507 4.636 4.636 0 00-3.19 1.223V79.65l-1.001-.122-4.576-.577-1.386-.174z",fill:"#fff"})),br||(br=n.createElement("path",{d:"M56.092 106.086a11.832 11.832 0 01-1.37-.088c-5.009-.629-8.115-4.018-8.115-8.648v-1.52l5.728.734v1.258a2.347 2.347 0 00.454 1.67c.357.471.879.776 1.45.846h.885c.918 0 1.285-.35 1.285-1.258 0-1.485-1.402-2.341-4.325-3.984-2.454-1.345-5.01-3.25-5.01-7.18 0-3.931 2.506-6.22 6.397-6.22a7.683 7.683 0 011.269 0c4.525.576 7.43 3.756 7.43 8.09v1.065l-5.376-.594V88.98c0-1.188-.652-1.852-2.004-2.026h-.451c-.952 0-1.136.436-1.136 1.066 0 .908.768 1.607 3.34 2.97 3.09 1.642 6.229 3.948 6.229 8.596.02.84-.12 1.676-.41 2.46s-.725 1.5-1.28 2.107a6.101 6.101 0 01-1.957 1.432 5.879 5.879 0 01-2.331.535l-.702-.035z",fill:"#ED1C24"})),zr||(zr=n.createElement("path",{d:"M53.454 82.202h1.219c4.492.577 7.013 3.652 7.013 7.583v.367l-4.492-.577v-.664c0-1.45-.801-2.446-2.555-2.673h-.534c-1.136 0-1.67.577-1.67 1.747 0 1.17 1.035 2.15 3.624 3.495 3.34 1.747 5.911 3.948 5.911 8.019a5.981 5.981 0 01-.367 2.21 5.79 5.79 0 01-1.147 1.896 5.516 5.516 0 01-1.754 1.291 5.302 5.302 0 01-2.092.491h-.702a8.117 8.117 0 01-1.285 0c-5.01-.629-7.582-3.966-7.582-8.002v-.804l4.492.577v.786c-.037.386 0 .775.108 1.146.108.371.285.716.52 1.015.237.299.527.546.855.727.328.18.687.292 1.056.327h.901c1.253 0 1.92-.612 1.92-1.94 0-1.939-1.67-2.952-4.709-4.612-3.039-1.66-4.709-3.494-4.709-6.727 0-3.599 2.388-5.678 5.878-5.678h.1zm.25-1.1c-4.275 0-7.047 2.725-7.047 6.988s2.839 6.5 5.327 7.862l.184.105-4.459-.577-1.37-.174v2.219c0 4.892 3.34 8.473 8.45 9.137.468.026.936.026 1.403 0a6.285 6.285 0 002.546-.29 6.475 6.475 0 002.246-1.287 6.822 6.822 0 001.604-2.088c.398-.8.642-1.674.718-2.572v-.751c0-4.456-2.672-6.85-5.527-8.527l3.957.507 1.37.175v-1.747c0-4.752-3.14-8.23-8.016-8.858a11.72 11.72 0 00-1.353-.088l-.033-.034zm2.422 9.05c-1.92-1.084-2.305-1.573-2.305-2.027a.565.565 0 010-.332.973.973 0 01.45 0h.368c1.32.175 1.436.786 1.436 1.345v1.049l.05-.035zm-1.17 9.784h-.45c-1.203-.158-1.67-.717-1.67-1.94v-1.572c1.904 1.118 2.839 1.747 2.839 2.778 0 .524 0 .646-.685.646l-.034.088z",fill:"#fff"})),yr||(yr=n.createElement("path",{d:"M66.815 107.116l-.15-.332a18.192 18.192 0 01-1.27-7.915V89l-2.454-.35v-5.66l2.855.366v-3.879l6.546-.873v5.59l3.34.42v5.538l-3.34-.419v9.836c-.15 2.532.334 5.061 1.403 7.338l.585 1.136-7.515-.926z",fill:"#ED1C24"})),xr||(xr=n.createElement("path",{d:"M71.54 79.372v5.416l3.34.42v4.227l-3.34-.42v10.746a14.943 14.943 0 001.386 7.145l-5.578-.716a16.374 16.374 0 01-1.135-7.163V88.439l-2.856-.367v-4.368l2.856.367v-4.053l5.16-.681.166.035zm1.235-1.503l-1.42.192-5.276.7-1.102.191v3.67l-1.503-.175-1.303-.175v6.988l1.12.14 1.67.227v9.54a17.987 17.987 0 001.285 7.739l.284.629h.668l5.594.717 2.371.402-1.102-2.149a13.862 13.862 0 01-1.252-6.587V90.57l1.92.244 1.336.175v-6.988l-1.052-.14-2.221-.28V77.87h-.017zM91.228 106.645l-10.704 1.275V77.66l10.437-1.223c4.609-.542 7.147 1.747 7.147 5.993v2.236s-.768 5.241-3.724 6.115c3.073.402 4.158 5.136 4.158 5.136v2.918c0 4.368-2.638 7.251-7.314 7.81zm1.152-22.87c0-1.503-.618-2.394-2.237-2.202l-3.49.437v7.775l3.24-.35c.332-.004.662-.077.968-.215a2.54 2.54 0 00.816-.587c.233-.25.416-.545.54-.87.123-.323.184-.67.18-1.018a1.383 1.383 0 000-.262l-.017-2.708zm0 12.474c0-1.747-.851-2.515-2.438-2.34l-3.34.383v7.723l3.59-.35c.292-.004.58-.069.848-.19s.51-.296.713-.515c.204-.219.364-.478.471-.761.108-.284.16-.587.156-.892a1.383 1.383 0 000-.262v-2.796zM108.361 104.897c-4.459.524-7.398-1.957-7.398-6.779v-6.936c-.115-2.181.598-4.323 1.983-5.958 1.385-1.635 3.331-2.633 5.415-2.777a5.83 5.83 0 012.381-.032 5.947 5.947 0 012.211.926 6.246 6.246 0 011.703 1.741c.453.692.77 1.47.935 2.292.137.677.165 1.374.084 2.061v6.989c.082 2.132-.637 4.214-2.005 5.798-1.367 1.584-3.273 2.544-5.309 2.675zm2.003-15.829a2.091 2.091 0 00-.392-1.486 1.916 1.916 0 00-1.829-.767 2.454 2.454 0 00-1.68.901 2.683 2.683 0 00-.591 1.876v8.736a2.1 2.1 0 00.095.938c.102.3.271.57.493.789.222.219.49.379.783.467.293.089.601.103.9.042a2.472 2.472 0 001.643-.923 2.698 2.698 0 00.578-1.855v-8.718zM125.528 102.87c-4.459.525-7.398-1.956-7.398-6.778v-6.989c-.087-2.162.638-4.274 2.021-5.884 1.382-1.61 3.312-2.59 5.377-2.73a5.872 5.872 0 014.581.902c1.353.924 2.299 2.372 2.633 4.026.133.642.166 1.303.1 1.956v6.989c.096 2.14-.619 4.233-1.988 5.825-1.369 1.593-3.283 2.557-5.326 2.683zm2.003-15.829a2.1 2.1 0 00-.094-.937c-.102-.3-.271-.571-.493-.79a1.9 1.9 0 00-.783-.467 1.84 1.84 0 00-.901-.042 2.454 2.454 0 00-1.68.902 2.683 2.683 0 00-.591 1.876v8.736c-.04.266-.028.54.035.801.063.262.176.508.332.723.156.215.351.396.575.53.224.134.472.22.728.252.226.044.459.044.685 0a2.475 2.475 0 001.643-.923c.413-.517.62-1.182.578-1.855l-.034-8.805zM145.999 100.18l-3.34-8.333-2.004 3.878v5.102l-5.377.611V71.161l5.311-.63V88.86l4.876-10.483 5.176-.611-4.675 9.696 5.21 12.108-5.177.611zM29.058 67.946l1.068 3.11 2.422.35-1.754 1.554.735 2.953-2.471-1.87-2.489 1.171.735-2.743-1.753-2.027 2.421.297 1.086-2.795z",fill:"#fff"})))},firstbookColorNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Sr);return n.createElement("svg",Tr({viewBox:"0 0 170 150",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Or||(Or=n.createElement("g",{clipPath:"url(#logo-firstbook-color-negative_svg__clip0_50221_35656)"},n.createElement("path",{d:"M78.283 0h-.425C74.686.183.018 4.8.018 44.05v92.317c0 1.966-.328 3.633 1.634 3.916l74.49 9.384h.931l77.432-8.834c1.961-.233 1.634-1.916 1.634-6.25V46.367C156.074 4.8 81.454.183 78.283 0z",fill:"#fff"}),n.createElement("path",{d:"M152.885 35.684l-45.148 6.666 43.154-9.283a.663.663 0 00.402-.328.686.686 0 00.056-.522.7.7 0 00-.283-.377.675.675 0 00-.453-.107l-45.181 9.334 42.5-11.933a.648.648 0 00.402-.319.694.694 0 00-.255-.928.658.658 0 00-.506-.07l-42.68 11.666 39.688-13.833a.675.675 0 00.389-.343.693.693 0 00-.301-.92.66.66 0 00-.513-.037l-41.764 13.983 38.201-16.183a.677.677 0 00.365-.368.697.697 0 00.003-.523.677.677 0 00-.361-.373.66.66 0 00-.514-.002l-40.669 16.85 36.387-18.9a.694.694 0 00.245-.933.69.69 0 00-.374-.303.673.673 0 00-.476.019l-37.76 19.05 33.232-20.817a.712.712 0 00.229-.85.685.685 0 00-.418-.317.658.658 0 00-.514.084l-35.57 21.667L124.885 13.1a.675.675 0 00.264-.447.678.678 0 00-.133-.503.662.662 0 00-.434-.277.644.644 0 00-.498.127L91.816 36.017l26.84-25.384a.708.708 0 00-.036-.93.682.682 0 00-.912-.07L89.266 35.768 112.036 8.5a.695.695 0 00-.065-.966.665.665 0 00-.948.066L87.452 34.9l18.095-28.05a.685.685 0 00-.421-1.054.66.66 0 00-.691.288L84.82 35.167 98.632 5.5a.696.696 0 00-.03-.519.675.675 0 00-.378-.347.658.658 0 00-.438-.005.672.672 0 00-.347.271L83.071 34.267l8.974-29.7a.68.68 0 00-.258-.693.648.648 0 00-.233-.107.659.659 0 00-.445.063.679.679 0 00-.306.337l-9.808 29.866 4.511-30a.694.694 0 00-.118-.509.66.66 0 00-.936-.153.686.686 0 00-.27.446l-5.329 30.716L78.69 3.7a.69.69 0 00-.196-.483.664.664 0 00-.948 0 .69.69 0 00-.196.483l-.507 31.034-5.116-30.967a.684.684 0 00-.272-.424.66.66 0 00-.913.138.693.693 0 00-.14.486L74.768 35 64.551 4.2a.678.678 0 00-.334-.355.659.659 0 00-.482-.034.673.673 0 00-.379.304.695.695 0 00-.08.485l9.3 30.4L57.539 5a.672.672 0 00-.407-.318.659.659 0 00-.508.068.698.698 0 00-.297.381.713.713 0 00.019.486l14.14 29.666L50.508 6.25a.682.682 0 00-.434-.286.663.663 0 00-.506.111.682.682 0 00-.28.443.702.702 0 00.109.516l18.65 28.216-24.29-27.416a.672.672 0 00-.464-.226.66.66 0 00-.484.176.683.683 0 00-.22.472.696.696 0 00.171.494l23.146 26.983L37.122 9.867a.664.664 0 00-.948.05.693.693 0 00.049.966L62.736 35.45 31.172 12.117a.649.649 0 00-.742-.034.66.66 0 00-.19.184.673.673 0 00.13.95l30.127 22.867-34.965-21.35a.647.647 0 00-.915.233.695.695 0 00.212.933L58.486 37 20.187 17.75a.658.658 0 00-.493-.015.674.674 0 00-.37.334.696.696 0 00-.045.501.682.682 0 00.303.397l36.011 18.6L15.496 20.9a.66.66 0 00-.73.152.684.684 0 00-.194.485.695.695 0 00.199.483.67.67 0 00.218.147l38.97 16.65-42.697-14.334a.66.66 0 00-.72.202.69.69 0 00-.093.755c.08.162.22.286.388.343L51.947 40 7.634 28.334a.66.66 0 00-.479.095.695.695 0 00-.234.896c.08.152.211.268.37.325l42.892 11.667-45.507-9.05a.662.662 0 00-.713.23.69.69 0 00-.065.758.684.684 0 00.402.328h.098L47.01 42.45 2.55 36.117a.661.661 0 00-.477.142.694.694 0 00-.135.93.67.67 0 00.416.278l31.989 4.85L77.709 47.5l37.041-4.483 38.331-5.984a.664.664 0 00.58-.483.699.699 0 00-.216-.732.66.66 0 00-.494-.152l-.066.018z",fill:"#ED1C24"}),n.createElement("path",{d:"M165.507 134.684a1.79 1.79 0 00-.474-.384 1.36 1.36 0 00.866-.433 1.23 1.23 0 00.294-.85 1.326 1.326 0 00-.196-.7.997.997 0 00-.506-.433 3.068 3.068 0 00-1.03-.117h-1.635v4.483h.801v-1.666h.164c.13-.016.262-.016.392 0 .086.04.164.096.229.166.147.184.278.384.408.584l.556.85h1.095l-.539-.85a4.457 4.457 0 00-.425-.65zm-1.308-.867h-.506V132.6h.539c.191.101.406.147.621.134.126.01.243.07.327.166.079.099.12.223.114.35a.535.535 0 010 .317.417.417 0 01-.228.183 3.196 3.196 0 01-.867.067z",fill:"#00ACE4"}),n.createElement("path",{d:"M164.379 130a4.061 4.061 0 00-2.291.699 4.182 4.182 0 00-1.525 1.878 4.283 4.283 0 00-.244 2.426 4.237 4.237 0 001.119 2.155c.574.59 1.307.993 2.105 1.158a4.055 4.055 0 002.381-.229 4.142 4.142 0 001.855-1.54 4.278 4.278 0 00.396-3.939 4.216 4.216 0 00-.888-1.366 4.108 4.108 0 00-1.333-.916 4.049 4.049 0 00-1.575-.326zm0 7.817a3.51 3.51 0 01-1.98-.613 3.61 3.61 0 01-1.312-1.63 3.693 3.693 0 01.772-3.96 3.547 3.547 0 011.825-.994 3.503 3.503 0 012.059.207c.651.275 1.207.74 1.599 1.338.391.597.6 1.3.6 2.018a3.687 3.687 0 01-1.048 2.565 3.549 3.549 0 01-2.515 1.069zM77.857 51.817h.163l-21.168-2.4v.016L1.635 42.95v95.1l74.865 9.767 77.987-9.117V42.95l-76.63 8.867z",fill:"#00ACE4"}),n.createElement("path",{d:"M9.645 98.1V67.567l16.804 2.083V76l-9.612-1.2v5.833l6.816.85v6.167l-6.816-.85v12.183L9.645 98.1z",fill:"#ED1C24"}),n.createElement("path",{d:"M9.939 68.334l15.708 1.933v5l-9.202-1.15v7.05l6.8.85v5l-6.8-.85v12.167l-6.408-.8v-29.4l-.098.2zm-1.095-1.467v31.667l1.078.133 6.343.783 1.373.167V87.484l5.492.683 1.406.167V80.95l-1.03-.133-5.77-.717v-4.6l7.911 1 1.292.167V69.1l-1.047-.133-15.708-1.917-1.34-.166v-.017z",fill:"#fff"}),n.createElement("path",{d:"M26.448 100.116v-22.15l6.407.8V100.9l-6.407-.784z",fill:"#ED1C24"}),n.createElement("path",{d:"M27.268 78.683l5.181.65v20.85l-5.198-.65v-20.8l.017-.05zm-1.21-1.417V100.6l1.046.133 5.215.65 1.34.167V78.216l-1.046-.133-5.215-.65-1.34-.167z",fill:"#fff"}),n.createElement("path",{d:"M34.85 101.216v-22.35l5.51.7.18 2.267a4.19 4.19 0 011.535-1.525 4.089 4.089 0 012.076-.542c.776.02 1.543.166 2.273.434l.392.15v6.483l-.736-.166a9.893 9.893 0 00-2.599-.45c-1.52 0-2.223.616-2.223 1.95V102l-6.407-.784z",fill:"#ED1C24"}),n.createElement("path",{d:"M35.226 79.567l4.364.533.344 4.217c.719-2.717 2.125-3.95 4.037-3.95.709.017 1.41.152 2.076.4V86a9.811 9.811 0 00-2.779-.467c-2.06 0-2.828 1.1-2.828 2.567v13.216l-5.198-.649V79.55l-.016.017zm-1.177-1.4v23.599l1.046.134 5.215.65 1.34.166V88.083c0-.683.13-1.35 1.635-1.35a9.215 9.215 0 012.435.417l1.553.45v-7.7l-.8-.284a7.488 7.488 0 00-2.486-.483 4.606 4.606 0 00-3.122 1.167V79l-.98-.117-4.48-.55-1.356-.166z",fill:"#fff"}),n.createElement("path",{d:"M56.542 104.217a12.257 12.257 0 01-1.34-.083c-4.904-.6-7.945-3.834-7.945-8.25v-1.45l5.607.7v1.2c-.065.57.095 1.143.445 1.593.35.45.86.74 1.418.807h.867c.899 0 1.258-.334 1.258-1.2 0-1.417-1.373-2.234-4.233-3.8-2.403-1.284-4.904-3.1-4.904-6.85 0-3.75 2.452-5.934 6.26-5.934a7.738 7.738 0 011.243 0c4.43.55 7.274 3.584 7.274 7.717v1.017l-5.264-.567V87.9c0-1.133-.637-1.766-1.961-1.933h-.442c-.931 0-1.111.417-1.111 1.017 0 .866.752 1.533 3.269 2.833 3.024 1.567 6.097 3.767 6.097 8.2.02.802-.116 1.6-.4 2.347a6.108 6.108 0 01-1.254 2.011 5.973 5.973 0 01-1.915 1.365 5.865 5.865 0 01-2.283.51l-.686-.033z",fill:"#ED1C24"}),n.createElement("path",{d:"M53.959 81.433h1.193c4.397.55 6.865 3.484 6.865 7.234v.35l-4.397-.55v-.634c0-1.383-.784-2.333-2.5-2.55h-.524c-1.111 0-1.634.55-1.634 1.667s1.013 2.05 3.547 3.333c3.269 1.667 5.786 3.767 5.786 7.65a5.577 5.577 0 01-.359 2.109 5.492 5.492 0 01-1.123 1.808c-.487.522-1.07.94-1.717 1.232a5.28 5.28 0 01-2.048.468h-.687c-.418.033-.84.033-1.258 0-4.904-.6-7.421-3.783-7.421-7.633v-.767l4.397.55v.75a2.851 2.851 0 00.615 2.061c.231.285.515.521.836.694.321.172.672.278 1.033.312h.883c1.226 0 1.88-.584 1.88-1.85 0-1.85-1.635-2.817-4.61-4.4-2.975-1.584-4.61-3.334-4.61-6.417 0-3.433 2.338-5.417 5.755-5.417h.098zm.245-1.05c-4.185 0-6.898 2.6-6.898 6.667s2.779 6.2 5.214 7.5l.18.1-4.364-.55-1.34-.167v2.117c0 4.667 3.268 8.083 8.27 8.717a13.1 13.1 0 001.373 0 6.32 6.32 0 002.492-.277 6.378 6.378 0 002.199-1.228 6.517 6.517 0 001.57-1.992c.39-.763.629-1.596.703-2.453V98.1c0-4.25-2.616-6.533-5.41-8.133l3.873.483 1.34.167V88.95c0-4.533-3.072-7.85-7.846-8.45-.439-.053-.881-.08-1.324-.083l-.032-.034zm2.37 8.634c-1.88-1.034-2.256-1.5-2.256-1.934a.527.527 0 010-.316.979.979 0 01.442 0h.36c1.29.166 1.405.75 1.405 1.283v1l.049-.033zM55.43 98.35h-.442c-1.176-.15-1.634-.683-1.634-1.85V95c1.863 1.067 2.779 1.667 2.779 2.65 0 .5 0 .617-.67.617l-.033.083z",fill:"#fff"}),n.createElement("path",{d:"M67.038 105.2l-.147-.317a16.956 16.956 0 01-1.243-7.55v-9.417l-2.402-.333v-5.4l2.795.35v-3.7L72.448 78v5.333l3.27.4v5.283l-3.27-.4V98a14.15 14.15 0 001.374 7l.572 1.083-7.356-.883z",fill:"#ED1C24"}),n.createElement("path",{d:"M71.662 78.733V83.9l3.27.4v4.033l-3.27-.4v10.25A13.95 13.95 0 0073.02 105l-5.46-.684a15.26 15.26 0 01-1.111-6.833v-10.1l-2.795-.35v-4.166l2.795.35V79.35l5.05-.65.164.033zm1.21-1.433l-1.39.183-5.165.667-1.079.183v3.5l-1.47-.166-1.276-.167v6.666l1.095.134 1.635.216v9.1A16.773 16.773 0 0066.481 105l.278.6h.653l5.476.683 2.322.383-1.08-2.05a12.927 12.927 0 01-1.225-6.283v-8.916l1.88.233 1.307.166V83.15l-1.03-.134-2.174-.266V77.3h-.016zM90.935 104.75l-10.478 1.217V77.1l10.216-1.166c4.512-.517 6.996 1.666 6.996 5.716v2.133s-.751 5-3.645 5.834c3.008.383 4.07 4.9 4.07 4.9V97.3c0 4.167-2.582 6.917-7.16 7.45zm1.128-21.817c0-1.433-.605-2.283-2.19-2.1l-3.417.417v7.417l3.171-.334c.327-.004.649-.074.949-.205.3-.131.57-.322.799-.56a2.575 2.575 0 00.704-1.801 1.289 1.289 0 000-.25l-.016-2.584zm0 11.9c0-1.666-.834-2.4-2.387-2.233l-3.269.367v7.367l3.514-.334c.286-.004.568-.066.83-.181.262-.116.5-.283.698-.492a2.256 2.256 0 00.614-1.577 1.289 1.289 0 000-.25v-2.666zM107.705 103.083c-4.364.5-7.241-1.866-7.241-6.466V90a8.012 8.012 0 011.941-5.684 7.71 7.71 0 015.3-2.65 5.853 5.853 0 012.331-.03 5.899 5.899 0 012.164.884 6.013 6.013 0 011.667 1.66 6.127 6.127 0 01.998 4.153V95a7.875 7.875 0 01-1.962 5.531 7.581 7.581 0 01-5.198 2.552zm1.962-15.1a1.963 1.963 0 00-.384-1.418 1.89 1.89 0 00-1.251-.732 1.954 1.954 0 00-.539 0 2.42 2.42 0 00-1.645.86 2.511 2.511 0 00-.578 1.79v8.334a1.941 1.941 0 00.575 1.647 1.846 1.846 0 001.648.486 2.439 2.439 0 001.608-.88 2.536 2.536 0 00.566-1.77v-8.317zM124.509 101.15c-4.364.5-7.241-1.867-7.241-6.467v-6.667a7.997 7.997 0 011.978-5.613 7.694 7.694 0 015.263-2.603 5.872 5.872 0 014.485.86 6.087 6.087 0 012.577 3.84 6 6 0 01.098 1.866v6.667a7.859 7.859 0 01-1.945 5.557 7.562 7.562 0 01-5.215 2.56zm1.962-15.1a1.955 1.955 0 00-.092-.895 1.923 1.923 0 00-.483-.753 1.869 1.869 0 00-.767-.446 1.844 1.844 0 00-.881-.04 2.421 2.421 0 00-1.645.86 2.516 2.516 0 00-.578 1.79V94.9a1.949 1.949 0 00.359 1.454 1.858 1.858 0 001.275.746c.222.041.449.041.671 0a2.439 2.439 0 001.608-.88 2.536 2.536 0 00.566-1.77l-.033-8.4zM144.549 98.584l-3.27-7.95-1.961 3.7V99.2l-5.264.584V70.9l5.199-.6v17.484l4.773-10 5.067-.584-4.577 9.25 5.1 11.55-5.067.584zM30.078 67.834l1.046 2.966 2.37.334-1.716 1.483.72 2.817-2.42-1.784-2.435 1.117.719-2.617-1.716-1.933 2.37.283 1.062-2.666z",fill:"#fff"}))))},lpaBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Pr);return n.createElement("svg",Br({viewBox:"0 0 186 74",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Vr||(Vr=n.createElement("path",{d:"M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"})))},lpaColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Lr);return n.createElement("svg",_r({viewBox:"0 0 186 74",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,kr||(kr=n.createElement("path",{d:"M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476z",fill:"#008375"})),jr||(jr=n.createElement("path",{d:"M84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z",fill:"#000"})))},lpaWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Hr);return n.createElement("svg",Fr({viewBox:"0 0 186 74",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ir||(Ir=n.createElement("path",{d:"M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"})))},mlnBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Dr);return n.createElement("svg",Ar({viewBox:"0 0 300 71",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Rr||(Rr=n.createElement("g",{clipPath:"url(#logo-mln-black_svg__clip0_51609_40290)"},n.createElement("path",{d:"M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"}))))},mlnWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Kr);return n.createElement("svg",Qr({viewBox:"0 0 300 71",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Nr||(Nr=n.createElement("g",{clipPath:"url(#logo-mln-white_svg__clip0_51609_40290)"},n.createElement("path",{d:"M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"}))))},nyplFullBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,en);return n.createElement("svg",tn({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 966.787 543.733","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Wr||(Wr=n.createElement("path",{d:"M485.288 7.284h7.269l53.44 77.4v-77.4h7v89.65h-6.867l-53.978-77.94v77.94h-6.864V7.284m126.535 49.67c-.134-9.691-5.114-19.652-17.365-19.652-11.171 0-17.634 8.614-19.518 19.653zm-44.692 7.27c0-18.172 10.5-32.98 27.597-32.98 16.422 0 25.442 13.192 24.094 31.498h-44.287v1.482c.136 14.673 6.328 28.134 21.674 28.134 8.21 0 15.076-3.366 18.576-6.059l2.96 5.52c-4.038 2.961-11.441 6.596-21.807 6.596-19.652 0-28.807-15.75-28.807-34.191m59.225-31.5h7.539l15.617 53.442 16.825-53.442h6.865L690.028 86.3l15.749-53.575h7.001l-19.385 64.21h-6.46l-17.366-54.112-17.365 54.112h-6.46l-19.386-64.21m148.337 30.422L744.676 7.284h8.345l25.44 48.459h.27l25.442-48.46h7.539l-29.75 55.863v33.788h-7.27V63.146m81.841 1.751c0-14.404-7.673-27.595-22.345-27.595-14.538 0-21.134 12.922-21.134 27.326 0 14.538 7.135 27.73 21.672 27.73 14.671 0 21.807-12.924 21.807-27.461zm-50.882 0c0-16.154 8.614-33.653 28.805-33.653 20.193 0 29.481 17.365 29.481 33.384 0 16.153-9.153 33.787-29.346 33.787-20.191 0-28.94-17.365-28.94-33.518m71.73-32.173h7v11.173c2.423-4.711 8.211-12.653 17.231-12.653 2.96 0 5.115.674 6.192 1.078l-1.75 6.594c-1.078-.404-2.558-.942-5.251-.942-8.884 0-14.673 10.5-16.421 14.27v44.69h-7.001v-64.21m51.013 28.134l28.135-28.134h8.75l-28.402 28.134 29.883 36.076h-8.75zM920.724.015h7v96.919h-7V.014m-416.725 187.38c17.095 0 24.094-7.808 24.094-19.654 0-11.173-6.73-19.25-23.826-19.25h-11.44v38.904zm-18.576-45.23h19.518c18.846 0 30.69 9.29 30.69 25.308 0 16.151-11.172 26.248-31.498 26.248h-11.307v38.094h-7.403v-89.65m61.513 70.805v-45.364h7v43.883c0 9.424 3.365 15.48 13.191 15.48 9.559 0 17.498-9.018 19.654-12.787v-46.576h6.999v51.825c0 5.115.538 9.962 1.212 12.384h-7.135c-.402-2.153-.942-7-.942-10.5-3.096 4.847-10.365 11.981-21.268 11.981-13.46 0-18.711-8.75-18.711-20.326m107.957-13.191c0-14-5.385-27.326-21-27.326-5.518 0-11.98 3.23-15.615 7.269v44.96c2.961 1.48 7.402 2.557 12.52 2.557 16.286 0 24.095-14.134 24.095-27.46zm-43.614 28.672v-93.555h6.999v38.634c3.904-4.443 10.232-7.404 16.827-7.404 18.305 0 27.19 14.672 27.19 33.383 0 18.038-12.115 33.787-31.768 33.787-7.672 0-14.806-1.884-19.248-4.845m65.416-93.555h7.001v96.92h-7v-96.92m27.862 32.71h7.134v64.21h-7.134zm-1.75-18.98c0-3.095 2.424-5.385 5.252-5.385 2.958 0 5.382 2.29 5.382 5.386s-2.424 5.52-5.382 5.52c-2.828 0-5.252-2.425-5.252-5.52m22.343 51.017c0-20.326 11.712-33.518 28.269-33.518 9.558 0 15.615 3.635 19.114 6.73l-3.635 5.115c-3.633-3.096-8.48-5.788-15.612-5.788-14.27 0-20.732 12.384-20.732 27.192 0 14.269 6.328 27.864 20.597 27.864 7.404 0 13.594-3.23 16.422-5.788l3.096 5.25c-3.5 3.096-10.23 6.595-19.923 6.595-18.441 0-27.596-16.422-27.596-33.652M483.403 366.697v-89.65h19.114v74.303H535.9v15.347h-52.498m66.689 0V301.14h18.036v65.558zm9.02-74.035c-6.328 0-10.906-4.981-10.906-10.77 0-5.654 4.578-10.5 10.905-10.5 6.327 0 11.037 4.846 11.037 10.5 0 5.789-4.71 10.77-11.037 10.77m42.67 60.17c1.21.403 4.037 1.482 9.018 1.482 9.961 0 15.883-7.404 15.883-20.865 0-12.25-4.17-19.788-13.864-19.788-5.652 0-9.961 3.634-11.037 4.98zm0-83.055v36.48c2.961-2.963 8.75-6.731 16.017-6.731 16.425 0 27.866 11.306 27.866 33.923 0 22.343-15.077 34.863-34.865 34.863-14.807 0-23.826-3.77-26.922-5.25v-93.285h17.904m94.224 47.114c-1.077-.672-3.097-1.482-6.868-1.482-7.94 0-12.651 7.002-14.267 9.961v41.327h-17.904V301.14h17.904v8.887c2.826-4.847 8.212-10.5 16.557-10.5 4.846 0 7.404.942 8.885 1.752l-4.307 15.613m45.362 20.728h-2.29c-10.498 0-17.767 3.1-17.767 10.77 0 4.846 3.905 6.865 7.941 6.865 6.463 0 10.232-3.77 12.116-5.787zm2.02 29.078c-.54-1.617-.942-4.98-1.079-7-2.96 3.5-9.153 8.615-18.44 8.615-11.174 0-19.788-6.73-19.788-18.442 0-17.096 17.634-23.288 34.998-23.288h2.289v-3.769c0-5.654-2.29-9.152-10.635-9.152-8.48 0-14.269 4.44-16.691 6.19l-7.808-10.901c3.904-3.5 12.52-9.424 26.52-9.424 17.903 0 26.383 6.866 26.383 24.23v23.557c0 8.883.941 15.209 1.884 19.384h-17.633m69.186-49.806c-1.076-.672-3.096-1.482-6.864-1.482-7.942 0-12.654 7.002-14.27 9.961v41.327h-17.904V301.14h17.904v8.887c2.828-4.847 8.212-10.5 16.558-10.5 4.844 0 7.403.942 8.884 1.752l-4.308 15.613m10.768-15.752h19.113l14.54 43.212h.673l13.326-43.212h18.442l-27.057 72.556c-5.789 15.48-12.654 24.499-30.556 24.499-5.52 0-8.75-.805-10.096-1.21l2.557-14.135c.942.27 2.423.672 6.327.672 9.153 0 12.384-4.44 14.94-11.441l2.423-6.73-24.632-64.21"})),qr||(qr=n.createElement("path",{d:"M244.07 275.908c-.632 3.292-2.639 9.649-5.848 10.062-3.233.413-5.562-3.053-7.881-4.352-3.912-2.182-9.444-3.61-14.556-5.302-4.41-1.462-10.457-3.27-12.23-7.479-2.657-6.265 3.55-9.229 8.02-10.605 4.21-1.293 7.292-1.78 12.78-2.036 8.075-.388 15.784.768 18.495 5.844 1.635 3.057 2.133 9.122 1.22 13.868zm74.12 4.038c-14.064-6.882-32.33-10.33-45.62-17.713-10.522-5.834-18.59-15.471-29.913-20.664-11.552-5.656-28.94-11.341-35.586-12.98-23.496-5.78-43.231 1.747-50.076 7.164-12.781 10.1-22.766 26.516-18.87 50.134 1.65 9.984 4.723 18.383 9.607 25.29 19.818 27.99 56.91 37.084 86.295 54.742 1.036.705 2.118.517 2.78-.383 4.935-7.258 8.947-13.1 17.26-16.558 8.44-3.524 21.722-2.327 33.174-1.77 11.83.573 24.6-.538 28.891-6.655 5.127-7.301 4.828-22.013-2.997-26.508-4.199-2.42-10.459-2.53-15.025-4.635-3.332-1.54-5.901-4.422-7.739-8.428-1.54-3.352-2.973-8.856-.976-12.447 1.84-3.308 6.475-2.372 10.199-1.506 7.38 1.694 19.711 3.49 26.811.376 2.092-1.068-5.386-6.076-8.216-7.459M20.98 299.71c.424-2.396.609-3.063 2.052-4.947 2.286-3.418 30.024-34.543 73.016-42.085 5.658-.811 9.734-.419 10.661 1.849 1.625 3.976-1.667 6.266-5.629 8.56-68.952 41.21-64.064 102.472-64.725 127.532.208 10.252-7.195 12.118-9.043 7.288-8.092-22.074-14.896-56.673-6.333-98.197m46.657-90.251c1.413-1.499 2.334-2.187 4.43-2.778 26.481-6.578 53.046-2.39 72.177 6.14 4.294 1.902 6.229 4.596 3.409 6.405-3.587 2.084-14.456 9.154-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.175-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.086M111.209 183c-5.798-.66-5.88-4.902-3.428-6.553 6.3-4.414 16.521-9.743 26.804-13.82 3.078-1.22 4.668-1.537 7.487-1.255 7.578.759 20.125 5.86 34.522 16.133 17.266 12.32 32.626 35.725 22.354 33.83-6.497-1.125-3.668-.816-11.283-1.652-7.781-.69-12.888.11-16.475-.256-1.562-.128-2.793-1.168-3.893-2.07-14.573-13.067-31.407-21.36-56.088-24.357",fill:"#fff"})),Yr||(Yr=n.createElement("path",{d:"M388.617 387.566c-1.555 4.852-3.401 10.939-7.359 8.115-7.351-5.47-23.692-15.988-39.517-21.825-.85-.19-.754-1.37-.454-2.035 1.122-2.485 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.878-2.401-8.718.048-2.779 1.354-5.69 1.622-8.97.783-9.49-11.194-17.403-17.731-20.452-14.83-6.924-30.59-13.117-46.607-21.568-9.041-4.769-16.297-15.23-23.552-20.845-7.327-5.654-30.879-14.995-40.292-17.482-2.125-.67-2.879-1.552-3.239-3.244-3.88-18.518-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.92 226.095 127.15 192.927 239.255",fill:"#fff"})),Gr||(Gr=n.createElement("path",{d:"M330.345 324.088c-.103-.73-.417-3.204-.415-3.715.008-1.305 2.691-3.081 3.942-4.074 1.897-1.51 4.093-3.17 5.532-3.895.52-.327.865.43.935.579 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.092-8.169-10.196-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.995m-65.426 48.855c1.14-3.291 2.466-5.23 5.024-6.83 4.814-3.02 12.815-3.15 20.538-3.678 7.482-.505 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.7 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.394 1.364 4.81 1.118 8.019-.716 9.258-8.235 13.78-9.589 22.434-.125 1.337-.353 3.273-1.12 4.042-5.742 5.844-17.097 4.615-27.362 3.582-3.674-.366-7.306-.466-9.791-1.65-1.794-.838-3.403-2.549-4.894-3.932-3.283-3.043-5.14-5.283-8.433-8.975-1.117-1.251-3.648-3.515-3.814-4.89-.142-1.318 1.27-5.103 1.756-6.491M85.152 482.06c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.823 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.017 76.884 95.676 21.963 28.57 29.272 49.386 29.172 54.993-.119 4.302-.944 7.045-8.483 6.408-39.764-3.151-78.206-19.638-105.843-43.441",fill:"#fff"})),Ur||(Ur=n.createElement("path",{d:"M107.885 347.889c-12.129-29.548-4.208-56.154 1.149-66.245 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.817 59.062 39.542 78.948 84.414 99.801 35.4 18.097 75.678 38.787 109.435 88.906 5.109 7.235 5.846 11.625.078 15.77-20.58 14.05-39.225 23.844-66.503 30.205-4.107.961-8.341.24-11.979-9.143-37.895-97.638-101.518-93.237-130.518-163.835m234.716 120.04c-5.77 5.767-9.041 1.246-10.927-2.457-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.372 2.735-5.053 4.143.332 6.857.105 11.414-1.854 3.855-1.655 8.272-7.06 10.475-14.824 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.494 21.184 20.827 23.404 25.464 1.409 2.952.06 4.956-.735 6.642-4.448 9.095-18.477 27.943-28.291 37.647",fill:"#fff"})),Xr||(Xr=n.createElement("path",{d:"M342.6 467.938c-5.768 5.766-9.04 1.245-10.926-2.458-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.373 2.735-5.053 4.143.332 6.857.105 11.414-1.853 3.855-1.656 8.272-7.062 10.475-14.825 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.493 21.184 20.826 23.404 25.465 1.409 2.951.06 4.955-.735 6.64-4.448 9.096-18.477 27.942-28.291 37.648zM107.91 347.859c-12.129-29.546-4.209-56.152 1.149-66.243 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.816 59.062 39.54 78.948 84.413 99.8 35.402 18.098 75.68 38.787 109.436 88.906 5.11 7.236 5.847 11.626.077 15.77-20.58 14.05-39.224 23.844-66.502 30.205-4.106.96-8.342.24-11.98-9.143-37.895-97.637-101.518-93.238-130.517-163.836zm-86.897-48.163c.426-2.396.612-3.062 2.054-4.946 2.286-3.417 30.023-34.543 73.017-42.084 5.656-.81 9.733-.419 10.66 1.849 1.625 3.976-1.667 6.268-5.628 8.56-68.953 41.21-64.065 102.472-64.725 127.532.208 10.25-7.195 12.118-9.044 7.288-8.092-22.074-14.896-56.674-6.334-98.199zm46.622-90.287c1.413-1.498 2.334-2.186 4.43-2.777 26.481-6.577 53.046-2.39 72.177 6.141 4.294 1.902 6.229 4.596 3.409 6.404-3.587 2.084-14.456 9.153-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.176-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.087zm197.284 163.484c1.14-3.29 2.466-5.229 5.024-6.83 4.814-3.019 12.815-3.15 20.538-3.677 7.482-.506 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.701 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.393 1.364 4.81 1.118 8.018-.716 9.259-8.235 13.78-9.589 22.434-.125 1.338-.353 3.274-1.12 4.043-5.742 5.844-17.097 4.615-27.362 3.581-3.674-.365-7.306-.465-9.791-1.649-1.794-.84-3.403-2.55-4.894-3.932-3.283-3.044-5.14-5.284-8.433-8.976-1.117-1.25-3.648-3.514-3.814-4.889-.142-1.319 1.27-5.104 1.756-6.492zm-153.71-189.94c-5.798-.662-5.88-4.902-3.428-6.553 6.3-4.415 16.521-9.744 26.804-13.821 3.078-1.22 4.668-1.538 7.487-1.254 7.578.759 20.125 5.86 34.522 16.132 17.266 12.32 32.626 35.724 22.354 33.83-6.497-1.126-3.668-.815-11.283-1.651-7.781-.69-12.888.108-16.475-.257-1.562-.127-2.793-1.168-3.893-2.068-14.573-13.068-31.407-21.361-56.088-24.358zm45.786 52.75c6.845-5.417 26.58-12.943 50.076-7.163 6.646 1.638 24.034 7.323 35.586 12.98 11.323 5.192 19.391 14.83 29.914 20.665 13.29 7.382 31.555 10.83 45.618 17.712 2.83 1.383 10.308 6.39 8.216 7.458-7.1 3.115-19.431 1.319-26.811-.376-3.724-.865-8.36-1.802-10.199 1.507-1.997 3.59-.565 9.094.976 12.446 1.838 4.007 4.407 6.888 7.739 8.428 4.566 2.105 10.826 2.216 15.025 4.636 7.825 4.495 8.124 19.206 2.997 26.507-4.29 6.116-17.06 7.227-28.891 6.656-11.452-.557-24.734-1.754-33.174 1.77-8.313 3.457-12.325 9.3-17.26 16.558-.662.9-1.744 1.088-2.78.382-29.384-17.658-66.477-26.752-86.295-54.742-4.884-6.907-7.957-15.305-9.607-25.289-3.896-23.618 6.089-40.035 18.87-50.135zm173.35 88.335c-.103-.73-.417-3.203-.415-3.714.008-1.305 2.691-3.081 3.942-4.075 1.897-1.51 4.093-3.169 5.532-3.894.52-.327.865.43.935.578 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.091-8.169-10.195-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.996zm58.272 63.479c-1.555 4.852-3.401 10.937-7.359 8.114-7.351-5.47-23.692-15.987-39.517-21.824-.85-.191-.754-1.37-.454-2.035 1.122-2.487 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.879-2.401-8.719.048-2.778 1.354-5.689 1.622-8.969.783-9.49-11.194-17.402-17.731-20.453-14.83-6.923-30.59-13.115-46.607-21.566-9.041-4.769-16.297-15.231-23.552-20.846-7.327-5.653-30.879-14.996-40.292-17.48-2.125-.67-2.879-1.554-3.239-3.246-3.88-18.517-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.919 226.095 127.151 192.927 239.255zM85.152 482.01c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.825 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.016 76.884 95.676 21.963 28.57 29.272 49.385 29.172 54.993-.119 4.302-.944 7.044-8.483 6.407-39.764-3.15-78.206-19.637-105.843-43.44zm120.73-352.236C92.439 129.775 0 222.018 0 336.73c0 114.706 93 207.004 206.01 207.004 114.711 0 207.544-92.25 207.544-206.957 0-114.715-92.966-207-207.671-207"})),Jr||(Jr=n.createElement("path",{d:"M215.816 276.316c5.112 1.692 10.642 3.12 14.554 5.302 2.319 1.299 4.648 4.765 7.883 4.352 3.208-.413 5.213-6.77 5.846-10.062.914-4.746.415-10.81-1.22-13.868-2.709-5.076-10.42-6.232-18.494-5.844-5.49.256-8.57.743-12.781 2.036-4.47 1.376-10.676 4.34-8.02 10.605 1.774 4.208 7.82 6.017 12.232 7.479"})))},nyplFullWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,nn);return n.createElement("svg",cn({viewBox:"0 0 967 568",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Zr||(Zr=n.createElement("g",{clipPath:"url(#logo-nypl-full-white_svg__clip0_1147_1139)",fill:"#fff"},n.createElement("path",{d:"M251.237 291.137c-.698 3.641-2.919 10.677-6.472 11.135-3.576.456-6.155-3.379-8.719-4.818-4.33-2.413-10.451-3.994-16.107-5.865-4.88-1.616-11.571-3.62-13.531-8.276-2.942-6.93 3.928-10.211 8.872-11.733 4.659-1.433 8.068-1.97 14.142-2.254 8.934-.428 17.465.85 20.464 6.466 1.809 3.382 2.361 10.093 1.351 15.345zm82.012 4.469c-15.561-7.617-35.77-11.433-50.479-19.599-11.641-6.455-20.566-17.12-33.097-22.866-12.781-6.259-32.021-12.549-39.377-14.361-25.998-6.396-47.833 1.932-55.409 7.925-14.14 11.176-25.19 29.342-20.878 55.473 1.826 11.048 5.228 20.341 10.629 27.985 21.93 30.97 62.972 41.034 95.488 60.572 1.145.778 2.341.572 3.072-.423 5.461-8.034 9.901-14.498 19.1-18.322 9.339-3.899 24.035-2.576 36.705-1.957 13.093.629 27.224-.598 31.968-7.366 5.675-8.079 5.343-24.358-3.314-29.331-4.645-2.676-11.573-2.798-16.625-5.128-3.687-1.705-6.531-4.893-8.563-9.326-1.704-3.709-3.29-9.799-1.08-13.77 2.034-3.663 7.165-2.627 11.283-1.668 8.168 1.873 21.813 3.862 29.669.414 2.315-1.182-5.961-6.724-9.092-8.252zM4.386 317.474c.47-2.649.674-3.389 2.272-5.473 2.529-3.783 33.22-38.222 80.791-46.567 6.26-.899 10.772-.464 11.798 2.045 1.797 4.399-1.846 6.935-6.229 9.472C16.722 322.55 22.13 390.336 21.4 418.066c.23 11.341-7.962 13.409-10.007 8.064-8.954-24.425-16.482-62.708-7.007-108.656zm51.625-99.862c1.564-1.658 2.582-2.421 4.902-3.074 29.301-7.279 58.696-2.644 79.862 6.796 4.755 2.102 6.895 5.085 3.775 7.086-3.969 2.305-15.996 10.127-22.643 16.321-1.933 1.667-5.379 1.753-7.412 1.484-24.813-3.272-37.703-5.203-75.006 8.937-5.723 2.407-10.87-.868-8.237-5.366 4.967-8.898 16.516-23.78 24.76-32.184zm48.216-29.276c-6.415-.731-6.506-5.423-3.794-7.251 6.971-4.885 18.282-10.781 29.656-15.291 3.411-1.35 5.168-1.702 8.289-1.388 8.384.838 22.266 6.484 38.198 17.85 19.106 13.632 36.1 39.528 24.734 37.434-7.189-1.246-4.059-.904-12.485-1.828-8.611-.764-14.261.12-18.229-.284-1.729-.142-3.091-1.295-4.309-2.29-16.124-14.458-34.751-23.635-62.06-26.952z"}),n.createElement("path",{d:"M411.177 414.687c-1.719 5.368-3.764 12.1-8.142 8.979-8.135-6.055-26.216-17.689-43.726-24.149-.939-.209-.832-1.517-.502-2.252 1.242-2.75 1.797-5.294 2.335-8.548.497-3.046 2.694-5.079 4.205-7.522 4.488-7.169 6.92-19.661 7.899-27.458.743-7.161.301-15.142-1.251-21.795-.663-2.843-2.711-6.506-2.656-9.648.052-3.073 1.499-6.295 1.793-9.924.868-10.501-12.386-19.258-19.617-22.631-16.411-7.662-33.848-14.515-51.572-23.864-10.005-5.277-18.033-16.853-26.06-23.066-8.108-6.256-34.169-16.593-44.582-19.342-2.353-.741-3.186-1.719-3.584-3.592-4.293-20.489-16.389-43.06-38.975-60.514-7.314-5.686.887-8.918 10.961-9.41 158.795-5.443 250.175 140.692 213.474 264.736"}),n.createElement("path",{d:"M346.699 344.448c-.114-.808-.461-3.545-.458-4.111.009-1.442 2.976-3.406 4.361-4.506 2.098-1.671 4.529-3.507 6.122-4.309.574-.362.958.472 1.034.638 5.854 8.888 3.66 30.847-.571 41.292-.489 1.062-1.385 1.478-1.751.698-2.157-4.711-5.359-8.952-9.035-11.28-.682-.527-.734-1.625-.682-1.831 1.184-4.962 1.799-10.465.98-16.591zm-72.394 54.056c1.264-3.639 2.731-5.784 5.559-7.553 5.327-3.343 14.182-3.486 22.726-4.072 8.278-.556 17.125-1.044 23.014-3.764 3.568-1.64 7.133-6.308 12.639-3.931 2.608 1.123 4.031 3.514 4.807 5.891.875 2.646 1.511 5.322 1.24 8.872-.793 10.245-9.114 15.247-10.61 24.824-.142 1.48-.392 3.622-1.243 4.472-6.352 6.467-18.914 5.108-30.273 3.963-4.066-.403-8.086-.514-10.837-1.823-1.984-.93-3.764-2.821-5.412-4.353-3.635-3.368-5.689-5.845-9.334-9.93-1.233-1.384-4.033-3.89-4.217-5.411-.16-1.46 1.402-5.648 1.941-7.185zM75.395 519.246c-4.169-3.417-5.963-6.298-8.36-10.344-19.45-31.083-30.349-141.175-5.287-178.512 7.975-13.084 16.424-7.054 13.615 3.059-4.799 22.703-1.857 35.424 9.182 60.056 17.348 36.609 70.896 87.433 85.072 105.865 24.301 31.616 32.389 54.647 32.279 60.851-.13 4.76-1.045 7.795-9.385 7.09-44.001-3.488-86.535-21.728-117.116-48.065"}),n.createElement("path",{d:"M100.548 370.783c-13.42-32.694-4.658-62.132 1.272-73.299 2.988-5.635 5.91-9.316 9.724-8.256 4.151 1.157 5.11 5.406 5.683 13.281 4.222 65.353 43.753 87.356 93.401 110.43 39.174 20.024 83.741 42.918 121.092 98.373 5.653 8.007 6.469 12.864.088 17.45-22.776 15.546-43.404 26.383-73.589 33.422-4.541 1.063-9.229.265-13.253-10.116C203.035 444.031 132.634 448.9 100.548 370.783zM360.26 503.607c-6.382 6.383-10.006 1.382-12.089-2.719-8.941-19.01-17.674-34.919-31.756-50.332-2.437-2.471-.558-5.944 3.028-5.589 4.582.366 7.586.114 12.627-2.051 4.268-1.832 9.154-7.814 11.591-16.405 1.776-6.268 1.86-8.112 5.7-8.501.954-.089 2.702.149 3.761.453 4.674 1.332 9.693 5.152 13.36 7.964 9.406 7.185 23.439 23.046 25.895 28.177 1.56 3.267.068 5.482-.812 7.349-4.923 10.062-20.445 30.918-31.305 41.654zM476.671 7.388h7.369l54.269 78.566V7.388h7.088v90.997h-6.976l-54.777-79.13v79.13h-6.973V7.388zM605.125 57.78c-.159-9.84-5.183-19.917-17.64-19.917-11.322 0-17.904 8.725-19.814 19.917h37.454zm-45.387 7.396c0-18.458 10.686-33.49 28.009-33.49 16.703 0 25.843 13.385 24.463 32h-44.935v1.49c.114 14.876 6.412 28.542 21.992 28.542 8.322 0 15.295-3.397 18.839-6.13l3.037 5.607c-4.106 2.997-11.642 6.705-22.16 6.705-19.953 0-29.245-16.025-29.245-34.724zm60.783-31.973h7.649l15.861 54.242 17.063-54.242h7.008l17.041 54.384 16.026-54.384h7.088l-19.688 65.183h-6.519l-17.609-54.947-17.662 54.947h-6.572l-19.686-65.183zm151.272 30.876l-30.492-56.69h8.503l25.815 49.163h.223l25.823-49.163h7.664l-30.163 56.69v34.307h-7.373V64.077zm83.09 1.8c0-14.623-7.789-28.016-22.693-28.016-14.734 0-21.426 13.112-21.426 27.735 0 14.735 7.189 28.12 21.989 28.12 14.9 0 22.13-13.104 22.13-27.84zm-51.712 0c0-16.423 8.773-34.193 29.246-34.193 20.551 0 29.976 17.658 29.976 33.912 0 16.365-9.336 34.302-29.81 34.302-20.47 0-29.412-17.655-29.412-34.022zm72.807-32.676h7.14v11.36c2.433-4.785 8.329-12.877 17.496-12.877 3.038 0 5.173.675 6.298 1.124l-1.752 6.692c-1.117-.448-2.636-.956-5.333-.956-9.043 0-14.906 10.63-16.709 14.454v45.386h-7.14V33.202zm51.796 28.572L956.4 33.202h8.828l-28.847 28.572 30.366 36.61h-8.88l-30.093-36.61zM920.048.008h7.106v98.377h-7.106V.008zM495.649 190.396c17.321 0 24.463-7.929 24.463-19.964 0-11.361-6.861-19.566-24.183-19.566h-11.64v39.53h11.36zm-18.881-45.946h19.837c19.122 0 31.158 9.448 31.158 25.701 0 16.418-11.361 26.658-32.002 26.658h-11.472v38.692h-7.521V144.45zm62.463 71.929v-46.096h7.087v44.577c0 9.563 3.428 15.691 13.384 15.691 9.731 0 17.77-9.165 19.965-12.991v-47.277h7.085v52.623c0 5.171.563 10.121 1.237 12.595h-7.243c-.403-2.249-.956-7.122-.956-10.686-3.126 4.949-10.528 12.188-21.567 12.188-13.663 0-18.992-8.926-18.992-20.624zM648.8 202.942c0-14.222-5.473-27.73-21.332-27.73-5.566 0-12.146 3.263-15.826 7.369v45.667c3.004 1.516 7.503 2.531 12.705 2.531 16.524 0 24.453-14.343 24.453-27.837zm-44.276 29.127v-94.987h7.118v39.199c3.961-4.499 10.372-7.479 17.065-7.479 18.613 0 27.613 14.895 27.613 33.853 0 18.337-12.316 34.348-32.228 34.348-7.814 0-15.07-1.916-19.568-4.934zm67.747-94.987h7.143v98.419h-7.143v-98.419zm28.278 33.201h7.207v65.218h-7.207v-65.218zm-1.79-19.253c0-3.149 2.474-5.456 5.345-5.456 3.033 0 5.508 2.307 5.508 5.456 0 3.148-2.475 5.585-5.508 5.585-2.871 0-5.345-2.437-5.345-5.585zm22.718 51.796c0-20.641 11.866-34.024 28.683-34.024 9.73 0 15.858 3.654 19.39 6.803l-3.7 5.218c-3.654-3.136-8.605-5.892-15.858-5.892-14.472 0-21.037 12.595-21.037 27.612 0 14.456 6.471 28.236 20.941 28.236 7.52 0 13.817-3.264 16.688-5.796l3.091 5.312c-3.491 3.126-10.347 6.708-20.244 6.708-18.701 0-27.954-16.741-27.954-34.177zM476.671 372.798v-90.997h19.402v75.392h33.907v15.605h-53.309zm67.687 0v-66.535h18.319v66.535h-18.319zm9.154-75.134c-6.415 0-11.07-5.117-11.07-10.916 0-5.745 4.655-10.685 11.07-10.685 6.411 0 11.201 4.94 11.201 10.685 0 5.799-4.79 10.916-11.201 10.916zm43.305 61.017c1.232.429 4.1 1.521 9.163 1.521 10.122 0 16.139-7.48 16.139-21.203 0-12.429-4.222-20.077-14.059-20.077-5.736 0-10.123 3.765-11.243 5.117v34.642zm0-84.303v37.064c3.032-3.041 8.881-6.864 16.289-6.864 16.664 0 28.27 11.472 28.27 34.421 0 22.719-15.318 35.444-35.396 35.444-15.019 0-24.184-3.833-27.333-5.301v-94.764h18.17zm95.708 47.836c-1.122-.65-3.202-1.44-7.029-1.44-8.041 0-12.821 7.09-14.506 10.064v41.96h-18.138v-66.535h18.138v9.003c2.866-4.951 8.377-10.688 16.814-10.688 4.948 0 7.589.958 9.035 1.824l-4.314 15.812zm46.01 21.082h-2.368c-10.578 0-17.996 3.126-17.996 10.942 0 4.872 3.996 6.917 8.043 6.917 6.572 0 10.405-3.825 12.321-5.878v-11.981zm2.02 29.502c-.563-1.688-.955-5.064-1.061-7.087-2.987 3.487-9.288 8.732-18.697 8.732-11.399 0-20.124-6.818-20.124-18.691 0-17.375 17.892-23.673 35.494-23.673h2.368v-3.824c0-5.737-2.368-9.333-10.803-9.333-8.605 0-14.51 4.553-16.983 6.298l-7.875-11.081c3.992-3.486 12.661-9.561 26.938-9.561 18.167 0 26.77 7.032 26.77 24.634v23.9c0 8.999.956 15.465 1.912 19.686h-17.939zm70.962-50.584c-1.123-.65-3.205-1.44-7.029-1.44-8.041 0-12.824 7.09-14.496 10.064v41.96h-18.181v-66.535h18.181v9.003c2.878-4.951 8.365-10.688 16.801-10.688 4.948 0 7.593.958 9.083 1.824l-4.359 15.812zm10.604-15.951h19.349l14.799 43.814h.667l13.554-43.814h18.726l-27.499 73.619c-5.89 15.693-12.825 24.858-30.988 24.858-5.576 0-8.941-.786-10.292-1.182l2.642-14.338c.954.224 2.475.616 6.363.616 9.328 0 12.59-4.441 15.233-11.56l2.474-6.829-25.028-65.184z"}))),$r||($r=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-nypl-full-white_svg__clip0_1147_1139"},n.createElement("path",{fill:"#fff",d:"M0 0h966.773v567.413H0z"})))))},nyplLionBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,dn);return n.createElement("svg",vn({viewBox:"0 0 136 135",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ln||(ln=n.createElement("path",{d:"M80.251 43.353c-.87-1.65-3.396-2.04-6.052-1.91a16.55 16.55 0 00-4.18.651c-1.48.434-3.484 1.433-2.613 3.473.566 1.39 2.57 1.954 4.006 2.432 1.655.564 3.484.998 4.746 1.736.74.434 1.524 1.563 2.57 1.433 1.044-.13 1.698-2.214 1.915-3.256.305-1.607.175-3.56-.392-4.559z",fill:"#000"})),an||(an=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.103.112C31.047.112.87 30.155.87 67.492c0 37.336 30.394 67.423 67.275 67.423 37.448 0 67.798-30.043 67.798-67.38C135.901 30.155 105.551.112 68.103.112zM28.652 114.77a10.757 10.757 0 01-2.482-3.039c-5.748-9.16-8.97-41.548-1.568-52.531 2.352-3.864 4.834-2.084 4.006.911-1.437 6.686-.566 10.42 2.7 17.67 3.631 7.609 12.59 17.32 19.008 24.279 2.664 2.887 4.89 5.301 6.117 6.893 7.185 9.29 9.58 16.063 9.536 17.887-.043 1.389-.305 2.3-2.787 2.083-12.932-.998-25.517-6.382-34.53-14.153zm99.052-30.575l.054-.162C138.6 47.52 111.647 4.497 64.837 6.19c-2.961.174-5.4 1.086-3.222 2.779 6.662 5.123 10.232 11.765 11.495 17.8.087.52.349.825 1.045 1.042 3.048.825 10.756 3.864 13.15 5.687.95.723 1.892 1.69 2.868 2.693 1.487 1.528 3.052 3.136 4.84 4.08 3.412 1.8 6.769 3.27 10.024 4.698h.003c1.77.777 3.511 1.54 5.213 2.335 2.134.955 6.053 3.56 5.792 6.642-.041.485-.157.952-.269 1.404-.13.518-.254 1.018-.254 1.505 0 .562.232 1.19.45 1.783.136.368.267.723.334 1.039.446 2.111.563 4.279.348 6.425-.305 2.301-1.045 5.948-2.351 8.075-.134.207-.282.4-.429.592-.375.49-.74.967-.834 1.623a11.233 11.233 0 01-.697 2.518c-.13.217-.13.608.131.65 5.138 1.911 10.494 5.34 12.889 7.12 1.22.881 1.83-.951 2.341-2.485zm-18.975-20.828a13.058 13.058 0 01-.13-1.215c0-.359.593-.806 1.046-1.147.095-.072.184-.139.26-.2a13.999 13.999 0 011.785-1.258c.14-.07.223.055.273.13.013.02.023.035.032.044 1.742 2.604 1.089 9.073-.174 12.156-.131.303-.392.434-.523.217-.653-1.39-1.567-2.649-2.656-3.3a.689.689 0 01-.218-.52c.435-1.599.538-3.268.305-4.907zM68.495 32.24c-7.708-1.867-14.152.564-16.373 2.344-4.18 3.3-7.446 8.64-6.14 16.238.523 3.256 1.524 5.99 3.136 8.248 4.45 6.297 11.622 9.674 18.79 13.048 3.21 1.512 6.42 3.023 9.382 4.796a.632.632 0 00.915-.13l.016-.024c1.604-2.334 2.91-4.235 5.601-5.36 2.43-1 6.123-.808 9.537-.63h.004c.44.023.874.046 1.302.066 3.875.173 8.055-.174 9.449-2.171 1.698-2.388 1.611-7.163-.958-8.64-.742-.415-1.668-.622-2.595-.83-.816-.181-1.633-.364-2.326-.69-1.088-.477-1.916-1.432-2.525-2.734-.48-1.086-.958-2.866-.305-4.038.556-1.066 2.037-.75 3.246-.49l.063.013c2.395.564 6.445 1.128 8.752.13.654-.347-1.785-1.997-2.699-2.431-2.15-1.062-4.607-1.873-7.06-2.684-2.765-.913-5.525-1.825-7.832-3.09-1.545-.858-2.923-1.961-4.307-3.07-1.7-1.36-3.408-2.727-5.447-3.66a74.478 74.478 0 00-11.626-4.211zM37.186 17.391c-1.872-.217-1.915-1.606-1.132-2.127a47.598 47.598 0 018.753-4.515 4.145 4.145 0 012.438-.391c2.482.26 6.575 1.91 11.278 5.253 5.617 3.994 10.668 11.635 7.315 11.027a34.483 34.483 0 00-3.7-.52c-1.441-.124-2.612-.093-3.57-.067-.723.02-1.325.036-1.83-.02a2.276 2.276 0 01-1.263-.695c-4.746-4.255-10.233-6.946-18.288-7.945zm51.818 59.652a3.828 3.828 0 00-1.655 2.214c-.027.09-.069.215-.118.361-.187.558-.473 1.413-.404 1.723.067.37.58.897.969 1.297.113.116.215.221.293.31a35.34 35.34 0 002.744 2.908 7.351 7.351 0 001.61 1.26c.604.3 1.44.37 2.348.445.273.022.55.045.832.075l.034.004c3.344.346 7.026.728 8.892-1.176.218-.217.305-.868.348-1.302.206-1.336.871-2.37 1.537-3.406.741-1.154 1.484-2.31 1.599-3.888a6.11 6.11 0 00-.349-2.605 2.827 2.827 0 00-1.437-1.737c-1.213-.509-2.098.102-2.896.652-.291.2-.57.393-.849.52-1.622.769-4 .934-6.289 1.094l-.503.035c-.296.02-.594.04-.89.058h-.001c-2.234.14-4.432.277-5.815 1.158zM22.948 26.03c.385-.43.883-.746 1.437-.912a37.386 37.386 0 0123.557 1.997c1.393.608 2.046 1.476 1.132 2.084-1.176.695-4.703 2.996-6.662 4.819-.566.478-1.568.521-2.177.434l-.246-.032c-7.157-.935-11.025-1.44-21.875 2.68-1.698.695-3.222-.26-2.438-1.563 1.437-2.648 4.833-7.033 7.272-9.507zM8.36 53.816a2.946 2.946 0 00-.653 1.606c-2.787 13.502-.566 24.79 2.09 31.997.61 1.563 3.048.955 2.961-2.388.017-.605.023-1.275.03-2.002.082-9.085.246-27.125 21.09-39.546 1.262-.738 2.35-1.476 1.828-2.778-.305-.738-1.655-.868-3.484-.608-14.064 2.475-23.121 12.59-23.862 13.72zm27.738 17.28c-3.963-9.639-1.393-18.279.392-21.578.87-1.65 1.741-2.735 2.874-2.431 1.219.347 1.524 1.606 1.698 3.907 1.263 19.233 12.932 25.702 27.563 32.518 11.583 5.904 24.733 12.633 35.75 28.957 1.654 2.345 1.916 3.777.043 5.123-6.705 4.559-12.802 7.771-21.728 9.855-1.35.304-2.743.087-3.919-2.995-6.742-17.265-15.964-24.728-24.497-31.632-7.174-5.805-13.86-11.216-18.176-21.725zm73.067 38.334c.609 1.172 1.698 2.649 3.57.782 3.223-3.17 7.795-9.291 9.319-12.243.035-.077.074-.154.115-.235.258-.511.56-1.11.146-1.936-.74-1.52-4.877-6.165-7.664-8.292l-.033-.025c-1.086-.823-2.55-1.933-3.929-2.32a3.246 3.246 0 00-1.089-.13c-1.025.118-1.158.592-1.561 2.034l-.137.484c-.74 2.518-2.177 4.298-3.44 4.82a6.957 6.957 0 01-3.745.607c-1.088-.087-1.654.912-.914 1.65 4.136 4.515 6.705 9.204 9.362 14.804z",fill:"#000"})),rn||(rn=n.createElement("path",{d:"M71.456 47.998c1.654.565 3.483.999 4.746 1.737.74.434 1.524 1.563 2.569 1.433 1.045-.13 1.698-2.214 1.916-3.256.305-1.563.13-3.517-.392-4.515-.87-1.65-3.397-2.041-6.053-1.91-1.415.037-2.82.256-4.18.65-1.48.435-3.483 1.433-2.612 3.474.566 1.302 2.569 1.91 4.005 2.388z",fill:"#000"})))},nyplLionWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,pn);return n.createElement("svg",fn({viewBox:"0 0 125 126",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,on||(on=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z"})),sn||(sn=n.createElement("mask",{id:"logo-nypl-lion-white_svg__a",maskUnits:"userSpaceOnUse",x:0,y:0,width:125,height:126},n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z"}))),hn||(hn=n.createElement("g",{mask:"url(#logo-nypl-lion-white_svg__a)"},n.createElement("path",{d:"M0-.994h125v126H0z"}))))},openebooksColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,zn);return n.createElement("svg",yn({viewBox:"0 0 152 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,mn||(mn=n.createElement("g",{clipPath:"url(#logo-openebooks-color_svg__clip0_53471_41906)"},n.createElement("path",{d:"M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",fill:"#012F53"}),n.createElement("path",{d:"M76 7.79S43.52-12.182-.008 11.842v111.332s22.226-23.121 58.783-13.642V30.593h34.45v78.939c36.559-9.473 58.783 13.636 58.783 13.636V11.842C108.482-12.182 76 7.79 76 7.79z",fill:"url(#logo-openebooks-color_svg__paint0_linear_53471_41906)"}),n.createElement("path",{d:"M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915z",fill:"#fff"}))),un||(un=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-color_svg__paint0_linear_53471_41906",x1:76.519,y1:132.496,x2:75.513,y2:5.94,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{offset:.15,stopColor:"#8AC33E"}),n.createElement("stop",{offset:.3,stopColor:"#5F9445"}),n.createElement("stop",{offset:.47,stopColor:"#37694B"}),n.createElement("stop",{offset:.62,stopColor:"#19494F"}),n.createElement("stop",{offset:.74,stopColor:"#073652"}),n.createElement("stop",{offset:.83,stopColor:"#012F53"})))))},openebooksNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,En);return n.createElement("svg",On({viewBox:"0 0 155 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,gn||(gn=n.createElement("g",{clipPath:"url(#logo-openebooks-negative_svg__clip0_54498_42323)"},n.createElement("path",{d:"M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",fill:"#fff"}),n.createElement("path",{d:"M100.627 10.801c42.596-3.868 54.346 12.835 54.346 12.835v97.554s-11.75-16.705-54.346-12.835V10.801z",fill:"url(#logo-openebooks-negative_svg__paint0_linear_54498_42323)"}),n.createElement("path",{d:"M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",fill:"#0B1F31"}),n.createElement("path",{d:"M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",fill:"url(#logo-openebooks-negative_svg__paint1_linear_54498_42323)"}),n.createElement("path",{d:"M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",fill:"#0B1F31"}))),bn||(bn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-negative_svg__paint0_linear_54498_42323",x1:127.8,y1:121.19,x2:127.8,y2:10.218,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})),n.createElement("linearGradient",{id:"logo-openebooks-negative_svg__paint1_linear_54498_42323",x1:27.173,y1:121.181,x2:27.173,y2:10.209,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})))))},openebooksWithTextColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,kn);return n.createElement("svg",jn({viewBox:"0 0 152 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xn||(xn=n.createElement("g",{clipPath:"url(#logo-openebooks-with-text-color_svg__clip0_53471_41905)"},n.createElement("path",{d:"M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",fill:"#012F53"}),n.createElement("path",{d:"M76 7.79S43.52-12.182-.008 11.842v111.332s22.226-23.121 58.783-13.642V30.593h34.45v78.939c36.559-9.473 58.783 13.636 58.783 13.636V11.842C108.482-12.182 76 7.79 76 7.79z",fill:"url(#logo-openebooks-with-text-color_svg__paint0_linear_53471_41905)"}),n.createElement("path",{d:"M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915zM130.032 126.627c.01.626-.171 1.24-.519 1.76-.372.531-.89.944-1.49 1.191a5.757 5.757 0 01-2.286.419 9.806 9.806 0 01-1.835-.145 7.126 7.126 0 01-1.545-.524v-2.556c.563.28 1.154.502 1.763.66a6.857 6.857 0 001.68.235 1.69 1.69 0 00.967-.21.679.679 0 00.309-.574.58.58 0 00-.128-.377 1.348 1.348 0 00-.397-.335c-.178-.109-.663-.338-1.455-.681a7.123 7.123 0 01-1.61-.916 2.88 2.88 0 01-.796-1.016 3.339 3.339 0 01-.254-1.36 2.701 2.701 0 011.103-2.288c.734-.548 1.743-.821 3.027-.819a8.723 8.723 0 013.47.762l-.911 2.201c-1.025-.456-1.909-.683-2.654-.681a1.402 1.402 0 00-.839.194.589.589 0 00-.263.487.695.695 0 00.097.319c.057.098.137.18.233.24a13.28 13.28 0 001.816.901c.943.411 1.597.853 1.963 1.328.383.515.579 1.145.554 1.785zm-8.358 3.227h-3.342l-2.164-4.06-.878.507v3.562h-2.981v-10.619h2.981v4.609c.273-.471.576-.925.907-1.357l2.309-3.254h3.229l-3.455 4.756 3.394 5.856zm-18.875-5.324c0 2.053.737 3.079 2.21 3.078.748 0 1.302-.247 1.663-.748s.546-1.276.546-2.33-.183-1.844-.554-2.347c-.372-.502-.912-.762-1.642-.762-1.482.003-2.223 1.039-2.223 3.109zm7.536 0c0 1.787-.452 3.145-1.356 4.075-.904.931-2.227 1.395-3.97 1.394-1.72 0-3.039-.467-3.957-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.453-3.117 1.362-4.046.908-.928 2.234-1.396 3.978-1.401 1.745 0 3.067.462 3.966 1.387.898.925 1.347 2.283 1.347 4.075zm-19.767 0c0 2.053.737 3.079 2.21 3.078.75 0 1.304-.247 1.663-.748s.548-1.276.548-2.33-.185-1.844-.556-2.347c-.372-.502-.912-.758-1.648-.758-1.478 0-2.217 1.035-2.217 3.105zm7.536 0c0 1.787-.45 3.145-1.354 4.075-.902.931-2.224 1.395-3.965 1.394-1.72 0-3.04-.467-3.958-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.454-3.117 1.364-4.046.91-.928 2.236-1.396 3.978-1.401 1.746 0 3.067.462 3.964 1.387.897.925 1.344 2.283 1.341 4.075zm-17.634.878v2.231h1.039c.924 0 1.386-.378 1.388-1.135a.96.96 0 00-.374-.813 1.74 1.74 0 00-1.075-.285l-.978.002zm0-2.095h.89c.346.021.69-.068.982-.256a.871.871 0 00.35-.756c0-.595-.463-.893-1.391-.893h-.84l.009 1.905zm-2.963-4.076h3.823c1.488 0 2.592.216 3.313.646.724.419 1.088 1.091 1.088 1.999a2.471 2.471 0 01-.475 1.523c-.3.414-.743.704-1.243.815v.071a2.277 2.277 0 011.934 2.456 2.683 2.683 0 01-1.123 2.28c-.746.558-1.764.838-3.053.838h-4.26l-.004-10.628zm-5.733 4.176c-.32-.007-.63.106-.87.319a1.464 1.464 0 00-.404.987h2.519a1.39 1.39 0 00-.35-.949 1.16 1.16 0 00-.89-.359l-.005.002zm.174 6.588c-1.415 0-2.514-.363-3.298-1.09-.784-.726-1.173-1.765-1.167-3.115 0-1.389.36-2.454 1.083-3.196.722-.741 1.757-1.114 3.105-1.119 1.278 0 2.265.325 2.96.975.697.641 1.05 1.573 1.05 2.789v1.257h-5.236a1.402 1.402 0 00.516 1.083c.39.28.865.418 1.344.392.475.005.95-.042 1.415-.138a7.152 7.152 0 001.409-.487v2.035a5.177 5.177 0 01-1.424.471c-.579.098-1.165.145-1.753.141l-.004.002zm-7.692-.145h-1.45l-5.988-8.913h-.059c.08 1.048.12 2.007.12 2.877v6.036H55.7v-10.619h1.438l5.975 8.876h.07c-.011-.132-.032-.549-.068-1.257a20.277 20.277 0 01-.036-1.525v-6.094h1.19l-.014 10.619zm-12.067 0h-6.11v-10.619h6.11v1.096H47.36v3.42h4.543v1.089h-4.547v3.916h4.828l.005 1.098zm-15.156-5.238h1.146c1.13 0 1.944-.178 2.45-.532.506-.354.756-.92.756-1.699 0-.702-.237-1.224-.712-1.57-.474-.345-1.213-.515-2.216-.515h-1.424v4.316zm5.669-2.288c0 1.073-.38 1.9-1.138 2.483-.759.582-1.84.87-3.246.863h-1.287v4.178h-1.274v-10.619h2.84c2.74 0 4.11 1.032 4.11 3.095h-.005zm-19.197 2.2c0 1.437.315 2.529.945 3.275.63.746 1.548 1.116 2.756 1.11 1.213 0 2.13-.37 2.75-1.11.62-.74.93-1.832.93-3.275 0-1.429-.31-2.511-.93-3.248-.62-.736-1.53-1.106-2.729-1.11-1.213 0-2.137.373-2.771 1.119-.634.746-.951 1.825-.951 3.239zm8.729 0c0 1.7-.444 3.036-1.333 4.008-.889.973-2.12 1.461-3.695 1.467-1.612 0-2.859-.477-3.739-1.431-.88-.954-1.318-2.305-1.312-4.052 0-1.731.44-3.07 1.318-4.017.88-.947 2.128-1.424 3.748-1.431 1.574 0 2.803.485 3.686 1.454.883.97 1.326 2.304 1.33 4.002h-.003z",fill:"#fff"}))),wn||(wn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-with-text-color_svg__paint0_linear_53471_41905",x1:76.519,y1:132.496,x2:75.513,y2:5.94,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{offset:.15,stopColor:"#8AC33E"}),n.createElement("stop",{offset:.3,stopColor:"#5F9445"}),n.createElement("stop",{offset:.47,stopColor:"#37694B"}),n.createElement("stop",{offset:.62,stopColor:"#19494F"}),n.createElement("stop",{offset:.74,stopColor:"#073652"}),n.createElement("stop",{offset:.83,stopColor:"#012F53"})))))},openebooksWithTextNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Tn);return n.createElement("svg",Vn({viewBox:"0 0 155 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Mn||(Mn=n.createElement("g",{clipPath:"url(#logo-openebooks-with-text-negative_svg__clip0_54498_42322)"},n.createElement("path",{d:"M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",fill:"#fff"}),n.createElement("path",{d:"M100.627 10.801c42.596-3.868 54.346 12.835 54.346 12.835v97.554s-11.75-16.705-54.346-12.835V10.801z",fill:"url(#logo-openebooks-with-text-negative_svg__paint0_linear_54498_42322)"}),n.createElement("path",{d:"M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",fill:"#0B1F31"}),n.createElement("path",{d:"M130.113 124.927a3.224 3.224 0 01-.514 1.802 3.401 3.401 0 01-1.479 1.218 5.51 5.51 0 01-2.266.432 9.509 9.509 0 01-1.822-.149 6.98 6.98 0 01-1.532-.535v-2.61a8.766 8.766 0 001.748.675 6.51 6.51 0 001.664.241 1.63 1.63 0 00.96-.225.702.702 0 00.304-.587.603.603 0 00-.126-.386 1.32 1.32 0 00-.394-.342c-.469-.257-.95-.49-1.442-.698a7.046 7.046 0 01-1.599-.936 2.983 2.983 0 01-.788-1.041 3.487 3.487 0 01-.252-1.391 2.778 2.778 0 011.092-2.34c.737-.567 1.739-.851 3.004-.851 1.19.014 2.363.28 3.442.782l-.901 2.265c-1.015-.464-1.893-.697-2.633-.698a1.35 1.35 0 00-.831.2.605.605 0 00-.261.498.715.715 0 00.326.572 13.42 13.42 0 001.802.923c.937.419 1.586.869 1.948 1.351.383.531.577 1.176.55 1.83zm-8.288 3.31h-3.316l-2.148-4.154-.87.52v3.634h-2.95v-10.875h2.95v4.728c.271-.481.572-.945.901-1.389l2.284-3.33h3.209l-3.418 4.859 3.358 6.007zm-18.725-5.449c0 2.102.731 3.153 2.193 3.153.741 0 1.291-.257 1.649-.766.358-.509.543-1.306.543-2.387s-.183-1.884-.55-2.398a1.856 1.856 0 00-1.628-.781c-1.472-.006-2.207 1.051-2.207 3.17v.009zm7.477 0c0 1.829-.45 3.219-1.351 4.17-.901.952-2.214 1.428-3.939 1.428-1.708 0-3.016-.479-3.926-1.437-.91-.957-1.36-2.349-1.351-4.174 0-1.802.45-3.182 1.351-4.141.901-.959 2.216-1.437 3.946-1.434 1.73 0 3.04.473 3.932 1.421.892.947 1.34 2.333 1.345 4.158l-.007.009zm-19.608 0c0 2.102.73 3.153 2.192 3.153.743 0 1.293-.257 1.65-.766.359-.509.541-1.306.541-2.387s-.18-1.884-.55-2.398a1.845 1.845 0 00-1.628-.781c-1.47-.006-2.205 1.051-2.205 3.17v.009zm7.475 0c0 1.829-.45 3.219-1.35 4.17-.902.952-2.215 1.428-3.94 1.428-1.704 0-3.013-.479-3.926-1.437-.913-.957-1.363-2.349-1.351-4.174 0-1.802.45-3.182 1.351-4.141.901-.959 2.217-1.437 3.946-1.434 1.731 0 3.042.473 3.933 1.421.89.947 1.336 2.333 1.337 4.158v.009zm-17.488.901v2.281h1.025c.916 0 1.376-.385 1.376-1.16a.989.989 0 00-.372-.833 1.673 1.673 0 00-1.063-.288h-.966zm0-2.148h.885c.344.022.686-.07.973-.261a.906.906 0 00.35-.773c0-.608-.451-.914-1.384-.914h-.824v1.948zm-2.928-4.17h3.79c1.478 0 2.573.225 3.287.662.713.437 1.078 1.126 1.078 2.044a2.605 2.605 0 01-.468 1.561 2.102 2.102 0 01-1.234.833v.072a2.537 2.537 0 011.464.901c.319.478.476 1.046.45 1.621a2.783 2.783 0 01-1.126 2.332c-.741.566-1.748.849-3.027.849h-4.223l.009-10.875zm-5.687 4.278a1.223 1.223 0 00-.862.326 1.521 1.521 0 00-.401 1.011h2.497a1.428 1.428 0 00-.349-.972 1.131 1.131 0 00-.894-.379l.01.014zm.171 6.741c-1.402 0-2.492-.375-3.27-1.125-.778-.751-1.164-1.814-1.16-3.189 0-1.423.36-2.513 1.077-3.269.717-.757 1.744-1.139 3.079-1.146 1.267 0 2.243.332 2.927.997.692.658 1.041 1.61 1.041 2.853v1.292h-5.198a1.449 1.449 0 00.513 1.108c.384.285.855.427 1.331.401.472.004.942-.043 1.404-.142a6.932 6.932 0 001.398-.497v2.089a5.103 5.103 0 01-1.41.482 9.762 9.762 0 01-1.74.133l.008.013zm-7.648-.153h-1.442l-5.939-9.119h-.051c.08 1.07.118 2.051.117 2.943v6.176h-1.167v-10.875h1.428l5.928 9.074h.06c-.012-.132-.034-.56-.067-1.284a22.04 22.04 0 01-.036-1.56v-6.23h1.169v10.875zm-11.969 0h-6.049v-10.875h6.059v1.126h-4.798v3.499h4.505v1.114h-4.505v3.999h4.797l-.009 1.137zm-15.033-5.359h1.137c1.12 0 1.93-.181 2.43-.542.5-.361.75-.941.75-1.739 0-.717-.235-1.253-.705-1.607-.47-.349-1.204-.527-2.2-.527h-1.412v4.415zm5.63-2.341c0 1.101-.375 1.949-1.126 2.542-.75.593-1.823.886-3.218.88h-1.277v4.278h-1.264v-10.875h2.818c2.715 0 4.072 1.055 4.072 3.166l-.005.009zm-19.046 2.251c0 1.47.312 2.587.936 3.353.625.766 1.536 1.145 2.735 1.137 1.2 0 2.11-.379 2.727-1.137s.925-1.876.923-3.353c0-1.462-.307-2.569-.923-3.321-.616-.752-1.517-1.127-2.703-1.126-1.2 0-2.117.382-2.75 1.144-.632.763-.945 1.861-.941 3.294l-.005.009zm8.66 0c0 1.742-.441 3.109-1.323 4.103-.881.993-2.103 1.492-3.666 1.495-1.6 0-2.836-.491-3.708-1.464-.871-.972-1.301-2.364-1.301-4.147 0-1.784.434-3.139 1.308-4.109.874-.971 2.11-1.466 3.716-1.466 1.562 0 2.781.496 3.658 1.488.877.992 1.316 2.356 1.318 4.091l-.003.009z",fill:"#000"}),n.createElement("path",{d:"M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",fill:"url(#logo-openebooks-with-text-negative_svg__paint1_linear_54498_42322)"}),n.createElement("path",{d:"M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",fill:"#0B1F31"}))),Cn||(Cn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-with-text-negative_svg__paint0_linear_54498_42322",x1:127.8,y1:121.19,x2:127.8,y2:10.218,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})),n.createElement("linearGradient",{id:"logo-openebooks-with-text-negative_svg__paint1_linear_54498_42322",x1:27.173,y1:121.181,x2:27.173,y2:10.209,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})))))},qplAltBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,_n);return n.createElement("svg",In({viewBox:"0 0 250 134",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Sn||(Sn=n.createElement("path",{d:"M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"})))},qplAltWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Nn);return n.createElement("svg",Dn({viewBox:"0 0 250 134",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ln||(Ln=n.createElement("path",{d:"M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"})))},qplBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,qn);return n.createElement("svg",Yn({viewBox:"0 0 320 43",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Pn||(Pn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"})),Bn||(Bn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"})),Rn||(Rn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"})),Hn||(Hn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"})),Fn||(Fn=n.createElement("path",{d:"M59.443 28.671a.703.703 0 01.03 1.258l-.772.437c-.28.162-.655.119-.914-.035L54.5 28.467c-.9.37-1.907.563-3.01.563-4.136 0-7.425-3.271-7.425-7.384a7.393 7.393 0 017.424-7.424 7.41 7.41 0 017.445 7.425c0 1.932-.826 4-2.296 5.422l2.806 1.602zm89.86-6.949a2.672 2.672 0 002.662-2.668c0-1.372-1.196-2.47-2.662-2.47h-2.801v5.138h2.801zm-2.801 6.404a.723.723 0 01-.712.708h-.75a.709.709 0 01-.713-.708v-13a.71.71 0 01.712-.708h4.362c2.611 0 4.759 2.111 4.759 4.674 0 2.615-2.138 4.756-4.738 4.756h-2.92v4.277zm11.38-13c0-.382.329-.708.713-.708h.749a.71.71 0 01.714.709v8.187c0 2.149 1.338 3.65 3.373 3.65 2.064 0 3.411-1.474 3.411-3.61v-8.226a.71.71 0 01.713-.709h.751c.384 0 .712.326.712.708v8.305c0 3.22-2.33 5.6-5.588 5.6-3.237 0-5.548-2.38-5.548-5.6v-8.305zm21.313 5.456c1.258 0 2.029-.847 2.029-2.117 0-1.266-.734-2.02-2.029-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.919v4.236h3.255zm4.481-2.138c0 2.41-1.932 4.126-4.64 4.126h-4.5a.711.711 0 01-.712-.71V15.127a.71.71 0 01.712-.708h4.323c2.553 0 4.384 1.663 4.384 3.948 0 1.256-.64 2.362-1.593 3.094 1.226.673 2.026 1.761 2.026 3.248v-.001zm11.994 2.138c.4 0 .714.323.714.708v.57a.727.727 0 01-.21.504.717.717 0 01-.504.207h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.77c.384 0 .712.326.712.708v11.719h5.347zm4.119-11.72c0-.38.329-.708.712-.708h.791c.384 0 .714.326.714.709v12.998a.726.726 0 01-.714.71h-.791a.725.725 0 01-.712-.711V15.127zm13.994-.903c1.949 0 3.477.617 5.017 1.923.288.288.31.735.019 1.026l-.508.502c-.292.363-.681.34-.999.025-.998-.86-2.328-1.39-3.548-1.39-2.876 0-5.169 2.4-5.169 5.318 0 2.9 2.297 5.298 5.169 5.298 1.372 0 2.186-.368 3.558-1.399.291-.23.61-.25.911-.047l.571.512c.334.25.295.76.011 1.041-1.365 1.317-3.128 2-5.032 2-4.141 0-7.463-3.28-7.463-7.386 0-4.112 3.33-7.424 7.463-7.424zm24.873 12.624c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.657.716.716 0 01-.273.053h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.771c.383 0 .712.327.712.708v11.719h5.346zm4.119-11.72c0-.382.329-.708.713-.708h.788c.385 0 .714.326.714.708v12.998a.725.725 0 01-.714.71h-.788a.724.724 0 01-.713-.711V15.127zm12.572 5.456c1.259 0 2.03-.848 2.03-2.117 0-1.266-.734-2.02-2.03-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.918v4.236h3.254zm4.482-2.139c0 2.41-1.933 4.127-4.641 4.127h-4.499a.71.71 0 01-.714-.71V15.127c0-.385.314-.708.714-.708h4.322c2.554 0 4.385 1.663 4.385 3.948 0 1.256-.64 2.362-1.594 3.094 1.226.673 2.027 1.761 2.027 3.248zm10.178-3.221c1.36 0 2.504-1.133 2.504-2.53 0-1.301-1.164-2.432-2.504-2.432h-3.491v4.962h3.491zm-3.529 6.638a.723.723 0 01-.712.708h-.771a.714.714 0 01-.658-.436.725.725 0 01-.055-.272V15.127a.71.71 0 01.713-.709h5.111c2.567 0 4.642 2.005 4.642 4.518 0 1.783-1.091 3.353-2.788 4.166l2.531 4.667c.262.487-.048 1.064-.635 1.064h-1.006a.675.675 0 01-.617-.36l-2.531-5.018h-3.224v4.67zm18.887-7.384a575.069 575.069 0 00-1.209-2.708l-2.441 5.455h4.878c-.318-.707-.64-1.426-1.228-2.747zm-1.926-6.12a.688.688 0 01.637-.4h.198c.297 0 .514.157.643.415l5.961 13.21c.222.48-.104.988-.644.988h-.79a.688.688 0 01-.643-.415l-1.37-3.04h-6.569l-1.347 3.028a.698.698 0 01-.651.427h-.788c-.539 0-.866-.506-.644-.986l6.007-13.227zm16.639 6.865c1.36 0 2.503-1.133 2.503-2.53 0-1.301-1.164-2.432-2.503-2.432h-3.491v4.962h3.491zm-3.531 6.639a.724.724 0 01-.713.709h-.77a.716.716 0 01-.504-.207.706.706 0 01-.209-.502V15.127a.71.71 0 01.712-.709h5.113c2.566 0 4.641 2.005 4.641 4.518 0 1.782-1.092 3.353-2.788 4.166l2.531 4.668c.261.486-.049 1.063-.635 1.063h-1.006a.671.671 0 01-.618-.36l-2.53-5.018h-3.224v4.67zM308.115 15.5a.694.694 0 01-.026-.724.698.698 0 01.63-.358h.926c.241 0 .45.133.59.316l3.714 5.101 3.716-5.106a.744.744 0 01.586-.31h.929c.578 0 .901.598.588 1.103l-4.751 6.45v6.153a.726.726 0 01-.713.71h-.771a.71.71 0 01-.712-.71V21.99l-4.706-6.49V15.5zm-245.026-.33c0-.38.328-.707.712-.707h.75a.71.71 0 01.713.708v8.188c0 2.15 1.338 3.65 3.374 3.65 2.063 0 3.411-1.474 3.411-3.61V15.17a.71.71 0 01.712-.708h.751c.384 0 .713.326.713.708v8.306c0 3.218-2.33 5.598-5.587 5.598-3.24 0-5.55-2.379-5.55-5.598v-8.306zm24.767 11.72c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.711.711 0 01-.712-.709V15.171c0-.386.312-.708.712-.708h7.777c.399 0 .714.322.714.708v.57a.711.711 0 01-.714.71h-6.294v4.118h5.327c.383 0 .712.328.712.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.294zm13.653 0c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.712.712 0 01-.712-.709V15.171a.71.71 0 01.712-.708h7.777c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.656.712.712 0 01-.273.054h-6.294v4.118h5.327c.384 0 .713.328.713.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.293zm7.281 1.28a.704.704 0 01-.209.502.724.724 0 01-.503.206h-.692a.723.723 0 01-.712-.709V14.956c0-.385.329-.69.712-.69h.332c.206 0 .399.094.527.253l8.238 10.21v-9.557a.71.71 0 01.713-.709h.691c.384 0 .714.327.714.709v13.214c0 .384-.331.69-.714.69h-.192a.677.677 0 01-.527-.253l-8.378-10.402v9.749zm14.292-1.87l.027-.036c.036-.045.068-.084.139-.175.077-.1.111-.143.147-.184.34-.444.752-.595 1.18-.228l.107.093c.26.229.539.435.834.618.707.439 1.444.698 2.174.698 1.361 0 2.307-.81 2.307-1.824 0-1.072-.869-1.803-3.251-2.793-2.668-1.159-3.678-2.203-3.678-4.372 0-2.023 1.686-3.83 4.543-3.83a6.623 6.623 0 012.544.526c.277.115.526.238.744.362.133.075.228.136.24.148.374.188.56.66.248 1.154a5.326 5.326 0 00-.11.172l-.002.006c-.04.064-.08.127-.122.19-.279.434-.677.548-1.14.288-.008-.003-.186-.11-.275-.162-.172-.1-.348-.19-.528-.275-.527-.245-1.042-.398-1.509-.42a2.478 2.478 0 00-.109-.003c-1.577 0-2.386.843-2.386 1.824 0 1.042.727 1.742 2.453 2.458 3.317 1.343 4.594 2.465 4.594 4.67 0 2.2-2.066 3.87-4.602 3.87a6.553 6.553 0 01-3.014-.744 6.331 6.331 0 01-1.373-.929l-.042-.036c-.329-.29-.423-.622-.14-1.066zm-71.594.684c2.957 0 5.385-2.405 5.385-5.338 0-2.94-2.437-5.377-5.385-5.377-2.944 0-5.365 2.434-5.365 5.378 0 2.935 2.413 5.336 5.365 5.336z"})))},qplColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Qn);return n.createElement("svg",Zn({viewBox:"0 0 355 48",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,An||(An=n.createElement("g",{clipPath:"url(#logo-qpl-color_svg__clip0)"},n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M36.012 11.016v20.682l-9.003 5.17V16.186l-9.002-5.17-9.003 5.17v20.681L0 31.697v-20.68l9.004-5.173 9.001-5.17h.002l9.003 5.17 9.003 5.17-.001.002zM9.002 36.868l9.004-5.17 9.003 5.17 9.004 5.17-9.004 5.17-9.003-5.17-9.004-5.17z",fill:"#4B2D83"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.003 36.868L27 47.209l9-5.17-18-10.341-8.997 5.171z",fill:"#422980"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 16.185v20.683l9-5.17V11.015l-9 5.17z",fill:"#5C3296"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 31.698l9 5.17V16.185l-9-5.17v20.682z",fill:"#282561"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 11.016l9.004 5.17L18 11.016l9 5.17 9-5.17L18 .674 0 11.016z",fill:"#422980"}),n.createElement("path",{d:"M65.945 32.481a.78.78 0 01.033 1.395l-.856.485c-.312.18-.727.132-1.014-.039l-3.648-2.067c-.998.41-2.115.624-3.34.624-4.587 0-8.236-3.629-8.236-8.19a8.202 8.202 0 018.236-8.237 8.221 8.221 0 018.259 8.236c0 2.144-.916 4.438-2.547 6.016l3.113 1.777zm99.688-7.709a2.962 2.962 0 002.953-2.96c0-1.522-1.326-2.74-2.953-2.74h-3.107v5.7h3.107zm-3.107 7.104a.803.803 0 01-.79.786h-.832a.787.787 0 01-.791-.786v-14.42c0-.429.347-.787.79-.787h4.839c2.896 0 5.28 2.342 5.28 5.185 0 2.901-2.372 5.276-5.257 5.276h-3.239v4.746zm12.624-14.42c0-.425.365-.787.791-.787h.832c.444 0 .791.358.791.786v9.083c0 2.384 1.485 4.05 3.742 4.05 2.29 0 3.785-1.636 3.785-4.006v-9.126c0-.428.348-.786.79-.786h.834c.426 0 .79.362.79.786v9.213c0 3.571-2.585 6.212-6.2 6.212-3.591 0-6.155-2.64-6.155-6.212v-9.213zm23.645 6.051c1.395 0 2.251-.94 2.251-2.348 0-1.405-.815-2.24-2.251-2.24H195.6v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.239v4.7H199.167zm4.972-2.373c0 2.674-2.144 4.578-5.148 4.578h-4.992a.79.79 0 01-.79-.788V17.455c0-.427.347-.785.79-.785h4.796c2.832 0 4.863 1.845 4.863 4.38 0 1.393-.71 2.62-1.767 3.432 1.36.747 2.248 1.954 2.248 3.603zm13.305 2.372c.444 0 .792.358.792.786v.633a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.348-.785.79-.785h.855c.426 0 .79.362.79.786v13h5.931zm4.57-13c0-.424.365-.787.79-.787h.877c.426 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.877a.804.804 0 01-.79-.788V17.455zm15.525-1.004c2.162 0 3.857.685 5.565 2.134.32.32.344.815.021 1.138l-.563.557c-.324.403-.756.378-1.109.028-1.107-.955-2.582-1.543-3.936-1.543-3.19 0-5.734 2.664-5.734 5.9 0 3.217 2.548 5.878 5.734 5.878 1.523 0 2.425-.408 3.948-1.552.322-.255.676-.278 1.01-.052l.634.568c.37.278.327.842.012 1.155-1.514 1.461-3.47 2.218-5.582 2.218-4.594 0-8.28-3.639-8.28-8.193 0-4.562 3.694-8.236 8.28-8.236zm27.593 14.005c.444 0 .792.358.792.786v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.346-.785.79-.785h.855c.425 0 .79.363.79.786v13h5.931v.001zm4.57-13c0-.425.364-.787.79-.787h.875c.427 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.875a.802.802 0 01-.79-.789V17.455v.001zm13.947 6.051c1.396 0 2.252-.94 2.252-2.348 0-1.405-.815-2.24-2.252-2.24h-3.195v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.238v4.7h3.61zm4.973-2.373c0 2.674-2.145 4.578-5.149 4.578h-4.991a.792.792 0 01-.792-.788v-14.42c0-.427.348-.785.792-.785h4.795c2.833 0 4.864 1.845 4.864 4.38 0 1.393-.71 2.62-1.768 3.432 1.36.747 2.249 1.954 2.249 3.603zm11.291-3.574c1.509 0 2.778-1.257 2.778-2.807 0-1.443-1.292-2.698-2.778-2.698h-3.873v5.505h3.873zm-3.915 7.364a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.429.347-.786.79-.786h5.671c2.847 0 5.149 2.224 5.149 5.012 0 1.978-1.21 3.72-3.093 4.622l2.808 5.177c.291.54-.053 1.181-.704 1.181h-1.116a.75.75 0 01-.685-.4l-2.808-5.567h-3.576v5.181zm20.953-8.192a772.62 772.62 0 00-1.342-3.004l-2.708 6.052h5.412a687.64 687.64 0 01-1.362-3.048zm-2.137-6.789a.759.759 0 01.706-.443h.22c.33 0 .57.174.714.46l6.612 14.655c.247.533-.115 1.096-.714 1.096h-.876a.768.768 0 01-.714-.46l-1.52-3.374h-7.287l-1.494 3.36a.774.774 0 01-.722.474h-.875c-.598 0-.96-.562-.714-1.094l6.664-14.674zm18.459 7.616c1.508 0 2.777-1.257 2.777-2.807 0-1.443-1.292-2.698-2.777-2.698h-3.873v5.505h3.873zm-3.918 7.365a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.428.348-.786.79-.786h5.672c2.847 0 5.149 2.224 5.149 5.012 0 1.977-1.211 3.72-3.093 4.622l2.808 5.178c.29.54-.054 1.18-.704 1.18h-1.117a.744.744 0 01-.685-.4l-2.807-5.567h-3.577v5.181zm12.088-14.006a.773.773 0 01.67-1.2h1.028c.267 0 .499.147.654.35l4.12 5.66 4.123-5.665a.824.824 0 01.65-.345h1.03c.642 0 1 .665.653 1.225l-5.271 7.155v6.826a.806.806 0 01-.791.788h-.855a.79.79 0 01-.79-.788V25.07l-5.221-7.2zm-271.826-.365c0-.423.364-.785.79-.785h.832c.445 0 .792.357.792.785v9.084c0 2.384 1.484 4.05 3.742 4.05 2.289 0 3.785-1.636 3.785-4.006v-9.128c0-.428.347-.785.79-.785h.833c.426 0 .79.362.79.785v9.215c0 3.57-2.584 6.21-6.198 6.21-3.593 0-6.156-2.639-6.156-6.21v-9.215zm27.476 13.001c.444 0 .792.358.792.787v.632a.79.79 0 01-.792.787h-8.627a.79.79 0 01-.79-.787v-14.42c0-.428.346-.785.79-.785h8.627c.443 0 .792.357.792.785v.632a.791.791 0 01-.792.788h-6.982v4.57h5.91c.425 0 .79.362.79.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm15.147 0c.444 0 .792.358.792.787v.632a.793.793 0 01-.792.787h-8.628a.79.79 0 01-.79-.787v-14.42c0-.427.347-.785.79-.785h8.628c.444 0 .792.357.792.785v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-6.983v4.57h5.91c.426 0 .791.362.791.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm8.077 1.42a.78.78 0 01-.232.557.8.8 0 01-.558.23h-.767a.8.8 0 01-.79-.788V17.266c0-.427.365-.765.79-.765h.368a.75.75 0 01.585.28l9.139 11.326V17.505c0-.427.347-.786.79-.786h.767c.426 0 .792.363.792.786v14.66c0 .426-.367.765-.792.765h-.213a.752.752 0 01-.585-.28l-9.294-11.54v10.815zm15.855-2.074l.03-.04c.04-.05.076-.094.155-.195.085-.11.123-.158.163-.204.377-.492.834-.66 1.309-.253l.118.104a7 7 0 00.925.685c.785.487 1.602.775 2.412.775 1.51 0 2.56-.899 2.56-2.024 0-1.189-.964-2-3.607-3.098-2.96-1.286-4.08-2.444-4.08-4.85 0-2.245 1.87-4.25 5.04-4.25.97.007 1.929.205 2.822.584.307.128.583.264.825.402.148.083.253.15.266.164.415.208.622.732.276 1.28-.032.048-.06.091-.122.191l-.003.006a8.212 8.212 0 01-.135.211c-.31.482-.751.608-1.265.32-.009-.004-.206-.123-.305-.18a7.769 7.769 0 00-.585-.305c-.585-.272-1.156-.442-1.675-.466a2.67 2.67 0 00-.12-.003c-1.75 0-2.647.935-2.647 2.023 0 1.156.806 1.933 2.721 2.727 3.68 1.49 5.096 2.734 5.096 5.18 0 2.442-2.292 4.294-5.105 4.294a7.273 7.273 0 01-3.344-.825 7.02 7.02 0 01-1.523-1.03l-.046-.04c-.365-.323-.47-.69-.156-1.183zm-79.424.758c3.28 0 5.974-2.668 5.974-5.92 0-3.263-2.704-5.967-5.974-5.967-3.266 0-5.952 2.7-5.952 5.966 0 3.257 2.677 5.92 5.952 5.92v.001z",fill:"#422980"}))),Wn||(Wn=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-qpl-color_svg__clip0"},n.createElement("path",{fill:"#fff",transform:"translate(0 .674)",d:"M0 0h355v47H0z"})))))},qplWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,rc);return n.createElement("svg",nc({viewBox:"0 0 320 43",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Gn||(Gn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"})),Un||(Un=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"})),Xn||(Xn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"})),Jn||(Jn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"})),Kn||(Kn=n.createElement("path",{d:"M59.443 28.671a.703.703 0 01.03 1.258l-.772.437c-.28.162-.655.119-.914-.035L54.5 28.467c-.9.37-1.907.563-3.01.563-4.136 0-7.425-3.271-7.425-7.384a7.393 7.393 0 017.424-7.424 7.41 7.41 0 017.445 7.425c0 1.932-.826 4-2.296 5.422l2.806 1.602zm89.86-6.949a2.672 2.672 0 002.662-2.668c0-1.372-1.196-2.47-2.662-2.47h-2.801v5.138h2.801zm-2.801 6.404a.723.723 0 01-.712.708h-.75a.709.709 0 01-.713-.708v-13a.71.71 0 01.712-.708h4.362c2.611 0 4.759 2.111 4.759 4.674 0 2.615-2.138 4.756-4.738 4.756h-2.92v4.277zm11.38-13c0-.382.329-.708.713-.708h.749a.71.71 0 01.714.709v8.187c0 2.149 1.338 3.65 3.373 3.65 2.064 0 3.411-1.474 3.411-3.61v-8.226a.71.71 0 01.713-.709h.751c.384 0 .712.326.712.708v8.305c0 3.22-2.33 5.6-5.588 5.6-3.237 0-5.548-2.38-5.548-5.6v-8.305zm21.313 5.456c1.258 0 2.029-.847 2.029-2.117 0-1.266-.734-2.02-2.029-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.919v4.236h3.255zm4.481-2.138c0 2.41-1.932 4.126-4.64 4.126h-4.5a.711.711 0 01-.712-.71V15.127a.71.71 0 01.712-.708h4.323c2.553 0 4.384 1.663 4.384 3.948 0 1.256-.64 2.362-1.593 3.094 1.226.673 2.026 1.761 2.026 3.248v-.001zm11.994 2.138c.4 0 .714.323.714.708v.57a.727.727 0 01-.21.504.717.717 0 01-.504.207h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.77c.384 0 .712.326.712.708v11.719h5.347zm4.119-11.72c0-.38.329-.708.712-.708h.791c.384 0 .714.326.714.709v12.998a.726.726 0 01-.714.71h-.791a.725.725 0 01-.712-.711V15.127zm13.994-.903c1.949 0 3.477.617 5.017 1.923.288.288.31.735.019 1.026l-.508.502c-.292.363-.681.34-.999.025-.998-.86-2.328-1.39-3.548-1.39-2.876 0-5.169 2.4-5.169 5.318 0 2.9 2.297 5.298 5.169 5.298 1.372 0 2.186-.368 3.558-1.399.291-.23.61-.25.911-.047l.571.512c.334.25.295.76.011 1.041-1.365 1.317-3.128 2-5.032 2-4.141 0-7.463-3.28-7.463-7.386 0-4.112 3.33-7.424 7.463-7.424zm24.873 12.624c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.657.716.716 0 01-.273.053h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.771c.383 0 .712.327.712.708v11.719h5.346zm4.119-11.72c0-.382.329-.708.713-.708h.788c.385 0 .714.326.714.708v12.998a.725.725 0 01-.714.71h-.788a.724.724 0 01-.713-.711V15.127zm12.572 5.456c1.259 0 2.03-.848 2.03-2.117 0-1.266-.734-2.02-2.03-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.918v4.236h3.254zm4.482-2.139c0 2.41-1.933 4.127-4.641 4.127h-4.499a.71.71 0 01-.714-.71V15.127c0-.385.314-.708.714-.708h4.322c2.554 0 4.385 1.663 4.385 3.948 0 1.256-.64 2.362-1.594 3.094 1.226.673 2.027 1.761 2.027 3.248zm10.178-3.221c1.36 0 2.504-1.133 2.504-2.53 0-1.301-1.164-2.432-2.504-2.432h-3.491v4.962h3.491zm-3.529 6.638a.723.723 0 01-.712.708h-.771a.714.714 0 01-.658-.436.725.725 0 01-.055-.272V15.127a.71.71 0 01.713-.709h5.111c2.567 0 4.642 2.005 4.642 4.518 0 1.783-1.091 3.353-2.788 4.166l2.531 4.667c.262.487-.048 1.064-.635 1.064h-1.006a.675.675 0 01-.617-.36l-2.531-5.018h-3.224v4.67zm18.887-7.384a575.069 575.069 0 00-1.209-2.708l-2.441 5.455h4.878c-.318-.707-.64-1.426-1.228-2.747zm-1.926-6.12a.688.688 0 01.637-.4h.198c.297 0 .514.157.643.415l5.961 13.21c.222.48-.104.988-.644.988h-.79a.688.688 0 01-.643-.415l-1.37-3.04h-6.569l-1.347 3.028a.698.698 0 01-.651.427h-.788c-.539 0-.866-.506-.644-.986l6.007-13.227zm16.639 6.865c1.36 0 2.503-1.133 2.503-2.53 0-1.301-1.164-2.432-2.503-2.432h-3.491v4.962h3.491zm-3.531 6.639a.724.724 0 01-.713.709h-.77a.716.716 0 01-.504-.207.706.706 0 01-.209-.502V15.127a.71.71 0 01.712-.709h5.113c2.566 0 4.641 2.005 4.641 4.518 0 1.782-1.092 3.353-2.788 4.166l2.531 4.668c.261.486-.049 1.063-.635 1.063h-1.006a.671.671 0 01-.618-.36l-2.53-5.018h-3.224v4.67zM308.115 15.5a.694.694 0 01-.026-.724.698.698 0 01.63-.358h.926c.241 0 .45.133.59.316l3.714 5.101 3.716-5.106a.744.744 0 01.586-.31h.929c.578 0 .901.598.588 1.103l-4.751 6.45v6.153a.726.726 0 01-.713.71h-.771a.71.71 0 01-.712-.71V21.99l-4.706-6.49V15.5zm-245.026-.33c0-.38.328-.707.712-.707h.75a.71.71 0 01.713.708v8.188c0 2.15 1.338 3.65 3.374 3.65 2.063 0 3.411-1.474 3.411-3.61V15.17a.71.71 0 01.712-.708h.751c.384 0 .713.326.713.708v8.306c0 3.218-2.33 5.598-5.587 5.598-3.24 0-5.55-2.379-5.55-5.598v-8.306zm24.767 11.72c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.711.711 0 01-.712-.709V15.171c0-.386.312-.708.712-.708h7.777c.399 0 .714.322.714.708v.57a.711.711 0 01-.714.71h-6.294v4.118h5.327c.383 0 .712.328.712.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.294zm13.653 0c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.712.712 0 01-.712-.709V15.171a.71.71 0 01.712-.708h7.777c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.656.712.712 0 01-.273.054h-6.294v4.118h5.327c.384 0 .713.328.713.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.293zm7.281 1.28a.704.704 0 01-.209.502.724.724 0 01-.503.206h-.692a.723.723 0 01-.712-.709V14.956c0-.385.329-.69.712-.69h.332c.206 0 .399.094.527.253l8.238 10.21v-9.557a.71.71 0 01.713-.709h.691c.384 0 .714.327.714.709v13.214c0 .384-.331.69-.714.69h-.192a.677.677 0 01-.527-.253l-8.378-10.402v9.749zm14.292-1.87l.027-.036c.036-.045.068-.084.139-.175.077-.1.111-.143.147-.184.34-.444.752-.595 1.18-.228l.107.093c.26.229.539.435.834.618.707.439 1.444.698 2.174.698 1.361 0 2.307-.81 2.307-1.824 0-1.072-.869-1.803-3.251-2.793-2.668-1.159-3.678-2.203-3.678-4.372 0-2.023 1.686-3.83 4.543-3.83a6.623 6.623 0 012.544.526c.277.115.526.238.744.362.133.075.228.136.24.148.374.188.56.66.248 1.154a5.326 5.326 0 00-.11.172l-.002.006c-.04.064-.08.127-.122.19-.279.434-.677.548-1.14.288-.008-.003-.186-.11-.275-.162-.172-.1-.348-.19-.528-.275-.527-.245-1.042-.398-1.509-.42a2.478 2.478 0 00-.109-.003c-1.577 0-2.386.843-2.386 1.824 0 1.042.727 1.742 2.453 2.458 3.317 1.343 4.594 2.465 4.594 4.67 0 2.2-2.066 3.87-4.602 3.87a6.553 6.553 0 01-3.014-.744 6.331 6.331 0 01-1.373-.929l-.042-.036c-.329-.29-.423-.622-.14-1.066zm-71.594.684c2.957 0 5.385-2.405 5.385-5.338 0-2.94-2.437-5.377-5.385-5.377-2.944 0-5.365 2.434-5.365 5.378 0 2.935 2.413 5.336 5.365 5.336z"})))},reservoirIconColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ic);return n.createElement("svg",oc({viewBox:"0 0 105 129",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,$n||($n=n.createElement("path",{d:"M57.736.066H27.298S17.876-1.02 9.18 5.622C.483 12.265.604 20.962.604 20.962h48.798S73.317 19.634 71.868 42.1c-1.45 22.466-22.466 19.446-22.466 19.446L40 61.667l9.146 19.688h.86s14.735 4.953 32.733-7.247C100.736 61.908 99.528 42.1 99.528 42.1s1.812-15.944-9.059-28.627C79.599.791 57.736.066 57.736.066z",fill:"#0576D3"})),ec||(ec=n.createElement("path",{d:"M49.146 81.355V61.546L57.736 68l12.79 13.355h-21.38z",fill:"#fff"})),tc||(tc=n.createElement("path",{d:"M57.132 61.667H38.41l34.303 66.916h32.13l-27.66-51.28s-9.663-15.636-20.05-15.636z",fill:"#004B98"})),lc||(lc=n.createElement("path",{d:"M55.079 61.305c-13.528.362-16.669.362-16.669.362l10.364 19.787s12.965-.229 18.504-1.548c5.54-1.32 9.784-2.537 9.784-2.537s-8.455-16.427-21.983-16.064zM0 .066h27.056v20.775H0z",fill:"#004B98"})),ac||(ac=n.createElement("path",{fill:"#0576D3",d:"M0 20.841h27.056v107.5H0z"})))},reservoirVerticalColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,uc);return n.createElement("svg",pc({viewBox:"0 0 234 261",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,cc||(cc=n.createElement("g",{clipPath:"url(#logo-reservoir-vertical-color_svg__clip0_362_388)"},n.createElement("path",{d:"M3.63 181.54H17.3a14.33 14.33 0 016.56 1.4 10.237 10.237 0 014.3 3.93 11.481 11.481 0 011.52 6v.06a11.16 11.16 0 01-2.22 7 10.896 10.896 0 01-6.08 3.92l9.4 16.46h-4.27l-8.92-15.9c-.13.011-.26.011-.39 0H7.28v15.87H3.63v-38.74zM17 201.17a9.403 9.403 0 006.57-2.17 7.75 7.75 0 002.35-6 7.624 7.624 0 00-2.42-6 9.677 9.677 0 00-6.66-2.14H7.28v16.35l9.72-.04zM41.15 219a11.557 11.557 0 01-4.39-5 17.6 17.6 0 01-1.54-7.64 17.739 17.739 0 011.54-7.65 11.911 11.911 0 014.34-5.08 11.786 11.786 0 016.52-1.8 11.809 11.809 0 016.46 1.73 11.392 11.392 0 014.22 4.88 16.998 16.998 0 011.49 7.33v1.4H37v-2.82h21.07l-1.8 2.55v-1.35a13.449 13.449 0 00-1.11-5.78 8.22 8.22 0 00-3.06-3.56 8.43 8.43 0 00-12.17 3.64 13.048 13.048 0 00-1.14 5.7v1.35a13.422 13.422 0 001.14 5.8 8.37 8.37 0 003.21 3.65 9.162 9.162 0 004.86 1.28 9.927 9.927 0 003.65-.63 7.162 7.162 0 002.69-1.78 6.86 6.86 0 001.53-2.69l.08-.24h3.49v.27a9.678 9.678 0 01-1.44 3.29c-.66 1.02-1.5 1.911-2.48 2.63a11.782 11.782 0 01-3.44 1.72c-1.358.41-2.771.612-4.19.6a12.665 12.665 0 01-6.74-1.8zM70.65 219.74a9.361 9.361 0 01-3.75-2.93 8.558 8.558 0 01-1.66-4.33v-.25h3.52v.25a6.002 6.002 0 002.34 3.88 8.222 8.222 0 005 1.43 10.21 10.21 0 003.69-.59 5.24 5.24 0 002.39-1.7c.56-.739.86-1.643.85-2.57A3.812 3.812 0 0082 210a8.8 8.8 0 00-4-1.75l-4.22-1a12.702 12.702 0 01-5.86-2.76 6.125 6.125 0 01-1.92-4.66 6.899 6.899 0 011.27-4.12 8.552 8.552 0 013.52-2.81 12.281 12.281 0 015.14-1 11.883 11.883 0 015.2 1.06 8.902 8.902 0 013.52 2.93 8.593 8.593 0 011.49 4.28v.3H82.8v-.19a5.802 5.802 0 00-2.11-3.91 7.231 7.231 0 00-4.69-1.51 8.543 8.543 0 00-3.33.6 5.081 5.081 0 00-2.2 1.7 4.18 4.18 0 00-.78 2.51 3.567 3.567 0 001.21 2.77 9.203 9.203 0 004 1.77l4.19 1c2.8.667 4.783 1.583 5.95 2.75a6.33 6.33 0 011.76 4.68 6.859 6.859 0 01-1.37 4.22 9.117 9.117 0 01-3.75 2.86 13.45 13.45 0 01-5.43 1 13.224 13.224 0 01-5.6-.98zM99.15 219a11.557 11.557 0 01-4.39-5 17.599 17.599 0 01-1.55-7.64 17.74 17.74 0 011.55-7.65 12.282 12.282 0 0117.32-5.15 11.367 11.367 0 014.21 4.88 16.841 16.841 0 011.49 7.33v1.4H95v-2.82h21.09l-1.8 2.55v-1.35a13.31 13.31 0 00-1.12-5.78 8.094 8.094 0 00-3.06-3.56 8.42 8.42 0 00-6.909-.95 8.408 8.408 0 00-5.251 4.59 12.91 12.91 0 00-1.15 5.7v1.35a13.269 13.269 0 001.15 5.8 8.41 8.41 0 003.2 3.65 9.169 9.169 0 004.87 1.26 10.014 10.014 0 003.65-.63 7.124 7.124 0 002.68-1.78 6.62 6.62 0 001.53-2.69l.08-.24h3.5l-.06.27a9.882 9.882 0 01-1.35 3.29 10.197 10.197 0 01-2.49 2.63 11.685 11.685 0 01-3.44 1.72 13.99 13.99 0 01-4.19.6 12.614 12.614 0 01-6.78-1.78zM125.67 192.36h3.55v5h.08a7.999 7.999 0 012.54-4 6.54 6.54 0 014.33-1.48 8.024 8.024 0 012.21.32v3.47a4.558 4.558 0 00-1-.28 9.786 9.786 0 00-1.64-.12 5.997 5.997 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.55l-.05-27.96zM143.52 192.36h3.73l8.49 24.22h.1l8.52-24.22H168l-10.37 27.93h-3.76l-10.35-27.93zM177.41 219a11.85 11.85 0 01-4.47-5 17.174 17.174 0 01-1.6-7.68v-.06a16.99 16.99 0 011.6-7.66 11.775 11.775 0 014.47-5 13.457 13.457 0 0113.31 0 11.994 11.994 0 014.47 5 17.067 17.067 0 011.61 7.68v.06a17.139 17.139 0 01-1.61 7.69 12.099 12.099 0 01-4.46 5 12.366 12.366 0 01-6.66 1.77 12.74 12.74 0 01-6.66-1.8zm11.47-2.73a8.821 8.821 0 003.17-3.89 14.997 14.997 0 001.13-6.07v-.06a14.877 14.877 0 00-1.13-6.07 8.728 8.728 0 00-3.19-3.85A8.63 8.63 0 00184 195a8.497 8.497 0 00-4.75 1.34 8.892 8.892 0 00-3.18 3.87 14.599 14.599 0 00-1.14 6v.06a14.813 14.813 0 001.14 6.07 8.837 8.837 0 003.18 3.89 9.254 9.254 0 009.59 0l.04.04zM204 186.63a2.288 2.288 0 01-.68-1.68 2.206 2.206 0 01.68-1.65 2.354 2.354 0 012.566-.512c.286.119.546.293.764.512a2.217 2.217 0 01.67 1.7 2.354 2.354 0 01-1.446 2.159 2.36 2.36 0 01-2.554-.479v-.05zm-.12 5.73h3.54v27.93h-3.54v-27.93zM215.8 192.36h3.55v5h.08a8.007 8.007 0 012.53-4 6.579 6.579 0 014.34-1.48c.432-.002.864.035 1.29.11.308.05.612.12.91.21v3.47a4.25 4.25 0 00-1-.28 10.002 10.002 0 00-1.64-.12 5.927 5.927 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.59v-27.96zM3.28 235.89H5.2l8.24 11.83-2.2-1.95h.9v-9.88h2.06v13.39h-1.92l-8.23-11.85 2.2 1.94h-.9v9.91H3.28v-13.39zM22 243.79l-4.71-7.9h2.31l3.42 5.9h.06l3.41-5.9h2.32l-4.72 7.9v5.49H22v-5.49zM31.86 235.89h2.08v13.39h-2.08v-13.39zm1 7.07h3.43a2.9 2.9 0 002.09-.7 2.513 2.513 0 00.75-1.94 2.541 2.541 0 00-.75-2 3.002 3.002 0 00-2.09-.7H32.9v-1.75h4a4.815 4.815 0 012.32.55c.64.376 1.163.923 1.51 1.58a4.54 4.54 0 01.57 2.3 4.54 4.54 0 01-.57 2.3 4.004 4.004 0 01-1.56 1.55 4.71 4.71 0 01-2.32.55h-4l.01-1.74zM44.71 235.89h2.08v11.59H53v1.8h-8.29v-13.39zM64.88 235.89h4.72a7.002 7.002 0 013.41.78 5.292 5.292 0 012.17 2.27 7.91 7.91 0 01.76 3.6 7.901 7.901 0 01-.76 3.62 5.257 5.257 0 01-2.18 2.33 6.999 6.999 0 01-3.42.79h-4.7v-13.39zm4.52 11.59c.84.026 1.671-.17 2.41-.57a3.608 3.608 0 001.49-1.66 6.298 6.298 0 00.51-2.67 6.28 6.28 0 00-.51-2.66 3.761 3.761 0 00-1.5-1.65 4.786 4.786 0 00-2.4-.56H67v9.79l2.4-.02zM79.52 235.89H88v1.8h-6.4v3.9h6.07v1.74H81.6v4.15H88v1.8h-8.5l.02-13.39zM93.69 249.05a4.238 4.238 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.054.4.237.772.52 1.06.306.315.683.552 1.1.69a4.79 4.79 0 001.58.24 4.24 4.24 0 001.55-.25 2.31 2.31 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.489 4.489 0 00-1.91-.77l-1.46-.3a6.003 6.003 0 01-2.93-1.34 3.202 3.202 0 01-1-2.41c-.01-.717.21-1.418.63-2a3.996 3.996 0 011.71-1.35 6.06 6.06 0 012.52-.49 6.14 6.14 0 012.46.47c.666.285 1.245.74 1.68 1.32.425.583.668 1.279.7 2v.15h-2v-.12a2 2 0 00-.46-1.07 2.42 2.42 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.126 2.126 0 00-.94.69 1.592 1.592 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.21 6.21 0 013 1.33 3.186 3.186 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.901 3.901 0 01-1.67 1.35 6.837 6.837 0 01-2.73.49 7.083 7.083 0 01-2.63-.44zM105.26 235.89h2.08v13.39h-2.08v-13.39zM113.85 248.65a5.64 5.64 0 01-2.16-2.41 8.373 8.373 0 01-.77-3.72 7.998 7.998 0 01.76-3.64 5.644 5.644 0 012.16-2.37 6.421 6.421 0 013.31-.83 6.26 6.26 0 012.72.55 5.11 5.11 0 011.91 1.51 5.518 5.518 0 011 2.17v.16h-2.08v-.11a3.676 3.676 0 00-1.31-1.8 3.742 3.742 0 00-2.2-.64 4 4 0 00-2.2.6 3.697 3.697 0 00-1.41 1.71 6.644 6.644 0 00-.49 2.69 6.809 6.809 0 00.5 2.76A4.005 4.005 0 00115 247c.656.418 1.422.63 2.2.61a4.172 4.172 0 001.92-.42 3.241 3.241 0 001.3-1.19 3.479 3.479 0 00.48-1.78V244h-3.51v-1.7h5.57v1.37a6.56 6.56 0 01-.69 3.11 4.686 4.686 0 01-2 2 6.498 6.498 0 01-3.11.69 6.247 6.247 0 01-3.31-.82zM126.56 235.89h1.92l8.24 11.83-2.2-1.95h.9v-9.88h2.07v13.39h-1.92l-8.24-11.85 2.2 1.94h-.9v9.91h-2.07v-13.39zM152 249.05a4.24 4.24 0 01-1.79-1.31 3.569 3.569 0 01-.74-2v-.14h2v.12c.055.398.233.769.51 1.06.311.313.691.55 1.11.69.51.168 1.044.249 1.58.24a4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.486 4.486 0 00-1.91-.77l-1.46-.3a6 6 0 01-2.93-1.34 3.208 3.208 0 01-1-2.41 3.417 3.417 0 01.64-2 3.995 3.995 0 011.71-1.35 6.673 6.673 0 015 0 4.1 4.1 0 011.69 1.32c.425.583.668 1.279.7 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.125 2.125 0 00-.94.69 1.59 1.59 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.212 6.212 0 013 1.33 3.215 3.215 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.895 3.895 0 01-1.76 1.38 6.855 6.855 0 01-2.73.49 7.076 7.076 0 01-2.58-.49zM166.38 243.79l-4.72-7.9H164l3.43 5.9 3.42-5.9h2.32l-4.73 7.9v5.49h-2.08l.02-5.49zM177.85 249.05a4.24 4.24 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.059.399.241.769.52 1.06.308.317.689.554 1.11.69a4.73 4.73 0 001.57.24 4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71c.241-.311.368-.696.36-1.09a1.583 1.583 0 00-.58-1.28 4.607 4.607 0 00-1.92-.77l-1.46-.3a6.057 6.057 0 01-2.93-1.34 3.206 3.206 0 01-1-2.41 3.343 3.343 0 01.63-2 3.995 3.995 0 011.71-1.35 6.702 6.702 0 015 0 4.238 4.238 0 011.69 1.32 3.74 3.74 0 01.69 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.18 2.18 0 00-.94.69 1.65 1.65 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.163 6.163 0 013 1.33 3.193 3.193 0 01.94 2.44 3.58 3.58 0 01-.62 2.12 3.853 3.853 0 01-1.76 1.38 6.838 6.838 0 01-2.73.49 7.059 7.059 0 01-2.56-.49zM192.36 237.69h-4.1v-1.8h10.27v1.8h-4.09v11.59h-2.08v-11.59zM201.82 235.89h8.5v1.8h-6.42v3.9h6.1v1.74h-6.1v4.15h6.42v1.8h-8.5v-13.39zM214.06 235.89h2.4l4.33 10.68h.06l4.33-10.68h2.41v13.39h-1.9v-9.87h-1l2.17-3.15-5.31 13h-1.54l-5.31-13 2.17 3.15H216v9.87h-1.9l-.04-13.39z",fill:"#000"}),n.createElement("path",{d:"M87.67.02H57.52v23.63h30.15V.02z",fill:"#004B98"}),n.createElement("path",{d:"M87.67 23.65H57.52v120.51h30.15V23.65zM87.67 23.65h28.18s22.16.88 21.8 22.8C137.29 67.85 118 68.79 118 68.79l-17 .32L112.39 92s54.7 5.57 56.11-45.65C168.5-2.44 117.92 0 117.92 0H87.67v23.65z",fill:"#0676D3"}),n.createElement("path",{d:"M101 69.11l37.59 75 36.66.06L144 86.6s-10.59-17.31-21.38-17.77l-21.62.28z",fill:"#004B98"}))))},schomburgBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,xc);return n.createElement("svg",wc({viewBox:"0 0 185 79",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,sc||(sc=n.createElement("path",{d:"M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"})),hc||(hc=n.createElement("path",{d:"M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"})),dc||(dc=n.createElement("path",{d:"M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"})),vc||(vc=n.createElement("path",{d:"M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"})),mc||(mc=n.createElement("path",{d:"M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086zM77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z"})))},schomburgCircleBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,jc);return n.createElement("svg",Sc({viewBox:"0 0 67 67",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,fc||(fc=n.createElement("path",{d:"M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"})),gc||(gc=n.createElement("path",{d:"M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"})),bc||(bc=n.createElement("path",{d:"M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"})),zc||(zc=n.createElement("path",{d:"M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"})),yc||(yc=n.createElement("path",{d:"M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z"})))},schomburgCircleColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Pc);return n.createElement("svg",Bc({viewBox:"0 0 67 67",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ec||(Ec=n.createElement("path",{d:"M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z",fill:"#C54B38"})),Oc||(Oc=n.createElement("path",{d:"M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z",fill:"#C54B38"})),Mc||(Mc=n.createElement("path",{d:"M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z",fill:"#C54B38"})),Cc||(Cc=n.createElement("path",{d:"M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z",fill:"#C54B38"})),kc||(kc=n.createElement("path",{d:"M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z",fill:"#C54B38"})))},schomburgCircleWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,qc);return n.createElement("svg",Yc({viewBox:"0 0 67 67",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Tc||(Tc=n.createElement("path",{d:"M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"})),Vc||(Vc=n.createElement("path",{d:"M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"})),Lc||(Lc=n.createElement("path",{d:"M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"})),_c||(_c=n.createElement("path",{d:"M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"})),Ic||(Ic=n.createElement("path",{d:"M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z"})))},schomburgColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Qc);return n.createElement("svg",Zc({viewBox:"0 0 185 79",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Rc||(Rc=n.createElement("path",{d:"M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27z",fill:"#010101"})),Hc||(Hc=n.createElement("path",{d:"M55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z",fill:"#C54B38"})),Fc||(Fc=n.createElement("path",{d:"M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z",fill:"#C54B38"})),Nc||(Nc=n.createElement("path",{d:"M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z",fill:"#C54B38"})),Dc||(Dc=n.createElement("path",{d:"M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z",fill:"#C54B38"})),Ac||(Ac=n.createElement("path",{d:"M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086z",fill:"#C54B38"})),Wc||(Wc=n.createElement("path",{d:"M77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z",fill:"#010101"})))},schomburgWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ti);return n.createElement("svg",li({viewBox:"0 0 185 79",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Gc||(Gc=n.createElement("path",{d:"M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"})),Uc||(Uc=n.createElement("path",{d:"M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"})),Xc||(Xc=n.createElement("path",{d:"M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"})),Jc||(Jc=n.createElement("path",{d:"M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"})),Kc||(Kc=n.createElement("path",{d:"M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086zM77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z"})))},simplyeBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ni);return n.createElement("svg",ci({viewBox:"0 0 512 148",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,$c||($c=n.createElement("g",{clipPath:"url(#logo-simplye-black_svg__clip0)"},n.createElement("path",{d:"M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"}),n.createElement("path",{d:"M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"}),n.createElement("path",{d:"M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"}))),ei||(ei=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-simplye-black_svg__clip0"},n.createElement("path",{fill:"#fff",transform:"translate(0 .118)",d:"M0 0h511.984v147H0z"})))))},simplyeWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,si);return n.createElement("svg",hi({viewBox:"0 0 512 148",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ai||(ai=n.createElement("g",{clipPath:"url(#logo-simplye-white_svg__clip0)"},n.createElement("path",{d:"M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"}),n.createElement("path",{d:"M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"}),n.createElement("path",{d:"M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"}))),ri||(ri=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-simplye-white_svg__clip0"},n.createElement("path",{transform:"translate(0 .118)",d:"M0 0h511.984v147H0z"})))))},simplyeColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,vi);return n.createElement("svg",mi({viewBox:"0 0 682 196",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ii||(ii=n.createElement("g",{clipPath:"url(#logo-simplye-color_svg__clip0)"},n.createElement("path",{d:"M32.454 44.821c-.672-.822-.72-1.921.288-2.254l69.866-23.102a1.258 1.258 0 011.654 1.195c-.001.69.559 1.155 1.242 1.26.528.083 1.108.12 1.67.068.727-.068 1.346-.526 1.346-1.255l-.004-7.35c0-.376-.164-.94-.744-1.218-.324-.158-.735-.28-1.108-.156l-78.258 25.96c-3.012.975-3.55 1.34-3.55 4.576l.027 133.016c0 .126.013.257.052.377 1.616 4.929 7.396 7.184 7.396 7.184 5.674 2.155 8.598 2.753 13.738.969 0 0 .115-132.697.047-133.28a.373.373 0 00-.306-.323c-.546-.103-8.954-.279-13.355-5.667",fill:"#1B385E"}),n.createElement("path",{d:"M7.609 33.247c-.705-.794-.72-1.922.287-2.255L77.763 7.89a1.26 1.26 0 011.655 1.197c-.001.69.556 1.174 1.24 1.26.513.064 1.124.112 1.67.067.727-.059 1.346-.525 1.346-1.255l-.004-7.204c0-.477-.232-1.084-.66-1.317-.455-.248-.817-.327-1.19-.203L3.561 26.396c-3.013.975-3.55 1.34-3.55 4.576l.025 133.015c0 .127.016.256.053.376 1.47 4.922 7.395 7.186 7.395 7.186 5.674 2.153 8.599 2.751 13.739.969 0 0 .113-132.697.046-133.28a.373.373 0 00-.307-.324c-.546-.102-8.78-.514-13.355-5.667",fill:"#57AC35"}),n.createElement("path",{d:"M149.72 36.79c0-.858-.839-1.465-1.655-1.194L85.861 56.265c-16.01 4.726-16.81 5.274-21.914 3.396-2.865-1.054-5.098-2.59-6.405-4.279-.65-.838-.652-1.921.356-2.254l69.866-23.102a1.26 1.26 0 011.654 1.197c-.001.69.556 1.177 1.24 1.26a9.148 9.148 0 001.666.066c.73-.045 1.352-.522 1.35-1.254l-.002-7.224c0-.555-.1-.947-.743-1.344-.336-.207-.735-.28-1.108-.156l-78.258 25.96c-3.013.975-3.55 1.34-3.55 4.577l.026 129.97c0 .127.004 1.389.001 1.516-.078 4.206 4.874 6.547 7.224 7.598 3.853 1.723 8.819 2.882 13.96 1.1l77.645-25.217c.509-.174.851-.652.851-1.19v-24.953a1.26 1.26 0 00-1.624-1.205l-62.266 20.41c-.808.245-1.685-.379-1.685-1.223v-22.045c0-.556.364-1.045.895-1.205l63.724-20.874c.773-.284.956-.416.956-1.079l-.048-25.479c0-.73-.827-1.241-1.632-1.01l-62.361 20.654c-.805.231-1.534-.584-1.534-1.423l.096-22.134c0-.548.353-1.032.874-1.199l63.859-21.203c.52-.168.74-.908.74-1.456l.006-24.67",fill:"#656263"}),n.createElement("path",{d:"M257.68 121.443c0 4.631-.848 8.852-2.547 12.658-1.698 3.81-4.144 7.024-7.333 9.65-3.19 2.624-7.077 4.657-11.654 6.096-4.581 1.44-9.703 2.162-15.361 2.162-4.221 0-8.028-.362-11.424-1.08-3.396-.721-6.406-1.594-9.03-2.625-2.626-1.027-4.891-2.134-6.793-3.319-1.906-1.181-3.423-2.238-4.554-3.165l9.261-15.128c.619.412 1.546 1.056 2.78 1.93 1.235.876 2.779 1.724 4.631 2.548 1.853.824 4.015 1.569 6.484 2.237 2.47.67 5.196 1.004 8.181 1.004 5.249 0 9.288-1.158 12.12-3.473 2.829-2.316 4.245-5.119 4.245-8.414 0-2.264-.645-4.193-1.929-5.79-1.29-1.593-2.987-3.009-5.096-4.245-2.11-1.235-4.554-2.443-7.332-3.627a127.762 127.762 0 01-8.645-4.092c-3.192-1.544-6.124-3.241-8.8-5.093-2.677-1.853-4.993-3.961-6.947-6.33-1.955-2.366-3.499-5.118-4.631-8.259-1.134-3.139-1.698-6.817-1.698-11.038 0-4.424.874-8.387 2.624-11.887 1.75-3.497 4.115-6.484 7.101-8.954 2.984-2.47 6.484-4.372 10.497-5.71 4.015-1.338 8.338-2.009 12.968-2.009 4.219 0 7.951.31 11.193.927 3.241.617 6.097 1.365 8.568 2.239 2.469.876 4.528 1.8 6.175 2.778 1.645.979 3.034 1.879 4.167 2.702l-8.799 15.283c-.926-.617-2.06-1.285-3.395-2.007-1.34-.718-2.884-1.389-4.632-2.008a50.57 50.57 0 00-5.712-1.62 28.702 28.702 0 00-6.329-.694c-4.221 0-7.565.901-10.034 2.701-2.471 1.803-3.706 4.452-3.706 7.95 0 2.06.487 3.782 1.467 5.172.976 1.39 2.315 2.65 4.013 3.782 1.699 1.134 3.706 2.214 6.022 3.242a601.234 601.234 0 017.486 3.396 147.494 147.494 0 019.88 4.94c3.189 1.75 5.994 3.86 8.414 6.329 2.416 2.471 4.373 5.379 5.865 8.723 1.491 3.345 2.239 7.385 2.239 12.118zm12.349 28.714v-75.18h20.686v75.18h-20.686zm23.002-97.256c0 3.294-1.211 6.174-3.628 8.645-2.418 2.47-5.429 3.705-9.03 3.705-3.604 0-6.588-1.236-8.955-3.705-2.368-2.47-3.55-5.35-3.55-8.645 0-3.293 1.182-6.123 3.55-8.49 2.367-2.367 5.351-3.551 8.955-3.551 3.601 0 6.612 1.184 9.03 3.55 2.417 2.368 3.628 5.198 3.628 8.49zm73.325 32.11c3.089-3.602 6.485-6.484 10.19-8.645 3.706-2.162 8.336-3.242 13.893-3.242 4.015 0 7.385.618 10.112 1.852 2.727 1.235 4.94 2.933 6.637 5.095 1.699 2.161 2.907 4.734 3.628 7.718.719 2.987 1.081 6.228 1.081 9.725v52.643h-20.531v-48.473c0-3.706-.643-6.535-1.929-8.49-1.29-1.956-3.628-2.934-7.024-2.934-1.648 0-3.192.284-4.632.848a15.621 15.621 0 00-3.86 2.161 26.835 26.835 0 00-3.086 2.78 92.35 92.35 0 00-2.471 2.701v51.407h-20.532v-48.473c0-3.807-.694-6.663-2.085-8.57-1.388-1.902-3.626-2.854-6.714-2.854-1.852 0-3.578.385-5.171 1.157-1.597.772-2.987 1.674-4.169 2.701-1.184 1.031-2.161 2.06-2.932 3.088a106.536 106.536 0 01-1.776 2.316v50.635h-20.532v-75.18h20.068v9.262a97.36 97.36 0 013.397-3.55c1.336-1.337 2.934-2.547 4.785-3.629 1.854-1.081 3.962-2.006 6.33-2.778 2.366-.772 5.041-1.158 8.027-1.158 5.351 0 9.545 1.08 12.583 3.242 3.034 2.16 5.272 5.043 6.713 8.645zm106.828 27.478c0-7.1-1.235-12.71-3.705-16.827-2.471-4.114-6.228-6.174-11.269-6.174-1.956 0-3.704.308-5.25.925-1.544.619-2.933 1.34-4.167 2.162-1.235.825-2.238 1.674-3.01 2.547a59.725 59.725 0 00-1.776 2.084v33.808c1.336 1.134 3.01 2.266 5.018 3.397 2.006 1.133 4.654 1.698 7.95 1.698 5.249 0 9.261-2.085 12.041-6.253 2.779-4.168 4.168-9.957 4.168-17.367zm21.767 0c0 5.97-.825 11.374-2.47 16.21-1.647 4.838-3.964 8.98-6.947 12.426a31.322 31.322 0 01-10.651 8.028c-4.118 1.904-8.647 2.856-13.587 2.856-4.629 0-8.336-.616-11.114-1.852-2.779-1.236-4.839-2.417-6.175-3.551v37.358h-20.531V74.976h20.069v7.873c2.057-2.57 4.758-4.836 8.103-6.791 3.344-1.955 7.588-2.934 12.737-2.934 9.571 0 17.059 3.396 22.461 10.188 5.403 6.793 8.105 16.518 8.105 29.177zm12.041 37.668V39.007h20.532v111.15h-20.532zm29.176-75.18h21.92l16.673 49.554h.772l15.284-49.555h21.149l-31.029 83.208c-1.649 4.425-3.449 8.387-5.404 11.887-1.956 3.497-4.272 6.43-6.946 8.8-2.679 2.365-5.843 4.192-9.495 5.48-3.654 1.285-8.054 1.93-13.198 1.93-3.192 0-5.713-.181-7.565-.541-1.852-.361-3.192-.644-4.013-.848l2.932-16.21c.514.205 1.286.385 2.316.541 1.028.154 2.674.23 4.941.23 5.248 0 9.054-1.183 11.422-3.551 2.367-2.368 4.269-5.557 5.712-9.569l2.779-7.72-28.25-73.637zm85.216 75.18V47.342h59.28v17.91h-37.823v23.156h33.344v16.981h-33.344v26.861h38.903v17.907h-60.36z",fill:"#1B385E"}))),oi||(oi=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-simplye-color_svg__clip0"},n.createElement("path",{fill:"#fff",transform:"translate(0 .118)",d:"M0 0h682v195H0z"})))))},snflBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,pi);return n.createElement("svg",fi({viewBox:"0 0 84 111",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,di||(di=n.createElement("path",{d:"M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"})))},snflWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,zo);return n.createElement("svg",yo({viewBox:"0 0 84 111",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ui||(ui=n.createElement("path",{d:"M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"})))},treasuresColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ws);return n.createElement("svg",Es({viewBox:"0 0 324 265",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,gi||(gi=n.createElement("path",{d:"M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",fill:"#D3BA81"})),bi||(bi=n.createElement("path",{d:"M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",fill:"#D3BA81"})),zi||(zi=n.createElement("path",{d:"M51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688zM104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",fill:"#D3BA81"})),yi||(yi=n.createElement("path",{d:"M104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184zM133.126 138.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126z",fill:"#D3BA81"})),xi||(xi=n.createElement("path",{d:"M133.126 138.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126zM170.141 113.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579z",fill:"#D3BA81"})),wi||(wi=n.createElement("path",{d:"M170.141 113.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579zM183.444 138.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172z",fill:"#D3BA81"})),Ei||(Ei=n.createElement("path",{d:"M183.444 138.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172zM238.379 115.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688z",fill:"#D3BA81"})),Oi||(Oi=n.createElement("path",{d:"M238.379 115.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688zM291.728 153.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184z",fill:"#D3BA81"})),Mi||(Mi=n.createElement("path",{d:"M291.728 153.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184zM318.907 113.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),Ci||(Ci=n.createElement("path",{d:"M318.907 113.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),ki||(ki=n.createElement("path",{d:"M43.565 89.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2-.029.052-.265.023-.294-.022-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.65.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.25.155-.31.45-1.13.93-2.909l1.174-4.392c.465-1.756.612-2.605.634-2.96z",fill:"#05002F"})),ji||(ji=n.createElement("path",{d:"M43.565 89.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2-.029.052-.265.023-.294-.022-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.65.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.25.155-.31.45-1.13.93-2.909l1.174-4.392c.465-1.756.612-2.605.634-2.96zM52.118 86.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.462 3.646c-.036.044-.265-.007-.287-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215z",fill:"#05002F"})),Si||(Si=n.createElement("path",{d:"M52.118 86.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.462 3.646c-.036.044-.265-.007-.287-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215zM62.391 76.918c-.044.037-.265-.044-.28-.088.066-.953-.317-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735z",fill:"#05002F"})),Ti||(Ti=n.createElement("path",{d:"M62.391 76.918c-.044.037-.265-.044-.28-.088.066-.953-.317-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735zM77.832 53.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466z",fill:"#05002F"})),Vi||(Vi=n.createElement("path",{d:"M77.832 53.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466zM80.61 50.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432z",fill:"#05002F"})),Li||(Li=n.createElement("path",{d:"M80.61 50.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432zM80.585 32.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.47 10.223c-.008.051-.318.295-.385.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945z",fill:"#05002F"})),_i||(_i=n.createElement("path",{d:"M80.585 32.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.47 10.223c-.008.051-.318.295-.385.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945zM113.49 25.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28z",fill:"#05002F"})),Ii||(Ii=n.createElement("path",{d:"M113.49 25.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28zM124.912 13.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868z",fill:"#05002F"})),Pi||(Pi=n.createElement("path",{d:"M124.912 13.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868zM133.974 5.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894z",fill:"#05002F"})),Bi||(Bi=n.createElement("path",{d:"M133.974 5.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894zM148.67 14.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.686 53.686 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295z",fill:"#05002F"})),Ri||(Ri=n.createElement("path",{d:"M148.67 14.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.686 53.686 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295zM166.79 1.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443z",fill:"#05002F"})),Hi||(Hi=n.createElement("path",{d:"M166.79 1.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443zM185.818 9.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322z",fill:"#05002F"})),Fi||(Fi=n.createElement("path",{d:"M185.818 9.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322zM196.219 9.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458z",fill:"#05002F"})),Ni||(Ni=n.createElement("path",{d:"M196.219 9.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458zM203.754 19.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336z",fill:"#05002F"})),Di||(Di=n.createElement("path",{d:"M203.754 19.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336zM216.547 24.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657z",fill:"#05002F"})),Ai||(Ai=n.createElement("path",{d:"M216.547 24.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657zM230.961 17.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672z",fill:"#05002F"})),Wi||(Wi=n.createElement("path",{d:"M230.961 17.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672zM236.254 37.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406z",fill:"#05002F"})),qi||(qi=n.createElement("path",{d:"M236.254 37.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406zM247.103 46.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554z",fill:"#05002F"})),Yi||(Yi=n.createElement("path",{d:"M247.103 46.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554zM257.738 48c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L257.738 48zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468z",fill:"#05002F"})),Gi||(Gi=n.createElement("path",{d:"M257.738 48c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L257.738 48zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468zM270.23 56.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03z",fill:"#05002F"})),Ui||(Ui=n.createElement("path",{d:"M270.23 56.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03zM272.487 73.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86z",fill:"#05002F"})),Xi||(Xi=n.createElement("path",{d:"M272.487 73.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86zM283.825 82.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554z",fill:"#05002F"})),Ji||(Ji=n.createElement("path",{d:"M283.825 82.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554zM277.367 100.663a36.15 36.15 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.442 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.35.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029z",fill:"#05002F"})),Ki||(Ki=n.createElement("path",{d:"M277.367 100.663a36.15 36.15 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.442 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.35.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029zM55.772 173.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894z",fill:"#05002F"})),Qi||(Qi=n.createElement("path",{d:"M55.772 173.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894zM51.96 182.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111z",fill:"#05002F"})),Zi||(Zi=n.createElement("path",{d:"M51.96 182.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111zM53.49 199.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.402.82a45.84 45.84 0 00-1.366.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661z",fill:"#05002F"})),$i||($i=n.createElement("path",{d:"M53.49 199.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.402.82a45.84 45.84 0 00-1.366.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661zM76.283 211.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473z",fill:"#05002F"})),eo||(eo=n.createElement("path",{d:"M76.283 211.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473zM87.902 230.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953z",fill:"#05002F"})),to||(to=n.createElement("path",{d:"M87.902 230.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953zM91.6 241.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148z",fill:"#05002F"})),lo||(lo=n.createElement("path",{d:"M91.6 241.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148zM113.329 246.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614z",fill:"#05002F"})),ao||(ao=n.createElement("path",{d:"M113.329 246.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614zM127.326 258.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074z",fill:"#05002F"})),ro||(ro=n.createElement("path",{d:"M127.326 258.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074zM138.92 251.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417z",fill:"#05002F"})),no||(no=n.createElement("path",{d:"M138.92 251.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417zM153.814 263.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258z",fill:"#05002F"})),co||(co=n.createElement("path",{d:"M153.814 263.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258zM174.948 263.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302z",fill:"#05002F"})),io||(io=n.createElement("path",{d:"M174.948 263.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302zM189.9 261.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479z",fill:"#05002F"})),oo||(oo=n.createElement("path",{d:"M189.9 261.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479zM208.286 256.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86z",fill:"#05002F"})),so||(so=n.createElement("path",{d:"M208.286 256.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86zM220.929 244.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24z",fill:"#05002F"})),ho||(ho=n.createElement("path",{d:"M220.929 244.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24zM240.985 238.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225z",fill:"#05002F"})),vo||(vo=n.createElement("path",{d:"M240.985 238.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225zM249.227 230.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336z",fill:"#05002F"})),mo||(mo=n.createElement("path",{d:"M249.227 230.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336zM260.086 221.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73z",fill:"#05002F"})),uo||(uo=n.createElement("path",{d:"M260.086 221.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73zM260.161 200.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525z",fill:"#05002F"})),po||(po=n.createElement("path",{d:"M260.161 200.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525zM275.512 199.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177z",fill:"#05002F"})),fo||(fo=n.createElement("path",{d:"M275.512 199.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177zM277.085 182.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835z",fill:"#05002F"})),go||(go=n.createElement("path",{d:"M277.085 182.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835zM288.748 168.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#05002F"})),bo||(bo=n.createElement("path",{d:"M288.748 168.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#05002F"})))},treasuresColorNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Os);return n.createElement("svg",Ms({viewBox:"0 0 327 266",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xo||(xo=n.createElement("path",{d:"M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",fill:"#D3BA81"})),wo||(wo=n.createElement("path",{d:"M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",fill:"#D3BA81"})),Eo||(Eo=n.createElement("path",{d:"M53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688zM106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",fill:"#D3BA81"})),Oo||(Oo=n.createElement("path",{d:"M106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184zM135.126 139.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126z",fill:"#D3BA81"})),Mo||(Mo=n.createElement("path",{d:"M135.126 139.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126zM172.141 114.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579z",fill:"#D3BA81"})),Co||(Co=n.createElement("path",{d:"M172.141 114.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579zM185.444 139.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172z",fill:"#D3BA81"})),ko||(ko=n.createElement("path",{d:"M185.444 139.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172zM240.379 116.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688z",fill:"#D3BA81"})),jo||(jo=n.createElement("path",{d:"M240.379 116.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688zM293.728 154.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184z",fill:"#D3BA81"})),So||(So=n.createElement("path",{d:"M293.728 154.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184zM320.907 114.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),To||(To=n.createElement("path",{d:"M320.907 114.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),Vo||(Vo=n.createElement("path",{d:"M45.565 90.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2.001-.029.051-.265.022-.294-.023-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.649.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.251.155-.31.45-1.13.93-2.908l1.174-4.392c.465-1.756.612-2.605.634-2.96z",fill:"#fff"})),Lo||(Lo=n.createElement("path",{d:"M45.565 90.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2.001-.029.051-.265.022-.294-.023-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.649.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.251.155-.31.45-1.13.93-2.908l1.174-4.392c.465-1.756.612-2.605.634-2.96zM54.118 87.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.461 3.646c-.037.044-.266-.007-.288-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215z",fill:"#fff"})),_o||(_o=n.createElement("path",{d:"M54.118 87.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.461 3.646c-.037.044-.266-.007-.288-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215zM64.391 77.918c-.044.037-.265-.044-.28-.088.066-.953-.318-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735z",fill:"#fff"})),Io||(Io=n.createElement("path",{d:"M64.391 77.918c-.044.037-.265-.044-.28-.088.066-.953-.318-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735zM79.832 54.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466z",fill:"#fff"})),Po||(Po=n.createElement("path",{d:"M79.832 54.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466zM82.61 51.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432z",fill:"#fff"})),Bo||(Bo=n.createElement("path",{d:"M82.61 51.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432zM82.585 33.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.469 10.223c-.007.051-.317.295-.384.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945z",fill:"#fff"})),Ro||(Ro=n.createElement("path",{d:"M82.585 33.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.469 10.223c-.007.051-.317.295-.384.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945zM115.49 26.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28z",fill:"#fff"})),Ho||(Ho=n.createElement("path",{d:"M115.49 26.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28zM126.912 14.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868z",fill:"#fff"})),Fo||(Fo=n.createElement("path",{d:"M126.912 14.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868zM135.974 6.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894z",fill:"#fff"})),No||(No=n.createElement("path",{d:"M135.974 6.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894zM150.67 15.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.708 53.708 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295z",fill:"#fff"})),Do||(Do=n.createElement("path",{d:"M150.67 15.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.708 53.708 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295zM168.79 2.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443z",fill:"#fff"})),Ao||(Ao=n.createElement("path",{d:"M168.79 2.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443zM187.818 10.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322z",fill:"#fff"})),Wo||(Wo=n.createElement("path",{d:"M187.818 10.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322zM198.219 10.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458z",fill:"#fff"})),qo||(qo=n.createElement("path",{d:"M198.219 10.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458zM205.754 20.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336z",fill:"#fff"})),Yo||(Yo=n.createElement("path",{d:"M205.754 20.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336zM218.547 25.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657z",fill:"#fff"})),Go||(Go=n.createElement("path",{d:"M218.547 25.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657zM232.961 18.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672z",fill:"#fff"})),Uo||(Uo=n.createElement("path",{d:"M232.961 18.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672zM238.254 38.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406z",fill:"#fff"})),Xo||(Xo=n.createElement("path",{d:"M238.254 38.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406zM249.103 47.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554z",fill:"#fff"})),Jo||(Jo=n.createElement("path",{d:"M249.103 47.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554zM259.738 49c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L259.738 49zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468z",fill:"#fff"})),Ko||(Ko=n.createElement("path",{d:"M259.738 49c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L259.738 49zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468zM272.23 57.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03z",fill:"#fff"})),Qo||(Qo=n.createElement("path",{d:"M272.23 57.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03zM274.487 74.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86z",fill:"#fff"})),Zo||(Zo=n.createElement("path",{d:"M274.487 74.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86zM285.825 83.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554z",fill:"#fff"})),$o||($o=n.createElement("path",{d:"M285.825 83.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554zM279.367 101.663a36.087 36.087 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.443 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.351.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029z",fill:"#fff"})),es||(es=n.createElement("path",{d:"M279.367 101.663a36.087 36.087 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.443 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.351.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029zM57.772 174.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894z",fill:"#fff"})),ts||(ts=n.createElement("path",{d:"M57.772 174.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894zM53.96 183.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111z",fill:"#fff"})),ls||(ls=n.createElement("path",{d:"M53.96 183.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111zM55.49 200.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.403.82a45.84 45.84 0 00-1.365.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661z",fill:"#fff"})),as||(as=n.createElement("path",{d:"M55.49 200.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.403.82a45.84 45.84 0 00-1.365.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661zM78.283 212.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473z",fill:"#fff"})),rs||(rs=n.createElement("path",{d:"M78.283 212.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473zM89.902 231.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953z",fill:"#fff"})),ns||(ns=n.createElement("path",{d:"M89.902 231.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953zM93.6 242.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148z",fill:"#fff"})),cs||(cs=n.createElement("path",{d:"M93.6 242.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148zM115.329 247.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614z",fill:"#fff"})),is||(is=n.createElement("path",{d:"M115.329 247.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614zM129.326 259.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074z",fill:"#fff"})),os||(os=n.createElement("path",{d:"M129.326 259.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074zM140.92 252.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417z",fill:"#fff"})),ss||(ss=n.createElement("path",{d:"M140.92 252.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417zM155.814 264.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258z",fill:"#fff"})),hs||(hs=n.createElement("path",{d:"M155.814 264.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258zM176.948 264.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302z",fill:"#fff"})),ds||(ds=n.createElement("path",{d:"M176.948 264.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302zM191.9 262.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479z",fill:"#fff"})),vs||(vs=n.createElement("path",{d:"M191.9 262.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479zM210.286 257.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86z",fill:"#fff"})),ms||(ms=n.createElement("path",{d:"M210.286 257.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86zM222.929 245.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24z",fill:"#fff"})),us||(us=n.createElement("path",{d:"M222.929 245.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24zM242.985 239.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225z",fill:"#fff"})),ps||(ps=n.createElement("path",{d:"M242.985 239.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225zM251.227 231.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336z",fill:"#fff"})),fs||(fs=n.createElement("path",{d:"M251.227 231.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336zM262.086 222.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73z",fill:"#fff"})),gs||(gs=n.createElement("path",{d:"M262.086 222.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73zM262.161 201.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525z",fill:"#fff"})),bs||(bs=n.createElement("path",{d:"M262.161 201.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525zM277.512 200.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177z",fill:"#fff"})),zs||(zs=n.createElement("path",{d:"M277.512 200.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177zM279.085 183.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835z",fill:"#fff"})),ys||(ys=n.createElement("path",{d:"M279.085 183.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835zM290.748 169.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#fff"})),xs||(xs=n.createElement("path",{d:"M290.748 169.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#fff"})))}},ks=["children","className","decorative","id","name","size","title"],js=r.chakra((function(e){var t,l,a=e.children,c=e.className,i=e.decorative,o=void 0!==i&&i,s=e.id,v=e.name,m=e.size,u=void 0===m?"medium":m,p=e.title,f=void 0===p?v+" logo":p,g=d(e,ks),b=r.useStyleConfig("Logo",{size:u}),z=h({"aria-hidden":o,className:c,id:s,role:"img",title:f},g),y=null;return v&&a?(console.warn("NYPL Reservoir Logo: Pass either a `name` prop or an `svg` element child. Do not pass both."),null):v||a?v?n.createElement(r.Icon,Object.assign({as:Cs[v]},z,{__css:b})):("svg"===a.type||"svg"===(null==(t=a.props)?void 0:t.type)||"svg"===(null==(l=a.props)?void 0:l.mdxType)?y=n.cloneElement(a,h({},z)):console.warn("NYPL Reservoir Logo: An `svg` element must be passed to the `Logo` component as its child."),n.createElement(r.Box,{__css:b},y)):(console.warn("NYPL Reservoir Logo: Pass a logo `name` prop or an SVG child to `Logo` to ensure a logo appears."),null)})),Ss=["bodyContent","closeButtonLabel","headingText","id","isOpen","onClose"],Ts=["buttonText","id","modalProps"],Vs=["bodyContent","closeButtonLabel","headingText","id"],Ls=r.chakra((function(e){var t=e.bodyContent,l=e.closeButtonLabel,a=void 0===l?"Close":l,c=e.headingText,i=e.id,o=e.isOpen,s=e.onClose,h=d(e,Ss),v=n.useState("xl"),m=v[0],u=v[1],p=zt();return n.useEffect((function(){u(p.width<=600?"full":"xl")}),[p.width]),n.createElement(r.Modal,Object.assign({id:i,isOpen:o,onClose:s,scrollBehavior:"inside",size:m},h),n.createElement(r.ModalOverlay,null),n.createElement(r.ModalContent,null,n.createElement(r.ModalHeader,null,c),n.createElement(r.ModalCloseButton,null),n.createElement(r.ModalBody,null,t),n.createElement(r.ModalFooter,null,n.createElement(xt,null,n.createElement(bt,{id:"modal-close-btn",onClick:s},a)))))})),_s=r.chakra((function(e){var t=e.buttonText,l=e.id,a=e.modalProps,c=d(e,Ts),i=r.useDisclosure(),o=i.isOpen,s=i.onClose;return n.createElement(n.Fragment,null,n.createElement(bt,{id:"modal-open-btn",onClick:i.onOpen},t),n.createElement(Ls,Object.assign({bodyContent:a.bodyContent,closeButtonLabel:a.closeButtonLabel,headingText:a.headingText,id:l,isOpen:o,onClose:function(){a.onClose&&a.onClose(),s()}},c)))})),Is=["children","icon","id","isCentered","notificationType"],Ps=["alignText","children","icon","notificationType"],Bs=["ariaLabel","className","dismissible","icon","id","isCentered","noMargin","notificationContent","notificationHeading","notificationType","showIcon"],Rs=r.chakra((function(e){var t=e.children,l=e.icon,a=e.id,n=e.isCentered,i=e.notificationType,o=d(e,Is),s=r.useMultiStyleConfig("NotificationHeading",{icon:l,isCentered:n,notificationType:i});return c.createElement(r.Box,Object.assign({as:"header",__css:s},o),l,c.createElement(Mt,{id:a+"-heading",level:"four",__css:s.heading},t))})),Hs=r.chakra((function(e){var t=e.alignText,l=e.children,a=e.icon,n=e.notificationType,i=d(e,Ps),o=r.useMultiStyleConfig("NotificationContent",{alignText:t,icon:a,notificationType:n});return c.createElement(r.Box,Object.assign({__css:o},i),a,c.createElement(r.Box,{__css:o.content},l))})),Fs=r.chakra((function(e){var t=e.ariaLabel,l=e.className,a=e.dismissible,i=void 0!==a&&a,o=e.icon,s=e.id,v=e.isCentered,m=void 0!==v&&v,u=e.noMargin,p=void 0!==u&&u,f=e.notificationContent,g=e.notificationHeading,b=e.notificationType,z=void 0===b?"standard":b,y=e.showIcon,x=void 0===y||y,w=d(e,Bs),E=n.useState(!0),O=E[0],M=E[1],C=r.useMultiStyleConfig("Notification",{dismissible:i,isCentered:m,noMargin:p,notificationType:z}),k=i&&c.createElement(bt,{"aria-label":"Close the notification",buttonType:"link",id:s+"-notification-dismissible-button",onClick:function(){return M(!1)},__css:C.dismissibleButton},c.createElement(vt,{id:s+"-dismissible-notification-icon",name:"close",size:"large",title:"Notification close icon"})),j=function(){var e={size:"large",__css:C.icon};if(x)return o?c.cloneElement(o,h({id:s+"-custom-notification-icon"},e)):c.createElement(vt,Object.assign({id:s+"-notification-icon"},{announcement:{color:"section.research.secondary",name:"speakerNotes",title:"Notification announcement icon"},standard:{color:"ui.black",name:"alertNotificationImportant",title:"Notification standard icon"},warning:{color:"brand.primary",name:"errorFilled",title:"Notification warning icon"}}[z],e))}(),S=g&&c.createElement(Rs,{icon:j,id:s,isCentered:m,notificationType:z},g),T=c.createElement(Hs,{alignText:!(!S||!x||!o&&m),icon:S?void 0:j,notificationType:z},f);return O?c.createElement(r.Box,Object.assign({"aria-label":t,as:"aside",className:l,"data-type":z,id:s,__css:C},w),c.createElement(r.Box,{__css:C.container},S,T),k):null})),Ns=["className","currentPage","getPageHref","id","initialPage","onPageChange","pageCount"],Ds=r.chakra((function(e){var t=e.className,l=e.currentPage,a=e.getPageHref,i=e.id,o=e.initialPage,s=void 0===o?1:o,v=e.onPageChange,m=e.pageCount,u=d(e,Ns),p=n.useRef(l),f=n.useState(s),g=f[0],b=f[1],z=r.useMultiStyleConfig("Pagination",{}),y=g-1,x=g+1;if(c.useEffect((function(){v&&l&&l!==p.current&&(b(l),p.current=l)}),[l,v]),m<=1)return null;a&&v&&console.warn("NYPL Reservoir Pagination: Props for both `getPageHref` and `onPageChange` are passed. The component will default to using `getPageHref`."),a&&l&&console.warn("NYPL Reservoir Pagination: The `currentPage` prop does not work with the `getPageHref` prop. Use `currentPage` with `onPageChange` instead.");var w,E,O,M,C,k,j=void 0!==a&&"function"==typeof a,S=function(e,t){e.preventDefault&&e.preventDefault(),g!==t&&(b(t),v&&v(t))},T=function(e){g>1&&S(e,y)},V=function(e){g<m&&S(e,x)},L=function(e,t){var l=g===t,r=l?{color:"ui.black",pointerEvent:"none"}:{},n={items:{href:j?a(t):"#",attributes:{"aria-label":"Page "+t,"aria-current":l?"page":null,onClick:j?void 0:function(e){return S(e,t)}},text:t},previous:{href:j?a(y):"#",attributes:{"aria-label":"Previous page",onClick:j?void 0:T},text:"Previous"},next:{href:j?a(x):"#",attributes:{"aria-label":"Next page",onClick:j?void 0:V},text:"Next"}}[e];return c.createElement(Et,Object.assign({href:n.href,id:i+"-"+n.text},n.attributes,{__css:h({},z.link,r)}),n.text)},_=1!==g&&c.createElement("li",{key:"previous"},L("previous")),I=g!==m&&c.createElement("li",{key:"next"},L("next"));return c.createElement(r.Box,Object.assign({as:"nav",id:i,"aria-label":"Pagination",role:"navigation",className:t,__css:z},u),c.createElement(er,{type:"ul",inline:!0,noStyling:!0,id:i+"-list"},_,(w=g,C=Math.max(3,Math.min(w-1,m-4)),k=Math.min(m-2,Math.max(w+1,5)),(m<4?Array.from({length:m},(function(e,t){return t+1})):[1,C>3?"ellipse-start":2].concat((O=k+1,void 0===M&&(M=1),(E=C)?Array(Math.ceil((O-E)/M)).fill(E).map((function(e,t){return e+t*M})):[]),[k<m-2?"ellipse-end":m-1,m])).map((function(e){var t="number"==typeof e?L("items",e):"...";return c.createElement("li",{key:e},t)}))),I))})),As=["darkMode","id","indicatorType","isIndeterminate","labelText","showLabel","size","value"],Ws=r.chakra((function(e){var t=e.darkMode,l=void 0!==t&&t,a=e.id,n=e.indicatorType,i=void 0===n?"linear":n,o=e.isIndeterminate,s=void 0!==o&&o,h=e.labelText,v=e.showLabel,m=void 0===v||v,u=e.size,p=void 0===u?"default":u,f=e.value,g=void 0===f?0:f,b=d(e,As),z=r.useMultiStyleConfig("ProgressIndicator",{darkMode:l,size:p}),y=g;a||console.warn("NYPL Reservoir Progress Indicator: This component's required `id` prop was not passed."),(y<0||y>100)&&(console.warn("NYPL Reservoir ProgressIndicator: An invalid value was passed for the `value` prop, so 0 will be used. A valid value should be a number between 0 and 100."),y=0);var x={id:a,"aria-label":m?void 0:h,"aria-labelledby":m?a+"-label":void 0,isIndeterminate:s||void 0,value:s?void 0:y};return c.createElement(r.Box,Object.assign({__css:z},b),function(e){return"circular"===e?("small"===p&&(x["aria-label"]=h),c.createElement(r.Box,{__css:z.circularContainer},c.createElement(r.CircularProgress,Object.assign({},x,{sx:z.circular}),m&&!s&&"small"!==p&&c.createElement(r.CircularProgressLabel,null,y,"%")),m&&"small"!==p&&c.createElement(pl,{id:a+"-label",htmlFor:a},h))):c.createElement(c.Fragment,null,m&&c.createElement(pl,{id:a+"-label",htmlFor:a},h),c.createElement(r.Box,{__css:z.linearContainer},c.createElement(r.Progress,Object.assign({},x,{sx:z.linear})),m&&!s&&c.createElement(r.Box,{__css:z.linearPercentage},y,"%")))}(i))})),qs=["className","helperText","id","invalidText","isChecked","isDisabled","isInvalid","isRequired","labelText","name","onChange","showHelperInvalidText","showLabel","value"],Ys=r.chakra(n.forwardRef((function(e,t){var l=e.className,a=e.helperText,c=e.id,i=e.invalidText,o=e.isChecked,s=e.isDisabled,h=void 0!==s&&s,v=e.isInvalid,m=void 0!==v&&v,u=e.isRequired,p=void 0!==u&&u,f=e.labelText,g=e.name,b=e.onChange,z=e.showHelperInvalidText,y=void 0===z||z,x=e.showLabel,w=void 0===x||x,E=e.value,O=d(e,qs),M=r.useMultiStyleConfig("Radio",{}),C=m?i:a,k={};return c||console.warn("NYPL Reservoir Radio: This component's required `id` prop was not passed."),w?C&&(k["aria-describedby"]=c+"-helperText"):("string"!=typeof f&&console.warn("NYPL Reservoir Radio: `labelText` must be a string when `showLabel` is false."),k["aria-label"]=f&&C?f+" - "+C:f),n.createElement(n.Fragment,null,n.createElement(r.Radio,Object.assign({className:l,id:c,isChecked:o,isDisabled:h,isInvalid:m,isRequired:p,name:g,onChange:b,value:E,ref:t,alignItems:"flex-start",__css:M},k,O),w&&f),C&&y&&n.createElement(Dt,{id:c+"-helperText",isInvalid:m,text:C,__css:M.helperErrorText}))}))),Gs=["children","className","defaultValue","helperText","id","invalidText","isDisabled","isFullWidth","isInvalid","isRequired","labelText","layout","name","onChange","showHelperInvalidText","showLabel","showRequiredLabel"],Us=r.chakra(n.forwardRef((function(e,t){var l=e.children,a=e.className,c=void 0===a?"":a,i=e.defaultValue,o=e.helperText,s=e.id,h=e.invalidText,v=e.isDisabled,m=void 0!==v&&v,u=e.isFullWidth,p=void 0!==u&&u,f=e.isInvalid,g=void 0!==f&&f,b=e.isRequired,z=void 0!==b&&b,y=e.labelText,x=e.layout,w=void 0===x?"column":x,E=e.name,O=e.onChange,M=e.showHelperInvalidText,C=void 0===M||M,k=e.showLabel,j=void 0===k||k,S=e.showRequiredLabel,T=void 0===S||S,V=d(e,Gs),L=n.useState(i),_=L[0],I=L[1],P=g?h:o,B="column"===w?al.s:al.l,R=[],H=r.useMultiStyleConfig("RadioGroup",{isFullWidth:p}),F={"aria-label":j?void 0:y,name:E,onChange:function(e){I(e),O&&O(e)},ref:t,value:_};return s||console.warn("NYPL Reservoir RadioGroup: This component's required `id` prop was not passed."),n.Children.map(l,(function(e,t){var l,a;(null==e?void 0:e.type)!==Ys&&(null!=(l=e.props)&&l.mdxType&&"Radio"===(null==(a=e.props)?void 0:a.mdxType)||console.warn("NYPL Reservoir RadioGroup: Only `Radio` components are allowed inside the `RadioGroup` component.")),null!=e&&R.push(n.cloneElement(e,{key:t,isDisabled:m,isInvalid:g,isRequired:z}))})),n.createElement(ll,Object.assign({className:c,id:"radio-group-"+s,isLegendHidden:!j,isRequired:z,legendText:y,showRequiredLabel:T},V),n.createElement(r.RadioGroup,Object.assign({},F),n.createElement(r.Stack,{direction:[w],spacing:B,sx:H.stack},R)),P&&C&&n.createElement(Dt,{id:s+"-helperErrorText",isInvalid:g,text:P,__css:H.helperErrorText}))}))),Xs=["children","className","isBold","isItalic","noSpace","size"],Js=r.chakra((function(e){var t=e.children,l=e.className,a=void 0===l?"":l,c=e.isBold,i=e.isItalic,o=e.noSpace,s=e.size,h=void 0===s?"default":s,v=d(e,Xs),m=r.useStyleConfig("Text",{variant:h,isBold:c,isItalic:i,noSpace:o});return t||console.warn("NYPL Reservoir Text: No children were passed and the `Text` component will not render correctly."),n.createElement(r.Text,Object.assign({className:a,sx:m},v),t)})),Ks=["children","descriptionText","headingText","helperText","id","invalidText","isInvalid"],Qs=r.chakra((function(e){var t=e.children,l=e.descriptionText,a=e.headingText,c=e.helperText,i=e.id,o=e.invalidText,s=e.isInvalid,h=void 0!==s&&s,v=d(e,Ks),m=!!t,u=r.useMultiStyleConfig("ComponentWrapper",{hasChildren:m}),p=h?o:c;return m||console.warn("NYPL Reservoir ComponentWrapper: No children were passed."),n.createElement(r.Box,Object.assign({__css:u},v),a&&n.createElement(Mt,{id:i+"-heading",text:a}),l&&n.createElement(Js,null,l),t,p&&n.createElement(Dt,{id:i+"-helperText",isInvalid:h,text:p,__css:u.helperErrorText}))})),Zs=["children","className","helperText","id","invalidText","isDisabled","isInvalid","isRequired","labelPosition","labelText","name","onChange","placeholder","selectType","showHelperInvalidText","showLabel","showRequiredLabel","value"],$s=r.chakra(c.forwardRef((function(e,t){var l=e.children,a=e.className,i=e.helperText,o=e.id,s=e.invalidText,h=e.isDisabled,v=void 0!==h&&h,m=e.isInvalid,u=void 0!==m&&m,p=e.isRequired,f=void 0!==p&&p,g=e.labelPosition,b=void 0===g?"default":g,z=e.labelText,y=e.name,x=e.onChange,w=e.placeholder,E=e.selectType,O=void 0===E?"default":E,M=e.showHelperInvalidText,C=void 0===M||M,k=e.showLabel,j=void 0===k||k,S=e.showRequiredLabel,T=void 0===S||S,V=e.value,L=void 0===V?"":V,_=d(e,Zs),I={},P=n.useState(0),B=P[0],R=P[1],H=n.useRef(null),F=r.useMultiStyleConfig("CustomSelect",{variant:O,labelPosition:b}),N=u?s||"There is an error related to this field.":i,D=x?{onChange:x,value:L}:{};return j?i&&(I["aria-describedby"]=o+"-helperText"):I["aria-label"]=z&&N?z+" - "+N:z,o||console.warn("NYPL Reservoir Select: This component's required `id` prop was not passed."),n.useEffect((function(){"inline"===b?H.current&&R(H.current.clientWidth+8):R(0)}),[b]),c.createElement(r.Box,Object.assign({className:a,__css:F},_),c.createElement(r.Box,{__css:"inline"===b&&F.inline},j&&c.createElement(r.Box,{ref:H},c.createElement(pl,{htmlFor:o,id:o+"-label",isInlined:!0,isRequired:T&&f},z)),c.createElement(r.Select,Object.assign({id:o,variant:"outline",isRequired:f,isDisabled:v,isInvalid:u,name:y,placeholder:w,ref:t},D,I,{icon:c.createElement(vt,{id:o+"-icon",name:"arrow",size:"medium"}),__css:F.select}),l)),N&&C&&c.createElement(Dt,{id:o+"-helperText",isInvalid:u,text:N,ml:{sm:"auto",md:B+"px"}}))}))),eh=["action","buttonOnClick","className","descriptionText","headingText","helperText","id","invalidText","isDisabled","isInvalid","isRequired","labelText","method","noBrandButtonType","onSubmit","selectProps","textInputElement","textInputProps"],th=r.chakra((function(e){var t=e.action,l=e.buttonOnClick,a=e.className,c=e.descriptionText,i=e.headingText,o=e.helperText,s=e.id,h=e.invalidText,v=e.isDisabled,m=void 0!==v&&v,u=e.isInvalid,p=void 0!==u&&u,f=e.isRequired,g=void 0!==f&&f,b=e.labelText,z=e.method,y=e.noBrandButtonType,x=void 0!==y&&y,w=e.onSubmit,E=e.selectProps,O=e.textInputElement,M=e.textInputProps,C=d(e,eh),k=r.useMultiStyleConfig("SearchBar",{}),j={helperText:"",isDisabled:m,isInvalid:p,isRequired:g,showHelperInvalidText:!1,showLabel:!1},S=p?h:o,T=S?b+" - "+S:b,V=((null==M?void 0:M.placeholder)||"Search terms")+" "+(g?"(Required)":""),L=x?"noBrand":"primary";s||console.warn("NYPL Reservoir SearchBar: This component's required `id` prop was not passed.");var _=E&&n.createElement($s,Object.assign({id:"searchbar-select-"+s,labelText:null==E?void 0:E.labelText,name:null==E?void 0:E.name,onChange:null==E?void 0:E.onChange,selectType:"searchbar",value:null==E?void 0:E.value,__css:k.select},j),null==E?void 0:E.optionsData.map((function(e){return n.createElement("option",{key:e,value:e},e)}))),I=M&&n.createElement(bl,Object.assign({id:"searchbar-textinput-"+s,labelText:null==M?void 0:M.labelText,name:null==M?void 0:M.name,onChange:null==M?void 0:M.onChange,placeholder:V,textInputType:_?"searchBarSelect":"searchBar",type:"text",value:null==M?void 0:M.value},j)),P=n.createElement(bt,{buttonType:L,id:"searchbar-button-"+s,isDisabled:m,onClick:l,type:"submit",__css:{borderLeftRadius:"none",borderRightRadius:{base:"none",md:"sm"},lineHeight:"1.70",marginBottom:"auto"}},n.createElement(vt,{align:"left",id:"searchbar-icon-"+s,name:"search",size:"small"}),"Search"),B=O||I;return n.createElement(Qs,Object.assign({descriptionText:c,headingText:i,helperText:o,id:s,invalidText:h,isInvalid:p},C),n.createElement(r.Box,{as:"form",id:"searchbar-form-"+s,className:a,role:"search","aria-label":T,onSubmit:w,method:z,action:t,__css:k},_,B,P))})),lh=["className","contentSize","headingSize","imageAspectRatio","isBordered","layout","showButton","showContent","showHeading","showImage","width"],ah=r.chakra((function(e){var t=e.className,l=e.contentSize,a=void 0===l?3:l,c=e.headingSize,i=void 0===c?1:c,o=e.imageAspectRatio,s=void 0===o?"square":o,v=e.isBordered,m=void 0!==v&&v,u=e.layout,p=void 0===u?"column":u,f=e.showButton,g=void 0!==f&&f,b=e.showContent,z=void 0===b||b,y=e.showHeading,x=void 0===y||y,w=e.showImage,E=void 0===w||w,O=e.width,M=d(e,lh),C=r.useMultiStyleConfig("SkeletonLoader",{isBordered:m,imageAspectRatio:s,showImage:E,variant:p}),k=function(e,t,l){return void 0===t&&(t=1),void 0===l&&(l="80%"),new Array(t).fill(null).map((function(a,c){return n.createElement(r.Skeleton,{key:e+"-"+c,width:c===t-1?l:"100%"},n.createElement(r.Box,{__css:C[e],style:{marginBottom:c===t-1&&"content"===e?"0":void 0}}))}))};return n.createElement(r.Box,Object.assign({className:t,__css:C,style:{width:O}},M),E&&n.createElement(r.Skeleton,null,n.createElement(r.Box,{__css:h({},C.element,C.image)})),n.createElement(r.Box,{className:p,__css:C.container},x&&n.createElement(r.Box,{__css:C.section},k("heading",i,"80%")),z&&n.createElement(r.Box,{__css:C.section},k("content",a,"30%")),g&&n.createElement(r.Box,{__css:h({},C.section,C.button)},n.createElement(r.Skeleton,{borderRadius:"16px"},n.createElement(r.Box,{__css:C.button})))))})),rh=["className","id","target"],nh=r.chakra((function(e){var t=e.className,l=e.id,a=e.target,c=void 0===a?"#mainContent":a,i=d(e,rh),o=r.useStyleConfig("SkipNavigation");return n.createElement(r.Box,Object.assign({as:"nav","aria-label":"Skip Navigation",className:t,id:l,__css:o},i),n.createElement(er,{inline:!0,noStyling:!0,type:"ul"},n.createElement("li",null,n.createElement(Et,{href:c},"Skip to Main Content")),n.createElement("li",null,n.createElement(Et,{href:"https://www.nypl.org/accessibility"},"Click to learn about accessibility at the Library"))))})),ch=["className","defaultValue","helperText","id","invalidText","isDisabled","isInvalid","isRangeSlider","isRequired","labelText","max","min","name","onChange","showBoxes","showHelperInvalidText","showLabel","showRequiredLabel","showValues","step"],ih=r.chakra((function(e){var t=e.className,l=e.defaultValue,a=void 0===l?0:l,c=e.helperText,i=e.id,o=e.invalidText,s=e.isDisabled,v=void 0!==s&&s,m=e.isInvalid,u=void 0!==m&&m,p=e.isRangeSlider,f=void 0!==p&&p,g=e.isRequired,b=void 0!==g&&g,z=e.labelText,y=e.max,x=void 0===y?100:y,w=e.min,E=void 0===w?0:w,O=e.name,M=e.onChange,C=e.showBoxes,k=void 0===C||C,j=e.showHelperInvalidText,S=void 0===j||j,T=e.showLabel,V=void 0===T||T,L=e.showRequiredLabel,_=void 0===L||L,I=e.showValues,P=void 0===I||I,B=e.step,R=void 0===B?1:B,H=d(e,ch);i||console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");var F=n.useState(f&&"number"==typeof a?[E,x]:a),N=F[0],D=F[1],A=u;f&&N[0]>N[1]&&(A=!0);var W=A?o:c,q=r.useMultiStyleConfig("CustomSlider",{isDisabled:v,isInvalid:A,showBoxes:k,showValues:P}),Y={focusThumbOnChange:!1,id:i,isDisabled:v,max:x,min:E,name:O,onChange:function(e){D(e),M&&M(e)},step:R,sx:q.sliderContainer},G={isDisabled:v,isInvalid:A,isRequired:b,max:x,min:E,showHelperInvalidText:!1,showLabel:!1,step:R,type:"number"},U=function(e){var t={start:h({value:f?N[0].toString():"",onChange:function(e){var t=[parseInt(e.target.value,10)?parseInt(e.target.value,10):0,N[1]];D(t),M&&M(t)}},G),end:h({value:f?N[1].toString():N.toString(),onChange:function(e){var t=parseInt(e.target.value,10)?parseInt(e.target.value,10):0;t>x&&(t=x);var l=f?[N[0],t]:t;D(l),M&&M(l)}},G)};return n.createElement(bl,Object.assign({id:i+"-textInput-"+e,labelText:f?z+" - "+e+" value":z,__css:h({},q.textInput,{marginRight:"start"===e?"s":null,marginLeft:"end"===e?"s":null})},t[e]))};return n.createElement(r.Box,Object.assign({className:t,__css:q},H),V&&n.createElement(pl,{id:i+"-label",htmlFor:k?i+"-textInput-"+(f?"start":"end"):"",isRequired:_&&b},z),n.createElement(r.Box,{__css:q.container},k&&f&&U("start"),P&&n.createElement(r.Box,{__css:q.leftValue},E),f?n.createElement(r.RangeSlider,Object.assign({"aria-label":V?void 0:[z+" - start value",z+" - end value"],"aria-labelledby":V?[i+"-label",i+"-label"]:void 0,value:N,size:"lg"},Y),n.createElement(r.RangeSliderTrack,{sx:q.track},n.createElement(r.RangeSliderFilledTrack,{sx:q.filledTrack})),n.createElement(r.RangeSliderThumb,{index:0,sx:q.thumb}),n.createElement(r.RangeSliderThumb,{index:1,sx:q.thumb})):n.createElement(r.Slider,Object.assign({"aria-label":V?void 0:z,"aria-labelledby":i+"-label",value:N,size:"lg"},Y),n.createElement(r.SliderTrack,{sx:q.track},n.createElement(r.SliderFilledTrack,{sx:q.filledTrack})),n.createElement(r.SliderThumb,{sx:q.thumb})),P&&n.createElement(r.Box,{__css:q.rightValue},x),k&&U("end")),W&&S&&n.createElement(Dt,{id:i+"-helperText",isInvalid:A,text:W}))})),oh=["children","className","id","level"],sh=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,c=e.level,i=void 0===c?"low":c,o=d(e,oh),s=r.useStyleConfig("StatusBadge",{variant:i});return t||console.warn("NYPL Reservoir StatusBadge: No children were passed."),n.createElement(r.Box,Object.assign({id:a,className:l,__css:s},o),t)})),hh=["calloutText","className","headingText","id","imageProps","bodyContent"],dh=r.chakra((function(e){return n.createElement(St,{additionalFigureStyles:e.additionalFigureStyles,additionalImageStyles:e.additionalImageStyles,additionalWrapperStyles:e.additionalWrapperStyles,alt:e.alt,component:e.component,aspectRatio:e.aspectRatio,size:e.size,caption:e.caption,credit:e.credit,src:e.src})})),vh=r.chakra((function(e){var t=e.calloutText,l=e.className,a=e.headingText,c=e.id,i=e.imageProps,o=void 0===i?{alt:"",aspectRatio:"square",caption:void 0,component:void 0,credit:void 0,position:"left",size:"medium",src:""}:i,s=e.bodyContent,h=d(e,hh),v=o.src||o.component,m=r.useMultiStyleConfig("StructuredContent",{hasFigureImage:o.caption||o.credit,imageAspectRatio:o.aspectRatio,imagePosition:o.position}),u="string"==typeof s?n.createElement("div",{className:"structuredcontent-body",dangerouslySetInnerHTML:{__html:s}}):n.createElement(r.Box,{className:"structuredcontent-body"},s);return v&&!o.alt&&console.warn("NYPL Reservoir StructuredContent: The `imageProps.alt` prop is required when using an image."),n.createElement(r.Box,Object.assign({id:c,className:l,__css:m},h),a&&n.createElement(Mt,{id:c+"-heading"},a),t&&n.createElement(Mt,{id:c+"-callout",level:"three",size:"callout"},t),v&&n.createElement(dh,{additionalFigureStyles:m.imageFigure,additionalImageStyles:m.image,additionalWrapperStyles:m.imageWrapper,alt:o.alt,component:o.component,aspectRatio:o.aspectRatio,caption:o.caption,credit:o.credit,size:o.size,src:o.src?o.src:void 0}),u)})),mh=function(e,t){void 0===e&&(e=0),void 0===t&&(t=100);var l=c.useState(0),a=l[1];return{prevSlide:function(){a((function(t){return 0===t?e-1:t-1}))},nextSlide:function(){a((function(t){return t===e-1?0:t+1}))},carouselStyle:{transition:"all .5s",marginLeft:"-"+l[0]*t+"%"},goToStart:function(){a(0)}}},uh=["children","defaultIndex","id","onChange","tabsData","useHash"],ph=r.chakra((function(e){var t,l,a=e.children,c=e.defaultIndex,i=void 0===c?0:c,o=e.id,s=e.onChange,v=e.tabsData,m=e.useHash,u=void 0!==m&&m,p=d(e,uh),f=r.useMultiStyleConfig("Tabs",{}),g=n.useState(65),b=g[0],z=g[1],y=zt(),x=v?function(e,t){var l=[],a=[];return null!=e&&e.length?((null==e?void 0:e.length)>6&&console.warn("NYPL Reservoir Tabs: it is recommended to use no more than six tabs. If more than six tabs are needed, consider other navigational patterns."),e.forEach((function(e,c){var i,o=n.createElement(r.Tab,{fontSize:["0",null,"1"],key:c,onClick:t?function(){window.location.hash="tab"+(c+1)}:void 0},e.label);i="string"==typeof e.content?n.createElement(r.TabPanel,{dangerouslySetInnerHTML:{__html:e.content},key:c}):n.createElement(r.TabPanel,{key:c},e.content),l.push(o),a.push(i)})),{tabs:[n.createElement(r.TabList,{key:"list"},l)],panels:[n.createElement(r.TabPanels,{key:"panels"},a)]}):{tabs:[],panels:[]}}(v,u):function(e){var t=[],l=[];return null!=e&&e.length?(e.forEach((function(e){e.type!==r.TabList&&"TabList"!==e.props.mdxType||(t.push(e),n.Children.count(e.props.children)>6&&console.warn("NYPL Reservoir Tabs: It is recommended to use no more than six tabs. If more than six tabs are needed, consider other navigational patterns.")),e.type!==r.TabPanels&&"TabPanels"!==e.props.mdxType||l.push(e)})),{tabs:t,panels:l}):{tabs:[],panels:[]}}(a),w=x.tabs,E=x.panels;0!==w.length&&0!==E.length||console.warn("NYPL Reservoir Tabs: Pass data in the `contentData` props or as children.");var O=w[0]?null==(t=w[0])?void 0:t.props:w.props,M=mh(null==O||null==(l=O.children)?void 0:l.length,b),C=M.prevSlide,k=M.nextSlide,j=M.carouselStyle,S=M.goToStart;n.useEffect((function(){z(y.width>320?40:65),y.width>600&&S()}),[S,y.width]);var T=n.createElement(bt,{"aria-label":"Previous",id:"tabs-previous-"+o,onClick:C,__css:h({},f.buttonArrows,{left:"0"})},n.createElement(vt,{iconRotation:"rotate90",id:"tabs-previous-icon-"+o,name:"arrow",size:"small"})),V=n.createElement(bt,{"aria-label":"Next",id:"tabs-next-"+o,onClick:k,__css:h({},f.buttonArrows,{right:"0"})},n.createElement(vt,{iconRotation:"rotate270",id:"tabs-next-icon-"+o,name:"arrow",size:"small"}));return a&&null!=v&&v.length&&console.warn("NYPL Reservoir Tabs: Only pass children or data in the `contentData` prop. Do not pass both."),n.createElement(r.Tabs,Object.assign({defaultIndex:i,id:o,isLazy:!0,onChange:s,variant:"enclosed"},p),n.createElement(r.Box,{__css:f.tablistWrapper,sx:{"&::-webkit-scrollbar":{display:"none"}}},T,n.createElement(r.Box,{__css:f.carouselParent},n.createElement(r.Box,Object.assign({},j),w)),V),E)})),fh=["aboveHeader","breakout","contentId","contentPrimary","contentSidebar","contentTop","footer","header","sidebar","renderFooterElement","renderHeaderElement","renderSkipNavigation"],gh=r.chakra((function(e){var t=r.useStyleConfig("Template",{});return n.createElement(r.Box,Object.assign({__css:t},e),e.children)})),bh=function(e){var t=r.useStyleConfig("TemplateBreakout",{});return n.createElement(r.Box,{__css:t},e.children)},zh=function(e){var t=e.children,l=e.renderHeaderElement,a=void 0===l||l,c=r.useStyleConfig("TemplateHeader",{}),i=n.createElement(r.Box,{__css:c},t);return a&&(n.Children.map(t,(function(e){var t;"header"!==(null==e?void 0:e.type)&&"header"!==(null==e||null==(t=e.props)?void 0:t.mdxType)||console.warn("NYPL Reservoir TemplateHeader: An HTML `header` element was passed in. Set `renderHeaderElement` to `false` to avoid nested HTML `header` elements.")})),i=n.createElement(r.Box,{as:"header",__css:c},t)),i},yh=function(e){var t=r.useStyleConfig("TemplateBreakout",{});return n.createElement(r.Box,{__css:t},e.children)},xh=function(e){var t=e.children,l=e.id,a=void 0===l?"mainContent":l,c=e.sidebar,i=void 0===c?"none":c,o=r.useStyleConfig("TemplateContent",{variant:"none"!==i?"sidebar":null}),s=n.Children.map(t,(function(e){var t,l,a=e;return(e&&(null==e?void 0:e.type)===Eh||null!=e&&e.props&&"TemplateContentPrimary"===(null==(t=e.props)?void 0:t.mdxType)||(null==e?void 0:e.type)===Oh||null!=e&&e.props&&"TemplateContentSidebar"===(null==(l=e.props)?void 0:l.mdxType))&&(a=n.cloneElement(e,{sidebar:i})),a}));return n.createElement(r.Box,{as:"main",id:a,__css:o},s)},wh=function(e){var t=r.useStyleConfig("TemplateContentTop",{});return n.createElement(r.Box,{__css:t},e.children)},Eh=function(e){var t=r.useStyleConfig("TemplateContentPrimary",{variant:e.sidebar});return n.createElement(r.Box,{__css:t},e.children)},Oh=function(e){var t=r.useStyleConfig("TemplateContentSidebar",{variant:e.sidebar});return n.createElement(r.Box,{__css:t},e.children)},Mh=function(e){var t=e.children,l=e.renderFooterElement,a=void 0===l||l,c=n.createElement(n.Fragment,null,t);return a&&(n.Children.map(t,(function(e){var t;"footer"!==(null==e?void 0:e.type)&&"footer"!==(null==e||null==(t=e.props)?void 0:t.mdxType)||console.warn("NYPL Reservoir TemplateFooter: An HTML `footer` element was passed in. Set `renderFooterElement` to `false` to avoid nested HTML `footer` elements.")})),c=n.createElement(r.Box,{as:"footer"},t)),c},Ch=r.chakra((function(e){var t=e.aboveHeader,l=e.breakout,a=e.contentId,r=void 0===a?"mainContent":a,c=e.contentPrimary,i=e.contentSidebar,o=e.contentTop,s=e.footer,h=e.header,v=e.sidebar,m=void 0===v?"none":v,u=e.renderFooterElement,p=void 0===u||u,f=e.renderHeaderElement,g=void 0===f||f,b=e.renderSkipNavigation,z=void 0!==b&&b,y=d(e,fh),x=t&&n.createElement(bh,null,t),w=l&&n.createElement(yh,null,l),E=o&&n.createElement(wh,null,o),O=c&&n.createElement(Eh,null,c),M=i&&n.createElement(Oh,null,i);return n.createElement(gh,Object.assign({},y),z?n.createElement(nh,null):null,x,(h||w)&&n.createElement(zh,{renderHeaderElement:g},h,w),n.createElement(xh,{id:r,sidebar:m},E,"left"===m&&M,O,"right"===m&&M),s&&n.createElement(Mh,{renderFooterElement:p},s))})),kh=["defaultChecked","helperText","id","invalidText","isChecked","isDisabled","isInvalid","isRequired","labelText","name","onChange","size"],jh=function(){},Sh=r.chakra(n.forwardRef((function(e,t){var l=e.defaultChecked,a=void 0!==l&&l,c=e.helperText,i=e.id,o=e.invalidText,s=e.isChecked,h=e.isDisabled,v=void 0!==h&&h,m=e.isInvalid,u=void 0!==m&&m,p=e.isRequired,f=void 0!==p&&p,g=e.labelText,b=e.name,z=e.onChange,y=void 0===z?jh:z,x=e.size,w=void 0===x?"default":x,E=d(e,kh),O=u?o:c,M={},C=r.useMultiStyleConfig("Toggle",{isDisabled:v,size:w}),k=r.useStyleConfig("Switch",{size:w});return M["aria-label"]=g&&O?g+" - "+O:g,i||console.warn("NYPL Reservoir Toggle: This component's required `id` prop was not passed."),n.createElement(n.Fragment,null,n.createElement(r.Box,Object.assign({__css:C},E),n.createElement(r.Switch,Object.assign({id:i,name:b||"default",isDisabled:v,isInvalid:u,isRequired:f,ref:t,size:"default"===w?"lg":"sm",lineHeight:"1.5"},void 0!==s?{isChecked:s,onChange:y}:{defaultChecked:a},M,{__css:k}),g)),O&&n.createElement(Dt,{id:i+"-helperText",isInvalid:u,text:O,__css:C.helperErrorText}))}))),Th=["aspectRatio","className","descriptionText","embedCode","headingText","helperText","id","iframeTitle","showHelperInvalidText","videoId","videoType"],Vh=r.chakra((function(e){var t=e.aspectRatio,l=e.className,a=e.descriptionText,c=e.embedCode,i=e.headingText,o=e.helperText,s=e.id,h=e.iframeTitle,v=e.showHelperInvalidText,m=void 0===v||v,u=e.videoId,p=e.videoType,f=d(e,Th),g="vimeo"===p?h||"Vimeo video player":h||"YouTube video player",b="vimeo"===p?"https://player.vimeo.com/video/"+u+"?autoplay=0&loop=0":"https://www.youtube.com/embed/"+u+"?disablekb=1&autoplay=0&fs=1&modestbranding=0",z=h?""+h:"Video player",y=c&&c.includes("<iframe")&&!c.includes("title=")?c.replace("<iframe ",'<iframe title="'+z+'" '):c,x=!1;y||p||u?y||p?y||u?y&&(p||u)&&(console.warn("NYPL Reservoir VideoPlayer: Pass in either the `embedCode` prop or both the `videoType` and `videoId` props; all were set."),x=!0):(console.warn("NYPL Reservoir VideoPlayer: The `videoId` prop is also required. Only the `videoType` prop was set."),x=!0):(console.warn("NYPL Reservoir VideoPlayer: The `videoType` prop is also required. Only the `videoId` prop was set."),x=!0):(console.warn("NYPL Reservoir VideoPlayer: Pass in either the `embedCode` prop or both the `videoType` and `videoId` props; none were passed."),x=!0),u&&(u.includes("://")||u.includes("http")||u.includes(".")||u.includes("youtube")||u.includes("vimeo"))&&(console.warn("NYPL Reservoir VideoPlayer: The `videoId` prop is not configured properly."),x=!0),!y||(y.includes("vimeo.com")||y.includes("youtube.com"))&&y.includes("<iframe")&&y.includes("</iframe")||(console.warn("NYPL Reservoir VideoPlayer: The `embedCode` prop is not configured properly."),x=!0);var w=r.useMultiStyleConfig("VideoPlayer",{variant:x?"invalid":t}),E=y?n.createElement("span",{dangerouslySetInnerHTML:{__html:y}}):n.createElement(r.Box,{as:"iframe",src:b,title:g,frameBorder:"0",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; fullscreen; gyroscope; picture-in-picture",allowFullScreen:!0,__css:w.iframe});return n.createElement(r.Box,Object.assign({className:l,"data-testid":"video-player-component",id:s,__css:w},f),x?n.createElement("span",{dangerouslySetInnerHTML:{__html:"<strong>Error:</strong> This video player has not been configured properly. Please contact the site administrator."}}):n.createElement(Qs,{headingText:i||void 0,descriptionText:a||void 0,helperText:o&&m?o:void 0,id:s+"-componentWrapper"},n.createElement(r.Box,{__css:w.inside},E)))})),Lh=["className","columnHeaders","columnHeadersBackgroundColor","columnHeadersTextColor","id","showRowDividers","tableData","titleText","useRowHeaders"],_h=r.chakra((function(e){var t=e.className,l=e.columnHeaders,a=void 0===l?[]:l,c=e.columnHeadersBackgroundColor,i=e.columnHeadersTextColor,o=e.id,s=e.showRowDividers,h=void 0!==s&&s,v=e.tableData,m=e.titleText,u=e.useRowHeaders,p=void 0!==u&&u,f=d(e,Lh),g={};c&&(g.backgroundColor=c),i&&(g.color=i);var b=r.useMultiStyleConfig("CustomTable",{columnHeadersTextColor:i,showRowDividers:h,useRowHeaders:p}),z=m&&n.createElement(r.TableCaption,null,m),y=(null==a?void 0:a.length)>0&&n.createElement(r.Thead,null,n.createElement(r.Tr,null,a.map((function(e,t){return n.createElement(r.Th,{key:t,scope:"col",sx:g},e)}))));return n.createElement(r.Table,Object.assign({id:o,sx:b,className:t},f),z,y,!Array.isArray(v)||v.length<=0||v[0].constructor!==Array?(console.warn("NYPL Reservoir Table: Data in the `tableData` prop must be a two dimensional array."),null):n.createElement(r.Tbody,null,v.map((function(e,t){return n.createElement(r.Tr,{key:t},e.map((function(e,t){return 0===t&&p?n.createElement(r.Th,{scope:"row",key:t},e):n.createElement(r.Td,{key:t},e)})))}))))}));Object.defineProperty(exports,"Box",{enumerable:!0,get:function(){return r.Box}}),Object.defineProperty(exports,"Center",{enumerable:!0,get:function(){return r.Center}}),Object.defineProperty(exports,"Circle",{enumerable:!0,get:function(){return r.Circle}}),Object.defineProperty(exports,"Flex",{enumerable:!0,get:function(){return r.Flex}}),Object.defineProperty(exports,"Grid",{enumerable:!0,get:function(){return r.Grid}}),Object.defineProperty(exports,"GridItem",{enumerable:!0,get:function(){return r.GridItem}}),Object.defineProperty(exports,"HStack",{enumerable:!0,get:function(){return r.HStack}}),Object.defineProperty(exports,"Spacer",{enumerable:!0,get:function(){return r.Spacer}}),Object.defineProperty(exports,"Square",{enumerable:!0,get:function(){return r.Square}}),Object.defineProperty(exports,"Stack",{enumerable:!0,get:function(){return r.Stack}}),Object.defineProperty(exports,"Tab",{enumerable:!0,get:function(){return r.Tab}}),Object.defineProperty(exports,"TabList",{enumerable:!0,get:function(){return r.TabList}}),Object.defineProperty(exports,"TabPanel",{enumerable:!0,get:function(){return r.TabPanel}}),Object.defineProperty(exports,"TabPanels",{enumerable:!0,get:function(){return r.TabPanels}}),Object.defineProperty(exports,"VStack",{enumerable:!0,get:function(){return r.VStack}}),exports.Accordion=ut,exports.Breadcrumbs=ft,exports.Button=bt,exports.ButtonGroup=xt,exports.Card=Ft,exports.CardActions=Bt,exports.CardContent=Pt,exports.CardHeading=It,exports.Checkbox=el,exports.CheckboxGroup=nl,exports.DSProvider=function(e){return c.createElement(r.ChakraProvider,{theme:Ua},e.children)},exports.DatePicker=Ol,exports.Fieldset=ll,exports.Form=ml,exports.FormField=vl,exports.FormRow=dl,exports.Heading=Mt,exports.HelperErrorText=Dt,exports.Hero=Ka,exports.HorizontalRule=Za,exports.Icon=vt,exports.Image=St,exports.Label=pl,exports.Link=Et,exports.List=er,exports.Logo=js,exports.ModalTrigger=_s,exports.Notification=Fs,exports.Pagination=Ds,exports.ProgressIndicator=Ws,exports.Radio=Ys,exports.RadioGroup=Us,exports.SearchBar=th,exports.Select=$s,exports.SimpleGrid=il,exports.SkeletonLoader=ah,exports.SkipNavigation=nh,exports.Slider=ih,exports.StatusBadge=sh,exports.StructuredContent=vh,exports.Table=_h,exports.Tabs=ph,exports.Template=gh,exports.TemplateAboveHeader=bh,exports.TemplateAppContainer=Ch,exports.TemplateBreakout=yh,exports.TemplateContent=xh,exports.TemplateContentPrimary=Eh,exports.TemplateContentSidebar=Oh,exports.TemplateContentTop=wh,exports.TemplateFooter=Mh,exports.TemplateHeader=zh,exports.Text=Js,exports.TextInput=bl,exports.Toggle=Sh,exports.VideoPlayer=Vh,exports.useCarouselStyles=mh,exports.useModal=function(){var e=r.useDisclosure(),t=e.isOpen,l=e.onClose,a=e.onOpen,c=r.chakra((function(e){var a=e.bodyContent,r=e.closeButtonLabel,c=e.headingText,i=e.id,o=d(e,Vs);return n.createElement(Ls,Object.assign({bodyContent:a,closeButtonLabel:r,headingText:c,id:i,isOpen:t,onClose:l},o))}));return{onClose:l,onOpen:a,Modal:c}},exports.useNYPLTheme=function(){var e=r.useTheme();return e&&0!==Object.keys(e).length?{breakpoints:e.breakpoints,colors:{brand:e.colors.brand,section:e.colors.section,transparent:e.colors.transparent,ui:e.colors.ui},fontSizes:{"-3":e.fontSizes[-3],"-2":e.fontSizes[-2],"-1":e.fontSizes[-1],0:e.fontSizes[0],1:e.fontSizes[1],2:e.fontSizes[2],3:e.fontSizes[3],4:e.fontSizes[4],breadcrumbs:e.fontSizes.breadcrumbs,button:e.fontSizes.button,heading:e.fontSizes.heading,helper:e.fontSizes.helper,label:e.fontSizes.label,text:e.fontSizes.text},fontWeights:{light:e.fontWeights.light,regular:e.fontWeights.regular,medium:e.fontWeights.medium,bold:e.fontWeights.bold,breadcrumbs:e.fontWeights.breadcrumbs,button:e.fontWeights.button,heading:e.fontWeights.heading,helper:e.fontWeights.helper,label:e.fontWeights.label,text:e.fontWeights.text},fonts:{body:e.fonts.body,heading:e.fonts.heading},radii:e.radii,space:{xxs:e.space.xxs,xs:e.space.xs,s:e.space.s,m:e.space.m,l:e.space.l,xl:e.space.xl,xxl:e.space.xxl,xxxl:e.space.xxxl}}:(console.warn("NYPL Reservoir useNYPLTheme: hook must be used inside of `<DSProvider />`."),{})},exports.useWindowSize=zt;
1
+ "use strict";function e(e){return e&&"object"==typeof e&&"default"in e?e.default:e}Object.defineProperty(exports,"__esModule",{value:!0});var t,l,a,r=require("@chakra-ui/react"),n=require("react"),c=e(n),i=e(require("react-datepicker")),o=require("@chakra-ui/theme-tools"),s=require("@chakra-ui/system");function h(){return(h=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}function d(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}var v,m,p,u=["title","titleId"];function f(){return(f=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var g,b=["title","titleId"];function z(){return(z=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var y,x=["title","titleId"];function w(){return(w=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var E,O=["title","titleId"];function M(){return(M=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var j,C=["title","titleId"];function S(){return(S=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var T,k=["title","titleId"];function V(){return(V=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var _,L=["title","titleId"];function I(){return(I=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var P,B=["title","titleId"];function R(){return(R=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var H,F=["title","titleId"];function N(){return(N=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var D,A=["title","titleId"];function W(){return(W=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var q,Y,G,U=["title","titleId"];function X(){return(X=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var J,K,Q,Z=["title","titleId"];function $(){return($=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ee,te,le=["title","titleId"];function ae(){return(ae=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var re,ne,ce,ie,oe,se=["title","titleId"];function he(){return(he=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var de,ve,me,pe=["title","titleId"];function ue(){return(ue=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var fe,ge,be,ze=["title","titleId"];function ye(){return(ye=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xe,we,Ee=["title","titleId"];function Oe(){return(Oe=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Me,je=["title","titleId"];function Ce(){return(Ce=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Se,Te=["title","titleId"];function ke(){return(ke=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ve,_e=["title","titleId"];function Le(){return(Le=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ie,Pe=["title","titleId"];function Be(){return(Be=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Re,He=["title","titleId"];function Fe(){return(Fe=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ne,De,Ae=["title","titleId"];function We(){return(We=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var qe,Ye=["title","titleId"];function Ge(){return(Ge=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ue,Xe=["title","titleId"];function Je(){return(Je=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}function Ke(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Xe);return n.createElement("svg",Je({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,qe||(qe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-1.671 7.743A9.958 9.958 0 0110 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10a9.958 9.958 0 01-2.257 6.329l5.96 5.96a1 1 0 01-1.414 1.414l-5.96-5.96z"})))}var Qe,Ze,$e=["title","titleId"];function et(){return(et=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var tt,lt,at=["title","titleId"];function rt(){return(rt=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var nt,ct=["title","titleId"];function it(){return(it=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ot=["title","titleId"];function st(){return(st=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ht={accessibilityFull:function(e){var r=e.title,c=e.titleId,i=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,u);return n.createElement("svg",f({viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":c},i),r?n.createElement("title",{id:c},r):null,t||(t=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.257 0h15.485C17.434 0 18 .566 18 1.257v15.486A1.26 1.26 0 0116.742 18H1.257A1.26 1.26 0 010 16.743V1.257C0 .566.566 0 1.257 0z",fill:"#155196"})),l||(l=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.055 4.195a1.336 1.336 0 001.201-1.326c0-.733-.597-1.33-1.33-1.33a1.333 1.333 0 00-1.165 1.975l.475 6.671 4.883.002 2.003 4.692 2.629-1.031-.407-.97-1.472.531-1.938-4.473-4.54.03-.062-.845 3.287.001v-1.25l-3.412-.001-.152-2.676z",fill:"#fff"})),a||(a=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.967 13.763a4.973 4.973 0 01-4.39 2.702 4.917 4.917 0 01-4.907-4.907c0-1.897 1.15-3.66 2.867-4.442l.111 1.449a3.571 3.571 0 00-1.641 3.004c0 1.96 1.6 3.559 3.56 3.559 1.794 0 3.323-1.377 3.532-3.143l.868 1.778z",fill:"#fff"})))},accessibilityPartial:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,b);return n.createElement("svg",z({viewBox:"0 0 18 18",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,v||(v=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M1.257 0h15.485C17.434 0 18 .566 18 1.257v15.485c0 .692-.566 1.258-1.258 1.258H1.257A1.26 1.26 0 010 16.742V1.257C0 .566.566 0 1.257 0z",fill:"#EFEDEB"})),m||(m=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M7.055 4.194A1.336 1.336 0 008.256 2.87c0-.733-.597-1.33-1.33-1.33a1.333 1.333 0 00-1.165 1.975l.475 6.67 4.883.003 2.003 4.692 2.629-1.031-.407-.97-1.472.531-1.938-4.473-4.54.03-.062-.845 3.287.001v-1.25l-3.412-.001-.152-2.677z",fill:"#000"})),p||(p=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.967 13.762a4.973 4.973 0 01-4.39 2.703 4.917 4.917 0 01-4.907-4.907c0-1.897 1.15-3.66 2.867-4.443l.111 1.45a3.571 3.571 0 00-1.641 3.003c0 1.96 1.6 3.56 3.56 3.56 1.794 0 3.323-1.377 3.532-3.143l.868 1.777z",fill:"#000"})))},actionCheckCircle:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,x);return n.createElement("svg",w({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,g||(g=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-2-5.83l6.59-6.59L18 9l-8 8-4-4 1.41-1.41L10 14.17z"})))},actionHelpDefault:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,O);return n.createElement("svg",M({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,y||(y=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17v-2h2v2h-2zm3.17-6.83l.9-.92c.57-.57.93-1.37.93-2.25 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2s2 .9 2 2c0 .55-.22 1.05-.59 1.41l-1.24 1.26C11.45 12.4 11 13.4 11 14.5v.5h2c0-1.5.45-2.1 1.17-2.83z"})))},actionHelpOutline:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,C);return n.createElement("svg",S({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,E||(E=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm11 4v2h-2v-2h2zm-1 4c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM8 10c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.283-.79 1.973-1.56 2.646C13.712 13.283 13 13.905 13 15h-2c0-1.821.942-2.543 1.77-3.178.65-.498 1.23-.943 1.23-1.822 0-1.1-.9-2-2-2s-2 .9-2 2H8z"})))},actionLaunch:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,k);return n.createElement("svg",V({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,j||(j=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M5 5v14h14v-7h2v7c0 1.1-.9 2-2 2H5a2 2 0 01-2-2V5a2 2 0 012-2h7v2H5zm9 0V3h7v7h-2V6.41l-9.83 9.83-1.41-1.41L17.59 5H14z"})))},alertNotificationImportant:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,L);return n.createElement("svg",I({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,T||(T=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.5 2.75c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v1.17c3.14.68 5.5 3.48 5.5 6.83v6l2 2v1H3v-1l2-2v-6C5 7.4 7.36 4.6 10.5 3.92V2.75zm1.5 3c2.76 0 5 2.24 5 5v7H7v-7c0-2.76 2.24-5 5-5zm-1.99 15.01c0 1.1.89 1.99 1.99 1.99s1.99-.89 1.99-1.99h-3.98zM13 7.75v4h-2v-4h2zm0 8v-2h-2v2h2z"})))},arrow:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,B);return n.createElement("svg",R({viewBox:"0 0 24 14",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,_||(_=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M10.526 12.871L.263 1.676 1.737.324 12 11.52 22.263.324l1.474 1.352L13.474 12.87a2 2 0 01-2.948 0z"})))},check:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,F);return n.createElement("svg",N({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,P||(P=n.createElement("path",{d:"M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"})))},clock:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,A);return n.createElement("svg",W({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,H||(H=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zM11 7h1.5v5.25l4.5 2.67-.75 1.23L11 13V7z"})))},close:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,U);return n.createElement("svg",X({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,D||(D=n.createElement("path",{d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"})))},download:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Te);return n.createElement("svg",ke({viewBox:"0 0 14 18",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Me||(Me=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6.684h-4v-6H4v6H0l7 7 7-7zm-8 2v-6h2v6h1.17L7 10.854l-2.17-2.17H6zm8 9v-2H0v2h14z"})))},errorFilled:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,_e);return n.createElement("svg",Le({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Se||(Se=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M12 0C5.376 0 0 5.376 0 12s5.376 12 12 12 12-5.376 12-12S18.624 0 12 0zm1.2 13.2h-2.4V6h2.4v7.2zM10.8 18h2.4v-2.4h-2.4V18z"})))},errorOutline:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Pe);return n.createElement("svg",Be({viewBox:"0 0 24 25",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ve||(Ve=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.988.912C5.364.912 0 6.288 0 12.912s5.364 12 11.988 12c6.636 0 12.012-5.376 12.012-12s-5.376-12-12.012-12zm1.212 13.2v-7.2h-2.4v7.2h2.4zm0 4.8v-2.4h-2.4v2.4h2.4zm-10.8-6c0 5.304 4.296 9.6 9.6 9.6 5.304 0 9.6-4.296 9.6-9.6 0-5.304-4.296-9.6-9.6-9.6a9.597 9.597 0 00-9.6 9.6z"})))},fileTypeAudio:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Z);return n.createElement("svg",$({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,q||(q=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),Y||(Y=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),G||(G=n.createElement("path",{d:"M7.5 12.5v3h2L12 18v-8l-2.5 2.5h-2zm6.75 1.5A2.25 2.25 0 0013 11.985v4.025A2.237 2.237 0 0014.25 14zM13 9.615v1.03a3.503 3.503 0 010 6.71v1.03a4.498 4.498 0 000-8.77z"})))},fileTypeDoc:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,le);return n.createElement("svg",ae({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,J||(J=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2.188a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705v15.971a1 1 0 01-1 1H4a1 1 0 01-1-1v-20zm2 1v18h14V6.627l-3.416-3.44H5z"})),K||(K=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6.188v-4h2v4h4v2h-4a2 2 0 01-2-2z"})),Q||(Q=n.createElement("path",{d:"M7 11.188h10v2H7zM7 15.188h10v2H7z"})))},fileTypeGenericDoc:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,se);return n.createElement("svg",he({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ee||(ee=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),te||(te=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})))},fileTypeImage:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,pe);return n.createElement("svg",ue({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,re||(re=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),ne||(ne=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),ce||(ce=n.createElement("path",{d:"M14 11l-2.831 4-1.836-2.526L6 18h12l-4-7z"})),ie||(ie=n.createElement("circle",{cx:9.375,cy:10.125,r:1.125})),oe||(oe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})))},fileTypePdf:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ze);return n.createElement("svg",ye({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,de||(de=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),ve||(ve=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),me||(me=n.createElement("path",{d:"M13.683 13.874c-.413-.46-.82-.974-1.187-1.436a51.432 51.432 0 00-.493-.617l-.011-.014c.226-.646.356-1.175.385-1.572.073-1.011-.04-1.663-.345-1.992a.759.759 0 00-.808-.201c-.208.07-.491.257-.653.753-.24.738-.124 2.046.56 3.128-.305.8-.73 1.72-1.2 2.596-.896.314-1.61.727-2.123 1.229-.669.653-.941 1.302-.746 1.78.12.296.397.472.741.472.24 0 .5-.087.75-.25.634-.415 1.462-1.797 1.906-2.597a11.81 11.81 0 012.286-.45c.209-.02.416-.035.615-.047.807.853 1.466 1.302 2.074 1.414.123.023.245.035.364.035.496 0 .905-.198 1.096-.53a.784.784 0 00-.008-.8c-.337-.584-1.355-.906-2.866-.906-.109 0-.221.002-.337.005zm-5.55 3.233a.676.676 0 01-.33.125.145.145 0 01-.034-.003c-.015-.077.04-.408.575-.932.252-.247.57-.471.947-.67-.475.766-.903 1.313-1.158 1.48zm3.168-8.074c.056-.171.125-.248.168-.263h.003c.042.046.219.314.14 1.41-.014.191-.061.433-.14.72-.255-.66-.326-1.393-.171-1.867zm1.37 4.907c-.408.039-1.03.12-1.724.284.27-.537.519-1.082.727-1.587l.22.278c.252.317.534.673.826 1.02l-.049.005zm3.55 1.22c.011.019.01.027.008.032-.032.056-.178.145-.432.145a1.23 1.23 0 01-.224-.022c-.316-.058-.686-.277-1.126-.668 1.194.057 1.677.345 1.774.512z"})))},fileTypeSpreadsheet:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ee);return n.createElement("svg",Oe({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,fe||(fe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),ge||(ge=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2z"})),be||(be=n.createElement("path",{d:"M7 11h4v2H7zM13 11h4v2h-4zM7 15h4v2H7zM13 15h4v2h-4z"})))},fileTypeVideo:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,je);return n.createElement("svg",Ce({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xe||(xe=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M3 2a1 1 0 011-1h12a1 1 0 01.71.295l4 4.028a1 1 0 01.29.705V22a1 1 0 01-1 1H4a1 1 0 01-1-1V2zm2 1v18h14V6.44L15.584 3H5z"})),we||(we=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M14 6V2h2v4h4v2h-4a2 2 0 01-2-2zM7.333 10.5h7c.321 0 .584.262.584.583v2.042l2.333-2.333v6.416l-2.333-2.333v2.042c0 .32-.263.583-.584.583h-7a.585.585 0 01-.583-.583v-5.834c0-.32.263-.583.583-.583zm6.417 5.833v-4.666H7.917v4.666h5.833z"})))},headset:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,He);return n.createElement("svg",Fe({viewBox:"0 0 18 19",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ie||(Ie=n.createElement("path",{d:"M9 0a9 9 0 00-9 9v7c0 1.66 1.34 3 3 3h3v-8H2V9c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3V9a9 9 0 00-9-9z"})))},minus:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ae);return n.createElement("svg",We({viewBox:"0 -11 24 24",width:24,height:2,xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Re||(Re=n.createElement("rect",{width:24,height:2,rx:1})))},plus:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ye);return n.createElement("svg",Ge({viewBox:"0 0 23 23",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ne||(Ne=n.createElement("rect",{x:11,y:24,width:24,height:2,rx:1,transform:"rotate(-90 11 24)"})),De||(De=n.createElement("rect",{y:11,width:24,height:2,rx:1})))},search:Ke,speakerNotes:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,$e);return n.createElement("svg",et({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ue||(Ue=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M4 2h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H6l-4 4 .01-18c0-1.1.89-2 1.99-2zm1.17 14H20V4H4v13.17l.58-.58.59-.59zM6 12h2v2H6v-2zm2-3H6v2h2V9zM6 6h2v2H6V6zm9 6h-5v2h5v-2zm-5-3h8v2h-8V9zm8-3h-8v2h8V6z"})))},utilityAccountFilled:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,at);return n.createElement("svg",rt({viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Qe||(Qe=n.createElement("path",{clipRule:"evenodd",d:"M18.25 7.866c0 3.136-2.798 5.678-6.25 5.678s-6.25-2.542-6.25-5.678S8.548 2.188 12 2.188s6.25 2.542 6.25 5.678z"})),Ze||(Ze=n.createElement("path",{clipRule:"evenodd",d:"M11.225 12.993c-6.245.466-8.974 5.763-9.23 9.206h20s-3.078-9.78-10.77-9.206z"})))},utilityAccountUnfilled:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ct);return n.createElement("svg",it({viewBox:"0 0 24 24",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,tt||(tt=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.8 7.807c0 2.87-2.558 5.263-5.8 5.263s-5.8-2.393-5.8-5.263S8.758 2.544 12 2.544s5.8 2.393 5.8 5.263z",fill:"#fff",stroke:"#000"})),lt||(lt=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M11.225 13.071c-6.245.466-8.974 5.763-9.23 9.207h20s-3.078-9.78-10.77-9.207z",fill:"#fff",stroke:"#000"})))},utilityHamburger:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ot);return n.createElement("svg",st({viewBox:"0 0 24 24",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,nt||(nt=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",stroke:"#000",strokeWidth:2,strokeLinecap:"round",d:"M4 16.938h16M4 11.938h16M4 6.938h16"})))},utilitySearch:Ke},dt=["align","children","className","color","decorative","iconRotation","id","name","size","title","type"],vt=r.chakra((function(e){var t,l,a=e.align,c=void 0===a?"none":a,i=e.children,o=e.className,s=e.color,v=void 0===s?"ui.black":s,m=e.decorative,p=void 0===m||m,u=e.iconRotation,f=void 0===u?"rotate0":u,g=e.id,b=e.name,z=e.size,y=void 0===z?"default":z,x=e.title,w=void 0===x?b+" icon":x,E=e.type,O=void 0===E?"default":E,M=d(e,dt),j=r.useStyleConfig("Icon",{align:c,color:v,iconRotation:f,size:y,variant:O}),C=h({"aria-hidden":p,className:o,id:g,role:"img",title:w},M),S=null;return b&&i?(console.warn("NYPL Reservoir Icon: Pass in either a `name` prop or an `svg` element child. Do not pass both."),null):b||i?b?n.createElement(r.Icon,Object.assign({as:ht[b]},C,{__css:j})):("svg"===i.type||"svg"===(null==(t=i.props)?void 0:t.type)||"svg"===(null==(l=i.props)?void 0:l.mdxType)?S=n.cloneElement(i,h({},C)):console.warn("NYPL Reservoir Icon: An `svg` element must be passed to the `Icon` component as its child."),n.createElement(r.Box,{__css:j},S)):(console.warn("NYPL Reservoir Icon: Pass an icon `name` prop or an SVG child to ensure an icon appears."),null)}),{shouldForwardProp:function(){return!0}}),mt=["accordionData","id","isDefaultOpen"],pt=r.chakra((function(e){var t=e.accordionData,l=e.id,a=e.isDefaultOpen,c=void 0!==a&&a,i=d(e,mt);return n.createElement(r.Accordion,Object.assign({id:l,defaultIndex:c?[0]:void 0,allowMultiple:!0},i),function(e,t){var l,a;void 0===e&&(e=[]);var c={default:"ui.white",warning:"ui.status.primary",error:"ui.status.secondary"},i=(null==(l=e)?void 0:l.length)>1?"text.default":"text.caption",o=(null==(a=e)?void 0:a.length)>1?"s":"xs s";return e.map((function(e,l){var a="string"==typeof e.panel?n.createElement(r.AccordionPanel,{id:t+"-panel-"+l,key:l,dangerouslySetInnerHTML:{__html:e.panel}}):n.createElement(r.AccordionPanel,{id:t+"-panel-"+l,key:l},e.panel);return n.createElement(r.AccordionItem,{id:t+"-item-"+l,key:l},(function(s){var h=s.isExpanded,d=c[e.accordionType];return n.createElement(n.Fragment,null,n.createElement(r.AccordionButton,{id:t+"-button-"+l,padding:o,bg:e.accordionType?d:c.default,_expanded:{bg:e.accordionType&&"default"!==e.accordionType?d:"ui.gray.light-cool"},_hover:{bg:e.accordionType&&"default"!==e.accordionType?d:"transparent",borderColor:"ui.gray.dark"}},n.createElement(r.Box,{flex:"1",fontSize:i,textAlign:"left"},e.label),function(e,t,l){return void 0===e&&(e=!1),n.createElement(vt,{id:"accordion-"+l+"-icon-"+t,name:e?"minus":"plus",size:"small"})}(h,l,t)),a)}))}))}(t,l))})),ut=["breadcrumbsData","breadcrumbsType","className","id"],ft=r.chakra((function(e){var t=e.breadcrumbsData,l=e.breadcrumbsType,a=void 0===l?"whatsOn":l,c=e.className,i=e.id,o=d(e,ut);if(!t||0===t.length)throw new Error("NYPL Reservoir Breadcrumbs: No data was passed to the `breadcrumbsData` prop.");var s,h,v=r.useStyleConfig("Breadcrumb",{variant:a}),m=(h=i,null!=(s=t)&&s.length?s.map((function(e,t){return n.createElement(r.BreadcrumbItem,{key:t,isCurrentPage:t===s.length-1},n.createElement(r.BreadcrumbLink,{href:e.url},t===s.length-2&&n.createElement(vt,{name:"arrow",size:"small",iconRotation:"rotate90",id:h+"__backarrow",className:"breadcrumbs-icon",type:"breadcrumbs"}),n.createElement("span",{className:"breadcrumb-label"},e.text)))})):{});return n.createElement(r.Breadcrumb,Object.assign({"aria-label":"Breadcrumb",className:c,id:i,__css:v},o),m)})),gt=["buttonType","children","className","id","isDisabled","mouseDown","onClick","type"],bt=r.chakra((function(e){var t,l=e.buttonType,a=void 0===l?"primary":l,c=e.children,i=e.className,o=void 0===i?"":i,s=e.id,h=e.isDisabled,v=void 0!==h&&h,m=e.mouseDown,p=void 0!==m&&m,u=e.onClick,f=e.type,g=void 0===f?"button":f,b=d(e,gt),z=p?{onMouseDown:u}:{onClick:u},y=0,x=!1,w=a;return s||console.warn("NYPL Reservoir Button: This component's required `id` prop was not passed."),n.Children.map(c,(function(e){var t;y++,null!=e&&(e.type!==vt&&"Icon"!==(null==e||null==(t=e.props)?void 0:t.mdxType)||(x=!0))})),1===y&&x&&(w="iconOnly"),t=r.useStyleConfig("Button",{variant:w}),n.createElement(r.Button,Object.assign({id:s,"data-testid":"button",className:o,type:g,isDisabled:v},z,{__css:t},b),c)}));function zt(){var e=c.useState({width:0,height:0}),t=e[0],l=e[1];return c.useEffect((function(){var e=function(){l({width:window.innerWidth,height:window.innerHeight})};return e(),window.addEventListener("resize",e),function(){window.removeEventListener("resize",e)}}),[]),t}var yt=["buttonWidth","children","className","id","isDisabled","layout"],xt=r.chakra((function(e){var t=e.buttonWidth,l=void 0===t?"default":t,a=e.children,c=e.className,i=void 0===c?"":c,o=e.id,s=e.isDisabled,v=void 0!==s&&s,m=e.layout,p=void 0===m?"row":m,u=d(e,yt),f=[],g=n.useState(p),b=g[0],z=g[1],y=n.useState(l),x=y[0],w=y[1],E=zt();n.useEffect((function(){E.width<=600?(w("full"),z("column")):(w(l),z(p))}),[l,p,E.width]);var O=r.useStyleConfig("ButtonGroup",{buttonWidth:x});return n.Children.map(a,(function(e,t){e.type===bt||e.props.mdxType&&"Button"===e.props.mdxType?f.push(n.cloneElement(e,h({key:t},v?{isDisabled:v}:{}))):console.warn("NYPL Reservoir ButtonGroup: Only Button components can be children of ButtonGroup.")})),n.createElement(r.Stack,Object.assign({id:o,className:i,direction:b,spacing:"xs",sx:O},u),f)})),wt=["children","className","href","id","type"],Et=r.chakra(n.forwardRef((function(e,t){var l=e.children,a=e.className,c=e.href,i=e.id,o=e.type,s=void 0===o?"default":o,v=h({id:i,href:c},d(e,wt)),m="link";if("string"==typeof l&&!c)throw new Error("`Link` needs the `href` prop.");"action"===s||"forwards"===s||"backwards"===s||"external"===s?m="moreLink":"button"===s&&(m="button");var p=r.useStyleConfig("Link",{variant:m}),u="external"===s?"nofollow":null,f="external"===s?"_blank":null,g=("forwards"===s||"backwards"===s)&&function(e,t,l){var a,r,c;return"backwards"===t?(a="rotate90",r="left"):"forwards"===t&&(a="rotate270",r="right"),c=n.createElement(vt,{align:r,className:"more-link",iconRotation:a,id:l+"-icon",name:"arrow",size:"medium"}),n.createElement(n.Fragment,null,"backwards"===t&&c,e,"forwards"===t&&c)}(l,s,i)||"external"===s&&function(e,t){var l=n.createElement(vt,{align:"right",className:"more-link",id:t+"-icon",name:"actionLaunch",size:"medium"});return n.createElement(n.Fragment,null,e,l)}(l,i)||l;if(c)return n.createElement(r.Box,Object.assign({as:"a",className:a,ref:t,rel:u,target:f},v,{__css:p}),g);if(n.Children.count(l)>1)throw new Error("Please pass only one child into `Link`.");var b=l[0]?l[0]:l;return n.createElement(r.Box,{as:"span",__css:p},n.cloneElement(b,h({className:a},v,b.props,{ref:t,rel:u,target:f}),[b.props.children]))}))),Ot=["className","id","level","size","noSpace","text","url","urlClass"],Mt=r.chakra((function(e){var t=e.className,l=e.id,a=e.level,c=void 0===a?"two":a,i=e.size,o=e.noSpace,s=e.text,h=e.url,v=e.urlClass,m=d(e,Ot),p=function(e){return void 0===e&&(e="two"),{one:1,two:2,three:3,four:4,five:5,six:6}[e]||2}(c),u=r.useStyleConfig("Heading",{variant:i||"h"+p,noSpace:o}),f="h"+p;if(!e.children&&!s)throw new Error("NYPL Reservoir Heading: No children or value was passed to the `text` prop.");if(n.Children.count(e.children)>1)throw new Error("NYPL Reservoir Heading: Only pass one child into Heading.");var g=e.children?e.children:s,b=h?n.createElement(Et,{className:v,href:h,id:l+"-link"},g):g;return n.createElement(r.Heading,Object.assign({as:f,className:t,id:l,sx:u},m),b)})),jt=["additionalWrapperStyles","className","children","aspectRatio","size"],Ct=["additionalFigureStyles","additionalImageStyles","additionalWrapperStyles","alt","aspectRatio","caption","className","component","credit","imageType","size","src"],St=r.chakra((function(e){var t=e.additionalWrapperStyles,l=void 0===t?{}:t,a=e.className,c=void 0===a?"":a,i=e.children,o=e.aspectRatio,s=void 0===o?"original":o,v=e.size,m=void 0===v?"default":v,p=d(e,jt),u=r.useMultiStyleConfig("CustomImageWrapper",{ratio:s,size:m});return n.createElement(r.Box,Object.assign({className:"the-wrap "+c,__css:h({},u,l)},p),n.createElement(r.Box,{className:"the-crop",__css:u.crop},i))})),Tt=r.chakra((function(e){var t=e.additionalFigureStyles,l=void 0===t?{}:t,a=e.additionalImageStyles,c=void 0===a?{}:a,i=e.additionalWrapperStyles,o=void 0===i?{}:i,s=e.alt,v=e.aspectRatio,m=void 0===v?"original":v,p=e.caption,u=e.className,f=void 0===u?"":u,g=e.component,b=e.credit,z=e.imageType,y=void 0===z?"default":z,x=e.size,w=void 0===x?"default":x,E=e.src,O=d(e,Ct),M="original"!==m,j=r.useMultiStyleConfig("CustomImage",{variant:y,size:w});if(s&&s.length>300)throw new Error("NYPL Reservoir Image: Alt text must be less than 300 characters.");var C=g||n.createElement(r.Box,{as:"img",src:E,alt:s,__css:h({},j.img,c)}),S=M?n.createElement(St,Object.assign({additionalWrapperStyles:o,aspectRatio:m,className:f,size:w},p||b?{}:O),C):C;return p||b?n.createElement(r.Box,Object.assign({as:"figure",__css:h({},j.figure,l)},O),S,n.createElement(r.Box,{as:"figcaption",__css:j.figcaption},p&&n.createElement(r.Box,{__css:j.captionWrappers},p),b&&n.createElement(r.Box,{__css:j.captionWrappers},b))):S})),kt=["children"],Vt=["bottomBorder","children","isCentered","layout","topBorder"],_t=["backgroundColor","children","className","foregroundColor","id","imageProps","isAlignedRightActions","isBordered","isCentered","layout","mainActionLink"];function Lt(e){var t=e.alt,l=e.aspectRatio,a=e.caption,c=e.component,i=e.credit,o=e.size,s=e.src,h=r.useStyleConfig("CardImage",{imageIsAtEnd:e.isAtEnd,isCentered:e.isCentered,layout:e.layout,size:o});return n.createElement(r.Box,{__css:h},n.createElement(Tt,{alt:t,caption:a,component:c,credit:i,aspectRatio:l,size:o,src:s}))}var It=r.chakra(Mt),Pt=r.chakra((function(e){var t=e.children,l=d(e,kt),a=r.useStyleConfig("CardContent");return t?n.createElement(r.Box,Object.assign({__css:a},l),t):null})),Bt=r.chakra((function(e){var t=e.bottomBorder,l=e.children,a=e.isCentered,c=e.layout,i=e.topBorder,o=d(e,Vt),s=r.useStyleConfig("CardActions",{bottomBorder:t,isCentered:a,layout:c,topBorder:i});return l?n.createElement(r.Box,Object.assign({__css:s},o),l):null}));function Rt(e){return n.createElement(e.mainActionLink?r.LinkBox:n.Fragment,null,e.children)}function Ht(e){var t=e.children,l=e.mainActionLink;return l?n.createElement(r.LinkOverlay,{href:l},t):n.createElement(n.Fragment,null,t)}var Ft=r.chakra((function(e){var t=e.backgroundColor,l=e.children,a=e.className,c=e.foregroundColor,i=e.id,o=e.imageProps,s=void 0===o?{alt:"",aspectRatio:"square",caption:void 0,component:void 0,credit:void 0,isAtEnd:!1,size:"default",src:""}:o,v=e.isAlignedRightActions,m=void 0!==v&&v,p=e.isBordered,u=e.isCentered,f=void 0!==u&&u,g=e.layout,b=void 0===g?"column":g,z=e.mainActionLink,y=d(e,_t),x=s.src||s.component,w=n.useState(s.size||"default"),E=w[0],O=w[1],M=s.component?"original":s.aspectRatio,j={},C=[],S=[],T=zt(),k=0;s.component&&s.aspectRatio&&console.warn("NYPL Reservoir Card: Both the `imageProps.component` and `imageProps.aspectRatio` props were set but `imageProps.aspectRatio` will be ignored in favor of the aspect ratio on `imageProps.component` prop."),n.useEffect((function(){O(T.width<600?"default":s.size)}),[T.width,s.size]),t&&(j.backgroundColor=t),c&&(j.color=c);var V=r.useMultiStyleConfig("Card",{hasImage:x,imageIsAtEnd:s.isAtEnd,isAlignedRightActions:m,isBordered:p,isCentered:f,layout:b,mainActionLink:z});return n.Children.map(l,(function(e,t){var l=e.type===Bt||"CardActions"===e.props.mdxType;if(e.type===It||"CardHeading"===e.props.mdxType){var a=0===k?n.createElement(Ht,{mainActionLink:z},e.props.children):e.props.children,r=n.cloneElement(e,{key:t,children:a,layout:b,__css:V.heading});C.push(r),k++}else if(e.type===Pt||"CardContent"===e.props.mdxType){var c=n.cloneElement(e,{key:t});C.push(c)}else if(l){var i=n.cloneElement(e,{key:t,isCentered:f,layout:b});m&&"row"===b?S.push(i):C.push(i)}})),n.createElement(Rt,{mainActionLink:z},n.createElement(r.Box,Object.assign({id:i,className:a,__css:h({},V,j)},y),x&&n.createElement(Lt,{alt:s.alt,aspectRatio:M,caption:s.caption,component:s.component,credit:s.credit,isAtEnd:s.isAtEnd,layout:b,size:E,src:s.src?s.src:void 0}),n.createElement(r.Box,{className:"card-body",__css:V.body},C),S.length?n.createElement(r.Box,{className:"card-right",__css:h({},V.body,V.actions)},S):null))})),Nt=["ariaAtomic","ariaLive","className","id","isInvalid","text"],Dt=r.chakra((function(e){var t=e.ariaAtomic,l=void 0===t||t,a=e.ariaLive,c=void 0===a?"polite":a,i=e.className,o=void 0===i?"":i,s=e.id,v=e.isInvalid,m=void 0!==v&&v,p=e.text,u=d(e,Nt),f=h({"aria-atomic":l,"aria-live":m?c:"off",className:o,"data-isinvalid":m,id:s,__css:r.useStyleConfig("HelperErrorText",{isInvalid:m})},u);return"string"==typeof p?n.createElement(r.Box,Object.assign({},f,{dangerouslySetInnerHTML:{__html:p}})):n.createElement(r.Box,Object.assign({},f),p)})),At=["children","className","isBold","isItalic","noSpace","size"],Wt=r.chakra((function(e){var t=e.children,l=e.className,a=void 0===l?"":l,c=e.isBold,i=e.isItalic,o=e.noSpace,s=e.size,h=void 0===s?"default":s,v=d(e,At),m=r.useStyleConfig("Text",{variant:h,isBold:c,isItalic:i,noSpace:o});return t||console.warn("NYPL Reservoir Text: No children were passed and the `Text` component will not render correctly."),n.createElement(r.Text,Object.assign({className:a,sx:m},v),t)})),qt=["children","className","descriptionText","headingText","helperText","helperTextStyles","id","invalidText","isInvalid","showHelperInvalidText"],Yt=r.chakra((function(e){var t=e.children,l=e.className,a=e.descriptionText,c=e.headingText,i=e.helperText,o=e.helperTextStyles,s=void 0===o?{}:o,v=e.id,m=e.invalidText,p=e.isInvalid,u=void 0!==p&&p,f=e.showHelperInvalidText,g=void 0===f||f,b=d(e,qt),z=!!t,y=r.useMultiStyleConfig("ComponentWrapper",{hasChildren:z}),x=u?m:i;return z||console.warn("NYPL Reservoir ComponentWrapper: No children were passed."),n.createElement(r.Box,Object.assign({className:l,id:v+"-wrapper",__css:y},b),c&&n.createElement(Mt,{id:v+"-heading",text:c}),a&&n.createElement(Wt,null,a),t,x&&g&&n.createElement(Dt,{id:v+"-helperText",isInvalid:u,text:x,__css:h({},y.helperErrorText,s)}))})),Gt=function(e){var t=e.footnote,l=e.labelText,a=e.name,r={};return e.showLabel?t&&(r["aria-describedby"]=e.id+"-helperText"):("string"!=typeof l&&console.warn("NYPL Reservoir "+a+": `labelText` must be a string when `showLabel` is false."),r["aria-label"]=l&&t?l+" - "+t:l),r},Ut=["isIndeterminate","isChecked"],Xt=["className","invalidText","helperText","id","isChecked","isDisabled","isIndeterminate","isInvalid","isRequired","labelText","name","onChange","showHelperInvalidText","showLabel","value"];function Jt(e){var t=d(e,Ut);return n.createElement(r.Icon,Object.assign({viewBox:"0 0 24 24"},t),n.createElement("path",{fill:"currentColor",d:"M8.795 15.875l-4.17-4.17-1.42 1.41 5.59 5.59 12-12-1.41-1.41-10.59 10.58z"}))}var Kt,Qt,Zt,$t,el,tl,ll,al,rl=r.chakra(n.forwardRef((function(e,t){var l=e.className,a=e.invalidText,c=e.helperText,i=e.id,o=e.isChecked,s=e.isDisabled,h=void 0!==s&&s,v=e.isIndeterminate,m=void 0!==v&&v,p=e.isInvalid,u=void 0!==p&&p,f=e.isRequired,g=void 0!==f&&f,b=e.labelText,z=e.name,y=e.onChange,x=e.showHelperInvalidText,w=void 0===x||x,E=e.showLabel,O=void 0===E||E,M=e.value,j=d(e,Xt),C=r.useMultiStyleConfig("Checkbox",{}),S=u?a:c,T=m?void 0:n.createElement(Jt,null),k=Gt({footnote:S,id:i,labelText:b,name:"Checkbox",showLabel:O});return i||console.warn("NYPL Reservoir Checkbox: This component's required `id` prop was not passed."),n.createElement(Yt,Object.assign({helperText:c,helperTextStyles:C.helperErrorText,id:i,invalidText:a,isInvalid:u,showHelperInvalidText:w},j),n.createElement(r.Checkbox,Object.assign({className:l,icon:T,id:i,isDisabled:h,isIndeterminate:m,isInvalid:u,isRequired:g,name:z||"default",ref:t,value:M},void 0!==o?{isChecked:o,onChange:y}:{defaultIsChecked:!1},{alignItems:"flex-start",__css:C},k),O&&b))}))),nl=["children","className","id","isLegendHidden","isRequired","legendText","showRequiredLabel"],cl=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,n=e.isLegendHidden,i=void 0!==n&&n,o=e.isRequired,s=void 0!==o&&o,h=e.legendText,v=e.showRequiredLabel,m=void 0===v||v,p=d(e,nl),u=r.useMultiStyleConfig("Fieldset",{isLegendHidden:i});return a||console.warn("NYPL Reservoir Fieldset: This component's required `id` prop was not passed."),c.createElement(r.Box,Object.assign({as:"fieldset",id:a,__css:u,className:l},p),c.createElement("legend",null,h,m&&s&&c.createElement("span",null," (Required)")),t)})),il=h({},{px:"1px",0:"0",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},{xxxs:"0.125rem",xxs:"0.25rem",xs:"0.5rem",s:"1rem",m:"1.5rem",l:"2rem",xl:"3rem",xxl:"4rem",xxxl:"6rem",input:{group:{button:{hstack:"0.5rem",vstack:"0.5rem"},default:{hstack:"2rem",vstack:"1rem"}}},inset:{default:"1rem",extranarrow:"0.25rem",extrawide:"3rem",narrow:"0.5rem",wide:"2rem"},grid:{default:"2rem",xxs:"0.25rem",xs:"0.5rem",s:"1rem",m:"1.5rem",l:"2rem",xl:"3rem",xxl:"4rem"},page:{hstack:"2rem",vstack:"2rem"},table:{column:"1.5rem",row:"2rem"}}),ol=["children","defaultValue","helperText","id","invalidText","isDisabled","isFullWidth","isInvalid","isRequired","labelText","layout","name","onChange","showHelperInvalidText","showLabel","showRequiredLabel"],sl=r.chakra(n.forwardRef((function(e,t){var l=e.children,a=e.defaultValue,c=void 0===a?[]:a,i=e.helperText,o=e.id,s=e.invalidText,h=e.isDisabled,v=void 0!==h&&h,m=e.isFullWidth,p=void 0!==m&&m,u=e.isInvalid,f=void 0!==u&&u,g=e.isRequired,b=void 0!==g&&g,z=e.labelText,y=e.layout,x=void 0===y?"column":y,w=e.name,E=e.onChange,O=e.showHelperInvalidText,M=void 0===O||O,j=e.showLabel,C=void 0===j||j,S=e.showRequiredLabel,T=void 0===S||S,k=d(e,ol),V=f?s:i,_=[],L="column"===x?il.input.group.default.vstack:il.input.group.default.hstack,I=c&&E?{defaultValue:c,onChange:E}:{};o||console.warn("NYPL Reservoir CheckboxGroup: This component's required `id` prop was not passed."),n.Children.map(l,(function(e,t){e.type!==rl&&(e.props.mdxType&&"Checkbox"===e.props.mdxType||console.warn("NYPL Reservoir CheckboxGroup: Only `Checkbox` components are allowed as children.")),null!=e&&_.push(n.cloneElement(e,{key:t,id:o+"-"+t,name:w,isDisabled:v,isInvalid:f,isRequired:b}))}));var P=r.useMultiStyleConfig("CheckboxGroup",{isFullWidth:p});return n.createElement(cl,Object.assign({id:o+"-checkbox-group",isLegendHidden:!C,isRequired:b,legendText:z,showRequiredLabel:T},k,{__css:P}),n.createElement(r.CheckboxGroup,Object.assign({},I),n.createElement(r.Stack,{id:o,"data-testid":"checkbox-group",direction:[x],spacing:L,ref:t,"aria-label":C?void 0:z},_)),V&&M&&n.createElement(Dt,{id:o+"-helperErrorText",isInvalid:f,text:V,__css:P.helperErrorText}))}))),hl=["children","columns","className","gap","id"],dl=r.chakra((function(e){var t=e.children,l=e.columns,a=e.className,c=e.gap,i=void 0===c?"grid.l":c,o=e.id,s=d(e,hl);return n.createElement(r.SimpleGrid,Object.assign({columns:l?{base:1,md:l}:{base:1,md:2,lg:3},gap:i,id:o,className:a},s),t)}),{shouldForwardProp:function(){return!0}}),vl=["children","className","gap","id"],ml=["children","className","gap","id"],pl=["action","children","className","gap","id","method","onSubmit"],ul=r.chakra((function(e){var t=e.children,l=e.className,a=e.gap,r=e.id,c=d(e,vl),i=n.Children.count(t),o=n.Children.map(t,(function(e,t){return e?e.type===fl||"FormField"===e.props.mdxType?n.cloneElement(e,{id:r+"-grandchild"+t}):(console.warn("NYPL Reservoir FormRow: Children must be `FormField` components."),null):null}));return n.createElement(dl,Object.assign({columns:i,className:l,gap:a,id:r},c),o)})),fl=r.chakra((function(e){var t=e.children,l=e.className,a=e.gap,r=e.id,c=d(e,ml);return n.createElement(dl,Object.assign({columns:1,className:l,gap:a,id:r},c),t)})),gl=r.chakra((function(e){var t=e.action,l=e.children,a=e.className,r=e.gap,c=void 0===r?"grid.l":r,i=e.id,o=e.method,s=e.onSubmit,h=d(e,pl);i||console.warn("NYPL Reservoir Form: This component's required `id` prop was not passed.");var v={};t&&(v.action=t),o&&("get"===o||"post"===o)&&(v.method=o);var m=n.Children.map(l,(function(e,t){return n.cloneElement(e,{gap:c,id:i+"-child"+t})}));return n.createElement("form",Object.assign({"aria-label":"form",className:a,id:i,onSubmit:s},v,h),n.createElement(dl,{columns:1,gap:c,id:i+"-parent"},m))}),{shouldForwardProp:function(){return!0}}),bl=["children","className","htmlFor","id","isInlined","isRequired"],zl=r.chakra((function(e){var t=e.children,l=e.className,a=e.htmlFor,c=e.id,i=e.isInlined,o=void 0!==i&&i,s=e.isRequired,h=void 0!==s&&s,v=d(e,bl),m=r.useStyleConfig("Label",{isInlined:o});return c||console.warn("NYPL Reservoir Label: This component's required `id` prop was not passed."),n.createElement(r.Box,Object.assign({as:"label",id:c,className:l,htmlFor:a,__css:m},v),t,h&&n.createElement("span",null," (Required)"))})),yl=["className","defaultValue","helperText","id","invalidText","isDisabled","isInvalid","isRequired","labelText","max","maxLength","min","name","onChange","onClick","onFocus","placeholder","showHelperInvalidText","showLabel","showRequiredLabel","step","textInputType","type","value"],xl={email:"jdoe@domain.com",hidden:"",password:"",text:"",tel:"(123) 123-1234",textarea:"",url:"https://domain.com"},wl=r.chakra(n.forwardRef((function(e,t){var l,a,c=e.className,i=e.defaultValue,o=e.helperText,s=e.id,v=e.invalidText,m=e.isDisabled,p=void 0!==m&&m,u=e.isInvalid,f=void 0!==u&&u,g=e.isRequired,b=void 0!==g&&g,z=e.labelText,y=e.max,x=e.maxLength,w=e.min,E=e.name,O=e.onChange,M=e.onClick,j=e.onFocus,C=e.placeholder,S=e.showHelperInvalidText,T=void 0===S||S,k=e.showLabel,V=void 0===k||k,_=e.showRequiredLabel,L=void 0===_||_,I=e.step,P=void 0===I?1:I,B=e.textInputType,R=void 0===B?"default":B,H=e.type,F=void 0===H?"text":H,N=e.value,D=d(e,yl),A=r.useMultiStyleConfig("TextInput",{variant:R}),W="textarea"===F,q="hidden"===F,Y=v||"There is an error related to this field.",G=f?Y:o,U=Gt({footnote:G,id:s,labelText:z,name:"TextInput",showLabel:V});return s||console.warn("NYPL Reservoir TextInput: This component's required `id` prop was not passed."),("tel"===F||"url"===F||"email"===F)&&(G=n.createElement(n.Fragment,null,"Ex: ",xl[F]||"",n.createElement("br",null),G)),a=q?{id:s,"aria-hidden":q,name:E,onChange:O,ref:t}:h({"aria-required":b,defaultValue:i,id:s,isDisabled:p,isRequired:b,isInvalid:f,max:y,maxLength:x,min:w,name:E,onChange:O,onClick:M,onFocus:j,placeholder:C,ref:t,step:"number"===F?P:null},U,D),W?l=n.createElement(r.Textarea,Object.assign({},a,{__css:A.textarea}),N):(a=h({type:F,value:N},a),l=n.createElement(r.Input,Object.assign({},a,{__css:A.input}))),n.createElement(Yt,Object.assign({className:c,helperText:o,id:s,invalidText:Y,isInvalid:f,showHelperInvalidText:T&&!q,__css:A},D),z&&V&&!q&&n.createElement(zl,{htmlFor:s,id:s+"-label",isRequired:L&&b},z),l)}))),El=["children","className","id","isDateRange","isRequired","labelText","showLabel","showRequiredLabel"],Ol=["className","dateFormat","dateType","helperText","helperTextFrom","helperTextTo","id","initialDate","initialDateTo","invalidText","isDateRange","isDisabled","isInvalid","isRequired","labelText","maxDate","minDate","nameFrom","nameTo","onChange","refTo","showHelperInvalidText","showLabel","showRequiredLabel"],Ml=n.forwardRef((function(e,t){return c.createElement(wl,{helperText:e.helperText,id:e.id,invalidText:e.invalidText,isDisabled:e.isDisabled,isInvalid:e.isInvalid,isRequired:e.isRequired,labelText:e.labelText,name:e.name,onChange:e.onChange,onClick:e.onClick,showHelperInvalidText:e.showHelperInvalidText,showLabel:e.showLabel,showRequiredLabel:e.showRequiredLabel,value:e.value,ref:e.dsRef||t})})),jl=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,r=e.isDateRange,n=e.isRequired,i=e.labelText,o=e.showLabel,s=e.showRequiredLabel,h=d(e,El);return c.createElement(fl,Object.assign({id:a+"-form-field"},h),r?c.createElement(cl,{className:l,id:a,isLegendHidden:!o,isRequired:n,legendText:i,showRequiredLabel:s},t):t)}),{shouldForwardProp:function(){return!0}}),Cl=function(e){var t=e.children;return e.isDateRange?c.createElement(ul,{id:e.id+"-form-row",gap:"grid.xs"},t):c.createElement(c.Fragment,null,t)},Sl=r.chakra(c.forwardRef((function(e,t){var l=e.className,a=e.dateFormat,o=void 0===a?"yyyy-MM-dd":a,s=e.dateType,v=void 0===s?"full":s,m=e.helperText,p=e.helperTextFrom,u=e.helperTextTo,f=e.id,g=e.initialDate,b=e.initialDateTo,z=e.invalidText,y=e.isDateRange,x=void 0!==y&&y,w=e.isDisabled,E=e.isInvalid,O=e.isRequired,M=e.labelText,j=void 0===M?"From":M,C=e.maxDate,S=e.minDate,T=e.nameFrom,k=e.nameTo,V=e.onChange,_=e.refTo,L=e.showHelperInvalidText,I=void 0===L||L,P=e.showLabel,B=void 0===P||P,R=e.showRequiredLabel,H=void 0===R||R,F=d(e,Ol),N=r.useMultiStyleConfig("DatePicker",{}),D=x?N:{},A=g?new Date(g):new Date,W=b?new Date(b):new Date,q={startDate:A};x&&(q=h({},q,{endDate:W}));var Y=n.useState(q),G=Y[0],U=Y[1],X=function(e,t){var l,a;U(h({},G,((l={})[t]=e,l))),V&&V(h({},G,((a={})[t]=e,a)))},J={popperClassName:"date-picker-calendar",popperPlacement:"bottom-start",popperModifiers:[{name:"offset",options:{offset:[0,-8]}}],minDate:S?new Date(S):null,maxDate:C?new Date(C):null,dateFormat:o},K={isRequired:O,showRequiredLabel:!x&&H,showLabel:!!x||B,isDisabled:w,isInvalid:E,helperText:x?p:m,showHelperInvalidText:I,invalidText:z,__css:D.subLabels},Q={},Z={},$=null,ee=j;if("month"===v?(J.showMonthYearPicker=!0,J.dateFormat="MM-yyyy"):"year"===v&&(J.showYearPicker=!0,J.yearItemNumber=12,J.dateFormat="yyyy"),f||console.warn("NYPL Reservoir DatePicker: This component's required `id` prop was not passed."),(t&&!T||_&&!k)&&console.warn("NYPL Reservoir DatePicker: A `ref` or `refTo` prop was passed but not the equivalent `nameFrom` or `nameTo` prop."),V&&(t||_||T||k)&&console.warn("NYPL Reservoir DatePicker: A `ref`, `refTo`, `nameFrom`, or `nameTo` prop was passed and an `onChange` prop as well. Use whichever is best for your app but not both."),Q=h({},J),x){var te=h({},K,{helperText:u});Q=h({},Q,{selectsStart:!0,startDate:G.startDate,endDate:G.endDate}),Z=h({},J,{selectsEnd:!0,minDate:G.startDate,startDate:G.startDate,endDate:G.endDate}),ee="From",$=c.createElement(i,Object.assign({customInput:c.createElement(Ml,Object.assign({dsRef:_,labelText:"To"},te)),id:f+"-end",name:k,onChange:function(e){return X(e,"endDate")},selected:G.endDate},Z))}var le=c.createElement(i,Object.assign({customInput:c.createElement(Ml,Object.assign({dsRef:t,labelText:ee},K)),id:f+"-start",name:T,onChange:function(e){return X(e,"startDate")},selected:G.startDate},Q));return c.createElement(jl,Object.assign({id:f,isDateRange:x,showLabel:B,labelText:j,className:l,isRequired:O,showRequiredLabel:H},F),c.createElement(Cl,{id:f,isDateRange:x},c.createElement(fl,{id:f+"-start-form"},le),$&&c.createElement(fl,{id:f+"-end-form"},$)),m&&x&&I&&c.createElement(Dt,{id:f+"-helper-text",isInvalid:!1,text:m}))})),{shouldForwardProp:function(){return!0}}),Tl={clip:"rect(1px, 1px, 1px, 1px)",height:"1px",overflow:"hidden",position:"absolute !important",width:"1px",wordWrap:"normal"},kl={marginY:"0",marginX:"auto",maxWidth:"1280px",paddingTop:"0",paddingBottom:"0",paddingRight:"0",paddingLeft:"0",width:"100%"},Vl=function(e){return void 0===e&&(e=!1),{boxShadow:"none",outline:"2px solid",outlineOffset:"2px",outlineColor:e?"ui.white":"ui.focus",zIndex:"9999"}},_l={userSelect:"none",fontWeight:"text.default",marginBottom:"0",marginLeft:"xs",width:"100%",_disabled:{color:"ui.gray.dark",opacity:1,fontStyle:"italic"},_invalid:{color:"ui.error.primary"}},Ll={h:"1.375rem",w:"1.375rem"},Il={marginLeft:"30px",_disabled:{color:"ui.gray.dark",fontStyle:"italic"}},Pl=function(e){return void 0===e&&(e=!1),{helperErrorText:{marginTop:"xs"},label:{width:e?"100%":"fit-content"}}},Bl={display:"inline-block",fontSize:"label.default",fontWeight:"label.default",marginBottom:"xs",width:"100%",span:{fontWeight:"regular"}},Rl={bg:"ui.disabled.secondary",borderColor:"ui.disabled.primary",color:"ui.gray.dark",opacity:"1"},Hl=h({},Vl(),{borderColor:"ui.focus"}),Fl={margin:"0",marginBottom:"s"},Nl={body:{boxSizing:"border-box",bg:"ui.white",color:"ui.black",fontFamily:"body",fontSize:"text.default",fontWeight:"text.default",lineHeight:"1.5",overflowX:"hidden"},a:{color:"ui.link.primary"},svg:{display:"inline"},"button, select, input, textarea":{"&:not([disabled])":{_focus:Vl()}},"iframe, [href], [tabindex], [contentEditable='true']":{_focus:Vl()},p:Fl,ul:Fl,ol:Fl,"*, *::before, &::after":{boxSizing:"inherit"}},Dl=o.createBreakpoints({sm:"20em",md:"38em",lg:"60em",xl:"80em","2xl":"96em"}),Al={primary:"#C60917",secondary:"#760000"},Wl={transparent:"transparent",ui:{black:"#000",white:"#fff",disabled:{primary:"#E9E9E9",secondary:"#FAFAFA"},error:{primary:"#97272C",secondary:"#6F0106"},focus:"#4181F1",link:{primary:"#0576D3",secondary:"#004B98"},status:{primary:"#F9E08E",secondary:"#FBE7E1"},success:{primary:"#077719",secondary:"#095212"},test:"#FF6347",warning:{primary:"#F0974E",secondary:"#EC7B1F"},gray:{xdark:"#424242",dark:"#616161",medium:"#BDBDBD","light-cool":"#E9E9E9","light-warm":"#EFEDEB","x-light-cool":"#F5F5F5","x-light-warm":"#F8F8F7","xx-light-cool":"#FAFAFA"}},brand:Al,section:{blogs:{primary:"#E9E9E9",secondary:"#BDBDBD"},"books-and-more":Al,education:{primary:"#1D62E6",secondary:"#2540A4"},locations:Al,research:{primary:"#00838a",secondary:"#006166"},"research-library":{lpa:"#005d53",schomburg:"#a03e31",schwartzman:"#760000"},"whats-on":{primary:"#242424",secondary:"#000000"}},gray:{50:"#F2F2F2",100:"#DBDBDB",200:"#C4C4C4",300:"#ADADAD",400:"#969696",500:"#808080",600:"#666666",700:"#4D4D4D",800:"#333333",900:"#1A1A1A"},red:{50:"#FEE7E8",100:"#FCBBC0",200:"#FA8F97",300:"#F8636E",400:"#F63745",500:"#F40B1C",600:"#C30917",700:"#920711",800:"#62040B",900:"#310206"},orange:{50:"#FDF1E7",100:"#F9D8BD",200:"#F6BF93",300:"#F2A769",400:"#EF8E3E",500:"#EB7514",600:"#BC5E10",700:"#8D460C",800:"#5E2F08",900:"#2F1704"},yellow:{50:"#FEF8E7",100:"#FBECBB",200:"#F9E090",300:"#F7D464",400:"#F4C938",500:"#F2BD0D",600:"#C2970A",700:"#917108",800:"#614B05",900:"#302603"},green:{50:"#E7FEEB",100:"#BCFBC6",200:"#90F8A1",300:"#65F67C",400:"#3AF357",500:"#0EF133",600:"#0BC128",700:"#08911E",800:"#066014",900:"#03300A"},blue:{50:"#E6F3FE",100:"#B9DFFD",200:"#8CCAFC",300:"#60B5FB",400:"#33A0FA",500:"#068BF9",600:"#056FC7",700:"#045495",800:"#023864",900:"#011C32"}},ql={fonts:{body:"-apple-system, BlinkMacSystemFont, system-ui, sans-serif",heading:"-apple-system, BlinkMacSystemFont, system-ui, sans-serif"},fontSizes:{"-3":"0.625rem","-2":"0.75rem","-1":"0.875rem",0:"1rem",1:"1.125rem",2:"1.375rem",3:"1.75rem",4:"2.25rem",breadcrumbs:{default:"0.875rem"},button:{default:"0.875rem"},heading:{primary:"2.25rem",secondary:"1.75rem",tertiary:"1.375rem",callout:"1.125rem"},helper:{default:"0.75rem"},label:{default:"0.875rem",secondary:"0.75rem"},text:{default:"1rem",caption:"0.875rem",tag:"0.75rem",mini:"0.625rem"}},fontWeights:{light:300,regular:400,medium:500,bold:700,breadcrumbs:{default:400,lastChild:700},button:{default:400},heading:{primary:300,secondary:500,tertiary:500,callout:500},helper:{default:300},label:{default:500},text:{default:300,caption:300,tag:400,mini:400}}},Yl={bg:"ui.link.primary",minWidth:"none",height:"none",fontSize:"button.default"},Gl={baseStyle:{borderRadius:"sm",lineHeight:"1.5",display:"flex",cursor:"pointer",color:"ui.white",justifyContent:"center",maxHeight:"2.5rem",py:"inset.narrow",px:"inset.default",textDecoration:"none",wordWrap:"normal",fontWeight:"button.default",svg:{fill:"currentColor",marginTop:"xxs"},_hover:{bg:"ui.link.secondary"},_visited:{color:"ui.white"},_disabled:{bg:"ui.gray.light-cool",color:"ui.gray.dark",pointerEvents:"none",opacity:"1"}},variants:{primary:Yl,secondary:{bg:"ui.white",border:"1px solid",borderColor:"ui.gray.light-cool",color:"inherit",fontSize:"button.default",_hover:{bg:"ui.gray.xx-light-cool",borderColor:"ui.gray.medium"},_disabled:{bg:"ui.gray.x-light-cool"}},link:{bg:"transparent",lineHeight:"2.5",color:"ui.link.primary",textDecoration:"underline",_disabled:{bg:"transparent"},_hover:{bg:"transparent",color:"ui.link.secondary"}},pill:{bg:"ui.white",border:"1px solid",borderColor:"ui.gray.light-cool",color:"inherit",borderRadius:"pill",py:"inset.narrow",px:"inset.wide",fontSize:"button.default",_hover:{bg:"ui.gray.xx-light-cool",borderColor:"ui.gray.medium"},_disabled:{bg:"ui.gray.x-light-cool"}},iconOnly:{bg:"ui.white",border:"1px solid",borderColor:"ui.gray.light-cool",color:"inherit",_hover:{bg:"ui.gray.xx-light-cool",borderColor:"ui.gray.medium"},paddingInlineStart:"inset.narrow",paddingInlineEnd:"inset.narrow"},callout:{bg:"brand.primary",fontSize:"button.default",_hover:{bg:"brand.secondary"},_active:{bg:"brand.secondary"}},noBrand:h({},Yl,{bg:"ui.black",color:"ui.white",_hover:{bg:"ui.gray.xdark"}})},defaultProps:{variant:"primary"}},Ul={xxsmall:{flex:{base:"0 0 100%",md:"0 0 64px"},width:"100%"},xsmall:{flex:{md:"0 0 96px"}},small:{flex:{md:"0 0 165px"}},medium:{flex:{md:"0 0 225px"}},large:{flex:{md:"0 0 360px"}}},Xl={Card:{parts:["actions","body","heading"],baseStyle:function(e){var t=e.isBordered,l=e.isCentered,a=e.mainActionLink,r="row"===e.layout,n=r?{display:"flex",flexFlow:{base:"column nowrap",md:"row"},maxWidth:"100%",textAlign:"left",alignItems:l?"center":null}:{},c=t?{border:"1px solid",borderColor:"ui.gray.medium"}:{},i=null;return l&&(i="auto",r&&(i="0")),h({alignItems:"flex-start",display:"flex",flexFlow:"column wrap",textAlign:l?"center":null,actions:{flexShrink:{base:e.isAlignedRightActions?"0":null,md:"0"},marginLeft:{base:"0",md:"m"},marginTop:{base:"xs",md:"0"},maxWidth:{base:"100%",md:"180px"},width:"100%"},body:{display:{md:"block"},flexBasis:{sm:r?"100%":null},flexFlow:{md:"row nowrap"},margin:i,padding:function(e){var t=e.hasImage,l=e.isBordered,a=e.isRow,r=null;return l&&(r="inset.default",t&&(r="0 var(--nypl-space-inset-default) var(--nypl-space-inset-default)")),a&&l&&(r="inset.default"),a&&l&&t&&(r={base:"0 var(--nypl-space-inset-default) var(--nypl-space-inset-default)",md:"var(--nypl-space-inset-default) var(--nypl-space-inset-default) var(--nypl-space-inset-default) 0"},e.imageIsAtEnd&&(r={base:"var(--nypl-space-inset-default) var(--nypl-space-inset-default) 0",md:"var(--nypl-space-inset-default) 0 var(--nypl-space-inset-default) var(--nypl-space-inset-default)"})),r}({isBordered:t,hasImage:e.hasImage,imageIsAtEnd:e.imageIsAtEnd,isRow:r}),width:{base:"100%",md:"auto"}},heading:{marginBottom:"xs",a:a?{color:"ui.black"}:null}},c,n)}},CardActions:{baseStyle:function(e){var t=null;return"row"===e.layout?t="left":e.isCentered&&(t="center"),h({marginBottom:"xs",columnGap:"var(--nypl-space-xs)",display:"flex",_last:{marginBottom:"0"}},e.topBorder?{borderTop:"1px solid",paddingTop:"xs"}:{},e.bottomBorder?{borderBottom:"1px solid",paddingBottom:"xs"}:{},{justifyContent:t,borderColor:"ui.gray.medium"})}},CardContent:{baseStyle:{marginBottom:"xs",_last:{marginBottom:"0"}}},CardImage:{baseStyle:function(e){var t=e.imageIsAtEnd,l=e.size,a="row"===e.layout?h({flex:{md:"0 0 225px"},maxWidth:{base:"100%",md:"50%"},textAlign:"left",alignItems:e.isCentered?"center":null,margin:{base:t?"var(--nypl-space-m) 0 0":null,md:t?"0 0 0 var(--nypl-space-m)":"0 var(--nypl-space-m) 0 0"},width:{base:"100%",md:null},marginBottom:["xs","xs"]},l?Ul[l]:{}):{marginBottom:"xs",width:"100%"};return h({},t?{marginBottom:"0",marginTop:"s",order:"2"}:{},a)}}},Jl={parts:["helperErrorText","icon","control","label"],baseStyle:{icon:{transitionProperty:"transform",transitionDuration:"normal",width:"22px",height:"22px"},control:{border:"2px solid",borderRadius:"sm",borderColor:"ui.black",color:"ui.black",outline:"none",transitionProperty:"box-shadow",transitionDuration:"normal",_checked:{bg:"ui.white",borderColor:"ui.focus",color:"ui.focus",_hover:{bg:"ui.white"},_disabled:{bg:"ui.white",borderColor:"ui.disabled.primary",svg:{color:"ui.disabled.primary"}},_indeterminate:{color:"ui.focus",borderColor:"ui.focus"}},_indeterminate:{color:"ui.focus",borderColor:"ui.focus"},_disabled:{bg:"ui.white",borderColor:"ui.disabled.primary"},_focus:{borderColor:"ui.focus",boxShadow:"none",outlineColor:"ui.focus"},_invalid:{borderColor:"ui.error.primary",color:"ui.error.primary"}},label:_l,helperErrorText:Il},sizes:{lg:{control:h({},Ll,{borderRadius:"checkbox"}),label:{fontSize:"label.default"}}},defaultProps:{size:"lg",colorScheme:"white"}},Kl={parts:["helperErrorText","stack"],baseStyle:function(e){var t=e.isFullWidth;return h({},Pl(void 0!==t&&t))}},Ql={position:"relative",width:"100%",height:"auto",overflow:"hidden"},Zl={marginLeft:"auto",marginRight:"auto"},$l={default:{maxWidth:"100%"},xxsmall:h({},Zl,{maxWidth:"64px"}),xsmall:h({},Zl,{maxWidth:"96px"}),small:h({},Zl,{maxWidth:"165px"}),medium:h({},Zl,{maxWidth:"225px"}),large:h({},Zl,{maxWidth:"360px"})},ea={fourByThree:h({},Ql,{paddingBottom:"75%"}),oneByTwo:h({},Ql,{paddingBottom:"200%"}),original:h({},Ql),sixteenByNine:h({},Ql,{paddingBottom:"56.25%"}),square:h({},Ql,{paddingBottom:"100%"}),threeByFour:h({},Ql,{paddingBottom:"133.33%"}),threeByTwo:h({},Ql,{paddingBottom:"66.66%"}),twoByOne:h({},Ql,{paddingBottom:"50%"})},ta={parts:["captionWrappers"],variants:{circle:{img:{borderRadius:"50%"}}},baseStyle:function(e){var t=e.size,l=void 0===t?"default":t;return{figure:h({margin:"auto",width:"100%"},$l[l],{img:{marginBottom:"xxs"}}),figcaption:{fontStyle:"italic",fontSize:"text.tag"},img:h({display:"block",boxSizing:"border-box",objectFit:"cover",position:"relative",width:"100%"},$l[l]),captionWrappers:{marginTop:"xxs"}}}},la={parts:["crop"],baseStyle:function(e){var t=e.ratio,l=e.size;return h({marginLeft:"auto",marginRight:"auto",width:"100%"},$l[void 0===l?"default":l],{crop:h({},ea[void 0===t?"original":t]),img:{height:"100%",left:"0",maxWidth:"100%",position:"absolute",top:"0",width:"100%"}})}},aa={backgroundColor:"ui.white",borderRadius:"sm",borderColor:"ui.gray.medium",fontSize:"text.caption",paddingTop:"inset.narrow",paddingRight:"inset.extrawide",paddingBottom:"inset.narrow",paddingLeft:"inset.default",_hover:{borderColor:"ui.gray.dark"},_active:Hl,_disabled:h({},Rl),_focus:Hl,_invalid:{border:"1px solid",borderColor:"ui.error.primary",boxShadow:"none"}},ra={parts:["helperText","inline","select"],baseStyle:function(e){return{".chakra-select__icon-wrapper":{zIndex:"9999"},inline:{display:{md:"flex"},gap:{md:"var(--nypl-space-xs)"},alignItems:{md:"flex-end"}},select:h({},aa,{flex:"inline"===e.labelPosition?{md:"1"}:null})}},variants:{searchbar:{select:{flex:"1 1 20%",borderRightColor:{md:"transparent"},borderRightRadius:{md:"none"},_hover:{borderRightColor:{md:"transparent"}}}}},defaultProps:{size:"md"}},na={baseStyle:function(e){return{border:0,padding:0,legend:h({},Bl,e.isLegendHidden?Tl:{})}}},ca={color:"ui.link.primary",textDecoration:"underline",_hover:{color:"ui.link.secondary"}},ia={baseStyle:h({},ca,{a:{_hover:{color:"ui.link.secondary"}}}),variants:{link:{},disabled:{color:"ui.gray.dark",pointerEvents:"none"},moreLink:{alignItems:"center",display:"inline-flex",svg:{height:"s",width:"s",textDecoration:"none",fill:"currentColor"},_hover:{color:"ui.link.secondary",textDecoration:"underline"}},button:{width:"100px",borderRadius:"sm",lineHeight:"1.5",display:"flex",cursor:"pointer",color:"ui.white",justifyContent:"center",py:"xs",px:"xs",textDecoration:"none",fontWeight:"button.default",bg:"ui.link.primary",_hover:{color:"ui.white",bg:"ui.link.secondary",textDecoration:"none"}}}},oa={marginTop:"0",marginLeft:"0",marginRight:"0"},sa={h1:h({fontSize:"heading.primary",fontWeight:"heading.primary",letterSpacing:"0",lineHeight:"1.1"},oa,{width:"auto"}),h2:h({fontSize:"heading.secondary",fontWeight:"heading.secondary",lineHeight:"1.25"},oa,{width:"auto"}),h3:h({fontSize:"heading.tertiary",fontWeight:"heading.tertiary",lineHeight:"1.25"},oa,{width:"auto"}),h4:h({fontSize:"heading.callout",fontWeight:"heading.callout",lineHeight:"1.15"},oa,{width:"auto"}),fallback:h({fontSize:"1",fontWeight:"regular",lineHeight:"1.15"},oa,{width:"auto"})},ha={baseStyle:function(e){return{a:ca,marginBottom:e.noSpace?"0":"s"}},variants:{h1:sa.h1,h2:sa.h2,h3:sa.h3,h4:sa.h4,h5:sa.fallback,h6:sa.fallback,primary:sa.h1,secondary:sa.h2,tertiary:sa.h3,callout:sa.h4},defaultProps:{variant:"secondary"}},da={overflowX:"hidden",content:h({},kl,{paddingRight:"inset.default",paddingLeft:"inset.default",display:"flex",flexFlow:{base:"column nowrap",md:"row wrap"},img:{flex:{base:"1 1 100%",md:"0 0 250px"},order:{md:"3"},height:"150px",minWidth:"0",objectFit:"cover",width:"100%"}}),bodyText:{paddingBottom:"inset.default",paddingTop:"inset.default",paddingRight:{md:"inset.default"},flex:{md:"1 1 50%"},order:{md:"2"}}},va={marginBottom:"0",bg:"ui.black",color:"ui.white",flex:"1 1 100%",marginTop:"0",paddingBottom:"xxs",position:"relative",zIndex:"0",order:{md:"1"},_before:{bg:"ui.black",content:'""',height:"100%",left:"-2000px",position:"absolute",width:"4000px",zIndex:"-1"}},ma=function(e){return h({},da,{heading:h({},va,{bg:e,_before:h({},va._before,{bg:e})})})},pa={baseStyle:{bg:"ui.gray.x-light-cool"},variants:{primary:{alignItems:"center",display:"flex",flexFlow:{base:"column nowrap",md:"row nowrap"},justifyContent:"center",minHeight:"350px",content:{bg:"ui.black",color:"ui.white",flex:{base:"0 0 100%",md:"0 0 60%"},maxWidth:{md:"960px"},paddingTop:"inset.extrawide",paddingBottom:"inset.extrawide",paddingRight:"inset.wide",paddingLeft:"inset.wide",a:{color:"inherit",display:"inline-block"},heading:{marginBottom:"0"},bodyText:{marginBottom:"0"}}},secondary:h({},da,{heading:h({},va)}),secondaryBooksAndMore:ma("section.books-and-more.primary"),secondaryLocations:ma("section.locations.primary"),secondaryResearch:ma("section.research.primary"),secondaryWhatsOn:ma("section.whats-on.primary"),tertiary:{bg:"ui.gray.xdark",content:h({},kl,{color:"ui.white",display:"flex",flexFlow:"column nowrap",padding:"inset.default",p:{marginBottom:"0",marginTop:"s"}}),heading:{marginBottom:"0",_lastChild:{marginBottom:"0"}},p:{marginBottom:"0"}},campaign:{alignItems:"center",display:"flex",justifyContent:"center",marginBottom:["0","0","xxl"],minHeight:"300px",overflow:"visible",padding:{base:"inset.wide",md:"0"},position:"relative",content:{alignItems:"center",bg:"ui.black",color:"ui.white",display:"flex",flexFlow:{base:"column nowrap",md:"row nowrap"},minHeight:"320px",flex:{md:"0 0 90%"},maxWidth:{md:"1280px"},position:{md:"relative"},top:{md:"xxl"}},a:{color:"inherit",display:"inline-block"},img:{flex:{base:"1 1 100%",md:"0 0 50%"},minWidth:"0",objectFit:"cover",width:"100%",height:{md:"320px"}},interior:{flex:{base:"0 0 100%",md:"0 0 50%"},padding:"inset.wide",maxWidth:{md:"960px"}}},fiftyFifty:{content:h({},kl,{alignItems:"center",display:"flex",flexFlow:{base:"column nowrap",lg:"row nowrap"},paddingBottom:"s",paddingRight:"s",paddingLeft:"s",padding:{lg:"unset"}}),img:{marginBottom:{base:"s",lg:"unset"},marginRight:{lg:"s"},maxWidth:{base:"fit-content",lg:"50%"}}}}},ua={display:"inline-block",fill:"currentColor",width:"auto",height:"100%"},fa={none:{},left:{marginRight:"xxs"},right:{marginLeft:"xxs"}},ga={rotate180:{transform:"rotate(180deg)"},rotate270:{transform:"rotate(270deg)"},rotate0:{transform:"rotate(0deg)"},rotate90:{transform:"rotate(90deg)"}},ba={xxxlarge:{height:"var(--nypl-space-xxl)",width:"var(--nypl-space-xxl)"},xxlarge:{height:"var(--nypl-space-xl)",width:"var(--nypl-space-xl)"},xlarge:{height:"var(--nypl-space-l)",width:"var(--nypl-space-l)"},large:{height:"var(--nypl-space-m)",width:"var(--nypl-space-m)"},default:{width:"100%"},medium:{height:"1.125rem",width:"1.125rem"},small:{height:"0.875rem",width:"0.875rem"}},za={baseStyle:function(e){var t=h({},ua,fa[e.align],{fill:e.color},ga[e.iconRotation],ba[e.size]);return h({},t,{svg:h({},t)})},variants:{default:{},breadcrumbs:{fill:"var(--nypl-colors-ui-white)",display:{md:"none"}}}},ya={baseStyle:function(e){var t=e.isInlined;return h({},Bl,{flex:t?"1":null,whiteSpace:t?"nowrap":null})}},xa=function(e,t){return void 0===e&&(e=!1),void 0===t&&(t=!1),{margin:t?"0":"unset",listStyle:t?"none":null,marginInlineStart:"unset",paddingLeft:t?"0":"l",padding:t?"0":null,display:e?"flex":null,li:{marginRight:e?"xs":null,listStyleType:e?"none":null,_notFirst:{marginTop:e?null:"xxs"}}}},wa=function(e){return void 0===e&&(e=!1),h({},Fl,{listStyle:"none",li:{_before:{color:"ui.gray.medium",content:e?"unset":'"\\2022"',display:"inline-block",fontWeight:"bold",fontSize:"2",lineHeight:"0.9",marginLeft:"-1rem",width:"1rem"}}})},Ea={borderBottom:"1px solid",borderColor:"ui.gray.light-cool",paddingLeft:"0",h2:{borderTop:"3px solid",borderColor:"section.research.primary",margin:"0",padding:"var(--nypl-space-xs) 0 0"}},Oa=h({},Ea,{dl:{display:"grid",gridTemplateColumns:{base:"100%",md:"max(250px) 1fr"},gridTemplateRows:"1fr",margin:"var(--nypl-space-xs) 0 0"},dt:{borderTop:"1px solid",borderColor:"ui.gray.light-cool",fontWeight:"label.default",paddingBottom:{base:"0",md:"s"},paddingTop:"s",paddingRight:{md:"table.column"}},dd:{margin:"0",paddingBottom:"s",borderTop:{base:"none",md:"1px solid"},borderColor:{md:"ui.gray.light-cool"},paddingTop:{md:"s"}}}),Ma={baseStyle:function(e){return xa(e.inline,e.noStyling)},variants:{ul:function(e){return wa(e.noStyling)},ol:Fl,dl:Oa}},ja={display:"inline-block",height:"auto",width:"100%"},Ca={default:{maxWidth:"100%"},xxsmall:{maxWidth:"64px"},xsmall:{maxWidth:"96px"},small:{maxWidth:"165px"},medium:{maxWidth:"225px"},large:{maxWidth:"360px"},xlarge:{maxWidth:"360px"},xxlarge:{height:"var(--nypl-space-xl)",width:"var(--nypl-space-xl)"},xxxlarge:{height:"var(--nypl-space-xxl)",width:"var(--nypl-space-xxl)"}},Sa={baseStyle:function(e){var t=h({},ja,Ca[e.size]);return h({},t,{svg:h({},t)})}},Ta={Notification:{parts:["container","dismissibleButton","icon"],baseStyle:function(e){var t=e.dismissible,l=e.isCentered,a=e.noMargin,r=e.notificationType,n="ui.status.primary";return"announcement"!==r&&"warning"!==r||(n="ui.gray.x-light-cool"),{bg:n,display:"flex",fontSize:"text.caption",position:"relative",textAlign:l?"center":null,borderRadius:a?"0":"4px",margin:a?"0":"s",container:{margin:"auto",maxWidth:"var(--nypl-breakpoint-xl)",padding:"inset.default",paddingRight:t?"l":null,paddingLeft:l&&t?"l":null,width:"100%"},dismissibleButton:{border:"none",bgColor:"inherit",alignItems:"center",color:"ui.black",display:"flex",height:"32px",width:"32px",minWidth:"0",position:"absolute",right:"0",top:"0",svg:{marginTop:"0"},_hover:{bg:"inherit"}},icon:{flexShrink:"0",marginRight:"s"}}}},NotificationContent:{parts:["content"],baseStyle:function(e){return{display:"flex",justifyContent:"center",content:{color:"warning"===e.notificationType?"brand.primary":"currentColor",marginTop:e.icon?"xxxs":"0",paddingLeft:e.alignText?"calc(var(--nypl-space-m) + var(--nypl-space-s))":null,width:"100%",a:{color:"ui.black",_hover:{color:"ui.black"}}}}}},NotificationHeading:{parts:["heading"],baseStyle:function(e){var t=e.notificationType,l="ui.black";return"announcement"===t?l="section.research.secondary":"warning"===t&&(l="brand.primary"),{display:"flex",marginBottom:"xxs",justifyContent:e.isCentered?"center":null,heading:{marginBottom:"0",marginTop:e.icon?"xxxs":"0",color:l}}}}},ka={parts:["control","helperErrorText","label"],baseStyle:{control:{verticalAlign:"middle",transitionProperty:"box-shadow",transitionDuration:"normal",border:"2px solid",borderRadius:"round",borderColor:"ui.black",color:"ui.white",outline:"none",_checked:{bg:"ui.white",borderColor:"ui.focus",color:"ui.white",_disabled:{borderColor:"ui.disabled.primary",bg:"ui.white",_before:{bg:"ui.disabled.primary"}},_invalid:{_hover:{borderColor:"ui.error.primary"},_before:{borderColor:"ui.error.primary",bg:"ui.error.primary"}},_hover:{bg:"ui.white"},_before:{content:'""',display:"block",w:"3",h:"3",borderRadius:"round",bg:"ui.focus"}},_disabled:{borderColor:"ui.disabled.primary",bg:"ui.white"},_focus:h({},Vl(),{boxShadow:"outline",borderColor:"ui.focus"}),_invalid:{borderColor:"ui.error.primary"}},label:_l,helperErrorText:Il},sizes:{md:{control:h({},Ll),label:{fontSize:"label.default"}}},defaultProps:{size:"md"}},Va={parts:["helperErrorText","stack"],baseStyle:function(e){var t=e.isFullWidth;return h({},Pl(void 0!==t&&t))}},_a={borderRadius:"2px",boxSizing:"border-box",marginBottom:"xs"},La={border:"1px solid",borderColor:"ui.gray.light-cool",padding:"s"},Ia={landscape:"50%",portrait:"133%",square:"100%"},Pa={landscape:"110px",portrait:"294px",square:"220px"},Ba={parts:["section","image","container","heading","content","button"],baseStyle:function(e){var t=e.imageAspectRatio,l=e.isBordered?h({},La):{};return h({margin:"auto",width:"100%"},l,{section:{marginBottom:"s",_last:{marginBottom:"0"}},image:h({},_a,{boxSizing:"border-box",flexShrink:"0",height:"0",overflow:"hidden",paddingBottom:Ia[t],position:"relative",width:"100%"}),container:{marginTop:"s",width:"100%"},heading:h({},_a,{height:"32px"}),content:h({},_a,{height:"20px"}),button:{height:"32px",margin:"auto",maxWidth:"160px",width:"100%"}})},variants:{row:function(e){return{alignItems:"flex-start",display:{md:"flex"},image:{overflow:{md:"visible"},paddingBottom:{md:"0"},position:{md:"relative"},width:{md:"220px"},height:{md:Pa[e.imageAspectRatio]}},container:{marginLeft:e.showImage?{md:"m"}:null,marginTop:{md:"0"}},button:{margin:{md:"0"}}}}}},Ra={baseStyle:{borderRadius:"2px",background:"ui.gray.light-cool",animation:function(){return s.keyframes({from:{opacity:.9},"50%":{opacity:.7},to:{opacity:.9}})}()+" 1000ms cubic-bezier(0.25, -0.5, 1, 0) infinite"}},Ha={marginTop:"xs",marginBottom:"xs",marginRight:"s",marginLeft:"0"},Fa={parts:["container","leftValue","rightValue","textInput","sliderContainer","filledTrack","track","thumb"],baseStyle:function(e){var t=e.isDisabled,l=e.isInvalid,a=e.showBoxes,r=e.showValues,n="ui.link.primary";return l?n="ui.error.primary":t&&(n="ui.disabled.primary"),{container:{display:"flex",alignItems:"center"},leftValue:h({},Ha,{color:t?"ui.gray.dark":null}),rightValue:h({},Ha,{marginLeft:"s",marginRight:a?"0":"s",color:t?"ui.gray.dark":null}),textInput:{minWidth:"65px",color:l?"ui.error.primary":"ui.black"},sliderContainer:{marginLeft:r?null:"xs",marginRight:a||r?null:"xs"},filledTrack:{bgColor:n},track:{bgColor:"ui.gray.light-cool",_disabled:{bgColor:"ui.disabled.primary"}},thumb:{border:"1px solid",borderColor:n,boxShadow:"none",_active:{transform:"translateY(-50%) scale(1.0)"},_disabled:{bgColor:"ui.disabled.secondary",borderColor:"ui.disabled.primary"}}}}},Na=function(e,t){return void 0===e&&(e=!1),void 0===t&&(t=""),{border:e?void 0:"none",borderBottom:e?void 0:"0px",color:t||"ui.black",fontSize:"0",fontWeight:"bold",letterSpacing:"0",paddingLeft:0,paddingRight:"m",textTransform:"capitalize",_first:{paddingLeft:e?"m":null},_last:{paddingRight:e?"m":"0"}}},Da=function(e,t){return void 0===e&&(e=!1),void 0===t&&(t=!1),{border:e?void 0:"none",borderBottom:e?void 0:"0px",letterSpacing:"0",paddingLeft:0,paddingRight:"m",_first:{paddingLeft:e&&!t?"m":null},_last:{paddingRight:e?"m":"0"}}},Aa={baseStyle:function(e){var t=e.showRowDividers,l=e.useRowHeaders;return{tbody:{th:{color:"var(--nypl-colors-ui-black)"}},th:Na(t,e.columnHeadersTextColor),td:Da(t,l),caption:{captionSide:"top",color:"ui.black",fontSize:"heading.secondary",fontWeight:"heading.secondary",marginBottom:"s",marginLeft:"0",marginRight:"0",marginTop:"0",padding:"0",textAlign:"left"}}}},Wa={parts:["image","imageFigure","imageWrapper"],baseStyle:function(e){var t=e.hasFigureImage,l=e.imageAspectRatio,a=e.imagePosition,r={},n=h({float:["none","none","center"!==a?a:void 0],marginLeft:["auto","auto","center"===a?null:"left"===a?"0":"l"],marginRight:["auto","auto","center"===a?null:"left"===a?"m":"0"],width:"center"!==a?"100%":void 0},r);return"center"===a&&(r.maxWidth="100%"),h({imageFigure:h({},n,{marginBottom:"m"}),imageWrapper:h({},n,{marginBottom:t?null:"m"}),image:h({float:["none","none","center"!==a?a:void 0],marginLeft:["auto","auto","right"===a&&"original"===l?"m":void 0],marginRight:["auto","auto","left"===a&&"original"===l?"m":void 0],marginBottom:t&&"original"!==l?null:"m"},r),".structuredcontent-body > div":{marginTop:"var(--nypl-space-l)",marginInlineEnd:"var(--nypl-space-0)",marginBottom:"var(--nypl-space-0)",marginInlineStart:"var(--nypl-space-0)"},a:ca,ul:h({},xa(),{listStyle:"none"},wa()),ol:h({},xa(),Fl),section:Ea,dl:Oa.dl,dt:Oa.dt,dd:Oa.dd,table:{width:"100%",th:h({textAlign:"start",paddingInlineStart:"var(--nypl-space-6)",paddingInlineEnd:"var(--nypl-space-6)",paddingTop:"var(--nypl-space-3)",paddingBottom:"var(--nypl-space-3)",lineHeight:"var(--nypl-lineHeights-4)"},Na()),td:h({textAlign:"start",paddingInlineStart:"var(--nypl-space-6)",paddingInlineEnd:"var(--nypl-space-6)",paddingTop:"var(--nypl-space-4)",paddingBottom:"var(--nypl-space-4)",lineHeight:"var(--nypl-lineHeights-5)"},Da())}},sa)}},qa={marginY:0,marginX:"auto",maxWidth:"1280px",paddingTop:0,paddingBottom:0,paddingRight:"s",paddingLeft:"s",width:"100%"},Ya={Template:{baseStyle:{boxSizing:"border-box",color:"ui.black",overflowX:"hidden","*":{boxSizing:"inherit"},"*::after":{boxSizing:"inherit"},"*::before":{boxSizing:"inherit"}},sizes:{},defaultProps:{}},TemplateHeader:{baseStyle:{marginBottom:"page.hstack"}},TemplateBreakout:{baseStyle:h({},{marginLeft:"calc(-50vw + 50%)",marginRight:"calc(-50vw + 50%)"},{width:"100vw",marginBottom:"page.hstack"})},TemplateContent:{baseStyle:h({},qa,{display:"block",marginBottom:"page.hstack"}),variants:{sidebar:{display:"flex",flexFlow:{base:"column nowrap",md:"row wrap"}}}},TemplateContentTop:{baseStyle:{flex:"1 0 100%",marginBottom:"page.hstack"}},TemplateContentPrimary:{baseStyle:{flex:"1 1",marginBottom:"page.hstack"},variants:{left:{display:"flex",flexFlow:"column nowrap",order:"1",marginRight:{md:0},minWidth:{md:0}}}},TemplateContentSidebar:{baseStyle:{flex:"0 0 255px",order:{md:"page.vstack"},marginBottom:"page.hstack"},variants:{left:{marginRight:{base:0,md:"page.vstack"}},right:{marginLeft:{base:0,md:"page.vstack"}}}}},Ga={bgColor:"ui.white",border:"1px solid",borderColor:"ui.gray.medium",borderRadius:"sm",fontSize:"text.caption",py:"inset.narrow",px:"inset.default",_hover:{borderColor:"ui.gray.dark"},_disabled:h({},Rl,{_placeholder:{color:"ui.gray.medium"}}),_active:Hl,_focus:Hl,_placeholder:{color:"ui.gray.dark",fontStyle:"italic",lineHeight:"21px"},_invalid:{border:"1px solid",borderColor:"ui.error.primary",boxShadow:"none"}},Ua={parts:["input","textarea"],baseStyle:{input:Ga,textarea:h({},Ga,{lineheight:"1.5",minHeight:"xxl"})},variants:{searchBar:{flex:"1 1 80%",input:{borderRightRadius:"none"}},searchBarSelect:{flex:"1 1 80%",input:{borderRadius:"none",borderTopLeftRadius:{base:"sm",md:"none"},borderTopRightRadius:{base:"sm",md:"none"}}}}},Xa=o.cssVar("switch-track-width"),Ja=o.cssVar("switch-track-height"),Ka={baseStyle:function(e){return{alignItems:"start",opacity:.4,track:{border:"1px solid",borderColor:"ui.gray.medium",p:"1px",_checked:{bg:"ui.link.primary",borderColor:"ui.link.primary",opacity:1},_invalid:{bg:"inherit",borderColor:"ui.error.primary","> span":{bg:"ui.error.primary"}},_disabled:{bg:"ui.gray.medium",borderColor:"ui.gray.medium",_checked:{opacity:.4}},_focus:{outline:"2px solid",outlineColor:"ui.focus",outlineOffset:"2px",zIndex:"9999"}},label:{fontSize:"label.default",marginLeft:"xs",marginTop:"lg"===e.size?"xxxs":null,_disabled:{color:"ui.gray.dark",fontStyle:"italic"}},thumb:{_disabled:{bg:"ui.error.primary"}}}},sizes:{sm:{container:(Kt={},Kt[Xa.variable]="2.25rem",Kt[Ja.variable]="1rem",Kt)},lg:{container:(Qt={},Qt[Xa.variable]="3.25rem",Qt[Ja.variable]="1.5rem",Qt)}},defaultProps:{colorScheme:"white"}},Qa=r.extendTheme(h({styles:{global:Nl},breakpoints:Dl,colors:Wl,radii:{checkbox:"3px",pill:"20px",round:"100%"},shadows:{outline:"none"},space:il},ql,{components:h({Accordion:{parts:["container","button","panel"],baseStyle:{container:{border:"none",width:"100%"},button:{borderWidth:"1px",fontWeight:"medium"},panel:{padding:"s",borderLeftWidth:"1px",borderRightWidth:"1px",borderBottomWidth:"1px"}}},Breadcrumb:{baseStyle:{bg:"ui.black",color:"ui.white",fontSize:"breadcrumbs.default",fontWeight:"breadcrumbs.default",paddingBottom:"xs",paddingTop:"xs",ol:{alignItems:{base:"center",md:"unset"},display:{base:"flex",md:"block"},margin:"auto",maxWidth:"1280px",paddingLeft:"s",paddingRight:"s"},a:{_hover:{color:"ui.gray.light-cool"}},"li:last-child":{fontWeight:{base:"breadcrumbs.default",md:"breadcrumbs.lastChild"},".chakra-breadcrumb__link":{_hover:{cursor:"default",textDecoration:"none"}},".icon":{display:"none"}},"li:not(:last-child)":{display:{base:"none",md:"inline-block"},a:{marginRight:{base:"xs",md:"0"}},".icon":{display:{base:"inline",md:"none"}},"span:not(.breadcrumb-label)":{marginInlineEnd:"xxs",marginInlineStart:"xxs"}},"li:nth-last-of-type(2)":{display:"inline-block",span:{display:{base:"none",md:"inline"}}}},variants:{blogs:{bg:"section.blogs.secondary",color:"ui.black",a:{_hover:{color:"ui.gray.xdark"}},svg:{fill:"ui.black"}},booksAndMore:{bg:"section.books-and-more.secondary"},education:{bg:"section.education.secondary"},locations:{bg:"section.locations.primary"},research:{bg:"section.research.secondary"},whatsOn:{bg:"section.whats-on.secondary"}}},Button:Gl,ButtonGroup:{baseStyle:function(e){var t=e.buttonWidth;return{width:"default"===t?"fit-content":"100%",button:{flexGrow:"default"===t?void 0:"1"}}}}},Xl,{Checkbox:Jl,CheckboxGroup:Kl,ComponentWrapper:{parts:["helperErrorText"],baseStyle:function(e){return{helperErrorText:{marginTop:e.hasChildren?null:"0"}}}},CustomImage:ta,CustomImageWrapper:la,CustomSelect:ra,DatePicker:{parts:["subLabels"],baseStyle:{subLabels:{label:{fontSize:"label.secondary",marginBottom:"0"}}}},Fieldset:na,Heading:ha,HelperErrorText:{baseStyle:function(e){return{marginTop:"xxs",marginBottom:"0",fontSize:"helper.default",color:e.isInvalid?"ui.error.primary":"ui.black"}}},Hero:pa,HorizontalRule:{baseStyle:function(e){var t=e.align;return{bg:"ui.gray.light-cool",border:"0",height:"2px",marginBottom:"s",marginTop:"s",marginLeft:"left"===t?0:"auto",marginRight:"right"===t?0:"auto"}}},Icon:za,Label:ya,Link:ia,List:Ma,Logo:Sa},Ta,{Pagination:{parts:["link"],baseStyle:{alignItems:"stretch",display:"flex",width:"100%",link:{lineHeight:"1.15",textDecoration:"none"},ul:{marginBottom:"0"}}},ProgressIndicator:{parts:["circular","circularLabel","linear","linearContainer","linearPercentage"],baseStyle:function(e){var t=e.darkMode,l=e.size;return{color:t?"ui.white":"ui.black",circular:{svg:{height:"default"===l?"48px":"24px",width:"default"===l?"48px":"24px",display:"block",circle:{_first:{stroke:t?"ui.gray.dark":"ui.gray.light-cool"},_last:{stroke:t?"ui.white":"ui.link.primary"}}}},circularContainer:{alignItems:"center",display:"flex",flexDirection:"column",width:"fit-content"},linear:{"> div":{bg:t?"ui.white":"ui.link.primary"},flex:25,bg:t?"ui.gray.dark":"ui.gray.light-cool",height:{base:"4px",md:"default"===l?"8px":"4px"}},linearContainer:{display:"flex",alignItems:"center"},linearPercentage:{padding:"0 var(--nypl-space-xs)",flex:1}}}},Radio:ka,RadioGroup:Va,SearchBar:{parts:["select"],baseStyle:{display:"flex",marginBottom:{base:"xs",md:"auto"},flexFlow:{base:"column nowrap",md:"row nowrap"},select:{marginBottom:"0"}}},Skeleton:Ra,SkeletonLoader:Ba,SkipNavigation:{baseStyle:{ul:{margin:"0"},a:{backgroundColor:"ui.white",height:"1px",left:"-10000px",overflow:"hidden",position:"absolute",top:"auto",width:"1px",_focus:{border:"1px solid var(—nypl-colors-ui-gray-dark)",height:"auto",left:"2rem",padding:"var(--nypl-space-inset-extranarrow) var(--nypl-space-inset-narrow)",top:"3rem",width:"auto"}}}},CustomSlider:Fa,StatusBadge:{baseStyle:{borderRadius:"base",color:"ui.black",display:"block",fontSize:"-1",fontStyle:"italic",py:"inset.extranarrow",px:"inset.narrow",textAlign:"center",width:"fit-content"},variants:{low:{bg:"ui.gray.light-cool"},medium:{bg:"ui.status.primary"},high:{bg:"ui.status.secondary"}}},StructuredContent:Wa,Tabs:{parts:["buttonArrows","tablistWrapper","carouselParent"],baseStyle:{tablist:{borderColor:"ui.black"},tab:{color:"black !important",paddingInlineStart:"s",paddingLeft:"s",background:"transparent",border:"0",borderBottom:"1px solid",borderColor:"red",height:{base:"44px"},marginRight:{base:"0",md:"1px"},paddingRight:{base:"s",md:"l",lg:"xl"},whiteSpace:"nowrap",_hover:{bg:"ui.gray.x-light-cool",borderTopRadius:"sm",borderBottom:"1px solid",borderBottomColor:"ui.black"},_selected:{fontWeight:"bold",bg:"ui.gray.light-cool",border:"0",borderTopRadius:"sm",borderBottom:"3px solid",borderBottomColor:"ui.black",paddingBottom:"5px"},_focus:{boxShadow:"0"}},buttonArrows:{border:"0",borderRadius:"0",display:{md:"none"},height:"44px",width:"44px !important",top:"8px",marginLeft:"4px",marginRight:"4px",pos:"absolute",transition:"0.6s ease",zIndex:"9999"},tablistWrapper:{display:"flex",alignItems:"center",borderBottom:{base:"0",md:"1px solid black"},height:{base:"58px",md:"auto"},margin:"0",overflowX:{base:"auto",md:"visible"},paddingBottom:{base:"5px",md:"0"},paddingLeft:{base:"4px",md:"0"},paddingRight:{base:"4px",md:"0"},paddingTop:{base:"4px",md:"0"},position:"relative"},tabpanels:{paddingTop:"2px"},carouselParent:{position:{base:"absolute",md:"relative"},left:{base:"50px",md:"auto"},paddingBottom:{base:"5px",md:"0"},paddingLeft:{base:"4px",md:"0"},paddingRight:"0",paddingTop:{base:"4px",md:"0"},right:{base:"52px",md:"auto"},top:{base:"4px",md:"0"},overflowX:{base:"hidden",md:"visible"}}}},CustomTable:Aa},Ya,{Text:{baseStyle:function(e){var t=e.variant;return{fontStyle:e.isItalic?"italic":null,fontWeight:e.isBold?"tag"===t||"mini"===t?"medium":"bold":null,marginBottom:e.noSpace?"0 !important":null}},variants:{default:{},caption:{fontSize:"text.caption"},tag:{fontSize:"text.tag"},mini:{fontSize:"text.mini"}}},TextInput:Ua},{Toggle:{parts:["helperErrorText"],baseStyle:function(e){return{label:{alignItems:"start",display:"flex",width:"fit-content"},helperErrorText:{marginLeft:"default"===e.size?"xxl":"xl",fontStyle:e.isDisabled?"italic":null}}},defaultProps:{size:"lg"}},Switch:Ka},{VideoPlayer:{baseStyle:{inside:{height:"0",overflow:"hidden",paddingBottom:"56.25%",position:"relative"},iframe:{height:"100%",left:"0",margin:"auto",position:"absolute",top:"0",width:"100%"},helperText:{marginBottom:"0",marginTop:"xs"}},variants:{fourByThree:{inside:{paddingBottom:"75%"}},invalid:{backgroundColor:"ui.gray.light-cool",height:"auto",padding:"s"},square:{inside:{paddingBottom:"100%"}}}}}),config:{cssVarPrefix:"nypl"}})),Za=["backgroundColor","backgroundImageSrc","foregroundColor","heading","heroType","imageProps","locationDetails","subHeaderText"],$a=["secondary","secondaryBooksAndMore","secondaryLocations","secondaryResearch","secondaryWhatsOn"],er=r.chakra((function(e){var t=e.backgroundColor,l=e.backgroundImageSrc,a=e.foregroundColor,c=e.heading,i=e.heroType,o=e.imageProps,s=void 0===o?{alt:"",src:""}:o,h=e.locationDetails,v=e.subHeaderText,m=d(e,Za),p=r.useMultiStyleConfig("Hero",{variant:i}),u=c&&n.cloneElement(c,{__css:p.heading}),f={},g={};s.src&&!s.alt&&console.warn('NYPL Reservoir Hero: The "imageProps.src" prop was passed but the "imageProps.alt" props was not. This will make the rendered image inaccessible.'),"primary"===i?(l||console.warn("NYPL Reservoir Hero: It is recommended to use the `backgroundImageSrc` prop for the `'primary'` `heroType` variant."),s.alt&&s.src&&console.warn("NYPL Reservoir Hero: The `imageProps.src` and `imageProps.alt` props have been passed, but the `'primary'` `heroType` variant will not use it.")):h&&console.warn("NYPL Reservoir Hero: The `locationDetails` prop should only be used with the `'primary'` `heroType` variant."),$a.includes(i)&&l&&console.warn("NYPL Reservoir Hero: The `backgroundImageSrc` prop has been passed, but the `'secondary'` `heroType` variant will not use it."),"tertiary"===i&&(l||s.src)&&console.warn("NYPL Reservoir Hero: The `'tertiary'` `heroType` variant hero will not use any of the image props."),"campaign"!==i||l&&s.src||console.warn("NYPL Reservoir Hero: It is recommended to use both the `backgroundImageSrc` and `imageProps.src` props for the `'campaign'` `heroType` variant."),"fiftyFifty"===i&&l&&console.warn("NYPL Reservoir Hero: The `backgroundImageSrc` prop has been passed, but the `'fiftyFifty'` `heroType` variant hero will not use it."),"primary"===i?f=l?{backgroundImage:"url("+l+")"}:{}:"campaign"===i?f=l?{backgroundImage:"url("+l+")"}:{backgroundColor:t}:"tertiary"!==i&&"fiftyFifty"!==i||(f={backgroundColor:t}),$a.includes(i)?(a||t)&&console.warn("NYPL Reservoir Hero: The `foregroundColor` and/or `backgroundColor` props have been passed, but the `'secondary'` `heroType` variant will not use them."):g={color:a,backgroundColor:t};var b="campaign"===i?n.createElement(n.Fragment,null,n.createElement(Tt,{alt:s.alt,src:s.src}),n.createElement(r.Box,{__css:p.interior},u,v)):n.createElement(n.Fragment,null,"primary"!==i&&"tertiary"!==i&&n.createElement(Tt,{alt:s.alt,src:s.src}),u,"tertiary"===i&&v?n.createElement("p",null,v):n.createElement(r.Box,{__css:p.bodyText},v));return n.createElement(r.Box,Object.assign({"data-testid":"hero","data-responsive-background-image":!0,style:f,__css:p},m),n.createElement(r.Box,{"data-testid":"hero-content",style:g,__css:p.content},b))}),{shouldForwardProp:function(){return!0}}),tr=["align","className"],lr=r.chakra((function(e){var t=e.align,l=e.className,a=d(e,tr),c=h({},r.useStyleConfig("HorizontalRule",{align:t}),{height:"2px",width:"100%"});return n.createElement(r.Box,Object.assign({as:"hr",className:l,__css:c},a))})),ar=["children","className","id","inline","listItems","noStyling","title","type"],rr=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,c=e.inline,i=void 0!==c&&c,o=e.listItems,s=e.noStyling,h=void 0!==s&&s,v=e.title,m=e.type,p=void 0===m?"ul":m,u=d(e,ar),f=r.useStyleConfig("List",{inline:i,noStyling:h,variant:p}),g=null;if(t&&o&&(null==o?void 0:o.length)>0)return console.warn("NYPL Reservoir List: Pass in either `<li>`, `<dt>`, or `<dd>` children or use the `listItems` data prop. Do not use both."),null;if(!t&&!o)return console.warn("NYPL Reservoir List: Pass in either `<li>` children or pass data in the `listItems` prop, not both."),null;var b,z=function(e){return t||(o?"ol"===e||"ul"===e?o.map((function(e,t){return n.createElement("li",{key:t},e)})):"dl"===e?o.map((function(e,t){return[n.createElement("dt",{key:t+"-term"},e.term),n.createElement("dd",{key:t+"-des"},e.description)]})):null:null)};return"ol"===p||"ul"===p?(b=p,n.Children.map(t,(function(e){var t;e&&"li"!==(null==e?void 0:e.type)&&"li"!==(null==e||null==(t=e.props)?void 0:t.mdxType)&&console.warn("NYPL Reservoir List: Direct children of `List` ("+b+") must be `<li>`s.")})),g=n.createElement(r.Box,Object.assign({as:p,id:a,className:l,__css:f},u),z(p))):"dl"===p&&(n.Children.map(t,(function(e){"dt"!==e.type&&"dd"!==e.type&&e.type!==n.Fragment&&"dt"!==e.props.mdxType&&"dd"!==e.props.mdxType&&e.props.mdxType!==n.Fragment&&console.warn("NYPL Reservoir List: Direct children of `List` (description) must be `<dt>`s and `<dd>`s.")})),g=n.createElement(r.Box,Object.assign({as:"section",id:a,className:l,__css:f},u),v&&n.createElement(Mt,{id:a+"-heading"},v),n.createElement("dl",null,z(p)))),g})),nr=["title","titleId"];function cr(){return(cr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ir,or,sr,hr=["title","titleId"];function dr(){return(dr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var vr,mr,pr,ur=["title","titleId"];function fr(){return(fr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var gr,br,zr=["title","titleId"];function yr(){return(yr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xr,wr=["title","titleId"];function Er(){return(Er=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Or,Mr=["title","titleId"];function jr(){return(jr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Cr,Sr,Tr,kr,Vr,_r,Lr,Ir,Pr,Br,Rr,Hr,Fr,Nr=["title","titleId"];function Dr(){return(Dr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ar,Wr=["title","titleId"];function qr(){return(qr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Yr,Gr,Ur=["title","titleId"];function Xr(){return(Xr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Jr,Kr,Qr=["title","titleId"];function Zr(){return(Zr=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var $r,en=["title","titleId"];function tn(){return(tn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ln,an=["title","titleId"];function rn(){return(rn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var nn,cn=["title","titleId"];function on(){return(on=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var sn,hn=["title","titleId"];function dn(){return(dn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var vn,mn,pn,un,fn,gn,bn,zn=["title","titleId"];function yn(){return(yn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xn,wn,En=["title","titleId"];function On(){return(On=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Mn,jn,Cn,Sn=["title","titleId"];function Tn(){return(Tn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var kn,Vn,_n,Ln=["title","titleId"];function In(){return(In=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Pn,Bn,Rn=["title","titleId"];function Hn(){return(Hn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Fn,Nn,Dn=["title","titleId"];function An(){return(An=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Wn,qn,Yn=["title","titleId"];function Gn(){return(Gn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Un,Xn,Jn=["title","titleId"];function Kn(){return(Kn=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Qn,Zn=["title","titleId"];function $n(){return($n=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ec,tc=["title","titleId"];function lc(){return(lc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ac,rc,nc,cc,ic,oc=["title","titleId"];function sc(){return(sc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var hc,dc,vc=["title","titleId"];function mc(){return(mc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var pc,uc,fc,gc,bc,zc=["title","titleId"];function yc(){return(yc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xc,wc,Ec,Oc,Mc,jc=["title","titleId"];function Cc(){return(Cc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Sc,Tc=["title","titleId"];function kc(){return(kc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Vc,_c,Lc,Ic,Pc,Bc=["title","titleId"];function Rc(){return(Rc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Hc,Fc,Nc,Dc,Ac,Wc=["title","titleId"];function qc(){return(qc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Yc,Gc,Uc,Xc,Jc,Kc=["title","titleId"];function Qc(){return(Qc=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Zc,$c,ei,ti,li,ai=["title","titleId"];function ri(){return(ri=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var ni,ci,ii,oi,si,hi,di,vi=["title","titleId"];function mi(){return(mi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var pi,ui,fi,gi,bi,zi=["title","titleId"];function yi(){return(yi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var xi,wi,Ei=["title","titleId"];function Oi(){return(Oi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Mi,ji,Ci=["title","titleId"];function Si(){return(Si=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Ti,ki,Vi=["title","titleId"];function _i(){return(_i=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Li,Ii=["title","titleId"];function Pi(){return(Pi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Bi,Ri=["title","titleId"];function Hi(){return(Hi=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Fi,Ni,Di,Ai,Wi,qi,Yi,Gi,Ui,Xi,Ji,Ki,Qi,Zi,$i,eo,to,lo,ao,ro,no,co,io,oo,so,ho,vo,mo,po,uo,fo,go,bo,zo,yo,xo,wo,Eo,Oo,Mo,jo,Co,So,To,ko,Vo,_o,Lo,Io,Po,Bo,Ro,Ho,Fo,No,Do=["title","titleId"];function Ao(){return(Ao=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Wo,qo,Yo,Go,Uo,Xo,Jo,Ko,Qo,Zo,$o,es,ts,ls,as,rs,ns,cs,is,os,ss,hs,ds,vs,ms,ps,us,fs,gs,bs,zs,ys,xs,ws,Es,Os,Ms,js,Cs,Ss,Ts,ks,Vs,_s,Ls,Is,Ps,Bs,Rs,Hs,Fs,Ns,Ds,As,Ws,qs=["title","titleId"];function Ys(){return(Ys=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Gs=["title","titleId"];function Us(){return(Us=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var l=arguments[t];for(var a in l)Object.prototype.hasOwnProperty.call(l,a)&&(e[a]=l[a])}return e}).apply(this,arguments)}var Xs={appleAppStoreBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,nr);return n.createElement("svg",cr({viewBox:"0 0 200 67",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Zt||(Zt=n.createElement("path",{d:"M184.072 0H12.569c-1.12.017-2.238.118-3.343.301A11.248 11.248 0 006.05 1.357 10.147 10.147 0 003.344 3.35 10.166 10.166 0 001.37 6.064 11.306 11.306 0 00.318 9.245a20.444 20.444 0 00-.285 3.35V54.404c.003 1.123.098 2.243.285 3.35.19 1.113.545 2.191 1.053 3.2.507 1 1.173 1.91 1.972 2.696a10.147 10.147 0 002.708 1.976c1 .509 2.07.864 3.175 1.056 1.105.183 2.223.284 3.343.301h174.862a22.35 22.35 0 003.343-.301c1.11-.194 2.185-.55 3.192-1.056a10.425 10.425 0 002.708-1.976 11.2 11.2 0 001.972-2.697c.495-1.012.844-2.089 1.036-3.199.184-1.107.285-2.227.301-3.35V14.137v-1.541a22.388 22.388 0 00-.301-3.35 11.777 11.777 0 00-1.036-3.183c-.514-1-1.179-1.915-1.972-2.713-.79-.8-1.705-1.468-2.708-1.977a11.526 11.526 0 00-3.192-1.055 22.337 22.337 0 00-3.343-.301h-3.343L184.072 0z",fill:"#B7B7B7"})),$t||($t=n.createElement("path",{d:"M14.107 65.526h-1.505c-1.045.018-2.09-.05-3.125-.201a9.832 9.832 0 01-2.792-1.005 8.626 8.626 0 01-2.323-1.675A8.694 8.694 0 012.691 60.3a9.714 9.714 0 01-.92-2.78 20.312 20.312 0 01-.267-3.133v-40.25-1.49c.008-1.05.097-2.098.268-3.133.153-.98.457-1.929.902-2.814a8.475 8.475 0 011.672-2.345 9.227 9.227 0 012.34-1.675 9.663 9.663 0 012.774-.921c1.039-.171 2.09-.261 3.142-.268h174.812a20.15 20.15 0 013.109.268c.971.168 1.911.478 2.791.921a9.182 9.182 0 014.028 4.02c.435.872.739 1.803.903 2.764.167 1.042.262 2.094.284 3.149v41.774a21.893 21.893 0 01-.284 3.099 9.806 9.806 0 01-.903 2.797 9.058 9.058 0 01-1.671 2.328 8.675 8.675 0 01-2.34 1.676 9.328 9.328 0 01-2.791 1.038 19.225 19.225 0 01-3.126.268H14.107v-.067z",fill:"#000"})),el||(el=n.createElement("path",{d:"M41.4 34.002a8.255 8.255 0 013.945-6.95 8.497 8.497 0 00-6.685-3.619c-2.792-.301-5.516 1.675-6.953 1.675-1.438 0-3.66-1.675-6.034-1.675a8.862 8.862 0 00-4.338 1.3 8.887 8.887 0 00-3.133 3.273c-3.16 5.678-.82 13.869 2.273 18.458 1.554 2.228 3.342 4.707 5.733 4.607 2.39-.1 3.175-1.474 5.983-1.474s3.577 1.474 6 1.423c2.424-.05 4.062-2.227 5.55-4.472a18.589 18.589 0 002.54-5.176 7.976 7.976 0 01-3.55-2.946 8.002 8.002 0 01-1.33-4.424zM36.77 20.452a8.202 8.202 0 001.856-5.846 8.35 8.35 0 00-5.365 2.78 7.8 7.8 0 00-1.906 5.629 6.857 6.857 0 005.416-2.563zM70.7 45.46h-7.905l-1.906 5.627h-3.343l7.488-20.803h3.493l7.488 20.803h-3.342L70.7 45.46zm-7.086-2.597h6.267l-3.025-9.129h-.084l-3.158 9.13zM92.195 43.55c0 4.707-2.524 7.739-6.318 7.739a5.157 5.157 0 01-4.764-2.714v7.504h-3.175v-20.1h3.008v2.546a5.374 5.374 0 014.83-2.68c3.895-.084 6.418 2.948 6.418 7.705zm-3.193 0c0-3.065-1.671-5.025-3.995-5.025-2.323 0-3.977 2.06-3.977 5.025 0 2.965 1.671 5.109 3.977 5.109 2.307 0 3.995-2.06 3.995-5.109zM108.842 43.55c0 4.707-2.507 7.739-6.302 7.739a5.138 5.138 0 01-4.763-2.714v7.504h-3.176v-20.1h3.009v2.546a5.388 5.388 0 014.813-2.68c3.895-.084 6.419 2.948 6.419 7.705zm-3.193 0c0-3.065-1.571-5.025-3.994-5.025-2.424 0-3.962 2.06-3.962 5.025 0 2.965 1.588 5.025 3.962 5.025 2.373 0 3.994-1.977 3.994-5.025zM119.856 45.225c.234 2.06 2.223 3.35 5.015 3.35 2.791 0 4.496-1.357 4.496-3.216 0-1.86-1.137-2.58-3.828-3.25l-2.691-.653c-3.811-.92-5.566-2.696-5.566-5.594 0-3.601 3.109-6.064 7.538-6.064 4.43 0 7.405 2.463 7.505 6.064h-3.192c-.184-2.077-1.906-3.35-4.396-3.35-2.491 0-4.212 1.256-4.212 3.115 0 1.458 1.086 2.329 3.761 2.999l2.289.552c4.262 1.005 6.034 2.73 6.034 5.762 0 3.903-3.109 6.332-8.023 6.332-4.596 0-7.705-2.379-7.905-6.13l3.175.083zM139.311 32.327v3.585h2.875v2.462h-2.875v8.375c0 1.29.569 1.893 1.839 1.893.339.02.68.02 1.019 0v2.445a8.68 8.68 0 01-1.671.151c-3.075 0-4.262-1.156-4.262-4.104v-8.76h-2.257v-2.462h2.207v-3.585h3.125zM143.841 43.55c0-4.774 2.808-7.772 7.187-7.772 4.379 0 7.17 2.998 7.17 7.772s-2.758 7.722-7.17 7.722c-4.413 0-7.187-2.982-7.187-7.722zm11.198 0c0-3.266-1.504-5.21-4.011-5.21s-3.945 1.86-3.945 5.21c0 3.35 1.488 5.21 4.012 5.21 2.524 0 3.944-1.977 3.944-5.21zM160.772 35.912h3.025v2.613a3.623 3.623 0 011.339-2.013 3.606 3.606 0 012.305-.717c.36-.006.72.033 1.07.117v2.915a3.96 3.96 0 00-1.371-.302 3.134 3.134 0 00-2.52.985 3.153 3.153 0 00-.823 2.583v8.995h-3.025V35.912zM182.818 46.632c-.418 2.747-3.092 4.64-6.502 4.64-4.412 0-7.137-2.965-7.137-7.705s2.742-7.84 7.004-7.84 6.819 2.882 6.819 7.488v1.055h-10.697v.201c-.048.558.023 1.12.209 1.649a3.944 3.944 0 003.869 2.64 3.421 3.421 0 003.493-2.128h2.942zm-10.496-4.54h7.571a3.64 3.64 0 00-2.248-3.566 3.625 3.625 0 00-1.462-.269 3.838 3.838 0 00-3.562 2.363 3.841 3.841 0 00-.299 1.473zM63.23 14.623a4.404 4.404 0 013.535 1.394 4.425 4.425 0 011.144 3.63c0 3.183-1.671 5.026-4.68 5.026h-3.61v-10.05h3.61zm-2.057 8.576h1.872a3.12 3.12 0 003.236-2.192c.14-.45.177-.926.107-1.393a3.156 3.156 0 00-1.967-3.377 3.135 3.135 0 00-1.376-.207h-1.872v7.169zM69.664 20.837a3.576 3.576 0 01.95-2.68 3.56 3.56 0 014.02-.837 3.56 3.56 0 011.937 2.078c.163.461.23.951.197 1.439a3.575 3.575 0 01-2.134 3.517 3.554 3.554 0 01-4.02-.838 3.57 3.57 0 01-.95-2.679zm5.566 0c0-1.675-.719-2.58-2.006-2.58s-2.022.955-2.022 2.58.668 2.613 2.022 2.613c1.354 0 1.99-.971 1.99-2.613h.016zM86.194 24.623h-1.538l-1.554-5.561h-.117l-1.554 5.56H79.91l-2.073-7.554h1.504l1.354 5.762h.1l1.555-5.762h1.42l1.555 5.762h.117l1.337-5.762h1.488l-2.073 7.555zM90.005 17.068h1.437v1.206h.117a2.226 2.226 0 012.24-1.34 2.434 2.434 0 011.977.769 2.447 2.447 0 01.63 2.029v4.89H94.92V20.1c0-1.223-.535-1.826-1.671-1.826a1.668 1.668 0 00-1.745 1.162 1.679 1.679 0 00-.06.748v4.439h-1.488l.05-7.555zM98.763 14.137h1.521v10.485h-1.487l-.034-10.485zM102.323 20.837a3.581 3.581 0 012.133-3.517 3.557 3.557 0 014.774 2.078c.163.461.23.951.197 1.439a3.582 3.582 0 01-2.133 3.517 3.557 3.557 0 01-4.774-2.078c-.163-.461-.23-.951-.197-1.439zm5.566 0c0-1.675-.735-2.58-2.022-2.58s-2.006.955-2.006 2.58.719 2.613 2.006 2.613 2.022-.971 2.022-2.613zM110.981 22.479c0-1.357 1.003-2.128 2.808-2.245l2.039-.134v-.653c0-.787-.535-1.24-1.554-1.24-1.02 0-1.404.302-1.555.838h-1.454c.167-1.307 1.371-2.128 3.076-2.128s2.958.938 2.958 2.53v5.175h-1.437V23.55h-.117a2.488 2.488 0 01-2.257 1.19 2.271 2.271 0 01-2.507-2.261zm4.847-.704v-.636l-1.838.117c-1.037 0-1.521.435-1.521 1.088 0 .654.601 1.072 1.404 1.072a1.77 1.77 0 001.955-1.641zM119.255 20.837c0-2.378 1.22-3.886 3.125-3.886a2.484 2.484 0 012.307 1.323h.1v-4.137h1.488v10.485h-1.421V23.45h-.117a2.613 2.613 0 01-2.357 1.306c-1.922-.016-3.125-1.524-3.125-3.919zm1.537 0c0 1.675.752 2.563 2.006 2.563 1.254 0 2.022-.972 2.022-2.546 0-1.575-.785-2.563-2.022-2.563-1.237 0-2.006.971-2.006 2.546zM132.425 20.837a3.566 3.566 0 013.552-3.812 3.549 3.549 0 012.602 1.133 3.581 3.581 0 01.95 2.679 3.582 3.582 0 01-.95 2.68 3.559 3.559 0 01-4.021.837 3.565 3.565 0 01-2.133-3.517zm5.566 0c0-1.675-.736-2.58-2.006-2.58-1.27 0-2.022.955-2.022 2.58s.718 2.613 2.022 2.613c1.304 0 2.006-.971 2.006-2.613zM141.518 17.068h1.42v1.206h.117a2.277 2.277 0 012.257-1.34 2.434 2.434 0 011.965.776 2.44 2.44 0 01.625 2.021v4.891h-1.471V20.1c0-1.223-.534-1.826-1.671-1.826a1.668 1.668 0 00-1.728 1.167c-.076.24-.096.494-.06.743v4.438h-1.488l.034-7.554zM156.31 15.192v1.926h1.671v1.307h-1.671v3.886c0 .787.317 1.139 1.053 1.139h.568v1.24a5.74 5.74 0 01-.802 0c-1.672 0-2.307-.57-2.307-2.027v-4.238h-1.203v-1.24h1.203v-1.993h1.488zM159.953 14.137h1.488v4.154h.117a2.293 2.293 0 012.239-1.357 2.467 2.467 0 011.959.794 2.485 2.485 0 01.632 2.02v4.874H164.9V20.1c0-1.206-.551-1.809-1.671-1.809a1.767 1.767 0 00-1.801 1.155c-.089.241-.124.499-.104.755v4.421h-1.371V14.137zM175.096 22.579a3.047 3.047 0 01-3.343 2.177 3.338 3.338 0 01-3.386-2.405 3.354 3.354 0 01-.09-1.48 3.477 3.477 0 01.844-2.762 3.474 3.474 0 012.632-1.175c2.09 0 3.343 1.424 3.343 3.802v.52h-5.298v.084a1.966 1.966 0 00.562 1.523 1.957 1.957 0 001.51.587 1.837 1.837 0 001.805-.921l1.421.05zm-5.215-2.479h3.794a1.817 1.817 0 00-1.855-1.96 1.913 1.913 0 00-1.382.57 1.928 1.928 0 00-.557 1.39z",fill:"#fff"})))},appleAppStoreWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,hr);return n.createElement("svg",dr({viewBox:"0 0 200 67",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,tl||(tl=n.createElement("path",{d:"M184.072 0H12.569a22.58 22.58 0 00-3.343.3A11.265 11.265 0 006.05 1.355a10.145 10.145 0 00-2.707 1.989A10.145 10.145 0 001.37 6.05C.863 7.05.509 8.121.318 9.226a20.358 20.358 0 00-.285 3.343V54.287c.003 1.12.098 2.238.285 3.343.19 1.11.545 2.186 1.053 3.192a10.346 10.346 0 001.972 2.691c.787.803 1.702 1.47 2.708 1.973 1 .507 2.07.861 3.175 1.052 1.105.184 2.223.284 3.343.301h174.862a22.389 22.389 0 003.343-.3 11.543 11.543 0 003.192-1.053 10.423 10.423 0 002.708-1.973 11.18 11.18 0 001.972-2.69 11.85 11.85 0 001.036-3.193c.184-1.105.285-2.223.301-3.343v-40.18-1.538a22.293 22.293 0 00-.301-3.343 11.734 11.734 0 00-1.036-3.176 10.91 10.91 0 00-1.972-2.707 10.423 10.423 0 00-2.708-1.972 11.544 11.544 0 00-3.192-1.053 22.383 22.383 0 00-3.343-.301h-3.343L184.072 0z",fill:"#000"})),ll||(ll=n.createElement("path",{d:"M14.107 65.385h-1.505a19.26 19.26 0 01-3.125-.2 9.845 9.845 0 01-2.792-1.003 8.624 8.624 0 01-2.323-1.672 8.674 8.674 0 01-1.671-2.34 9.678 9.678 0 01-.92-2.774 20.227 20.227 0 01-.267-3.126V14.107v-1.488c.008-1.047.097-2.092.268-3.125a9.51 9.51 0 01.902-2.808c.42-.87.985-1.662 1.672-2.34a9.226 9.226 0 012.34-1.672 9.678 9.678 0 012.774-.919c1.039-.17 2.09-.26 3.142-.267h174.812a20.19 20.19 0 013.109.267 10.02 10.02 0 012.791.92 9.172 9.172 0 014.028 4.01c.435.87.739 1.8.903 2.758.167 1.04.262 2.09.284 3.143V54.27a21.8 21.8 0 01-.284 3.092 9.771 9.771 0 01-.903 2.792 9.037 9.037 0 01-1.671 2.323 8.674 8.674 0 01-2.34 1.671 9.34 9.34 0 01-2.791 1.037 19.258 19.258 0 01-3.126.267H14.107v-.067z",fill:"#fff"})),al||(al=n.createElement("path",{d:"M41.785 33.244a8.606 8.606 0 014.095-7.22 8.809 8.809 0 00-6.936-3.744c-2.925-.318-5.75 1.671-7.238 1.671-1.487 0-3.81-1.671-6.267-1.671a9.294 9.294 0 00-7.789 4.73c-3.343 5.833-.852 14.374 2.373 19.087 1.672 2.307 3.494 4.864 5.95 4.78 2.458-.083 3.343-1.537 6.235-1.537 2.892 0 3.727 1.537 6.234 1.487 2.507-.05 4.212-2.323 5.767-4.646a18.854 18.854 0 002.59-5.299 8.357 8.357 0 01-5.014-7.638zM37.038 19.188a8.574 8.574 0 001.939-6.067 8.591 8.591 0 00-5.549 2.874 8.09 8.09 0 00-1.989 5.85 7.186 7.186 0 005.6-2.657zM70.7 45.362h-7.905l-1.906 5.616h-3.343l7.488-20.759h3.493l7.488 20.759h-3.342L70.7 45.362zm-7.086-2.59h6.267l-3.025-9.11h-.084l-3.158 9.11zM92.195 43.456c0 4.697-2.524 7.722-6.318 7.722a5.165 5.165 0 01-4.764-2.707v7.488h-3.175V35.902h3.008v2.54a5.383 5.383 0 014.83-2.674c3.878-.084 6.419 2.942 6.419 7.688zm-3.193 0c0-3.058-1.671-5.014-3.995-5.014-2.323 0-3.977 2.056-3.977 5.014 0 2.959 1.671 5.098 3.977 5.098 2.307 0 3.995-2.056 3.995-5.098zM108.842 43.456c0 4.697-2.507 7.722-6.302 7.722a5.147 5.147 0 01-4.763-2.707v7.488h-3.176V35.902h2.992v2.54a5.382 5.382 0 014.814-2.674c3.911-.084 6.435 2.942 6.435 7.688zm-3.193 0c0-3.058-1.571-5.014-3.994-5.014-2.424 0-3.962 2.056-3.962 5.014 0 2.959 1.588 5.015 3.962 5.015 2.373 0 3.994-1.973 3.994-5.014zM119.856 45.128c.234 2.056 2.223 3.343 5.015 3.343 2.791 0 4.496-1.354 4.496-3.21 0-1.855-1.137-2.574-3.828-3.242l-2.691-.652c-3.811-.92-5.582-2.69-5.582-5.582 0-3.594 3.125-6.05 7.554-6.05 4.43 0 7.405 2.456 7.505 6.05h-3.192c-.184-2.073-1.906-3.343-4.396-3.343-2.491 0-4.212 1.253-4.212 3.109 0 1.454 1.086 2.323 3.761 2.991l2.289.552c4.262 1.003 6.017 2.724 6.017 5.75 0 3.894-3.092 6.317-8.006 6.317-4.596 0-7.705-2.373-7.905-6.117l3.175.084zM139.311 32.258v3.577h2.875v2.457h-2.875v8.357c0 1.287.569 1.889 1.839 1.889.339.02.68.02 1.019 0v2.44a8.703 8.703 0 01-1.671.15c-3.075 0-4.262-1.153-4.262-4.095v-8.741h-2.257v-2.457h2.207v-3.577h3.125zM143.841 43.456c0-4.763 2.808-7.755 7.187-7.755 4.379 0 7.17 2.992 7.17 7.755 0 4.764-2.758 7.706-7.17 7.706-4.413 0-7.187-2.975-7.187-7.706zm11.198 0c0-3.259-1.504-5.198-4.011-5.198s-3.945 1.856-3.945 5.198c0 3.343 1.488 5.198 4.012 5.198 2.524 0 3.944-1.972 3.944-5.198zM160.772 35.835h3.025v2.607a3.615 3.615 0 013.644-2.724c.355-.006.709.033 1.053.117v2.908a3.796 3.796 0 00-1.354-.3 3.14 3.14 0 00-3.223 2.178 3.154 3.154 0 00-.12 1.381v8.976h-3.025V35.835zM182.818 46.532c-.418 2.741-3.092 4.63-6.518 4.63-4.396 0-7.121-2.959-7.121-7.689s2.742-7.822 7.004-7.822 6.819 2.875 6.819 7.471v1.053h-10.697v.2a3.935 3.935 0 002.445 3.992c.518.21 1.075.309 1.633.288a3.426 3.426 0 003.493-2.123h2.942zm-10.496-4.53h7.571a3.648 3.648 0 00-1.023-2.72 3.644 3.644 0 00-2.687-1.107 3.826 3.826 0 00-3.861 3.827zM63.23 14.591a4.412 4.412 0 014.68 5.014c0 3.176-1.672 5.015-4.68 5.015h-3.611V14.59h3.61zm-2.057 8.558h1.872a3.126 3.126 0 003.343-3.577 3.142 3.142 0 00-3.343-3.577h-1.872v7.154zM69.664 20.792a3.561 3.561 0 117.104 0 3.56 3.56 0 11-7.104 0zm5.566 0c0-1.671-.719-2.574-2.006-2.574s-2.022.953-2.022 2.574.668 2.607 2.022 2.607c1.354 0 1.99-.969 1.99-2.607h.016zM86.194 24.57h-1.538l-1.554-5.55h-.117l-1.554 5.55H79.91l-2.073-7.538h1.504l1.354 5.75h.1l1.555-5.75h1.42l1.555 5.75h.117l1.337-5.75h1.488l-2.073 7.538zM90.005 17.032h1.437v1.203h.117a2.223 2.223 0 012.24-1.337 2.44 2.44 0 012.607 2.791v4.88H94.92v-4.512c0-1.22-.535-1.822-1.671-1.822a1.672 1.672 0 00-1.806 1.905v4.43h-1.487l.05-7.538zM98.763 14.107h1.521V24.57h-1.487l-.034-10.463zM102.323 20.792a3.573 3.573 0 01.95-2.673 3.564 3.564 0 014.021-.836 3.564 3.564 0 012.133 3.51 3.572 3.572 0 01-2.133 3.509 3.563 3.563 0 01-4.774-2.074 3.574 3.574 0 01-.197-1.436zm5.566 0c0-1.671-.735-2.574-2.022-2.574s-2.006.953-2.006 2.574.719 2.607 2.006 2.607 2.022-.969 2.022-2.607zM110.981 22.43c0-1.354 1.003-2.122 2.808-2.24l2.039-.133v-.652c0-.786-.535-1.237-1.554-1.237-1.02 0-1.404.3-1.555.836h-1.454c.167-1.304 1.371-2.123 3.076-2.123s2.958.936 2.958 2.524v5.165h-1.437V23.5h-.117a2.497 2.497 0 01-2.257 1.187 2.276 2.276 0 01-2.309-1.335 2.273 2.273 0 01-.198-.922zm4.847-.702v-.635l-1.838.117c-1.037 0-1.521.435-1.521 1.086 0 .652.601 1.07 1.404 1.07a1.774 1.774 0 001.955-1.638zM119.255 20.792c0-2.373 1.22-3.877 3.125-3.877a2.49 2.49 0 012.307 1.32h.1v-4.128h1.488V24.57h-1.421V23.4h-.117a2.61 2.61 0 01-2.357 1.303c-1.922-.016-3.125-1.52-3.125-3.91zm1.537 0c0 1.672.752 2.557 2.006 2.557 1.254 0 2.022-.969 2.022-2.54 0-1.571-.785-2.557-2.022-2.557-1.237 0-2.006.97-2.006 2.54zM132.425 20.792a3.573 3.573 0 01.95-2.673 3.564 3.564 0 012.602-1.13 3.555 3.555 0 012.602 1.13 3.573 3.573 0 01.95 2.673 3.572 3.572 0 01-2.134 3.509 3.555 3.555 0 01-4.02-.835 3.557 3.557 0 01-.95-2.674zm5.566 0c0-1.671-.736-2.574-2.006-2.574-1.27 0-2.022.953-2.022 2.574s.718 2.607 2.022 2.607c1.304 0 2.006-.969 2.006-2.607zM141.518 17.032h1.42v1.203h.117a2.274 2.274 0 012.257-1.337 2.438 2.438 0 012.59 2.791v4.88h-1.471v-4.512c0-1.22-.534-1.822-1.671-1.822a1.672 1.672 0 00-1.788 1.905v4.43h-1.488l.034-7.538zM156.31 15.16v1.922h1.671v1.303h-1.671v3.878c0 .786.317 1.137 1.053 1.137h.568v1.237a5.77 5.77 0 01-.802 0c-1.672 0-2.307-.569-2.307-2.023v-4.229h-1.203V17.15h1.203v-1.99h1.488zM159.953 14.107h1.488v4.145h.117a2.29 2.29 0 012.239-1.354 2.471 2.471 0 012.501 1.73c.109.348.14.716.09 1.078v4.864H164.9v-4.513c0-1.203-.551-1.805-1.671-1.805a1.768 1.768 0 00-1.801 1.153c-.089.24-.124.497-.104.752v4.413h-1.371V14.107zM175.096 22.53a3.041 3.041 0 01-3.343 2.173 3.345 3.345 0 01-3.386-2.4 3.34 3.34 0 01-.09-1.477 3.462 3.462 0 01.123-1.47 3.472 3.472 0 013.353-2.459c2.09 0 3.343 1.422 3.343 3.795v.518h-5.298v.084a1.959 1.959 0 00.562 1.52 1.958 1.958 0 001.51.586 1.84 1.84 0 001.805-.92l1.421.05zm-5.215-2.473h3.794a1.812 1.812 0 00-1.115-1.816 1.822 1.822 0 00-.74-.14 1.918 1.918 0 00-1.382.569 1.925 1.925 0 00-.557 1.387z",fill:"#000"})))},bplBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ur);return n.createElement("svg",fr({viewBox:"0 0 328 120",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ir||(ir=n.createElement("path",{d:"M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.793 21.793 0 00-3.504-.857 26.033 26.033 0 00-9.896.857 22.683 22.683 0 00-6.023 3.272c-.433.31-1.281 1.032-1.839 1.528a37.42 37.42 0 00-3.353 3.46c-.026 0 .271-7.03.304-8.416h-47.732c-.104.227-6.666 24.573-7.274 26.683-.514-2.001-7.572-25.973-7.748-26.683h-25.154V0h-25.465v24.455c-.027.02-27.162 0-27.324 0-.047.048-12.675 10.12-13.121 10.465 0-12.655.003-34.704.003-34.885C79.384.035 70.97 0 62.612 0l.003 14.073a17.495 17.495 0 00-5.506-7.93c-.265-.22-.914-.769-1.43-1.115-3.792-2.545-5.283-3.012-9.714-4.107-1.293-.25-2.599-.428-3.912-.532-.714-.067-3.53-.218-4.05-.233a511.856 511.856 0 00-8.722-.078H0c0 25.333.016 50.656.047 75.97.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.593-.06a54.641 54.641 0 008.575-.913 22.543 22.543 0 009.106-4.218c5.638-4.787 6.307-8.214 6.529-8.579l-.012 13.608h24.978V61.406c.345-.284 2.788-2.312 2.84-2.312.998 1.287 12.898 15.798 13.608 16.65h49.625V29.749c.026 0 19.356 42.224 19.62 42.873-.63 1.275-18.374 38.247-18.374 38.273h27.074c.365-.877 35.612-80.465 35.612-80.517.026 0-.02 18.05-.02 45.473h25.574v-22.78c0-5.166-.943-9.81 5.232-9.633 2.316.067 3.614 2.61 3.711 3.975v28.438h25.518zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.163 5.163 0 013.279 4.881c0 2.353-.525 3.341-1.244 4.104zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.161 5.161 0 013.279 4.88c0 2.353-.525 3.341-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.146 28.146 0 00-2.657-1.48c-.37-.184-1.21-.522-1.237-.548a21.838 21.838 0 008.863-6.267 12.437 12.437 0 002.481-4.32c0 6.93-.002 21.315-.027 21.315zm65.599 21.213c-.026 0-20.484-26.864-20.51-26.864.717-.568 20.484-15.963 20.51-15.963v42.827z"})),or||(or=n.createElement("path",{d:"M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"})),sr||(sr=n.createElement("path",{d:"M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"})))},bplWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,zr);return n.createElement("svg",yr({viewBox:"0 0 328 120",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,vr||(vr=n.createElement("path",{d:"M277.596 75.851c0-8.969-.046-17.9-.046-26.856-.017-6.498 1.196-19.651-11.682-24.62a21.793 21.793 0 00-3.504-.857 26.033 26.033 0 00-9.896.857 22.683 22.683 0 00-6.023 3.272c-.433.31-1.281 1.032-1.839 1.528a37.42 37.42 0 00-3.353 3.46c-.026 0 .271-7.03.304-8.416h-47.732c-.104.227-6.666 24.573-7.274 26.683-.514-2.001-7.572-25.973-7.748-26.683h-25.154V0h-25.465v24.455c-.027.02-27.162 0-27.324 0-.047.048-12.675 10.12-13.121 10.465 0-12.655.003-34.704.003-34.885C79.384.035 70.97 0 62.612 0l.003 14.073a17.495 17.495 0 00-5.506-7.93c-.265-.22-.914-.769-1.43-1.115-3.792-2.545-5.283-3.012-9.714-4.107-1.293-.25-2.599-.428-3.912-.532-.714-.067-3.53-.218-4.05-.233a511.856 511.856 0 00-8.722-.078H0c0 25.333.016 50.656.047 75.97.716 0 34.158-.142 34.76-.142 1.346 0 2.306-.06 3.593-.06a54.641 54.641 0 008.575-.913 22.543 22.543 0 009.106-4.218c5.638-4.787 6.307-8.214 6.529-8.579l-.012 13.608h24.978V61.406c.345-.284 2.788-2.312 2.84-2.312.998 1.287 12.898 15.798 13.608 16.65h49.625V29.749c.026 0 19.356 42.224 19.62 42.873-.63 1.275-18.374 38.247-18.374 38.273h27.074c.365-.877 35.612-80.465 35.612-80.517.026 0-.02 18.05-.02 45.473h25.574v-22.78c0-5.166-.943-9.81 5.232-9.633 2.316.067 3.614 2.61 3.711 3.975v28.438h25.518zM37.066 55.633c-2.638 2.797-7.72 2.224-11.953 2.224V46.128c7.693 0 8.73.014 9.917.52a5.163 5.163 0 013.279 4.881c0 2.353-.525 3.341-1.244 4.104zm0-28.068c-2.638 2.798-7.72 2.224-11.953 2.224V18.06c7.693 0 8.73.014 9.917.521a5.161 5.161 0 013.279 4.88c0 2.353-.525 3.341-1.244 4.104zM62.55 48.67c-.521-2.765-4.888-7.078-7.423-8.7a28.146 28.146 0 00-2.657-1.48c-.37-.184-1.21-.522-1.237-.548a21.838 21.838 0 008.863-6.267 12.437 12.437 0 002.481-4.32c0 6.93-.002 21.315-.027 21.315zm65.599 21.213c-.026 0-20.484-26.864-20.51-26.864.717-.568 20.484-15.963 20.51-15.963v42.827z"})),mr||(mr=n.createElement("path",{d:"M143.024 91.463a9.616 9.616 0 014.517.779c.238.12.781.368 1.012.467v6.607c-.052 0-2.502-2.406-5.328-1.42a4.676 4.676 0 00-2.07 2.289 6.187 6.187 0 00-.234 1.947c.168 1.822 2.034 3.917 5.296 3.037a6.235 6.235 0 002.336-1.557v6.619c-.851.416-1.737.755-2.648 1.012a11.662 11.662 0 01-8.177-1.479c-2.858-1.686-5.447-6.505-3.816-11.526a10.187 10.187 0 015.607-5.996 15.995 15.995 0 013.505-.78zM73.247 92.086h7.32v8.566c0 1.546-.104 3.156.546 4.05a2.904 2.904 0 002.492.779 3.415 3.415 0 001.635-.623c.762-.778.7-2.44.7-3.972v-8.8h7.243c0 .646.153 11.962-.233 13.784-.358 1.991-2.237 4.1-5.218 5.062-.806.229-1.632.378-2.468.444a22.52 22.52 0 01-3.92-.027 11.616 11.616 0 01-4.733-1.325 7.206 7.206 0 01-2.825-3.407 20.363 20.363 0 01-.539-5.653v-8.878zm12.694 8.8v-8.8h7.242c0 .646.153 11.962-.233 13.784M72.299 90.562a7.908 7.908 0 00-6.896-6.605c-2.204-.324-13.694-.15-13.878-.15v27.158h7.768v-8.722c5.783.02 9.628-.167 11.837-3.738.513-.944.88-1.96 1.087-3.015.061-.324.197-1.088.207-1.331.051-1.2.01-2.404-.126-3.597zm-8.4 4.367c-1.085.974-2.94.77-4.592.77v-5.567c3.061.041 3.627.287 4.075.518a2.552 2.552 0 011.045 2.079c-.02 1.298-.203 1.835-.528 2.2zM115.861 98.816a9.561 9.561 0 00-6.368-6.922 8.678 8.678 0 00-7.821 1.282V81.028H94.43v29.826h7.242v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.964 9.964 0 006.029-8.456 14.998 14.998 0 00-.296-3.55zm-10.803 6.252a3.607 3.607 0 01-2.008-.61 3.61 3.61 0 01-.548-5.562 3.614 3.614 0 115.112 5.113 3.612 3.612 0 01-2.556 1.059zM129.029 89.763a4.035 4.035 0 100-8.07 4.035 4.035 0 000 8.07zM116.931 81.058h7.23v29.799h-7.23s-.03-29.83 0-29.8zM125.368 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM223.562 89.763a4.034 4.034 0 100-8.068 4.034 4.034 0 000 8.068zM219.901 92.11h7.23v18.747h-7.23s-.03-18.777 0-18.747zM249.872 98.87a9.56 9.56 0 00-6.368-6.922 8.676 8.676 0 00-7.82 1.282V81.082h-7.243v29.826h7.243v-1.246a5.681 5.681 0 002.959 1.635 10.3 10.3 0 005.497-.421 9.967 9.967 0 006.029-8.456 14.997 14.997 0 00-.297-3.55zm-10.802 6.252a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM279.092 92.093l.001 1.063c-.231-.137-.575-.427-.913-.62a6.268 6.268 0 00-2.292-.862c-5.628-.588-8.082 2.038-9.532 3.934a9.069 9.069 0 00-.973 2.13h-.094v-5.645c-5.361-.32-6.973 2.197-7.024 2.197v-2.197h-7.305v18.761l7.267-.005c.159-5.709-.388-9.522.788-11.215a3.866 3.866 0 012.457-1.318 7.012 7.012 0 011.893.06c.525.149 1.038.337 1.535.563a24.451 24.451 0 00-.234 3.504c.538 4.526 2.694 6.926 6.074 8.411 2.552 1.06 7.019.69 8.241-1.151h.162c0 .39.008 1.004.008 1.151h7.242V92.093h-7.301zm-3.356 13.029a3.62 3.62 0 01-3.34-2.232 3.616 3.616 0 113.34 2.232zM202.876 83.728v27.121h15.981v-6.719l-8.166.027v-20.43s-7.842-.026-7.815 0zM302.06 99.127c-.508-.165-1.39-.624-1.947-.737a6.497 6.497 0 00-1.736-.06 3.731 3.731 0 00-2.614 1.318c-1.176 1.693-.588 5.495-.747 11.204h-7.308V92.093h7.305v2.21c.051 0 1.693-2.21 7.024-2.21 0 .359.036 5.216.036 5.641l-.013 1.393zm-14.352 11.725V92.093h7.242"})),pr||(pr=n.createElement("path",{d:"M301.248 92.093l9.194 15.863-6.274 11.735h8.167l14.709-27.598h-8.206l-4.381 8.643-4.516-8.643s-8.679-.014-8.693 0z"})))},cleverBadgeColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,wr);return n.createElement("svg",Er({viewBox:"0 0 118 119",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,gr||(gr=n.createElement("rect",{y:.951,width:118,height:118,rx:20,fill:"#436CF2"})),br||(br=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M17.177 60.223c0-26.536 19.426-48.07 47.275-48.07 17.078 0 27.311 5.817 35.733 14.254L87.502 41.342c-6.979-6.464-14.125-10.444-23.184-10.444-15.267 0-26.305 12.927-26.305 28.78 0 16.126 10.736 29.325 26.305 29.325 10.367 0 16.709-4.218 23.822-10.818l12.682 13.064c-9.327 10.171-19.695 16.499-37.175 16.499-26.675 0-46.47-20.99-46.47-47.525z",fill:"#fff"})))},cleverColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Mr);return n.createElement("svg",jr({viewBox:"0 0 312 88",fill:"#436CF2",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xr||(xr=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 44.275C0 20.342 17.667.92 42.993.92c15.532 0 24.838 5.247 32.497 12.856l-11.534 13.47c-6.347-5.83-12.846-9.42-21.085-9.42-13.883 0-23.922 11.66-23.922 25.958 0 14.543 9.764 26.448 23.922 26.448 9.43 0 15.196-3.805 21.665-9.757L76.07 72.257c-8.483 9.174-17.911 14.88-33.809 14.88C18.003 87.138 0 68.208 0 44.276zM77.718 0H95.63v86.954H77.718V0zM128.828 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.514 24.884h-43.94c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.375-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.948 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.244 4.51zM193.638 86.8h-16.264l-24.838-64.31h18.949l14.127 42.772 14.25-42.772h18.614L193.638 86.8zM241.665 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.513 24.884h-43.939c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.374-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.949 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.245 4.51zM311.054 40.87c-11.9 0-19.193 7.27-19.193 22.52v23.595H273.95V23.104h17.911V35.96c3.662-8.806 9.551-14.544 20.139-14.053v18.931h-.946"})))},cleverWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Nr);return n.createElement("svg",Dr({viewBox:"0 0 312 88",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Or||(Or=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 44.275C0 20.342 17.667.92 42.993.92c15.532 0 24.838 5.247 32.497 12.856l-11.534 13.47c-6.347-5.83-12.846-9.42-21.085-9.42-13.883 0-23.922 11.66-23.922 25.958 0 14.543 9.764 26.448 23.922 26.448 9.43 0 15.196-3.805 21.665-9.757L76.07 72.257c-8.483 9.174-17.911 14.88-33.809 14.88C18.003 87.138 0 68.208 0 44.276zM77.718 0H95.63v86.954H77.718V0zM128.828 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.514 24.884h-43.94c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.375-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.948 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.244 4.51zM193.638 86.8h-16.264l-24.838-64.31h18.949l14.127 42.772 14.25-42.772h18.614L193.638 86.8zM241.665 35.223c-7.415 0-12.236 5.37-13.67 13.593h26.974c-1.038-8.131-5.767-13.593-13.304-13.593zm30.513 24.884h-43.939c1.77 8.223 7.415 12.518 15.44 12.518 6.011 0 10.374-1.902 15.318-6.566l10.252 9.174c-5.889 7.395-14.372 11.905-25.784 11.905-18.949 0-32.985-13.47-32.985-32.984v-.245c0-18.225 12.846-33.23 31.216-33.23 21.084 0 30.727 16.57 30.727 34.672v.245c0 1.78-.122 2.854-.245 4.51zM311.054 40.87c-11.9 0-19.193 7.27-19.193 22.52v23.595H273.95V23.104h17.911V35.96c3.662-8.806 9.551-14.544 20.139-14.053v18.931h-.946"})))},firstbookColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Wr);return n.createElement("svg",qr({viewBox:"0 0 172 152",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Cr||(Cr=n.createElement("path",{d:"M154.516 34.244l-46.123 6.988 44.085-9.731a.68.68 0 00.411-.344.736.736 0 00.057-.547.726.726 0 00-.289-.395.677.677 0 00-.463-.112l-46.156 9.784 43.418-12.51a.655.655 0 00.237-.123.705.705 0 00.254-.474.715.715 0 00-.024-.276.714.714 0 00-.317-.434.66.66 0 00-.518-.073l-43.601 12.23 40.546-14.501a.696.696 0 00.396-.36.749.749 0 00.038-.549.712.712 0 00-.345-.415.658.658 0 00-.524-.039l-42.666 14.659 39.026-16.965a.704.704 0 00.373-.386.753.753 0 00.003-.549.705.705 0 00-.369-.39.658.658 0 00-.525-.003L99.893 36.393l37.172-19.813a.714.714 0 00.319-.435.749.749 0 00-.068-.543.71.71 0 00-.382-.317.673.673 0 00-.487.02l-38.575 19.97 33.95-21.822a.76.76 0 00.233-.891.674.674 0 00-.697-.344.665.665 0 00-.254.1L94.766 35.03l31.144-24.46a.715.715 0 00.253-.746.73.73 0 00-.119-.25.694.694 0 00-.194-.193.646.646 0 00-.758.036L92.128 34.593l27.42-26.609a.757.757 0 00-.038-.976.68.68 0 00-.931-.072L89.523 34.331l23.262-28.583a.745.745 0 00-.067-1.013.668.668 0 00-.969.07l-24.08 28.617 18.486-29.404a.752.752 0 00.005-.797.676.676 0 00-.702-.31.697.697 0 00-.438.302l-20.04 30.49 14.111-31.1a.746.746 0 00-.03-.544.697.697 0 00-.387-.364.656.656 0 00-.447-.005.69.69 0 00-.355.284L83.195 32.76l9.168-31.134a.73.73 0 00-.084-.528.687.687 0 00-.417-.31.658.658 0 00-.456.066.705.705 0 00-.312.353l-10.02 31.308 4.61-31.448a.742.742 0 00-.122-.534.662.662 0 00-.957-.16.722.722 0 00-.274.467l-5.444 32.2L78.719.715a.733.733 0 00-.2-.506.67.67 0 00-.485-.21.67.67 0 00-.484.21.733.733 0 00-.2.506l-.518 32.532L71.605.786a.72.72 0 00-.278-.444.661.661 0 00-.932.145.74.74 0 00-.143.509l4.459 32.531L64.274 1.24a.704.704 0 00-.341-.372.657.657 0 00-.492-.036.69.69 0 00-.387.32.745.745 0 00-.083.508l9.502 31.867L57.11 2.08a.69.69 0 00-.416-.334.658.658 0 00-.519.072.73.73 0 00-.303.4.766.766 0 00.02.509l14.444 31.098L49.93 3.39a.706.706 0 00-.194-.196.672.672 0 00-.52-.099.675.675 0 00-.247.112.741.741 0 00-.282.746c.02.093.056.18.107.259l19.054 29.578L43.033 5.05a.69.69 0 00-.474-.236.658.658 0 00-.495.184.716.716 0 00-.225.496.75.75 0 00.175.517L65.66 34.296 36.253 7.181a.668.668 0 00-.968.052.738.738 0 00.05 1.013L62.42 34 30.175 9.54a.656.656 0 00-.508-.133.65.65 0 00-.25.098.681.681 0 00-.194.193.712.712 0 00-.136.527.72.72 0 00.27.468l30.776 23.971-35.72-22.38a.65.65 0 00-.517-.087.657.657 0 00-.241.12.691.691 0 00-.177.21.745.745 0 00-.083.537c.041.183.149.342.3.442L58.08 35.624l-39.126-20.18a.657.657 0 00-.504-.015.696.696 0 00-.378.35.747.747 0 00-.046.525c.049.175.16.324.31.416l36.788 19.498L14.16 18.747a.659.659 0 00-.746.16.721.721 0 00-.198.508.746.746 0 00.204.505c.063.066.14.119.223.154l39.81 17.454L9.835 22.503a.66.66 0 00-.735.21.727.727 0 00-.167.522c.007.094.03.186.071.27.082.171.224.3.397.36L51.399 38.77 6.128 26.539a.66.66 0 00-.49.1.715.715 0 00-.295.42.746.746 0 00.057.52c.08.158.215.28.377.34l43.819 12.23-46.49-9.487a.658.658 0 00-.523.06.73.73 0 00-.352.709.743.743 0 00.253.482c.07.059.15.103.237.13h.1l43.535 9.294-45.421-6.64a.663.663 0 00-.487.15.742.742 0 00-.138.975c.1.15.252.255.424.291l32.68 5.084 44.303 5.434 37.84-4.7 39.159-6.272a.666.666 0 00.466-.258.732.732 0 00.126-.248c.026-.091.035-.186.026-.28a.742.742 0 00-.247-.487.674.674 0 00-.505-.16l-.066.018z",fill:"#ED1C24"})),Sr||(Sr=n.createElement("path",{d:"M167.41 138.023a1.828 1.828 0 00-.484-.402c.338-.034.652-.195.885-.454.205-.246.313-.565.3-.891a1.428 1.428 0 00-.2-.734 1.032 1.032 0 00-.518-.454 3.043 3.043 0 00-1.052-.122h-1.67v4.699h.819v-1.747h.167c.133-.016.267-.016.4 0a.756.756 0 01.234.175c.15.192.284.402.418.612l.567.891h1.119l-.551-.891a4.553 4.553 0 00-.434-.682zm-1.336-.908h-.518v-1.276h.552c.195.106.414.154.634.14a.494.494 0 01.334.175.559.559 0 01.117.367.586.586 0 010 .332.446.446 0 01-.234.192 3.21 3.21 0 01-.885.07z",fill:"#00ACE4"})),Tr||(Tr=n.createElement("path",{d:"M166.258 133.114a4.07 4.07 0 00-2.341.732 4.367 4.367 0 00-1.558 1.969 4.598 4.598 0 00-.249 2.543 4.47 4.47 0 001.143 2.259 4.16 4.16 0 002.151 1.214c.815.173 1.662.09 2.432-.24a4.26 4.26 0 001.895-1.614 4.545 4.545 0 00.718-2.443 4.573 4.573 0 00-.314-1.686 4.43 4.43 0 00-.907-1.433 4.222 4.222 0 00-1.361-.96 4.051 4.051 0 00-1.609-.341zm0 8.194c-.72 0-1.424-.224-2.023-.642a3.783 3.783 0 01-1.341-1.71 3.98 3.98 0 01-.207-2.2 3.867 3.867 0 01.996-1.95 3.597 3.597 0 011.864-1.043 3.496 3.496 0 012.104.217 3.675 3.675 0 011.633 1.403c.4.626.614 1.363.614 2.116a3.913 3.913 0 01-1.071 2.688 3.58 3.58 0 01-2.569 1.121zM77.868 51.156h.167L56.409 48.64v.017L0 41.861v99.691l76.481 10.238 79.672-9.556V41.861l-78.285 9.295z",fill:"#00ACE4"})),kr||(kr=n.createElement("path",{d:"M8.183 99.674V67.666L25.35 69.85v6.657l-9.82-1.258v6.115l6.964.89v6.465l-6.963-.89V100.6l-7.348-.926z",fill:"#ED1C24"})),Vr||(Vr=n.createElement("path",{d:"M8.483 68.47l16.048 2.027v5.241l-9.401-1.205v7.39l6.946.891v5.241l-6.946-.89v12.753l-6.546-.838V68.26l-.1.21zm-1.119-1.537v33.195l1.103.14 6.479.821 1.403.175v-12.72l5.61.717 1.437.175v-7.74l-1.053-.14-5.894-.751v-4.822l8.082 1.048 1.32.175v-7.932l-1.07-.14-16.047-2.01-1.37-.174v-.017z",fill:"#fff"})),_r||(_r=n.createElement("path",{d:"M25.349 101.787v-23.22l6.546.84v23.201l-6.546-.821z",fill:"#ED1C24"})),Lr||(Lr=n.createElement("path",{d:"M26.186 79.32l5.294.68v21.857l-5.31-.681V79.372l.016-.053zm-1.235-1.486v24.46l1.068.14 5.327.681 1.37.175V78.83l-1.069-.14-5.327-.681-1.37-.175z",fill:"#fff"})),Ir||(Ir=n.createElement("path",{d:"M33.933 102.94V79.511l5.627.734.184 2.376c.38-.667.921-1.219 1.569-1.599a4.095 4.095 0 012.122-.567c.792.02 1.575.174 2.32.454l.401.157v6.796l-.75-.174a9.875 9.875 0 00-2.656-.472c-1.553 0-2.271.647-2.271 2.044v14.501l-6.546-.821z",fill:"#ED1C24"})),Pr||(Pr=n.createElement("path",{d:"M34.317 80.245l4.458.56.35 4.42c.736-2.848 2.172-4.141 4.126-4.141a6.42 6.42 0 012.12.42v5.485a9.788 9.788 0 00-2.839-.49c-2.104 0-2.888 1.154-2.888 2.692v13.854l-5.31-.681V80.228l-.017.017zm-1.203-1.467v24.739l1.069.14 5.327.681 1.37.175v-15.34c0-.716.133-1.415 1.67-1.415a9.2 9.2 0 012.487.437l1.587.471v-8.071l-.819-.297a7.48 7.48 0 00-2.538-.507 4.636 4.636 0 00-3.19 1.223V79.65l-1.001-.122-4.576-.577-1.386-.174z",fill:"#fff"})),Br||(Br=n.createElement("path",{d:"M56.092 106.086a11.832 11.832 0 01-1.37-.088c-5.009-.629-8.115-4.018-8.115-8.648v-1.52l5.728.734v1.258a2.347 2.347 0 00.454 1.67c.357.471.879.776 1.45.846h.885c.918 0 1.285-.35 1.285-1.258 0-1.485-1.402-2.341-4.325-3.984-2.454-1.345-5.01-3.25-5.01-7.18 0-3.931 2.506-6.22 6.397-6.22a7.683 7.683 0 011.269 0c4.525.576 7.43 3.756 7.43 8.09v1.065l-5.376-.594V88.98c0-1.188-.652-1.852-2.004-2.026h-.451c-.952 0-1.136.436-1.136 1.066 0 .908.768 1.607 3.34 2.97 3.09 1.642 6.229 3.948 6.229 8.596.02.84-.12 1.676-.41 2.46s-.725 1.5-1.28 2.107a6.101 6.101 0 01-1.957 1.432 5.879 5.879 0 01-2.331.535l-.702-.035z",fill:"#ED1C24"})),Rr||(Rr=n.createElement("path",{d:"M53.454 82.202h1.219c4.492.577 7.013 3.652 7.013 7.583v.367l-4.492-.577v-.664c0-1.45-.801-2.446-2.555-2.673h-.534c-1.136 0-1.67.577-1.67 1.747 0 1.17 1.035 2.15 3.624 3.495 3.34 1.747 5.911 3.948 5.911 8.019a5.981 5.981 0 01-.367 2.21 5.79 5.79 0 01-1.147 1.896 5.516 5.516 0 01-1.754 1.291 5.302 5.302 0 01-2.092.491h-.702a8.117 8.117 0 01-1.285 0c-5.01-.629-7.582-3.966-7.582-8.002v-.804l4.492.577v.786c-.037.386 0 .775.108 1.146.108.371.285.716.52 1.015.237.299.527.546.855.727.328.18.687.292 1.056.327h.901c1.253 0 1.92-.612 1.92-1.94 0-1.939-1.67-2.952-4.709-4.612-3.039-1.66-4.709-3.494-4.709-6.727 0-3.599 2.388-5.678 5.878-5.678h.1zm.25-1.1c-4.275 0-7.047 2.725-7.047 6.988s2.839 6.5 5.327 7.862l.184.105-4.459-.577-1.37-.174v2.219c0 4.892 3.34 8.473 8.45 9.137.468.026.936.026 1.403 0a6.285 6.285 0 002.546-.29 6.475 6.475 0 002.246-1.287 6.822 6.822 0 001.604-2.088c.398-.8.642-1.674.718-2.572v-.751c0-4.456-2.672-6.85-5.527-8.527l3.957.507 1.37.175v-1.747c0-4.752-3.14-8.23-8.016-8.858a11.72 11.72 0 00-1.353-.088l-.033-.034zm2.422 9.05c-1.92-1.084-2.305-1.573-2.305-2.027a.565.565 0 010-.332.973.973 0 01.45 0h.368c1.32.175 1.436.786 1.436 1.345v1.049l.05-.035zm-1.17 9.784h-.45c-1.203-.158-1.67-.717-1.67-1.94v-1.572c1.904 1.118 2.839 1.747 2.839 2.778 0 .524 0 .646-.685.646l-.034.088z",fill:"#fff"})),Hr||(Hr=n.createElement("path",{d:"M66.815 107.116l-.15-.332a18.192 18.192 0 01-1.27-7.915V89l-2.454-.35v-5.66l2.855.366v-3.879l6.546-.873v5.59l3.34.42v5.538l-3.34-.419v9.836c-.15 2.532.334 5.061 1.403 7.338l.585 1.136-7.515-.926z",fill:"#ED1C24"})),Fr||(Fr=n.createElement("path",{d:"M71.54 79.372v5.416l3.34.42v4.227l-3.34-.42v10.746a14.943 14.943 0 001.386 7.145l-5.578-.716a16.374 16.374 0 01-1.135-7.163V88.439l-2.856-.367v-4.368l2.856.367v-4.053l5.16-.681.166.035zm1.235-1.503l-1.42.192-5.276.7-1.102.191v3.67l-1.503-.175-1.303-.175v6.988l1.12.14 1.67.227v9.54a17.987 17.987 0 001.285 7.739l.284.629h.668l5.594.717 2.371.402-1.102-2.149a13.862 13.862 0 01-1.252-6.587V90.57l1.92.244 1.336.175v-6.988l-1.052-.14-2.221-.28V77.87h-.017zM91.228 106.645l-10.704 1.275V77.66l10.437-1.223c4.609-.542 7.147 1.747 7.147 5.993v2.236s-.768 5.241-3.724 6.115c3.073.402 4.158 5.136 4.158 5.136v2.918c0 4.368-2.638 7.251-7.314 7.81zm1.152-22.87c0-1.503-.618-2.394-2.237-2.202l-3.49.437v7.775l3.24-.35c.332-.004.662-.077.968-.215a2.54 2.54 0 00.816-.587c.233-.25.416-.545.54-.87.123-.323.184-.67.18-1.018a1.383 1.383 0 000-.262l-.017-2.708zm0 12.474c0-1.747-.851-2.515-2.438-2.34l-3.34.383v7.723l3.59-.35c.292-.004.58-.069.848-.19s.51-.296.713-.515c.204-.219.364-.478.471-.761.108-.284.16-.587.156-.892a1.383 1.383 0 000-.262v-2.796zM108.361 104.897c-4.459.524-7.398-1.957-7.398-6.779v-6.936c-.115-2.181.598-4.323 1.983-5.958 1.385-1.635 3.331-2.633 5.415-2.777a5.83 5.83 0 012.381-.032 5.947 5.947 0 012.211.926 6.246 6.246 0 011.703 1.741c.453.692.77 1.47.935 2.292.137.677.165 1.374.084 2.061v6.989c.082 2.132-.637 4.214-2.005 5.798-1.367 1.584-3.273 2.544-5.309 2.675zm2.003-15.829a2.091 2.091 0 00-.392-1.486 1.916 1.916 0 00-1.829-.767 2.454 2.454 0 00-1.68.901 2.683 2.683 0 00-.591 1.876v8.736a2.1 2.1 0 00.095.938c.102.3.271.57.493.789.222.219.49.379.783.467.293.089.601.103.9.042a2.472 2.472 0 001.643-.923 2.698 2.698 0 00.578-1.855v-8.718zM125.528 102.87c-4.459.525-7.398-1.956-7.398-6.778v-6.989c-.087-2.162.638-4.274 2.021-5.884 1.382-1.61 3.312-2.59 5.377-2.73a5.872 5.872 0 014.581.902c1.353.924 2.299 2.372 2.633 4.026.133.642.166 1.303.1 1.956v6.989c.096 2.14-.619 4.233-1.988 5.825-1.369 1.593-3.283 2.557-5.326 2.683zm2.003-15.829a2.1 2.1 0 00-.094-.937c-.102-.3-.271-.571-.493-.79a1.9 1.9 0 00-.783-.467 1.84 1.84 0 00-.901-.042 2.454 2.454 0 00-1.68.902 2.683 2.683 0 00-.591 1.876v8.736c-.04.266-.028.54.035.801.063.262.176.508.332.723.156.215.351.396.575.53.224.134.472.22.728.252.226.044.459.044.685 0a2.475 2.475 0 001.643-.923c.413-.517.62-1.182.578-1.855l-.034-8.805zM145.999 100.18l-3.34-8.333-2.004 3.878v5.102l-5.377.611V71.161l5.311-.63V88.86l4.876-10.483 5.176-.611-4.675 9.696 5.21 12.108-5.177.611zM29.058 67.946l1.068 3.11 2.422.35-1.754 1.554.735 2.953-2.471-1.87-2.489 1.171.735-2.743-1.753-2.027 2.421.297 1.086-2.795z",fill:"#fff"})))},firstbookColorNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ur);return n.createElement("svg",Xr({viewBox:"0 0 170 150",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ar||(Ar=n.createElement("g",{clipPath:"url(#logo-firstbook-color-negative_svg__clip0_50221_35656)"},n.createElement("path",{d:"M78.283 0h-.425C74.686.183.018 4.8.018 44.05v92.317c0 1.966-.328 3.633 1.634 3.916l74.49 9.384h.931l77.432-8.834c1.961-.233 1.634-1.916 1.634-6.25V46.367C156.074 4.8 81.454.183 78.283 0z",fill:"#fff"}),n.createElement("path",{d:"M152.885 35.684l-45.148 6.666 43.154-9.283a.663.663 0 00.402-.328.686.686 0 00.056-.522.7.7 0 00-.283-.377.675.675 0 00-.453-.107l-45.181 9.334 42.5-11.933a.648.648 0 00.402-.319.694.694 0 00-.255-.928.658.658 0 00-.506-.07l-42.68 11.666 39.688-13.833a.675.675 0 00.389-.343.693.693 0 00-.301-.92.66.66 0 00-.513-.037l-41.764 13.983 38.201-16.183a.677.677 0 00.365-.368.697.697 0 00.003-.523.677.677 0 00-.361-.373.66.66 0 00-.514-.002l-40.669 16.85 36.387-18.9a.694.694 0 00.245-.933.69.69 0 00-.374-.303.673.673 0 00-.476.019l-37.76 19.05 33.232-20.817a.712.712 0 00.229-.85.685.685 0 00-.418-.317.658.658 0 00-.514.084l-35.57 21.667L124.885 13.1a.675.675 0 00.264-.447.678.678 0 00-.133-.503.662.662 0 00-.434-.277.644.644 0 00-.498.127L91.816 36.017l26.84-25.384a.708.708 0 00-.036-.93.682.682 0 00-.912-.07L89.266 35.768 112.036 8.5a.695.695 0 00-.065-.966.665.665 0 00-.948.066L87.452 34.9l18.095-28.05a.685.685 0 00-.421-1.054.66.66 0 00-.691.288L84.82 35.167 98.632 5.5a.696.696 0 00-.03-.519.675.675 0 00-.378-.347.658.658 0 00-.438-.005.672.672 0 00-.347.271L83.071 34.267l8.974-29.7a.68.68 0 00-.258-.693.648.648 0 00-.233-.107.659.659 0 00-.445.063.679.679 0 00-.306.337l-9.808 29.866 4.511-30a.694.694 0 00-.118-.509.66.66 0 00-.936-.153.686.686 0 00-.27.446l-5.329 30.716L78.69 3.7a.69.69 0 00-.196-.483.664.664 0 00-.948 0 .69.69 0 00-.196.483l-.507 31.034-5.116-30.967a.684.684 0 00-.272-.424.66.66 0 00-.913.138.693.693 0 00-.14.486L74.768 35 64.551 4.2a.678.678 0 00-.334-.355.659.659 0 00-.482-.034.673.673 0 00-.379.304.695.695 0 00-.08.485l9.3 30.4L57.539 5a.672.672 0 00-.407-.318.659.659 0 00-.508.068.698.698 0 00-.297.381.713.713 0 00.019.486l14.14 29.666L50.508 6.25a.682.682 0 00-.434-.286.663.663 0 00-.506.111.682.682 0 00-.28.443.702.702 0 00.109.516l18.65 28.216-24.29-27.416a.672.672 0 00-.464-.226.66.66 0 00-.484.176.683.683 0 00-.22.472.696.696 0 00.171.494l23.146 26.983L37.122 9.867a.664.664 0 00-.948.05.693.693 0 00.049.966L62.736 35.45 31.172 12.117a.649.649 0 00-.742-.034.66.66 0 00-.19.184.673.673 0 00.13.95l30.127 22.867-34.965-21.35a.647.647 0 00-.915.233.695.695 0 00.212.933L58.486 37 20.187 17.75a.658.658 0 00-.493-.015.674.674 0 00-.37.334.696.696 0 00-.045.501.682.682 0 00.303.397l36.011 18.6L15.496 20.9a.66.66 0 00-.73.152.684.684 0 00-.194.485.695.695 0 00.199.483.67.67 0 00.218.147l38.97 16.65-42.697-14.334a.66.66 0 00-.72.202.69.69 0 00-.093.755c.08.162.22.286.388.343L51.947 40 7.634 28.334a.66.66 0 00-.479.095.695.695 0 00-.234.896c.08.152.211.268.37.325l42.892 11.667-45.507-9.05a.662.662 0 00-.713.23.69.69 0 00-.065.758.684.684 0 00.402.328h.098L47.01 42.45 2.55 36.117a.661.661 0 00-.477.142.694.694 0 00-.135.93.67.67 0 00.416.278l31.989 4.85L77.709 47.5l37.041-4.483 38.331-5.984a.664.664 0 00.58-.483.699.699 0 00-.216-.732.66.66 0 00-.494-.152l-.066.018z",fill:"#ED1C24"}),n.createElement("path",{d:"M165.507 134.684a1.79 1.79 0 00-.474-.384 1.36 1.36 0 00.866-.433 1.23 1.23 0 00.294-.85 1.326 1.326 0 00-.196-.7.997.997 0 00-.506-.433 3.068 3.068 0 00-1.03-.117h-1.635v4.483h.801v-1.666h.164c.13-.016.262-.016.392 0 .086.04.164.096.229.166.147.184.278.384.408.584l.556.85h1.095l-.539-.85a4.457 4.457 0 00-.425-.65zm-1.308-.867h-.506V132.6h.539c.191.101.406.147.621.134.126.01.243.07.327.166.079.099.12.223.114.35a.535.535 0 010 .317.417.417 0 01-.228.183 3.196 3.196 0 01-.867.067z",fill:"#00ACE4"}),n.createElement("path",{d:"M164.379 130a4.061 4.061 0 00-2.291.699 4.182 4.182 0 00-1.525 1.878 4.283 4.283 0 00-.244 2.426 4.237 4.237 0 001.119 2.155c.574.59 1.307.993 2.105 1.158a4.055 4.055 0 002.381-.229 4.142 4.142 0 001.855-1.54 4.278 4.278 0 00.396-3.939 4.216 4.216 0 00-.888-1.366 4.108 4.108 0 00-1.333-.916 4.049 4.049 0 00-1.575-.326zm0 7.817a3.51 3.51 0 01-1.98-.613 3.61 3.61 0 01-1.312-1.63 3.693 3.693 0 01.772-3.96 3.547 3.547 0 011.825-.994 3.503 3.503 0 012.059.207c.651.275 1.207.74 1.599 1.338.391.597.6 1.3.6 2.018a3.687 3.687 0 01-1.048 2.565 3.549 3.549 0 01-2.515 1.069zM77.857 51.817h.163l-21.168-2.4v.016L1.635 42.95v95.1l74.865 9.767 77.987-9.117V42.95l-76.63 8.867z",fill:"#00ACE4"}),n.createElement("path",{d:"M9.645 98.1V67.567l16.804 2.083V76l-9.612-1.2v5.833l6.816.85v6.167l-6.816-.85v12.183L9.645 98.1z",fill:"#ED1C24"}),n.createElement("path",{d:"M9.939 68.334l15.708 1.933v5l-9.202-1.15v7.05l6.8.85v5l-6.8-.85v12.167l-6.408-.8v-29.4l-.098.2zm-1.095-1.467v31.667l1.078.133 6.343.783 1.373.167V87.484l5.492.683 1.406.167V80.95l-1.03-.133-5.77-.717v-4.6l7.911 1 1.292.167V69.1l-1.047-.133-15.708-1.917-1.34-.166v-.017z",fill:"#fff"}),n.createElement("path",{d:"M26.448 100.116v-22.15l6.407.8V100.9l-6.407-.784z",fill:"#ED1C24"}),n.createElement("path",{d:"M27.268 78.683l5.181.65v20.85l-5.198-.65v-20.8l.017-.05zm-1.21-1.417V100.6l1.046.133 5.215.65 1.34.167V78.216l-1.046-.133-5.215-.65-1.34-.167z",fill:"#fff"}),n.createElement("path",{d:"M34.85 101.216v-22.35l5.51.7.18 2.267a4.19 4.19 0 011.535-1.525 4.089 4.089 0 012.076-.542c.776.02 1.543.166 2.273.434l.392.15v6.483l-.736-.166a9.893 9.893 0 00-2.599-.45c-1.52 0-2.223.616-2.223 1.95V102l-6.407-.784z",fill:"#ED1C24"}),n.createElement("path",{d:"M35.226 79.567l4.364.533.344 4.217c.719-2.717 2.125-3.95 4.037-3.95.709.017 1.41.152 2.076.4V86a9.811 9.811 0 00-2.779-.467c-2.06 0-2.828 1.1-2.828 2.567v13.216l-5.198-.649V79.55l-.016.017zm-1.177-1.4v23.599l1.046.134 5.215.65 1.34.166V88.083c0-.683.13-1.35 1.635-1.35a9.215 9.215 0 012.435.417l1.553.45v-7.7l-.8-.284a7.488 7.488 0 00-2.486-.483 4.606 4.606 0 00-3.122 1.167V79l-.98-.117-4.48-.55-1.356-.166z",fill:"#fff"}),n.createElement("path",{d:"M56.542 104.217a12.257 12.257 0 01-1.34-.083c-4.904-.6-7.945-3.834-7.945-8.25v-1.45l5.607.7v1.2c-.065.57.095 1.143.445 1.593.35.45.86.74 1.418.807h.867c.899 0 1.258-.334 1.258-1.2 0-1.417-1.373-2.234-4.233-3.8-2.403-1.284-4.904-3.1-4.904-6.85 0-3.75 2.452-5.934 6.26-5.934a7.738 7.738 0 011.243 0c4.43.55 7.274 3.584 7.274 7.717v1.017l-5.264-.567V87.9c0-1.133-.637-1.766-1.961-1.933h-.442c-.931 0-1.111.417-1.111 1.017 0 .866.752 1.533 3.269 2.833 3.024 1.567 6.097 3.767 6.097 8.2.02.802-.116 1.6-.4 2.347a6.108 6.108 0 01-1.254 2.011 5.973 5.973 0 01-1.915 1.365 5.865 5.865 0 01-2.283.51l-.686-.033z",fill:"#ED1C24"}),n.createElement("path",{d:"M53.959 81.433h1.193c4.397.55 6.865 3.484 6.865 7.234v.35l-4.397-.55v-.634c0-1.383-.784-2.333-2.5-2.55h-.524c-1.111 0-1.634.55-1.634 1.667s1.013 2.05 3.547 3.333c3.269 1.667 5.786 3.767 5.786 7.65a5.577 5.577 0 01-.359 2.109 5.492 5.492 0 01-1.123 1.808c-.487.522-1.07.94-1.717 1.232a5.28 5.28 0 01-2.048.468h-.687c-.418.033-.84.033-1.258 0-4.904-.6-7.421-3.783-7.421-7.633v-.767l4.397.55v.75a2.851 2.851 0 00.615 2.061c.231.285.515.521.836.694.321.172.672.278 1.033.312h.883c1.226 0 1.88-.584 1.88-1.85 0-1.85-1.635-2.817-4.61-4.4-2.975-1.584-4.61-3.334-4.61-6.417 0-3.433 2.338-5.417 5.755-5.417h.098zm.245-1.05c-4.185 0-6.898 2.6-6.898 6.667s2.779 6.2 5.214 7.5l.18.1-4.364-.55-1.34-.167v2.117c0 4.667 3.268 8.083 8.27 8.717a13.1 13.1 0 001.373 0 6.32 6.32 0 002.492-.277 6.378 6.378 0 002.199-1.228 6.517 6.517 0 001.57-1.992c.39-.763.629-1.596.703-2.453V98.1c0-4.25-2.616-6.533-5.41-8.133l3.873.483 1.34.167V88.95c0-4.533-3.072-7.85-7.846-8.45-.439-.053-.881-.08-1.324-.083l-.032-.034zm2.37 8.634c-1.88-1.034-2.256-1.5-2.256-1.934a.527.527 0 010-.316.979.979 0 01.442 0h.36c1.29.166 1.405.75 1.405 1.283v1l.049-.033zM55.43 98.35h-.442c-1.176-.15-1.634-.683-1.634-1.85V95c1.863 1.067 2.779 1.667 2.779 2.65 0 .5 0 .617-.67.617l-.033.083z",fill:"#fff"}),n.createElement("path",{d:"M67.038 105.2l-.147-.317a16.956 16.956 0 01-1.243-7.55v-9.417l-2.402-.333v-5.4l2.795.35v-3.7L72.448 78v5.333l3.27.4v5.283l-3.27-.4V98a14.15 14.15 0 001.374 7l.572 1.083-7.356-.883z",fill:"#ED1C24"}),n.createElement("path",{d:"M71.662 78.733V83.9l3.27.4v4.033l-3.27-.4v10.25A13.95 13.95 0 0073.02 105l-5.46-.684a15.26 15.26 0 01-1.111-6.833v-10.1l-2.795-.35v-4.166l2.795.35V79.35l5.05-.65.164.033zm1.21-1.433l-1.39.183-5.165.667-1.079.183v3.5l-1.47-.166-1.276-.167v6.666l1.095.134 1.635.216v9.1A16.773 16.773 0 0066.481 105l.278.6h.653l5.476.683 2.322.383-1.08-2.05a12.927 12.927 0 01-1.225-6.283v-8.916l1.88.233 1.307.166V83.15l-1.03-.134-2.174-.266V77.3h-.016zM90.935 104.75l-10.478 1.217V77.1l10.216-1.166c4.512-.517 6.996 1.666 6.996 5.716v2.133s-.751 5-3.645 5.834c3.008.383 4.07 4.9 4.07 4.9V97.3c0 4.167-2.582 6.917-7.16 7.45zm1.128-21.817c0-1.433-.605-2.283-2.19-2.1l-3.417.417v7.417l3.171-.334c.327-.004.649-.074.949-.205.3-.131.57-.322.799-.56a2.575 2.575 0 00.704-1.801 1.289 1.289 0 000-.25l-.016-2.584zm0 11.9c0-1.666-.834-2.4-2.387-2.233l-3.269.367v7.367l3.514-.334c.286-.004.568-.066.83-.181.262-.116.5-.283.698-.492a2.256 2.256 0 00.614-1.577 1.289 1.289 0 000-.25v-2.666zM107.705 103.083c-4.364.5-7.241-1.866-7.241-6.466V90a8.012 8.012 0 011.941-5.684 7.71 7.71 0 015.3-2.65 5.853 5.853 0 012.331-.03 5.899 5.899 0 012.164.884 6.013 6.013 0 011.667 1.66 6.127 6.127 0 01.998 4.153V95a7.875 7.875 0 01-1.962 5.531 7.581 7.581 0 01-5.198 2.552zm1.962-15.1a1.963 1.963 0 00-.384-1.418 1.89 1.89 0 00-1.251-.732 1.954 1.954 0 00-.539 0 2.42 2.42 0 00-1.645.86 2.511 2.511 0 00-.578 1.79v8.334a1.941 1.941 0 00.575 1.647 1.846 1.846 0 001.648.486 2.439 2.439 0 001.608-.88 2.536 2.536 0 00.566-1.77v-8.317zM124.509 101.15c-4.364.5-7.241-1.867-7.241-6.467v-6.667a7.997 7.997 0 011.978-5.613 7.694 7.694 0 015.263-2.603 5.872 5.872 0 014.485.86 6.087 6.087 0 012.577 3.84 6 6 0 01.098 1.866v6.667a7.859 7.859 0 01-1.945 5.557 7.562 7.562 0 01-5.215 2.56zm1.962-15.1a1.955 1.955 0 00-.092-.895 1.923 1.923 0 00-.483-.753 1.869 1.869 0 00-.767-.446 1.844 1.844 0 00-.881-.04 2.421 2.421 0 00-1.645.86 2.516 2.516 0 00-.578 1.79V94.9a1.949 1.949 0 00.359 1.454 1.858 1.858 0 001.275.746c.222.041.449.041.671 0a2.439 2.439 0 001.608-.88 2.536 2.536 0 00.566-1.77l-.033-8.4zM144.549 98.584l-3.27-7.95-1.961 3.7V99.2l-5.264.584V70.9l5.199-.6v17.484l4.773-10 5.067-.584-4.577 9.25 5.1 11.55-5.067.584zM30.078 67.834l1.046 2.966 2.37.334-1.716 1.483.72 2.817-2.42-1.784-2.435 1.117.719-2.617-1.716-1.933 2.37.283 1.062-2.666z",fill:"#fff"}))))},googlePlayBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Qr);return n.createElement("svg",Zr({viewBox:"0 0 200 60",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Yr||(Yr=n.createElement("g",{clipPath:"url(#logo-google-play-black_svg__clip0_55995_43169)"},n.createElement("path",{d:"M192.593 0H7.407A7.407 7.407 0 000 7.407v44.445a7.407 7.407 0 007.407 7.407h185.186A7.407 7.407 0 00200 51.852V7.407A7.407 7.407 0 00192.593 0z",fill:"#000"}),n.createElement("path",{d:"M192.593 1.185a6.236 6.236 0 016.222 6.222v44.445a6.238 6.238 0 01-6.222 6.222H7.407a6.222 6.222 0 01-6.222-6.222V7.407a6.222 6.222 0 016.222-6.222h185.186zm0-1.185H7.407A7.407 7.407 0 000 7.407v44.445a7.408 7.408 0 007.407 7.407h185.186A7.406 7.406 0 00200 51.852V7.407A7.404 7.404 0 00192.593 0z",fill:"#A6A6A6"}),n.createElement("path",{d:"M70.237 15.17a4.016 4.016 0 01-1.096 2.963 4.326 4.326 0 01-3.274 1.304 4.578 4.578 0 01-4.608-4.637 4.577 4.577 0 014.608-4.637 4.577 4.577 0 011.837.37 3.6 3.6 0 011.377.993l-.77.785a2.962 2.962 0 00-2.444-1.067 3.467 3.467 0 00-3.467 3.57 3.467 3.467 0 003.452 3.556 3.438 3.438 0 002.474-.963 2.77 2.77 0 00.74-1.807h-3.2v-1.156h4.312c.044.24.064.483.059.726zM77.067 11.482h-4.045v2.814h3.645v1.067h-3.645v2.815h4.045v1.096h-5.185v-8.889h5.185v1.097zM81.881 19.26h-1.14V11.48h-2.474v-1.096h6.103v1.097h-2.489v7.777zM88.785 19.26v-8.89h1.14v8.89h-1.14zM94.993 19.26h-1.141V11.48h-2.474v-1.096h6.103v1.097h-2.488v7.777zM109.037 18.104a4.61 4.61 0 01-6.519 0 4.801 4.801 0 010-6.578 4.603 4.603 0 013.26-1.351 4.611 4.611 0 013.259 1.35 4.554 4.554 0 011.318 3.29 4.433 4.433 0 01-1.318 3.289zm-5.674-.697a3.282 3.282 0 002.415 1.008 3.244 3.244 0 002.415-1.008 3.44 3.44 0 00.992-2.548 3.428 3.428 0 00-.992-2.548 3.25 3.25 0 00-2.415-1.007 3.289 3.289 0 00-2.415 1.007 3.807 3.807 0 000 5.096zM111.956 19.26v-8.89h1.392l4.311 6.919V10.37h1.156v8.89h-1.2l-4.445-7.245v7.244h-1.214z",fill:"#fff",stroke:"#fff",strokeWidth:.2,strokeMiterlimit:10}),n.createElement("path",{d:"M100.918 32.222a6.311 6.311 0 106.326 6.297 6.208 6.208 0 00-6.326-6.297zm0 10.119a3.82 3.82 0 01-4.044-4.391 3.822 3.822 0 017.6.569 3.64 3.64 0 01-.972 2.66 3.636 3.636 0 01-2.584 1.162zM87.141 32.222a6.311 6.311 0 106.37 6.297 6.208 6.208 0 00-6.37-6.297zm0 10.119a3.821 3.821 0 01-1.116-7.54 3.822 3.822 0 014.671 3.718 3.643 3.643 0 01-3.555 3.822zm-16.415-8.178v2.667h6.4a5.51 5.51 0 01-1.482 3.363 6.503 6.503 0 01-4.933 1.955 7.111 7.111 0 010-14.222 6.83 6.83 0 014.815 1.911l1.896-1.881a9.347 9.347 0 00-6.711-2.697 9.793 9.793 0 100 19.57 9.007 9.007 0 006.83-2.74 8.889 8.889 0 002.31-6.267 8.026 8.026 0 00-.147-1.659h-8.978zm67.126 2.074a5.93 5.93 0 00-5.393-4.015 5.931 5.931 0 00-5.586 3.915 5.937 5.937 0 00-.34 2.382 6.178 6.178 0 006.267 6.31 6.27 6.27 0 005.155-2.8l-2.148-1.48a3.568 3.568 0 01-3.096 1.733 3.2 3.2 0 01-3.067-1.911l8.43-3.482-.222-.652zm-8.593 2.104a3.451 3.451 0 013.289-3.689A2.459 2.459 0 01134.889 36l-5.63 2.34zm-6.859 6.103h2.77V25.926h-2.77v18.518zm-4.533-10.74h-.089a4.448 4.448 0 00-3.319-1.482 6.311 6.311 0 000 12.608 4.3 4.3 0 003.319-1.482h.089v.904c0 2.415-1.289 3.704-3.363 3.704a3.482 3.482 0 01-3.215-2.193l-2.415.993a6.016 6.016 0 005.585 3.733c3.245 0 5.926-1.911 5.926-6.563V32.607h-2.518v1.097zm-3.171 8.637a3.824 3.824 0 01-3.584-3.815 3.824 3.824 0 013.584-3.815 3.542 3.542 0 013.363 3.837c.036.472-.023.946-.173 1.394a3.53 3.53 0 01-3.19 2.399zm36.119-16.415h-6.623v18.518h2.771v-7.022h3.852a5.766 5.766 0 006.176-5.748 5.763 5.763 0 00-6.176-5.748zm0 8.889h-3.926v-6.311h3.926a3.171 3.171 0 010 6.34v-.03zm17.155-2.593a5.185 5.185 0 00-4.933 2.83l2.459 1.022a2.609 2.609 0 012.519-1.348 2.668 2.668 0 012.963 2.385v.178a6.238 6.238 0 00-2.963-.711c-2.652 0-5.334 1.481-5.334 4.178a4.29 4.29 0 002.906 3.86 4.286 4.286 0 001.687.214 3.894 3.894 0 003.526-1.822h.104v1.481h2.666v-7.17c.03-3.29-2.429-5.097-5.6-5.097zm-.385 10.119c-.918 0-2.178-.46-2.178-1.57 0-1.482 1.571-1.986 2.963-1.986a4.982 4.982 0 012.534.623 3.36 3.36 0 01-3.319 2.933zm15.674-9.748l-3.17 8.03h-.104l-3.274-8.03h-2.963l4.919 11.23L175.911 50h2.874l7.6-17.467-3.126.06zm-24.904 11.851h2.771V25.926h-2.771v18.518z",fill:"#fff"}),n.createElement("path",{d:"M15.452 11.17a2.963 2.963 0 00-.682 2.074v32.77a2.964 2.964 0 00.682 2.075l.104.118L33.91 29.852v-.445l-18.355-18.34-.104.103z",fill:"url(#logo-google-play-black_svg__paint0_linear_55995_43169)"}),n.createElement("path",{d:"M40.03 35.97l-6.119-6.118v-.445l6.119-6.074h.148l7.244 4.119c2.074 1.17 2.074 3.096 0 4.281l-7.244 4.163-.148.074z",fill:"url(#logo-google-play-black_svg__paint1_linear_55995_43169)"}),n.createElement("path",{d:"M40.178 35.882L33.91 29.63l-18.46 18.459a2.415 2.415 0 003.082.104l21.645-12.311z",fill:"url(#logo-google-play-black_svg__paint2_linear_55995_43169)"}),n.createElement("path",{d:"M40.178 23.333L18.533 11.037a2.4 2.4 0 00-3.081.089l18.46 18.504 6.266-6.297z",fill:"url(#logo-google-play-black_svg__paint3_linear_55995_43169)"}),n.createElement("path",{opacity:.2,d:"M40.03 35.748L18.532 47.97a2.489 2.489 0 01-2.963 0l-.103.104.103.119a2.489 2.489 0 002.963 0L40.178 35.88l-.148-.133z",fill:"#000"}),n.createElement("path",{opacity:.12,d:"M15.452 47.881a2.963 2.963 0 01-.682-2.089v.223a2.963 2.963 0 00.682 2.074l.104-.104-.104-.104zM47.422 31.556l-7.407 4.192.148.134 7.245-4.119a2.592 2.592 0 001.481-2.133 2.8 2.8 0 01-1.467 1.926z",fill:"#000"}),n.createElement("path",{opacity:.25,d:"M18.533 11.289l28.89 16.489a2.798 2.798 0 011.48 1.926 2.593 2.593 0 00-1.48-2.134l-28.89-16.488c-2.074-1.186-3.763-.208-3.763 2.162v.223c0-2.37 1.704-3.348 3.763-2.178z",fill:"#fff"}))),Gr||(Gr=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-google-play-black_svg__paint0_linear_55995_43169",x1:32.282,y1:12.904,x2:7.422,y2:37.763,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#00A0FF"}),n.createElement("stop",{offset:.01,stopColor:"#00A1FF"}),n.createElement("stop",{offset:.26,stopColor:"#00BEFF"}),n.createElement("stop",{offset:.51,stopColor:"#00D2FF"}),n.createElement("stop",{offset:.76,stopColor:"#00DFFF"}),n.createElement("stop",{offset:1,stopColor:"#00E3FF"})),n.createElement("linearGradient",{id:"logo-google-play-black_svg__paint1_linear_55995_43169",x1:50.118,y1:29.63,x2:14.267,y2:29.63,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#FFE000"}),n.createElement("stop",{offset:.41,stopColor:"#FFBD00"}),n.createElement("stop",{offset:.78,stopColor:"orange"}),n.createElement("stop",{offset:1,stopColor:"#FF9C00"})),n.createElement("linearGradient",{id:"logo-google-play-black_svg__paint2_linear_55995_43169",x1:36.77,y1:33.037,x2:3.052,y2:66.741,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#FF3A44"}),n.createElement("stop",{offset:1,stopColor:"#C31162"})),n.createElement("linearGradient",{id:"logo-google-play-black_svg__paint3_linear_55995_43169",x1:10.8,y1:.267,x2:25.852,y2:15.319,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#32A071"}),n.createElement("stop",{offset:.07,stopColor:"#2DA771"}),n.createElement("stop",{offset:.48,stopColor:"#15CF74"}),n.createElement("stop",{offset:.8,stopColor:"#06E775"}),n.createElement("stop",{offset:1,stopColor:"#00F076"})),n.createElement("clipPath",{id:"logo-google-play-black_svg__clip0_55995_43169"},n.createElement("path",{fill:"#fff",d:"M0 0h200v59.259H0z"})))))},lpaBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,an);return n.createElement("svg",rn({viewBox:"0 0 186 74",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,$r||($r=n.createElement("path",{d:"M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"})))},lpaColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,en);return n.createElement("svg",tn({viewBox:"0 0 186 74",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Jr||(Jr=n.createElement("path",{d:"M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476z",fill:"#008375"})),Kr||(Kr=n.createElement("path",{d:"M84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z",fill:"#000"})))},lpaWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,cn);return n.createElement("svg",on({viewBox:"0 0 186 74",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ln||(ln=n.createElement("path",{d:"M44.43 13.745c-3.302-2.913-7.002-4.835-11.527-5.58-5.565-.93-9.692.404-12.047 1.179-.489.155-.55.465-.55.868-.03 1.023.397 1.829.734 2.139.367.34.734.154 1.284-.032 2.17-.744 5.167-1.27 8.316-.899 2.997.341 5.779 1.271 7.858 2.45-2.935.433-7.338 1.58-11.955 4.959-3.791-.217-8.56.31-13.85 3.007C2.664 26.92-3.634 39.846 2.297 53.919c2.416 5.703 7.889 10.973 14.279 12.864 3.73 1.116 7.063 1.023 7.95.96.275.218.733.559 1.284.93 8.958 6.014 17.213 4.805 22.075 2.108 4.464-2.48 10.395-8.71 10.579-19.56 8.285-8.09 6.726-17.42 5.625-21.388-2.599-9.454-11.282-15.437-19.66-16.088zm9.54 33.478c.03.713-.276 1.023-1.102 1.612-1.1.775-2.782 1.705-4.433 2.232-.214.062-.306-.186-.245-.341.214-.403.52-1.023.704-1.426.367-.806.733-1.643 1.04-2.449.641-1.674 1.283-3.844 1.68-5.61.062-.28.245-.31.337-.155.184.279.795 1.673 1.223 3.068.459 1.488.764 2.666.795 3.07zm-8.562.961c-.642 1.333-1.223 2.449-1.834 3.224-.367.465-2.783 1.302-7.247-.62-3.118-1.333-4.892-2.728-7.552-6.262-.611-.837-1.1-1.55-1.437-2.077-.367-.588-.55-1.053-1.59-.837-.764.155-2.385.806-3.271 2.14-.337.526-.092.96.214 1.456.58.992 1.468 2.17 2.293 3.162 2.905 3.534 6.574 6.51 10.885 7.998.58.185 1.681.495 2.17.62.337.093.49.495.306.681-1.131 1.24-4.066 3.255-4.953 3.72-2.14 1.116-4.311 1.891-5.931 2.139-.55.093-1.07.186-1.835-.465-.948-.837-1.804-1.829-2.568-2.82-1.498-1.985-2.66-4.248-3.455-6.603-1.651-4.867-1.835-10.168-.703-15.158 1.04-4.619 3.18-8.959 6.298-12.492.428-.496 2.049-2.108 2.538-2.45.397-.247.917-.495 2.201-.247 2.08.434 5.565 1.457 9.295 3.782 4.984 3.1 7.827 6.54 8.714 7.656.703.899.734 1.519.611 2.51-.428 4.185-2.018 8.587-3.149 10.943zM43.39 18.178c.245.031.52.093.887.589.703.992 1.865 3.007 2.323 4.06.826 1.985 1.468 4.526 1.743 5.797.061.31-.183.248-.275.186-.275-.31-.856-.806-1.04-.96-.855-.869-3.332-2.883-6.237-4.588-2.599-1.52-5.656-2.76-6.91-3.1-.153-.031-.214-.279-.03-.372.55-.248 2.323-.93 4.464-1.333 1.65-.31 3.516-.434 5.075-.279zM4.132 46.696c-1.07-6.664.917-13.205 5.228-17.452 2.324-2.293 5.137-4.122 8.225-5.145.917-.31 2.568-.744 3.669-.93.306-.031.397.34.214.527-1.04 1.116-2.507 3.44-2.966 4.215-3.577 6.045-5.136 13.33-4.403 20.335.887 8.648 5.106 13.856 5.779 14.755.153.217.306.589-.03.651-.062 0-.398-.062-.887-.155-9.57-2.139-13.82-10.57-14.83-16.8zm27.212 20.242c-.367-.155-.337-.434 0-.558.947-.341 2.69-1.054 3.516-1.52a26.587 26.587 0 004.647-3.223c.734-.62 2.293-2.046 3.21-3.13.306-.373.826-1.024 1.835-1.148 1.957-.217 2.538-.31 3.914-.65 1.314-.342 3.577-1.147 5.075-1.984.184-.093.49 0 .398.465-.673 3.378-2.997 8.586-7.155 11.252-4.8 3.162-10.395 2.82-15.44.496zm26.63-23.528c-.244.403-.611.31-.764-.03-.122-.373-.275-.9-.398-1.272-.642-1.797-1.436-3.564-2.415-5.207a56.94 56.94 0 00-1.62-2.542c-.367-.558-.367-.837-.367-1.519-.03-3.875-1.223-9.206-3.119-12.647-.183-.341.092-.558.306-.465 5.106 2.387 7.858 5.89 9.172 9.206 2.936 7.378.52 12.275-.795 14.476zM84.349 38.204c0-2.356-1.804-3.472-4.158-3.472h-3.578v11.005h2.324V41.8h.978c2.722 0 4.434-1.21 4.434-3.596zm-2.324.031c0 1.209-.611 1.829-2.079 1.829h-1.009V36.53h1.07c1.437-.03 2.018.59 2.018 1.705zm4.892 3.968h5.014c.276-2.976-.947-4.712-3.424-4.712-2.202 0-3.914 1.643-3.914 4.185 0 2.573 1.498 4.247 4.158 4.247 1.621 0 2.447-.465 2.966-.775l-.703-1.426c-.397.186-.978.558-2.079.558-1.284 0-1.896-.837-2.018-2.077zm0-1.488c.153-1.054.673-1.643 1.59-1.643.978 0 1.345.744 1.376 1.643h-2.966zm11.557-3.007c-.183-.093-.489-.217-1.07-.217-1.009 0-1.65.682-1.987 1.302v-1.085h-2.17v8.029h2.17v-5.053c.183-.372.764-1.209 1.712-1.209.459 0 .703.093.826.186l.52-1.953zm3.578 1.612h1.895v-1.643h-1.895v-.65c0-1.055.397-1.582 1.284-1.582.581 0 .948.155 1.101.217l.489-1.643c-.184-.124-.765-.372-1.927-.372-2.017 0-3.118 1.302-3.118 3.224v.837h-1.193v1.643h1.193v6.417h2.171V39.32zm10.242 2.325c0-2.077-1.253-4.185-4.005-4.185s-3.944 2.17-3.944 4.247 1.192 4.185 3.975 4.185c2.751.03 3.974-2.201 3.974-4.247zm-2.293.093c0 1.488-.428 2.51-1.681 2.51-1.223 0-1.713-1.084-1.713-2.603 0-1.488.398-2.542 1.621-2.542 1.253 0 1.773 1.116 1.773 2.635zm8.653-4.03c-.184-.093-.489-.217-1.07-.217-1.009 0-1.651.682-1.988 1.302v-1.085h-2.17v8.029h2.17v-5.053c.184-.372.765-1.209 1.713-1.209.458 0 .703.093.825.186l.52-1.953zm7.307 1.054c-.305-.744-.917-1.27-2.048-1.27-1.284 0-1.957.712-2.385 1.177v-.992h-2.11v8.029h2.171V40.28c.153-.217.673-.992 1.468-.992.642 0 .917.403.917 1.209v5.177h2.171v-5.487c.305-.372.795-.899 1.467-.899.704 0 .948.434.948 1.209v5.177h2.171v-5.642c0-1.488-.581-2.604-2.263-2.604-1.131.062-1.865.558-2.507 1.333zm8.622-1.085h-2.17v8.029h2.17v-8.029zm.245-2.356c0-.682-.581-1.302-1.345-1.302-.765 0-1.315.59-1.315 1.302 0 .713.55 1.333 1.315 1.333a1.34 1.34 0 001.345-1.333zm8.714 10.385v-5.642c0-1.488-.642-2.604-2.385-2.604-1.315 0-2.11.713-2.538 1.21v-.993h-2.109v8.029h2.17v-5.394c.153-.217.795-.992 1.621-.992.795 0 1.07.403 1.07 1.209v5.177h2.171zm6.084-8.029c-.397-.124-.886-.186-1.406-.186-2.202 0-3.516 1.178-3.516 2.914 0 1.054.52 1.89 1.406 2.418-.458.279-.886.744-.886 1.519 0 .589.275.96.703 1.209-.795.434-1.346 1.084-1.346 1.953 0 1.456 1.315 2.138 3.486 2.138 2.599 0 4.342-1.209 4.342-2.914 0-2.386-2.079-2.386-3.731-2.48-1.131-.061-1.589-.154-1.589-.588 0-.217.152-.372.305-.465.306.062.612.093.948.093 2.202 0 3.425-1.178 3.425-2.914 0-.465-.092-.899-.306-1.302h1.07v-1.426h-2.905v.031zm-1.406 4.216c-.887 0-1.437-.558-1.437-1.488 0-.93.55-1.488 1.437-1.488s1.437.558 1.437 1.488c0 .93-.52 1.488-1.437 1.488zm-.917 4.092c.336.062.703.093 1.07.124 1.162.093 1.895.062 1.895.898 0 .682-.733 1.178-2.079 1.178-1.1 0-1.559-.434-1.559-1.085.031-.465.245-.837.673-1.115zm11.863-2.325h4.341l.734 2.077h2.507l-4.25-11.005h-2.232l-4.127 11.005h2.323l.704-2.077zm3.669-1.86h-3.027l.917-2.635c.336-.93.55-1.767.581-1.89h.031c.03.123.244.96.58 1.89l.918 2.635zm9.937-4.092c-.184-.093-.49-.217-1.071-.217-1.009 0-1.651.682-1.987 1.302v-1.085h-2.171v8.029h2.171v-5.053c.184-.372.764-1.209 1.712-1.209.459 0 .704.093.826.186l.52-1.953zm1.498 1.612v4.092c0 1.55.642 2.51 2.507 2.51.978 0 1.651-.278 1.987-.464l-.489-1.643c-.153.093-.581.31-1.039.31-.612 0-.795-.341-.795-1.147V39.32h1.865v-1.643h-1.865v-2.325H174.3v2.325h-1.284v1.643h1.254zm10.732 4.03c0-1.364-.918-1.922-2.171-2.45-.918-.371-1.621-.526-1.621-1.053 0-.434.337-.713 1.101-.713s1.376.31 1.682.527l.764-1.488c-.367-.217-1.192-.65-2.538-.65-1.804 0-2.966.96-2.966 2.448 0 1.209.673 1.86 1.774 2.387 1.131.558 1.987.682 1.987 1.24 0 .465-.458.713-1.315.713-.886 0-1.651-.434-1.956-.651l-.734 1.519c.489.34 1.406.744 2.813.744 2.018 0 3.18-.9 3.18-2.573zM76.72 29.733h5.228v-.775h-4.342V18.73h-.886v11.004zm7.246-9.516c.367 0 .642-.31.642-.682a.65.65 0 00-.642-.65.65.65 0 00-.642.65c0 .372.275.682.642.682zm-.428 9.516h.856V21.86h-.856v7.873zm5.565.186c2.384 0 3.852-1.922 3.852-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.899V17.83h-.856V29.3c.581.371 1.437.62 2.355.62zm.03-.744c-.611 0-1.162-.124-1.529-.31v-5.517c.428-.496 1.223-.9 1.896-.9 1.896 0 2.538 1.644 2.538 3.349.03 1.642-.917 3.378-2.905 3.378zm5.779.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.08 1.55V21.89h-.886v7.842zm6.604.186c.917 0 1.804-.465 2.354-1.178.031.28.061.744.123.992h.856c-.092-.34-.153-.899-.153-1.58v-3.968c0-1.705-.887-2.511-2.477-2.511-1.009 0-1.865.34-2.537.992l.458.589c.642-.62 1.284-.837 2.018-.837 1.162 0 1.712.589 1.712 1.86v.899h-.367c-1.804 0-4.097.589-4.097 2.697-.06 1.24.826 2.045 2.11 2.045zm.122-.744c-.672 0-1.406-.465-1.406-1.332 0-1.457 1.467-1.984 3.21-1.984h.367v2.107c-.581.775-1.315 1.21-2.171 1.21zm5.32.558h.856v-5.486c.215-.465.918-1.736 1.988-1.736.336 0 .52.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.856v7.842h-.031zm4.77 3.782c1.682 0 2.293-1.178 2.844-2.666l3.332-9.02h-.886l-2.385 6.757-2.446-6.757h-.918l2.905 7.811-.397 1.116c-.459 1.24-.918 1.984-2.049 1.984-.306 0-.428-.03-.55-.062l-.123.713c.153.093.337.124.673.124zm11.588-3.782h.826v-7.191h2.017v-.682h-2.017v-1.24c0-1.426.58-2.17 1.773-2.17.458 0 .825.124.978.217l.214-.744c-.214-.093-.611-.217-1.192-.217-1.712 0-2.63 1.085-2.63 2.883v1.333h-1.345v.682h1.345v7.13h.031zm6.879.186c2.446 0 3.547-2.17 3.547-4.153 0-1.953-1.131-4.092-3.577-4.092-2.446 0-3.486 2.139-3.486 4.123.031 1.983 1.101 4.122 3.516 4.122zm.031-.744c-1.743 0-2.63-1.611-2.63-3.41 0-1.766.795-3.347 2.569-3.347 1.773 0 2.69 1.612 2.69 3.379 0 1.797-.856 3.378-2.629 3.378zm5.473.558h.856v-5.486c.214-.465.917-1.736 1.987-1.736.337 0 .52.062.642.124l.214-.806c-.122-.062-.397-.124-.733-.124-1.101 0-1.804.96-2.079 1.55V21.89h-.857v7.842h-.03zm10.793.186a2.65 2.65 0 001.498-.465l-.336-.65c-.153.123-.612.371-1.07.371-.704 0-.948-.434-.948-1.24v-5.362h1.987v-.682h-1.987v-2.263h-.856v2.232h-1.315v.682h1.315v5.424c0 1.24.55 1.953 1.712 1.953zm3.149-.186h.856V24c.275-.434 1.223-1.55 2.385-1.55 1.162 0 1.59.713 1.59 1.89v5.394h.856v-5.58c0-1.425-.642-2.48-2.263-2.48-1.314 0-2.201.9-2.568 1.427v-5.27h-.856v11.903zm11.068.186c1.254 0 2.14-.434 2.63-.806l-.367-.682c-.428.341-1.254.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.186h5.351c.031-.155.031-.28.031-.434 0-2.015-1.071-3.441-2.936-3.441-2.079 0-3.332 1.829-3.332 4.03 0 2.293 1.1 4.215 3.485 4.215zm-2.538-5.083c.214-1.364 1.009-2.418 2.355-2.418 1.467 0 2.079 1.209 2.109 2.418h-4.464zM76.687 12.688h.825V3.14l6.513 9.548h.825V1.684h-.856v9.485l-6.451-9.485h-.887v11.004h.03zm13.178.155c1.253 0 2.14-.434 2.63-.806l-.368-.682c-.428.34-1.253.744-2.232.744-1.865 0-2.599-1.643-2.63-3.44v-.187h5.351c.031-.155.031-.279.031-.434 0-2.015-1.07-3.44-2.935-3.44-2.08 0-3.333 1.828-3.333 4.03 0 2.293 1.1 4.215 3.486 4.215zM87.327 7.79c.214-1.364 1.009-2.418 2.354-2.418 1.468 0 2.08 1.21 2.11 2.418h-4.464zm8.5 4.898h.795l2.11-6.634 2.109 6.634h.795l2.354-7.874h-.856l-1.895 6.572-2.049-6.572h-.825l-2.049 6.54-1.896-6.54h-.917l2.324 7.874zm15.257 0h.886V8.534l3.608-6.85h-.917l-3.088 5.951h-.031l-3.088-5.951h-1.009l3.639 6.85v4.154zm7.093.155c2.446 0 3.547-2.17 3.547-4.154 0-1.953-1.132-4.092-3.578-4.092-2.445 0-3.485 2.14-3.485 4.123 0 2.015 1.07 4.123 3.516 4.123zm0-.744c-1.773 0-2.629-1.612-2.629-3.41 0-1.767.795-3.348 2.568-3.348 1.773 0 2.691 1.612 2.691 3.38 0 1.797-.857 3.378-2.63 3.378zm5.167.589h.856V7.2c.214-.465.918-1.736 1.988-1.736.336 0 .519.062.642.124l.214-.806c-.122-.062-.398-.124-.734-.124-1.101 0-1.804.961-2.079 1.55V4.845h-.887v7.843zm9.723 0h1.07l-3.608-4.433 3.425-3.44h-1.07l-3.394 3.44 3.577 4.433zm-4.525 0h.856V.816h-.856v11.872zm11.007 0h.887v-4.68h1.376c2.446 0 3.821-1.24 3.821-3.225 0-1.953-1.437-3.1-3.699-3.1h-2.385v11.005zm.887-5.456V2.46h1.376c2.079 0 2.874.991 2.874 2.355 0 1.457-.857 2.418-2.905 2.418h-1.345zm8.866 5.61c1.315 0 2.202-.867 2.569-1.456 0 .434.061 1.023.122 1.302h.856c-.092-.31-.153-.9-.153-1.52V4.815h-.856v5.704c-.275.465-1.223 1.58-2.385 1.58-1.192 0-1.59-.743-1.59-1.89V4.814h-.856v5.549c0 1.426.642 2.48 2.293 2.48zm8.072 0c2.385 0 3.853-1.921 3.853-4.153 0-2.294-1.07-4.092-3.302-4.092-.795 0-1.56.372-2.049.9V.753h-.856v11.469c.55.403 1.406.62 2.354.62zm.031-.743c-.612 0-1.162-.124-1.498-.31V6.302c.428-.496 1.223-.899 1.895-.899 1.896 0 2.538 1.643 2.538 3.348-.031 1.643-.978 3.348-2.935 3.348zm5.442.589h.856V.816h-.856v11.872zm3.73-9.548c.367 0 .642-.31.642-.681a.65.65 0 00-.642-.651.65.65 0 00-.642.65c0 .403.306.682.642.682zm-.428 9.548h.856V4.814h-.856v7.874zm5.901.155c1.162 0 1.988-.434 2.416-.806l-.367-.651c-.337.31-1.101.713-1.988.713-1.712 0-2.476-1.674-2.476-3.41 0-1.829.795-3.348 2.507-3.348.856 0 1.437.341 1.896.713l.428-.62c-.428-.372-1.162-.837-2.324-.837-1.987 0-3.424 1.612-3.424 4.123 0 2.139 1.1 4.123 3.332 4.123z"})))},mlnBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,hn);return n.createElement("svg",dn({viewBox:"0 0 300 71",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,nn||(nn=n.createElement("g",{clipPath:"url(#logo-mln-black_svg__clip0_51609_40290)"},n.createElement("path",{d:"M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"}))))},mlnWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,zn);return n.createElement("svg",yn({viewBox:"0 0 300 71",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,sn||(sn=n.createElement("g",{clipPath:"url(#logo-mln-white_svg__clip0_51609_40290)"},n.createElement("path",{d:"M0 66.115c3.741-4.266 7.607-8.432 11.173-12.871.254-.504.922-1.196 1.053-1.301.44-.354.774-.943 1.274-1.443.5 0 1.346.528 1.904.626 1.391.63.725.269 1.555.63a52.471 52.471 0 0030.7 3.422c15.464-2.48 30.702-6.175 46.065-9.3 9.726-1.983 19.477-3.819 29.528-2.802a32.053 32.053 0 0114.739 4.628 31.83 31.83 0 0110.824 10.97c.25.398.549.794.923 1.365.349-.37.667-.768.948-1.19 6.759-11.21 17.133-15.946 29.928-16.145 12.245-.198 23.992 2.877 35.813 5.431 11.323 2.48 22.67 4.96 34.118 6.795a57.052 57.052 0 0035.439-4.588l14.091 16.839c-5.163 1.091-9.702 2.48-14.291 2.976-17.906 2.48-35.215-.843-52.373-5.53-12.719-3.447-25.389-7.118-38.258-9.92-10.3-2.306-20.725-2.48-30.526 2.678a37.93 37.93 0 00-12.869 11.185l-1.646 2.182c-3.167-3.273-5.96-6.745-9.302-9.572-7.781-6.547-17.109-8.358-27.085-7.688-13.592.917-26.411 5.233-39.355 8.952a201.691 201.691 0 01-38.058 8.184A89.37 89.37 0 012.62 67.9c-.823-.248-1.721-.347-2.494-.52L-1 67l1-.885zM15.57 30h4.991V11.78h.372L27.798 30h3.507l6.865-18.22h.371V30h4.991V3.226h-6.42l-7.385 19.593h-.333L21.99 3.226h-6.42V30zm36.367 7.2c5.047 0 7.738-1.82 9.556-7.219l6.958-20.41h-5.715L58.45 25.046h-.37L53.792 9.57h-5.956L55.017 30l-.185.78c-.39 1.595-1.503 2.337-3.433 2.337-.5 0-1.039-.018-1.41-.055v4.082c.631.037 1.318.055 1.949.055zM72.757 30h17.516v-4.62H78.359V3.226h-5.603V30zM97.582 6.436c1.67 0 3.043-1.336 3.043-3.006A3.029 3.029 0 0097.582.405c-1.67 0-3.061 1.336-3.061 3.025 0 1.67 1.391 3.006 3.061 3.006zM94.855 30h5.417V9.571h-5.418V30zm22.933.315c5.103 0 8.294-3.989 8.294-10.52v-.037c0-6.568-3.117-10.52-8.294-10.52-2.802 0-5.084 1.372-6.123 3.599h-.334V1.76h-5.418V30h5.418v-3.173h.334c1.058 2.208 3.229 3.488 6.123 3.488zm-1.855-4.49c-2.858 0-4.658-2.264-4.658-6.011v-.038c0-3.748 1.819-6.049 4.658-6.049 2.857 0 4.638 2.301 4.638 6.03v.038c0 3.766-1.762 6.03-4.638 6.03zM130.479 30h5.418V18.57c0-2.894 1.949-4.657 5.029-4.657.835 0 1.67.13 2.486.316V9.497a8.113 8.113 0 00-2.022-.26c-2.654 0-4.509 1.3-5.159 3.507h-.334V9.571h-5.418V30zm21.747.315c2.671 0 4.824-1.131 5.863-3.024h.334V30h5.344V16.047c0-4.36-3.062-6.921-8.48-6.921-5.14 0-8.516 2.375-8.943 5.956l-.019.167h5.01l.037-.074c.427-1.206 1.67-1.893 3.618-1.893 2.227 0 3.433 1.002 3.433 2.765v1.688l-4.936.297c-5.084.297-7.923 2.45-7.923 6.123v.037c0 3.711 2.765 6.123 6.662 6.123zm-1.373-6.457v-.037c0-1.484 1.131-2.356 3.451-2.505l4.119-.26v1.504c0 2.152-1.874 3.803-4.379 3.803-1.874 0-3.191-.946-3.191-2.505zM169.073 30h5.418V18.57c0-2.894 1.948-4.657 5.029-4.657.834 0 1.669.13 2.486.316V9.497a8.115 8.115 0 00-2.023-.26c-2.653 0-4.508 1.3-5.158 3.507h-.334V9.571h-5.418V30zm19.353 7.2c5.047 0 7.737-1.82 9.555-7.219l6.958-20.41h-5.714l-4.287 15.475h-.371L190.281 9.57h-5.956L191.506 30l-.186.78c-.389 1.595-1.503 2.337-3.432 2.337-.501 0-1.039-.018-1.41-.055v4.082c.63.037 1.317.055 1.948.055zm20.818-7.2h5.362V12.874h.297L227.298 30h4.639V3.226h-5.363v17.051h-.297L213.92 3.226h-4.676V30zm36.609 0h5.603V19.999l9.333-16.773h-6.067l-5.882 11.262h-.334l-5.901-11.262h-6.067l9.315 16.773V30zm29.279.686c6.457 0 11.04-3.822 11.615-9.425l.019-.204h-5.455l-.038.148c-.593 2.858-2.913 4.732-6.123 4.732-4.23 0-6.846-3.563-6.846-9.315v-.037c0-5.752 2.616-9.296 6.828-9.296 3.191 0 5.585 2.041 6.16 5.047v.13h5.455v-.223c-.519-5.659-5.269-9.704-11.615-9.704-7.775 0-12.562 5.362-12.562 14.046v.037c0 8.684 4.806 14.064 12.562 14.064z"}))))},nyplFullBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,En);return n.createElement("svg",On({xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 966.787 543.733","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,vn||(vn=n.createElement("path",{d:"M485.288 7.284h7.269l53.44 77.4v-77.4h7v89.65h-6.867l-53.978-77.94v77.94h-6.864V7.284m126.535 49.67c-.134-9.691-5.114-19.652-17.365-19.652-11.171 0-17.634 8.614-19.518 19.653zm-44.692 7.27c0-18.172 10.5-32.98 27.597-32.98 16.422 0 25.442 13.192 24.094 31.498h-44.287v1.482c.136 14.673 6.328 28.134 21.674 28.134 8.21 0 15.076-3.366 18.576-6.059l2.96 5.52c-4.038 2.961-11.441 6.596-21.807 6.596-19.652 0-28.807-15.75-28.807-34.191m59.225-31.5h7.539l15.617 53.442 16.825-53.442h6.865L690.028 86.3l15.749-53.575h7.001l-19.385 64.21h-6.46l-17.366-54.112-17.365 54.112h-6.46l-19.386-64.21m148.337 30.422L744.676 7.284h8.345l25.44 48.459h.27l25.442-48.46h7.539l-29.75 55.863v33.788h-7.27V63.146m81.841 1.751c0-14.404-7.673-27.595-22.345-27.595-14.538 0-21.134 12.922-21.134 27.326 0 14.538 7.135 27.73 21.672 27.73 14.671 0 21.807-12.924 21.807-27.461zm-50.882 0c0-16.154 8.614-33.653 28.805-33.653 20.193 0 29.481 17.365 29.481 33.384 0 16.153-9.153 33.787-29.346 33.787-20.191 0-28.94-17.365-28.94-33.518m71.73-32.173h7v11.173c2.423-4.711 8.211-12.653 17.231-12.653 2.96 0 5.115.674 6.192 1.078l-1.75 6.594c-1.078-.404-2.558-.942-5.251-.942-8.884 0-14.673 10.5-16.421 14.27v44.69h-7.001v-64.21m51.013 28.134l28.135-28.134h8.75l-28.402 28.134 29.883 36.076h-8.75zM920.724.015h7v96.919h-7V.014m-416.725 187.38c17.095 0 24.094-7.808 24.094-19.654 0-11.173-6.73-19.25-23.826-19.25h-11.44v38.904zm-18.576-45.23h19.518c18.846 0 30.69 9.29 30.69 25.308 0 16.151-11.172 26.248-31.498 26.248h-11.307v38.094h-7.403v-89.65m61.513 70.805v-45.364h7v43.883c0 9.424 3.365 15.48 13.191 15.48 9.559 0 17.498-9.018 19.654-12.787v-46.576h6.999v51.825c0 5.115.538 9.962 1.212 12.384h-7.135c-.402-2.153-.942-7-.942-10.5-3.096 4.847-10.365 11.981-21.268 11.981-13.46 0-18.711-8.75-18.711-20.326m107.957-13.191c0-14-5.385-27.326-21-27.326-5.518 0-11.98 3.23-15.615 7.269v44.96c2.961 1.48 7.402 2.557 12.52 2.557 16.286 0 24.095-14.134 24.095-27.46zm-43.614 28.672v-93.555h6.999v38.634c3.904-4.443 10.232-7.404 16.827-7.404 18.305 0 27.19 14.672 27.19 33.383 0 18.038-12.115 33.787-31.768 33.787-7.672 0-14.806-1.884-19.248-4.845m65.416-93.555h7.001v96.92h-7v-96.92m27.862 32.71h7.134v64.21h-7.134zm-1.75-18.98c0-3.095 2.424-5.385 5.252-5.385 2.958 0 5.382 2.29 5.382 5.386s-2.424 5.52-5.382 5.52c-2.828 0-5.252-2.425-5.252-5.52m22.343 51.017c0-20.326 11.712-33.518 28.269-33.518 9.558 0 15.615 3.635 19.114 6.73l-3.635 5.115c-3.633-3.096-8.48-5.788-15.612-5.788-14.27 0-20.732 12.384-20.732 27.192 0 14.269 6.328 27.864 20.597 27.864 7.404 0 13.594-3.23 16.422-5.788l3.096 5.25c-3.5 3.096-10.23 6.595-19.923 6.595-18.441 0-27.596-16.422-27.596-33.652M483.403 366.697v-89.65h19.114v74.303H535.9v15.347h-52.498m66.689 0V301.14h18.036v65.558zm9.02-74.035c-6.328 0-10.906-4.981-10.906-10.77 0-5.654 4.578-10.5 10.905-10.5 6.327 0 11.037 4.846 11.037 10.5 0 5.789-4.71 10.77-11.037 10.77m42.67 60.17c1.21.403 4.037 1.482 9.018 1.482 9.961 0 15.883-7.404 15.883-20.865 0-12.25-4.17-19.788-13.864-19.788-5.652 0-9.961 3.634-11.037 4.98zm0-83.055v36.48c2.961-2.963 8.75-6.731 16.017-6.731 16.425 0 27.866 11.306 27.866 33.923 0 22.343-15.077 34.863-34.865 34.863-14.807 0-23.826-3.77-26.922-5.25v-93.285h17.904m94.224 47.114c-1.077-.672-3.097-1.482-6.868-1.482-7.94 0-12.651 7.002-14.267 9.961v41.327h-17.904V301.14h17.904v8.887c2.826-4.847 8.212-10.5 16.557-10.5 4.846 0 7.404.942 8.885 1.752l-4.307 15.613m45.362 20.728h-2.29c-10.498 0-17.767 3.1-17.767 10.77 0 4.846 3.905 6.865 7.941 6.865 6.463 0 10.232-3.77 12.116-5.787zm2.02 29.078c-.54-1.617-.942-4.98-1.079-7-2.96 3.5-9.153 8.615-18.44 8.615-11.174 0-19.788-6.73-19.788-18.442 0-17.096 17.634-23.288 34.998-23.288h2.289v-3.769c0-5.654-2.29-9.152-10.635-9.152-8.48 0-14.269 4.44-16.691 6.19l-7.808-10.901c3.904-3.5 12.52-9.424 26.52-9.424 17.903 0 26.383 6.866 26.383 24.23v23.557c0 8.883.941 15.209 1.884 19.384h-17.633m69.186-49.806c-1.076-.672-3.096-1.482-6.864-1.482-7.942 0-12.654 7.002-14.27 9.961v41.327h-17.904V301.14h17.904v8.887c2.828-4.847 8.212-10.5 16.558-10.5 4.844 0 7.403.942 8.884 1.752l-4.308 15.613m10.768-15.752h19.113l14.54 43.212h.673l13.326-43.212h18.442l-27.057 72.556c-5.789 15.48-12.654 24.499-30.556 24.499-5.52 0-8.75-.805-10.096-1.21l2.557-14.135c.942.27 2.423.672 6.327.672 9.153 0 12.384-4.44 14.94-11.441l2.423-6.73-24.632-64.21"})),mn||(mn=n.createElement("path",{d:"M244.07 275.908c-.632 3.292-2.639 9.649-5.848 10.062-3.233.413-5.562-3.053-7.881-4.352-3.912-2.182-9.444-3.61-14.556-5.302-4.41-1.462-10.457-3.27-12.23-7.479-2.657-6.265 3.55-9.229 8.02-10.605 4.21-1.293 7.292-1.78 12.78-2.036 8.075-.388 15.784.768 18.495 5.844 1.635 3.057 2.133 9.122 1.22 13.868zm74.12 4.038c-14.064-6.882-32.33-10.33-45.62-17.713-10.522-5.834-18.59-15.471-29.913-20.664-11.552-5.656-28.94-11.341-35.586-12.98-23.496-5.78-43.231 1.747-50.076 7.164-12.781 10.1-22.766 26.516-18.87 50.134 1.65 9.984 4.723 18.383 9.607 25.29 19.818 27.99 56.91 37.084 86.295 54.742 1.036.705 2.118.517 2.78-.383 4.935-7.258 8.947-13.1 17.26-16.558 8.44-3.524 21.722-2.327 33.174-1.77 11.83.573 24.6-.538 28.891-6.655 5.127-7.301 4.828-22.013-2.997-26.508-4.199-2.42-10.459-2.53-15.025-4.635-3.332-1.54-5.901-4.422-7.739-8.428-1.54-3.352-2.973-8.856-.976-12.447 1.84-3.308 6.475-2.372 10.199-1.506 7.38 1.694 19.711 3.49 26.811.376 2.092-1.068-5.386-6.076-8.216-7.459M20.98 299.71c.424-2.396.609-3.063 2.052-4.947 2.286-3.418 30.024-34.543 73.016-42.085 5.658-.811 9.734-.419 10.661 1.849 1.625 3.976-1.667 6.266-5.629 8.56-68.952 41.21-64.064 102.472-64.725 127.532.208 10.252-7.195 12.118-9.043 7.288-8.092-22.074-14.896-56.673-6.333-98.197m46.657-90.251c1.413-1.499 2.334-2.187 4.43-2.778 26.481-6.578 53.046-2.39 72.177 6.14 4.294 1.902 6.229 4.596 3.409 6.405-3.587 2.084-14.456 9.154-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.175-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.086M111.209 183c-5.798-.66-5.88-4.902-3.428-6.553 6.3-4.414 16.521-9.743 26.804-13.82 3.078-1.22 4.668-1.537 7.487-1.255 7.578.759 20.125 5.86 34.522 16.133 17.266 12.32 32.626 35.725 22.354 33.83-6.497-1.125-3.668-.816-11.283-1.652-7.781-.69-12.888.11-16.475-.256-1.562-.128-2.793-1.168-3.893-2.07-14.573-13.067-31.407-21.36-56.088-24.357",fill:"#fff"})),pn||(pn=n.createElement("path",{d:"M388.617 387.566c-1.555 4.852-3.401 10.939-7.359 8.115-7.351-5.47-23.692-15.988-39.517-21.825-.85-.19-.754-1.37-.454-2.035 1.122-2.485 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.878-2.401-8.718.048-2.779 1.354-5.69 1.622-8.97.783-9.49-11.194-17.403-17.731-20.452-14.83-6.924-30.59-13.117-46.607-21.568-9.041-4.769-16.297-15.23-23.552-20.845-7.327-5.654-30.879-14.995-40.292-17.482-2.125-.67-2.879-1.552-3.239-3.244-3.88-18.518-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.92 226.095 127.15 192.927 239.255",fill:"#fff"})),un||(un=n.createElement("path",{d:"M330.345 324.088c-.103-.73-.417-3.204-.415-3.715.008-1.305 2.691-3.081 3.942-4.074 1.897-1.51 4.093-3.17 5.532-3.895.52-.327.865.43.935.579 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.092-8.169-10.196-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.995m-65.426 48.855c1.14-3.291 2.466-5.23 5.024-6.83 4.814-3.02 12.815-3.15 20.538-3.678 7.482-.505 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.7 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.394 1.364 4.81 1.118 8.019-.716 9.258-8.235 13.78-9.589 22.434-.125 1.337-.353 3.273-1.12 4.042-5.742 5.844-17.097 4.615-27.362 3.582-3.674-.366-7.306-.466-9.791-1.65-1.794-.838-3.403-2.549-4.894-3.932-3.283-3.043-5.14-5.283-8.433-8.975-1.117-1.251-3.648-3.515-3.814-4.89-.142-1.318 1.27-5.103 1.756-6.491M85.152 482.06c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.823 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.017 76.884 95.676 21.963 28.57 29.272 49.386 29.172 54.993-.119 4.302-.944 7.045-8.483 6.408-39.764-3.151-78.206-19.638-105.843-43.441",fill:"#fff"})),fn||(fn=n.createElement("path",{d:"M107.885 347.889c-12.129-29.548-4.208-56.154 1.149-66.245 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.817 59.062 39.542 78.948 84.414 99.801 35.4 18.097 75.678 38.787 109.435 88.906 5.109 7.235 5.846 11.625.078 15.77-20.58 14.05-39.225 23.844-66.503 30.205-4.107.961-8.341.24-11.979-9.143-37.895-97.638-101.518-93.237-130.518-163.835m234.716 120.04c-5.77 5.767-9.041 1.246-10.927-2.457-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.372 2.735-5.053 4.143.332 6.857.105 11.414-1.854 3.855-1.655 8.272-7.06 10.475-14.824 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.494 21.184 20.827 23.404 25.464 1.409 2.952.06 4.956-.735 6.642-4.448 9.095-18.477 27.943-28.291 37.647",fill:"#fff"})),gn||(gn=n.createElement("path",{d:"M342.6 467.938c-5.768 5.766-9.04 1.245-10.926-2.458-8.08-17.18-15.971-31.56-28.698-45.488-2.205-2.235-.506-5.373 2.735-5.053 4.143.332 6.857.105 11.414-1.853 3.855-1.656 8.272-7.062 10.475-14.825 1.605-5.664 1.68-7.33 5.15-7.684.863-.082 2.442.136 3.399.412 4.224 1.202 8.76 4.653 12.074 7.196 8.501 6.493 21.184 20.826 23.404 25.465 1.409 2.951.06 4.955-.735 6.64-4.448 9.096-18.477 27.942-28.291 37.648zM107.91 347.859c-12.129-29.546-4.209-56.152 1.149-66.243 2.701-5.092 5.341-8.419 8.789-7.462 3.75 1.047 4.617 4.886 5.135 12.003 3.816 59.062 39.54 78.948 84.413 99.8 35.402 18.098 75.68 38.787 109.436 88.906 5.11 7.236 5.847 11.626.077 15.77-20.58 14.05-39.224 23.844-66.502 30.205-4.106.96-8.342.24-11.98-9.143-37.895-97.637-101.518-93.238-130.517-163.836zm-86.897-48.163c.426-2.396.612-3.062 2.054-4.946 2.286-3.417 30.023-34.543 73.017-42.084 5.656-.81 9.733-.419 10.66 1.849 1.625 3.976-1.667 6.268-5.628 8.56-68.953 41.21-64.065 102.472-64.725 127.532.208 10.25-7.195 12.118-9.044 7.288-8.092-22.074-14.896-56.674-6.334-98.199zm46.622-90.287c1.413-1.498 2.334-2.186 4.43-2.777 26.481-6.577 53.046-2.39 72.177 6.141 4.294 1.902 6.229 4.596 3.409 6.404-3.587 2.084-14.456 9.153-20.464 14.752-1.746 1.505-4.86 1.584-6.697 1.34-22.426-2.956-34.074-4.703-67.787 8.077-5.173 2.176-9.826-.784-7.445-4.85 4.489-8.04 14.927-21.49 22.377-29.087zm197.284 163.484c1.14-3.29 2.466-5.229 5.024-6.83 4.814-3.019 12.815-3.15 20.538-3.677 7.482-.506 15.477-.943 20.8-3.403 3.222-1.481 6.444-5.701 11.423-3.552 2.357 1.016 3.64 3.176 4.344 5.324.79 2.393 1.364 4.81 1.118 8.018-.716 9.259-8.235 13.78-9.589 22.434-.125 1.338-.353 3.274-1.12 4.043-5.742 5.844-17.097 4.615-27.362 3.581-3.674-.365-7.306-.465-9.791-1.649-1.794-.84-3.403-2.55-4.894-3.932-3.283-3.044-5.14-5.284-8.433-8.976-1.117-1.25-3.648-3.514-3.814-4.889-.142-1.319 1.27-5.104 1.756-6.492zm-153.71-189.94c-5.798-.662-5.88-4.902-3.428-6.553 6.3-4.415 16.521-9.744 26.804-13.821 3.078-1.22 4.668-1.538 7.487-1.254 7.578.759 20.125 5.86 34.522 16.132 17.266 12.32 32.626 35.724 22.354 33.83-6.497-1.126-3.668-.815-11.283-1.651-7.781-.69-12.888.108-16.475-.257-1.562-.127-2.793-1.168-3.893-2.068-14.573-13.068-31.407-21.361-56.088-24.358zm45.786 52.75c6.845-5.417 26.58-12.943 50.076-7.163 6.646 1.638 24.034 7.323 35.586 12.98 11.323 5.192 19.391 14.83 29.914 20.665 13.29 7.382 31.555 10.83 45.618 17.712 2.83 1.383 10.308 6.39 8.216 7.458-7.1 3.115-19.431 1.319-26.811-.376-3.724-.865-8.36-1.802-10.199 1.507-1.997 3.59-.565 9.094.976 12.446 1.838 4.007 4.407 6.888 7.739 8.428 4.566 2.105 10.826 2.216 15.025 4.636 7.825 4.495 8.124 19.206 2.997 26.507-4.29 6.116-17.06 7.227-28.891 6.656-11.452-.557-24.734-1.754-33.174 1.77-8.313 3.457-12.325 9.3-17.26 16.558-.662.9-1.744 1.088-2.78.382-29.384-17.658-66.477-26.752-86.295-54.742-4.884-6.907-7.957-15.305-9.607-25.289-3.896-23.618 6.089-40.035 18.87-50.135zm173.35 88.335c-.103-.73-.417-3.203-.415-3.714.008-1.305 2.691-3.081 3.942-4.075 1.897-1.51 4.093-3.169 5.532-3.894.52-.327.865.43.935.578 5.291 8.03 3.307 27.88-.515 37.318-.443.96-1.252 1.333-1.582.63-1.95-4.258-4.845-8.091-8.169-10.195-.613-.476-.66-1.468-.613-1.652 1.07-4.485 1.625-9.46.885-14.996zm58.272 63.479c-1.555 4.852-3.401 10.937-7.359 8.114-7.351-5.47-23.692-15.987-39.517-21.824-.85-.191-.754-1.37-.454-2.035 1.122-2.487 1.624-4.784 2.11-7.725.45-2.752 2.436-4.59 3.801-6.797 4.056-6.479 6.253-17.772 7.138-24.817.672-6.473.272-13.686-1.13-19.698-.599-2.568-2.45-5.879-2.401-8.719.048-2.778 1.354-5.689 1.622-8.969.783-9.49-11.194-17.402-17.731-20.453-14.83-6.923-30.59-13.115-46.607-21.566-9.041-4.769-16.297-15.231-23.552-20.846-7.327-5.653-30.879-14.996-40.292-17.48-2.125-.67-2.879-1.554-3.239-3.246-3.88-18.517-14.808-38.916-35.223-54.69-6.61-5.138.803-8.06 9.907-8.504 143.51-4.919 226.095 127.151 192.927 239.255zM85.152 482.01c-3.768-3.087-5.388-5.69-7.555-9.347-17.576-28.094-27.427-127.586-4.778-161.332 7.208-11.825 14.843-6.373 12.306 2.767-4.338 20.517-1.68 32.014 8.297 54.276 15.679 33.083 64.073 79.016 76.884 95.676 21.963 28.57 29.272 49.385 29.172 54.993-.119 4.302-.944 7.044-8.483 6.407-39.764-3.15-78.206-19.637-105.843-43.44zm120.73-352.236C92.439 129.775 0 222.018 0 336.73c0 114.706 93 207.004 206.01 207.004 114.711 0 207.544-92.25 207.544-206.957 0-114.715-92.966-207-207.671-207"})),bn||(bn=n.createElement("path",{d:"M215.816 276.316c5.112 1.692 10.642 3.12 14.554 5.302 2.319 1.299 4.648 4.765 7.883 4.352 3.208-.413 5.213-6.77 5.846-10.062.914-4.746.415-10.81-1.22-13.868-2.709-5.076-10.42-6.232-18.494-5.844-5.49.256-8.57.743-12.781 2.036-4.47 1.376-10.676 4.34-8.02 10.605 1.774 4.208 7.82 6.017 12.232 7.479"})))},nyplFullWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Sn);return n.createElement("svg",Tn({viewBox:"0 0 967 568",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xn||(xn=n.createElement("g",{clipPath:"url(#logo-nypl-full-white_svg__clip0_1147_1139)",fill:"#fff"},n.createElement("path",{d:"M251.237 291.137c-.698 3.641-2.919 10.677-6.472 11.135-3.576.456-6.155-3.379-8.719-4.818-4.33-2.413-10.451-3.994-16.107-5.865-4.88-1.616-11.571-3.62-13.531-8.276-2.942-6.93 3.928-10.211 8.872-11.733 4.659-1.433 8.068-1.97 14.142-2.254 8.934-.428 17.465.85 20.464 6.466 1.809 3.382 2.361 10.093 1.351 15.345zm82.012 4.469c-15.561-7.617-35.77-11.433-50.479-19.599-11.641-6.455-20.566-17.12-33.097-22.866-12.781-6.259-32.021-12.549-39.377-14.361-25.998-6.396-47.833 1.932-55.409 7.925-14.14 11.176-25.19 29.342-20.878 55.473 1.826 11.048 5.228 20.341 10.629 27.985 21.93 30.97 62.972 41.034 95.488 60.572 1.145.778 2.341.572 3.072-.423 5.461-8.034 9.901-14.498 19.1-18.322 9.339-3.899 24.035-2.576 36.705-1.957 13.093.629 27.224-.598 31.968-7.366 5.675-8.079 5.343-24.358-3.314-29.331-4.645-2.676-11.573-2.798-16.625-5.128-3.687-1.705-6.531-4.893-8.563-9.326-1.704-3.709-3.29-9.799-1.08-13.77 2.034-3.663 7.165-2.627 11.283-1.668 8.168 1.873 21.813 3.862 29.669.414 2.315-1.182-5.961-6.724-9.092-8.252zM4.386 317.474c.47-2.649.674-3.389 2.272-5.473 2.529-3.783 33.22-38.222 80.791-46.567 6.26-.899 10.772-.464 11.798 2.045 1.797 4.399-1.846 6.935-6.229 9.472C16.722 322.55 22.13 390.336 21.4 418.066c.23 11.341-7.962 13.409-10.007 8.064-8.954-24.425-16.482-62.708-7.007-108.656zm51.625-99.862c1.564-1.658 2.582-2.421 4.902-3.074 29.301-7.279 58.696-2.644 79.862 6.796 4.755 2.102 6.895 5.085 3.775 7.086-3.969 2.305-15.996 10.127-22.643 16.321-1.933 1.667-5.379 1.753-7.412 1.484-24.813-3.272-37.703-5.203-75.006 8.937-5.723 2.407-10.87-.868-8.237-5.366 4.967-8.898 16.516-23.78 24.76-32.184zm48.216-29.276c-6.415-.731-6.506-5.423-3.794-7.251 6.971-4.885 18.282-10.781 29.656-15.291 3.411-1.35 5.168-1.702 8.289-1.388 8.384.838 22.266 6.484 38.198 17.85 19.106 13.632 36.1 39.528 24.734 37.434-7.189-1.246-4.059-.904-12.485-1.828-8.611-.764-14.261.12-18.229-.284-1.729-.142-3.091-1.295-4.309-2.29-16.124-14.458-34.751-23.635-62.06-26.952z"}),n.createElement("path",{d:"M411.177 414.687c-1.719 5.368-3.764 12.1-8.142 8.979-8.135-6.055-26.216-17.689-43.726-24.149-.939-.209-.832-1.517-.502-2.252 1.242-2.75 1.797-5.294 2.335-8.548.497-3.046 2.694-5.079 4.205-7.522 4.488-7.169 6.92-19.661 7.899-27.458.743-7.161.301-15.142-1.251-21.795-.663-2.843-2.711-6.506-2.656-9.648.052-3.073 1.499-6.295 1.793-9.924.868-10.501-12.386-19.258-19.617-22.631-16.411-7.662-33.848-14.515-51.572-23.864-10.005-5.277-18.033-16.853-26.06-23.066-8.108-6.256-34.169-16.593-44.582-19.342-2.353-.741-3.186-1.719-3.584-3.592-4.293-20.489-16.389-43.06-38.975-60.514-7.314-5.686.887-8.918 10.961-9.41 158.795-5.443 250.175 140.692 213.474 264.736"}),n.createElement("path",{d:"M346.699 344.448c-.114-.808-.461-3.545-.458-4.111.009-1.442 2.976-3.406 4.361-4.506 2.098-1.671 4.529-3.507 6.122-4.309.574-.362.958.472 1.034.638 5.854 8.888 3.66 30.847-.571 41.292-.489 1.062-1.385 1.478-1.751.698-2.157-4.711-5.359-8.952-9.035-11.28-.682-.527-.734-1.625-.682-1.831 1.184-4.962 1.799-10.465.98-16.591zm-72.394 54.056c1.264-3.639 2.731-5.784 5.559-7.553 5.327-3.343 14.182-3.486 22.726-4.072 8.278-.556 17.125-1.044 23.014-3.764 3.568-1.64 7.133-6.308 12.639-3.931 2.608 1.123 4.031 3.514 4.807 5.891.875 2.646 1.511 5.322 1.24 8.872-.793 10.245-9.114 15.247-10.61 24.824-.142 1.48-.392 3.622-1.243 4.472-6.352 6.467-18.914 5.108-30.273 3.963-4.066-.403-8.086-.514-10.837-1.823-1.984-.93-3.764-2.821-5.412-4.353-3.635-3.368-5.689-5.845-9.334-9.93-1.233-1.384-4.033-3.89-4.217-5.411-.16-1.46 1.402-5.648 1.941-7.185zM75.395 519.246c-4.169-3.417-5.963-6.298-8.36-10.344-19.45-31.083-30.349-141.175-5.287-178.512 7.975-13.084 16.424-7.054 13.615 3.059-4.799 22.703-1.857 35.424 9.182 60.056 17.348 36.609 70.896 87.433 85.072 105.865 24.301 31.616 32.389 54.647 32.279 60.851-.13 4.76-1.045 7.795-9.385 7.09-44.001-3.488-86.535-21.728-117.116-48.065"}),n.createElement("path",{d:"M100.548 370.783c-13.42-32.694-4.658-62.132 1.272-73.299 2.988-5.635 5.91-9.316 9.724-8.256 4.151 1.157 5.11 5.406 5.683 13.281 4.222 65.353 43.753 87.356 93.401 110.43 39.174 20.024 83.741 42.918 121.092 98.373 5.653 8.007 6.469 12.864.088 17.45-22.776 15.546-43.404 26.383-73.589 33.422-4.541 1.063-9.229.265-13.253-10.116C203.035 444.031 132.634 448.9 100.548 370.783zM360.26 503.607c-6.382 6.383-10.006 1.382-12.089-2.719-8.941-19.01-17.674-34.919-31.756-50.332-2.437-2.471-.558-5.944 3.028-5.589 4.582.366 7.586.114 12.627-2.051 4.268-1.832 9.154-7.814 11.591-16.405 1.776-6.268 1.86-8.112 5.7-8.501.954-.089 2.702.149 3.761.453 4.674 1.332 9.693 5.152 13.36 7.964 9.406 7.185 23.439 23.046 25.895 28.177 1.56 3.267.068 5.482-.812 7.349-4.923 10.062-20.445 30.918-31.305 41.654zM476.671 7.388h7.369l54.269 78.566V7.388h7.088v90.997h-6.976l-54.777-79.13v79.13h-6.973V7.388zM605.125 57.78c-.159-9.84-5.183-19.917-17.64-19.917-11.322 0-17.904 8.725-19.814 19.917h37.454zm-45.387 7.396c0-18.458 10.686-33.49 28.009-33.49 16.703 0 25.843 13.385 24.463 32h-44.935v1.49c.114 14.876 6.412 28.542 21.992 28.542 8.322 0 15.295-3.397 18.839-6.13l3.037 5.607c-4.106 2.997-11.642 6.705-22.16 6.705-19.953 0-29.245-16.025-29.245-34.724zm60.783-31.973h7.649l15.861 54.242 17.063-54.242h7.008l17.041 54.384 16.026-54.384h7.088l-19.688 65.183h-6.519l-17.609-54.947-17.662 54.947h-6.572l-19.686-65.183zm151.272 30.876l-30.492-56.69h8.503l25.815 49.163h.223l25.823-49.163h7.664l-30.163 56.69v34.307h-7.373V64.077zm83.09 1.8c0-14.623-7.789-28.016-22.693-28.016-14.734 0-21.426 13.112-21.426 27.735 0 14.735 7.189 28.12 21.989 28.12 14.9 0 22.13-13.104 22.13-27.84zm-51.712 0c0-16.423 8.773-34.193 29.246-34.193 20.551 0 29.976 17.658 29.976 33.912 0 16.365-9.336 34.302-29.81 34.302-20.47 0-29.412-17.655-29.412-34.022zm72.807-32.676h7.14v11.36c2.433-4.785 8.329-12.877 17.496-12.877 3.038 0 5.173.675 6.298 1.124l-1.752 6.692c-1.117-.448-2.636-.956-5.333-.956-9.043 0-14.906 10.63-16.709 14.454v45.386h-7.14V33.202zm51.796 28.572L956.4 33.202h8.828l-28.847 28.572 30.366 36.61h-8.88l-30.093-36.61zM920.048.008h7.106v98.377h-7.106V.008zM495.649 190.396c17.321 0 24.463-7.929 24.463-19.964 0-11.361-6.861-19.566-24.183-19.566h-11.64v39.53h11.36zm-18.881-45.946h19.837c19.122 0 31.158 9.448 31.158 25.701 0 16.418-11.361 26.658-32.002 26.658h-11.472v38.692h-7.521V144.45zm62.463 71.929v-46.096h7.087v44.577c0 9.563 3.428 15.691 13.384 15.691 9.731 0 17.77-9.165 19.965-12.991v-47.277h7.085v52.623c0 5.171.563 10.121 1.237 12.595h-7.243c-.403-2.249-.956-7.122-.956-10.686-3.126 4.949-10.528 12.188-21.567 12.188-13.663 0-18.992-8.926-18.992-20.624zM648.8 202.942c0-14.222-5.473-27.73-21.332-27.73-5.566 0-12.146 3.263-15.826 7.369v45.667c3.004 1.516 7.503 2.531 12.705 2.531 16.524 0 24.453-14.343 24.453-27.837zm-44.276 29.127v-94.987h7.118v39.199c3.961-4.499 10.372-7.479 17.065-7.479 18.613 0 27.613 14.895 27.613 33.853 0 18.337-12.316 34.348-32.228 34.348-7.814 0-15.07-1.916-19.568-4.934zm67.747-94.987h7.143v98.419h-7.143v-98.419zm28.278 33.201h7.207v65.218h-7.207v-65.218zm-1.79-19.253c0-3.149 2.474-5.456 5.345-5.456 3.033 0 5.508 2.307 5.508 5.456 0 3.148-2.475 5.585-5.508 5.585-2.871 0-5.345-2.437-5.345-5.585zm22.718 51.796c0-20.641 11.866-34.024 28.683-34.024 9.73 0 15.858 3.654 19.39 6.803l-3.7 5.218c-3.654-3.136-8.605-5.892-15.858-5.892-14.472 0-21.037 12.595-21.037 27.612 0 14.456 6.471 28.236 20.941 28.236 7.52 0 13.817-3.264 16.688-5.796l3.091 5.312c-3.491 3.126-10.347 6.708-20.244 6.708-18.701 0-27.954-16.741-27.954-34.177zM476.671 372.798v-90.997h19.402v75.392h33.907v15.605h-53.309zm67.687 0v-66.535h18.319v66.535h-18.319zm9.154-75.134c-6.415 0-11.07-5.117-11.07-10.916 0-5.745 4.655-10.685 11.07-10.685 6.411 0 11.201 4.94 11.201 10.685 0 5.799-4.79 10.916-11.201 10.916zm43.305 61.017c1.232.429 4.1 1.521 9.163 1.521 10.122 0 16.139-7.48 16.139-21.203 0-12.429-4.222-20.077-14.059-20.077-5.736 0-10.123 3.765-11.243 5.117v34.642zm0-84.303v37.064c3.032-3.041 8.881-6.864 16.289-6.864 16.664 0 28.27 11.472 28.27 34.421 0 22.719-15.318 35.444-35.396 35.444-15.019 0-24.184-3.833-27.333-5.301v-94.764h18.17zm95.708 47.836c-1.122-.65-3.202-1.44-7.029-1.44-8.041 0-12.821 7.09-14.506 10.064v41.96h-18.138v-66.535h18.138v9.003c2.866-4.951 8.377-10.688 16.814-10.688 4.948 0 7.589.958 9.035 1.824l-4.314 15.812zm46.01 21.082h-2.368c-10.578 0-17.996 3.126-17.996 10.942 0 4.872 3.996 6.917 8.043 6.917 6.572 0 10.405-3.825 12.321-5.878v-11.981zm2.02 29.502c-.563-1.688-.955-5.064-1.061-7.087-2.987 3.487-9.288 8.732-18.697 8.732-11.399 0-20.124-6.818-20.124-18.691 0-17.375 17.892-23.673 35.494-23.673h2.368v-3.824c0-5.737-2.368-9.333-10.803-9.333-8.605 0-14.51 4.553-16.983 6.298l-7.875-11.081c3.992-3.486 12.661-9.561 26.938-9.561 18.167 0 26.77 7.032 26.77 24.634v23.9c0 8.999.956 15.465 1.912 19.686h-17.939zm70.962-50.584c-1.123-.65-3.205-1.44-7.029-1.44-8.041 0-12.824 7.09-14.496 10.064v41.96h-18.181v-66.535h18.181v9.003c2.878-4.951 8.365-10.688 16.801-10.688 4.948 0 7.593.958 9.083 1.824l-4.359 15.812zm10.604-15.951h19.349l14.799 43.814h.667l13.554-43.814h18.726l-27.499 73.619c-5.89 15.693-12.825 24.858-30.988 24.858-5.576 0-8.941-.786-10.292-1.182l2.642-14.338c.954.224 2.475.616 6.363.616 9.328 0 12.59-4.441 15.233-11.56l2.474-6.829-25.028-65.184z"}))),wn||(wn=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-nypl-full-white_svg__clip0_1147_1139"},n.createElement("path",{fill:"#fff",d:"M0 0h966.773v567.413H0z"})))))},nyplLionBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ln);return n.createElement("svg",In({viewBox:"0 0 136 135",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Mn||(Mn=n.createElement("path",{d:"M80.251 43.353c-.87-1.65-3.396-2.04-6.052-1.91a16.55 16.55 0 00-4.18.651c-1.48.434-3.484 1.433-2.613 3.473.566 1.39 2.57 1.954 4.006 2.432 1.655.564 3.484.998 4.746 1.736.74.434 1.524 1.563 2.57 1.433 1.044-.13 1.698-2.214 1.915-3.256.305-1.607.175-3.56-.392-4.559z",fill:"#000"})),jn||(jn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M68.103.112C31.047.112.87 30.155.87 67.492c0 37.336 30.394 67.423 67.275 67.423 37.448 0 67.798-30.043 67.798-67.38C135.901 30.155 105.551.112 68.103.112zM28.652 114.77a10.757 10.757 0 01-2.482-3.039c-5.748-9.16-8.97-41.548-1.568-52.531 2.352-3.864 4.834-2.084 4.006.911-1.437 6.686-.566 10.42 2.7 17.67 3.631 7.609 12.59 17.32 19.008 24.279 2.664 2.887 4.89 5.301 6.117 6.893 7.185 9.29 9.58 16.063 9.536 17.887-.043 1.389-.305 2.3-2.787 2.083-12.932-.998-25.517-6.382-34.53-14.153zm99.052-30.575l.054-.162C138.6 47.52 111.647 4.497 64.837 6.19c-2.961.174-5.4 1.086-3.222 2.779 6.662 5.123 10.232 11.765 11.495 17.8.087.52.349.825 1.045 1.042 3.048.825 10.756 3.864 13.15 5.687.95.723 1.892 1.69 2.868 2.693 1.487 1.528 3.052 3.136 4.84 4.08 3.412 1.8 6.769 3.27 10.024 4.698h.003c1.77.777 3.511 1.54 5.213 2.335 2.134.955 6.053 3.56 5.792 6.642-.041.485-.157.952-.269 1.404-.13.518-.254 1.018-.254 1.505 0 .562.232 1.19.45 1.783.136.368.267.723.334 1.039.446 2.111.563 4.279.348 6.425-.305 2.301-1.045 5.948-2.351 8.075-.134.207-.282.4-.429.592-.375.49-.74.967-.834 1.623a11.233 11.233 0 01-.697 2.518c-.13.217-.13.608.131.65 5.138 1.911 10.494 5.34 12.889 7.12 1.22.881 1.83-.951 2.341-2.485zm-18.975-20.828a13.058 13.058 0 01-.13-1.215c0-.359.593-.806 1.046-1.147.095-.072.184-.139.26-.2a13.999 13.999 0 011.785-1.258c.14-.07.223.055.273.13.013.02.023.035.032.044 1.742 2.604 1.089 9.073-.174 12.156-.131.303-.392.434-.523.217-.653-1.39-1.567-2.649-2.656-3.3a.689.689 0 01-.218-.52c.435-1.599.538-3.268.305-4.907zM68.495 32.24c-7.708-1.867-14.152.564-16.373 2.344-4.18 3.3-7.446 8.64-6.14 16.238.523 3.256 1.524 5.99 3.136 8.248 4.45 6.297 11.622 9.674 18.79 13.048 3.21 1.512 6.42 3.023 9.382 4.796a.632.632 0 00.915-.13l.016-.024c1.604-2.334 2.91-4.235 5.601-5.36 2.43-1 6.123-.808 9.537-.63h.004c.44.023.874.046 1.302.066 3.875.173 8.055-.174 9.449-2.171 1.698-2.388 1.611-7.163-.958-8.64-.742-.415-1.668-.622-2.595-.83-.816-.181-1.633-.364-2.326-.69-1.088-.477-1.916-1.432-2.525-2.734-.48-1.086-.958-2.866-.305-4.038.556-1.066 2.037-.75 3.246-.49l.063.013c2.395.564 6.445 1.128 8.752.13.654-.347-1.785-1.997-2.699-2.431-2.15-1.062-4.607-1.873-7.06-2.684-2.765-.913-5.525-1.825-7.832-3.09-1.545-.858-2.923-1.961-4.307-3.07-1.7-1.36-3.408-2.727-5.447-3.66a74.478 74.478 0 00-11.626-4.211zM37.186 17.391c-1.872-.217-1.915-1.606-1.132-2.127a47.598 47.598 0 018.753-4.515 4.145 4.145 0 012.438-.391c2.482.26 6.575 1.91 11.278 5.253 5.617 3.994 10.668 11.635 7.315 11.027a34.483 34.483 0 00-3.7-.52c-1.441-.124-2.612-.093-3.57-.067-.723.02-1.325.036-1.83-.02a2.276 2.276 0 01-1.263-.695c-4.746-4.255-10.233-6.946-18.288-7.945zm51.818 59.652a3.828 3.828 0 00-1.655 2.214c-.027.09-.069.215-.118.361-.187.558-.473 1.413-.404 1.723.067.37.58.897.969 1.297.113.116.215.221.293.31a35.34 35.34 0 002.744 2.908 7.351 7.351 0 001.61 1.26c.604.3 1.44.37 2.348.445.273.022.55.045.832.075l.034.004c3.344.346 7.026.728 8.892-1.176.218-.217.305-.868.348-1.302.206-1.336.871-2.37 1.537-3.406.741-1.154 1.484-2.31 1.599-3.888a6.11 6.11 0 00-.349-2.605 2.827 2.827 0 00-1.437-1.737c-1.213-.509-2.098.102-2.896.652-.291.2-.57.393-.849.52-1.622.769-4 .934-6.289 1.094l-.503.035c-.296.02-.594.04-.89.058h-.001c-2.234.14-4.432.277-5.815 1.158zM22.948 26.03c.385-.43.883-.746 1.437-.912a37.386 37.386 0 0123.557 1.997c1.393.608 2.046 1.476 1.132 2.084-1.176.695-4.703 2.996-6.662 4.819-.566.478-1.568.521-2.177.434l-.246-.032c-7.157-.935-11.025-1.44-21.875 2.68-1.698.695-3.222-.26-2.438-1.563 1.437-2.648 4.833-7.033 7.272-9.507zM8.36 53.816a2.946 2.946 0 00-.653 1.606c-2.787 13.502-.566 24.79 2.09 31.997.61 1.563 3.048.955 2.961-2.388.017-.605.023-1.275.03-2.002.082-9.085.246-27.125 21.09-39.546 1.262-.738 2.35-1.476 1.828-2.778-.305-.738-1.655-.868-3.484-.608-14.064 2.475-23.121 12.59-23.862 13.72zm27.738 17.28c-3.963-9.639-1.393-18.279.392-21.578.87-1.65 1.741-2.735 2.874-2.431 1.219.347 1.524 1.606 1.698 3.907 1.263 19.233 12.932 25.702 27.563 32.518 11.583 5.904 24.733 12.633 35.75 28.957 1.654 2.345 1.916 3.777.043 5.123-6.705 4.559-12.802 7.771-21.728 9.855-1.35.304-2.743.087-3.919-2.995-6.742-17.265-15.964-24.728-24.497-31.632-7.174-5.805-13.86-11.216-18.176-21.725zm73.067 38.334c.609 1.172 1.698 2.649 3.57.782 3.223-3.17 7.795-9.291 9.319-12.243.035-.077.074-.154.115-.235.258-.511.56-1.11.146-1.936-.74-1.52-4.877-6.165-7.664-8.292l-.033-.025c-1.086-.823-2.55-1.933-3.929-2.32a3.246 3.246 0 00-1.089-.13c-1.025.118-1.158.592-1.561 2.034l-.137.484c-.74 2.518-2.177 4.298-3.44 4.82a6.957 6.957 0 01-3.745.607c-1.088-.087-1.654.912-.914 1.65 4.136 4.515 6.705 9.204 9.362 14.804z",fill:"#000"})),Cn||(Cn=n.createElement("path",{d:"M71.456 47.998c1.654.565 3.483.999 4.746 1.737.74.434 1.524 1.563 2.569 1.433 1.045-.13 1.698-2.214 1.916-3.256.305-1.563.13-3.517-.392-4.515-.87-1.65-3.397-2.041-6.053-1.91-1.415.037-2.82.256-4.18.65-1.48.435-3.483 1.433-2.612 3.474.566 1.302 2.569 1.91 4.005 2.388z",fill:"#000"})))},nyplLionWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Rn);return n.createElement("svg",Hn({viewBox:"0 0 125 126",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,kn||(kn=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z"})),Vn||(Vn=n.createElement("mask",{id:"logo-nypl-lion-white_svg__a",maskUnits:"userSpaceOnUse",x:0,y:0,width:125,height:126},n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M122.666 79.082l-.006.019c-.499 1.582-1.133 3.595-2.402 2.672a59.23 59.23 0 00-12.99-7.207c-.275-.07-.24-.448-.14-.653.359-.81.591-1.67.69-2.551a6.232 6.232 0 011.239-2.243 22.616 22.616 0 002.338-8.203 20.544 20.544 0 00-.38-6.514 13.52 13.52 0 01-.789-2.86c0-.498.128-.995.262-1.518.118-.457.241-.934.287-1.448a8.87 8.87 0 00-5.85-6.758 275.96 275.96 0 00-4.997-2.249c-3.374-1.492-6.85-3.03-10.356-4.888a60.679 60.679 0 01-7.779-6.892 55.953 55.953 0 00-13.284-5.756 1.272 1.272 0 01-1.069-1.067 31.14 31.14 0 00-11.616-18.07c-2.168-1.69.295-2.657 3.293-2.791 20.115-1.132 39.54 7.499 52.152 23.172a62.1 62.1 0 0111.397 55.805zM29.501 8.846c-.797.53-.797 1.898 1.145 2.096 6.959.573 13.531 3.298 18.72 7.762.339.353.792.587 1.287.665.489.04 1.05.022 1.713 0 .993-.031 2.218-.071 3.782.067 1.262.103 2.516.281 3.754.535 3.41.603-1.7-6.866-7.438-10.798A27.838 27.838 0 0040.96 4.042a4.562 4.562 0 00-2.523.4 47.777 47.777 0 00-8.936 4.404zm-13 11.099c.373-.435.87-.75 1.428-.905a37.673 37.673 0 0123.522 1.974c1.393.604 2.04 1.45 1.121 2.04a51.105 51.105 0 00-6.67 4.717 3.228 3.228 0 01-2.178.435A36.309 36.309 0 0011.63 30.77c-1.7.701-3.201-.266-2.416-1.538a54.633 54.633 0 017.287-9.287zm81.78 23.683c-2.133-1.048-4.559-1.853-6.98-2.656-2.815-.934-5.624-1.866-7.958-3.175-1.581-.874-2.984-2.005-4.39-3.14-1.684-1.356-3.373-2.718-5.383-3.653a71.807 71.807 0 00-11.654-4.254 20.684 20.684 0 00-16.407 2.365 16.644 16.644 0 00-6.186 16.461 19.583 19.583 0 003.14 8.31c4.474 6.333 11.625 9.72 18.782 13.109 3.231 1.53 6.464 3.061 9.452 4.864a.625.625 0 00.88-.076l.003-.003.06-.045a12.757 12.757 0 015.64-5.454 28.588 28.588 0 0110.87-.585c3.325.64 6.765-.158 9.466-2.196a6.74 6.74 0 00-.992-8.712c-.748-.43-1.699-.636-2.653-.842-.792-.172-1.586-.344-2.268-.645a5.202 5.202 0 01-2.53-2.777 5.015 5.015 0 01-.308-4.08 2.84 2.84 0 013.349-.496c2.865.816 5.896.864 8.786.139a4.326 4.326 0 00-2.719-2.46zm-24.235-1.34a4.164 4.164 0 01-1.915 3.293 4.495 4.495 0 01-2.565-1.443 28.23 28.23 0 00-4.753-1.75 6.177 6.177 0 01-3.998-2.48c-.854-2.057 1.16-3.019 2.63-3.5a16.046 16.046 0 014.176-.669 6.278 6.278 0 016.048 1.919c.52 1.486.65 3.08.377 4.63zm-72.01 5.853a2.742 2.742 0 00-.696 1.619 59.402 59.402 0 002.083 32.42c.63 1.574 3.097.966 3.027-2.411.018-.624.026-1.314.034-2.064.102-9.222.302-27.42 21.493-40.004 1.322-.757 2.431-1.514 1.877-2.824a3.366 3.366 0 00-3.531-.623c-9.438 1.824-17.987 6.712-24.287 13.887zm100.09 8.538c0 .177.114 1.012.152 1.254a13.47 13.47 0 01-.277 4.979.713.713 0 00.223.558 8.308 8.308 0 012.91 3.413c.092.242.39.101.542-.211a16.316 16.316 0 00.184-12.429l-.008-.015c-.044-.084-.155-.296-.328-.196-.695.379-1.357.81-1.978 1.288-.6.322-1.091.793-1.42 1.36zM81.61 73.897c.239-.94.817-1.75 1.615-2.265a15.306 15.306 0 016.623-1.219 19.97 19.97 0 006.69-1.148 3.977 3.977 0 013.665-1.183c.7.351 1.215 1 1.411 1.777.306.858.433 1.772.371 2.684a82.29 82.29 0 01-3.094 7.487c.01.481-.119.955-.371 1.36a11.028 11.028 0 01-8.809 1.183 9.228 9.228 0 01-3.162-.56 6.333 6.333 0 01-1.581-1.323c-.776-.748-1.31-1.366-1.973-2.133-.23-.266-.475-.55-.75-.863A5.407 5.407 0 0181 76.056c.145-.736.35-1.458.61-2.16zm-61.686 33.61a9.874 9.874 0 002.494 3.102 61.69 61.69 0 0034.798 14.369c2.475.204 2.749-.689 2.784-2.105a43.057 43.057 0 00-9.589-18.179c-1.23-1.608-3.467-4.047-6.147-6.967-6.468-7.048-15.508-16.9-19.152-24.634a24.816 24.816 0 01-2.714-17.954c.823-3.003-1.686-4.798-4.056-.898-7.458 11.142-4.225 43.984 1.582 53.266zM30.107 65.19a26.819 26.819 0 01.378-21.694c.89-1.676 1.745-2.77 2.88-2.428 1.233.341 1.492 1.608 1.68 3.957 1.269 19.363 12.987 25.862 27.689 32.708a84.543 84.543 0 0135.91 29.117c1.68 2.359 1.919 3.798.034 5.163a60.152 60.152 0 01-21.829 9.892c-1.338.307-2.74.07-3.94-3.012-6.754-17.427-16.015-24.947-24.59-31.91-7.177-5.827-13.872-11.264-18.212-21.793zm72.632 39.117c.611 1.218 1.71 2.67 3.594.812a60.34 60.34 0 009.249-12.215 2.214 2.214 0 00.239-2.167 37.68 37.68 0 00-7.669-8.257 14.577 14.577 0 00-3.976-2.334 3.434 3.434 0 00-1.129-.137c-1.043.126-1.168.593-1.57 2.095-.034.129-.07.265-.11.41a7.431 7.431 0 01-3.424 4.803 6.76 6.76 0 01-3.733.612.97.97 0 00-1.094.467.938.938 0 00.204 1.157 55.145 55.145 0 019.419 14.754z"}))),_n||(_n=n.createElement("g",{mask:"url(#logo-nypl-lion-white_svg__a)"},n.createElement("path",{d:"M0-.994h125v126H0z"}))))},openebooksColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Dn);return n.createElement("svg",An({viewBox:"0 0 152 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Pn||(Pn=n.createElement("g",{clipPath:"url(#logo-openebooks-color_svg__clip0_53471_41906)"},n.createElement("path",{d:"M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",fill:"#012F53"}),n.createElement("path",{d:"M76 7.79S43.52-12.182-.008 11.842v111.332s22.226-23.121 58.783-13.642V30.593h34.45v78.939c36.559-9.473 58.783 13.636 58.783 13.636V11.842C108.482-12.182 76 7.79 76 7.79z",fill:"url(#logo-openebooks-color_svg__paint0_linear_53471_41906)"}),n.createElement("path",{d:"M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915z",fill:"#fff"}))),Bn||(Bn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-color_svg__paint0_linear_53471_41906",x1:76.519,y1:132.496,x2:75.513,y2:5.94,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{offset:.15,stopColor:"#8AC33E"}),n.createElement("stop",{offset:.3,stopColor:"#5F9445"}),n.createElement("stop",{offset:.47,stopColor:"#37694B"}),n.createElement("stop",{offset:.62,stopColor:"#19494F"}),n.createElement("stop",{offset:.74,stopColor:"#073652"}),n.createElement("stop",{offset:.83,stopColor:"#012F53"})))))},openebooksNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Yn);return n.createElement("svg",Gn({viewBox:"0 0 155 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Fn||(Fn=n.createElement("g",{clipPath:"url(#logo-openebooks-negative_svg__clip0_54498_42323)"},n.createElement("path",{d:"M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",fill:"#fff"}),n.createElement("path",{d:"M100.627 10.801c42.596-3.868 54.346 12.835 54.346 12.835v97.554s-11.75-16.705-54.346-12.835V10.801z",fill:"url(#logo-openebooks-negative_svg__paint0_linear_54498_42323)"}),n.createElement("path",{d:"M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",fill:"#0B1F31"}),n.createElement("path",{d:"M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",fill:"url(#logo-openebooks-negative_svg__paint1_linear_54498_42323)"}),n.createElement("path",{d:"M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",fill:"#0B1F31"}))),Nn||(Nn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-negative_svg__paint0_linear_54498_42323",x1:127.8,y1:121.19,x2:127.8,y2:10.218,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})),n.createElement("linearGradient",{id:"logo-openebooks-negative_svg__paint1_linear_54498_42323",x1:27.173,y1:121.181,x2:27.173,y2:10.209,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})))))},openebooksWithTextColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Jn);return n.createElement("svg",Kn({viewBox:"0 0 152 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Wn||(Wn=n.createElement("g",{clipPath:"url(#logo-openebooks-with-text-color_svg__clip0_53471_41905)"},n.createElement("path",{d:"M130.79 29.541H20.99a5.667 5.667 0 00-5.673 5.662v98.138a5.667 5.667 0 005.673 5.661h109.8a5.667 5.667 0 005.672-5.661V35.202a5.666 5.666 0 00-5.672-5.66z",fill:"#012F53"}),n.createElement("path",{d:"M76 7.79S43.52-12.182-.008 11.842v111.332s22.226-23.121 58.783-13.642V30.593h34.45v78.939c36.559-9.473 58.783 13.636 58.783 13.636V11.842C108.482-12.182 76 7.79 76 7.79z",fill:"url(#logo-openebooks-with-text-color_svg__paint0_linear_53471_41905)"}),n.createElement("path",{d:"M13.312 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.895-8.814-38.117-8.959-57.65 0v78.915zM80.102 98.983c19.216-7.728 38.432-8.113 57.65 0V20.067c-18.905-8.814-38.117-8.959-57.65 0v78.915zM130.032 126.627c.01.626-.171 1.24-.519 1.76-.372.531-.89.944-1.49 1.191a5.757 5.757 0 01-2.286.419 9.806 9.806 0 01-1.835-.145 7.126 7.126 0 01-1.545-.524v-2.556c.563.28 1.154.502 1.763.66a6.857 6.857 0 001.68.235 1.69 1.69 0 00.967-.21.679.679 0 00.309-.574.58.58 0 00-.128-.377 1.348 1.348 0 00-.397-.335c-.178-.109-.663-.338-1.455-.681a7.123 7.123 0 01-1.61-.916 2.88 2.88 0 01-.796-1.016 3.339 3.339 0 01-.254-1.36 2.701 2.701 0 011.103-2.288c.734-.548 1.743-.821 3.027-.819a8.723 8.723 0 013.47.762l-.911 2.201c-1.025-.456-1.909-.683-2.654-.681a1.402 1.402 0 00-.839.194.589.589 0 00-.263.487.695.695 0 00.097.319c.057.098.137.18.233.24a13.28 13.28 0 001.816.901c.943.411 1.597.853 1.963 1.328.383.515.579 1.145.554 1.785zm-8.358 3.227h-3.342l-2.164-4.06-.878.507v3.562h-2.981v-10.619h2.981v4.609c.273-.471.576-.925.907-1.357l2.309-3.254h3.229l-3.455 4.756 3.394 5.856zm-18.875-5.324c0 2.053.737 3.079 2.21 3.078.748 0 1.302-.247 1.663-.748s.546-1.276.546-2.33-.183-1.844-.554-2.347c-.372-.502-.912-.762-1.642-.762-1.482.003-2.223 1.039-2.223 3.109zm7.536 0c0 1.787-.452 3.145-1.356 4.075-.904.931-2.227 1.395-3.97 1.394-1.72 0-3.039-.467-3.957-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.453-3.117 1.362-4.046.908-.928 2.234-1.396 3.978-1.401 1.745 0 3.067.462 3.966 1.387.898.925 1.347 2.283 1.347 4.075zm-19.767 0c0 2.053.737 3.079 2.21 3.078.75 0 1.304-.247 1.663-.748s.548-1.276.548-2.33-.185-1.844-.556-2.347c-.372-.502-.912-.758-1.648-.758-1.478 0-2.217 1.035-2.217 3.105zm7.536 0c0 1.787-.45 3.145-1.354 4.075-.902.931-2.224 1.395-3.965 1.394-1.72 0-3.04-.467-3.958-1.402-.918-.934-1.375-2.295-1.37-4.082 0-1.768.454-3.117 1.364-4.046.91-.928 2.236-1.396 3.978-1.401 1.746 0 3.067.462 3.964 1.387.897.925 1.344 2.283 1.341 4.075zm-17.634.878v2.231h1.039c.924 0 1.386-.378 1.388-1.135a.96.96 0 00-.374-.813 1.74 1.74 0 00-1.075-.285l-.978.002zm0-2.095h.89c.346.021.69-.068.982-.256a.871.871 0 00.35-.756c0-.595-.463-.893-1.391-.893h-.84l.009 1.905zm-2.963-4.076h3.823c1.488 0 2.592.216 3.313.646.724.419 1.088 1.091 1.088 1.999a2.471 2.471 0 01-.475 1.523c-.3.414-.743.704-1.243.815v.071a2.277 2.277 0 011.934 2.456 2.683 2.683 0 01-1.123 2.28c-.746.558-1.764.838-3.053.838h-4.26l-.004-10.628zm-5.733 4.176c-.32-.007-.63.106-.87.319a1.464 1.464 0 00-.404.987h2.519a1.39 1.39 0 00-.35-.949 1.16 1.16 0 00-.89-.359l-.005.002zm.174 6.588c-1.415 0-2.514-.363-3.298-1.09-.784-.726-1.173-1.765-1.167-3.115 0-1.389.36-2.454 1.083-3.196.722-.741 1.757-1.114 3.105-1.119 1.278 0 2.265.325 2.96.975.697.641 1.05 1.573 1.05 2.789v1.257h-5.236a1.402 1.402 0 00.516 1.083c.39.28.865.418 1.344.392.475.005.95-.042 1.415-.138a7.152 7.152 0 001.409-.487v2.035a5.177 5.177 0 01-1.424.471c-.579.098-1.165.145-1.753.141l-.004.002zm-7.692-.145h-1.45l-5.988-8.913h-.059c.08 1.048.12 2.007.12 2.877v6.036H55.7v-10.619h1.438l5.975 8.876h.07c-.011-.132-.032-.549-.068-1.257a20.277 20.277 0 01-.036-1.525v-6.094h1.19l-.014 10.619zm-12.067 0h-6.11v-10.619h6.11v1.096H47.36v3.42h4.543v1.089h-4.547v3.916h4.828l.005 1.098zm-15.156-5.238h1.146c1.13 0 1.944-.178 2.45-.532.506-.354.756-.92.756-1.699 0-.702-.237-1.224-.712-1.57-.474-.345-1.213-.515-2.216-.515h-1.424v4.316zm5.669-2.288c0 1.073-.38 1.9-1.138 2.483-.759.582-1.84.87-3.246.863h-1.287v4.178h-1.274v-10.619h2.84c2.74 0 4.11 1.032 4.11 3.095h-.005zm-19.197 2.2c0 1.437.315 2.529.945 3.275.63.746 1.548 1.116 2.756 1.11 1.213 0 2.13-.37 2.75-1.11.62-.74.93-1.832.93-3.275 0-1.429-.31-2.511-.93-3.248-.62-.736-1.53-1.106-2.729-1.11-1.213 0-2.137.373-2.771 1.119-.634.746-.951 1.825-.951 3.239zm8.729 0c0 1.7-.444 3.036-1.333 4.008-.889.973-2.12 1.461-3.695 1.467-1.612 0-2.859-.477-3.739-1.431-.88-.954-1.318-2.305-1.312-4.052 0-1.731.44-3.07 1.318-4.017.88-.947 2.128-1.424 3.748-1.431 1.574 0 2.803.485 3.686 1.454.883.97 1.326 2.304 1.33 4.002h-.003z",fill:"#fff"}))),qn||(qn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-with-text-color_svg__paint0_linear_53471_41905",x1:76.519,y1:132.496,x2:75.513,y2:5.94,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{offset:.15,stopColor:"#8AC33E"}),n.createElement("stop",{offset:.3,stopColor:"#5F9445"}),n.createElement("stop",{offset:.47,stopColor:"#37694B"}),n.createElement("stop",{offset:.62,stopColor:"#19494F"}),n.createElement("stop",{offset:.74,stopColor:"#073652"}),n.createElement("stop",{offset:.83,stopColor:"#012F53"})))))},openebooksWithTextNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Zn);return n.createElement("svg",$n({viewBox:"0 0 155 139",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Un||(Un=n.createElement("g",{clipPath:"url(#logo-openebooks-with-text-negative_svg__clip0_54498_42322)"},n.createElement("path",{d:"M78.087 9.5C36.26-12.024 1.802 9.59 0 10.747v110.438c1.074-1.272 5.518-6.158 15.394-9.572v21.596a5.805 5.805 0 005.79 5.791h112.114a5.808 5.808 0 005.79-5.791v-22.206c11.82 3.711 15.912 9.885 15.912 9.885V10.797S121.052-12.61 78.087 9.5z",fill:"#fff"}),n.createElement("path",{d:"M100.627 10.801c42.596-3.868 54.346 12.835 54.346 12.835v97.554s-11.75-16.705-54.346-12.835V10.801z",fill:"url(#logo-openebooks-with-text-negative_svg__paint0_linear_54498_42322)"}),n.createElement("path",{d:"M147.325 106.011c-36.336-17.126-64.97 0-64.97 0V16.268s28.603-17.128 64.97 0v89.743z",fill:"#0B1F31"}),n.createElement("path",{d:"M130.113 124.927a3.224 3.224 0 01-.514 1.802 3.401 3.401 0 01-1.479 1.218 5.51 5.51 0 01-2.266.432 9.509 9.509 0 01-1.822-.149 6.98 6.98 0 01-1.532-.535v-2.61a8.766 8.766 0 001.748.675 6.51 6.51 0 001.664.241 1.63 1.63 0 00.96-.225.702.702 0 00.304-.587.603.603 0 00-.126-.386 1.32 1.32 0 00-.394-.342c-.469-.257-.95-.49-1.442-.698a7.046 7.046 0 01-1.599-.936 2.983 2.983 0 01-.788-1.041 3.487 3.487 0 01-.252-1.391 2.778 2.778 0 011.092-2.34c.737-.567 1.739-.851 3.004-.851 1.19.014 2.363.28 3.442.782l-.901 2.265c-1.015-.464-1.893-.697-2.633-.698a1.35 1.35 0 00-.831.2.605.605 0 00-.261.498.715.715 0 00.326.572 13.42 13.42 0 001.802.923c.937.419 1.586.869 1.948 1.351.383.531.577 1.176.55 1.83zm-8.288 3.31h-3.316l-2.148-4.154-.87.52v3.634h-2.95v-10.875h2.95v4.728c.271-.481.572-.945.901-1.389l2.284-3.33h3.209l-3.418 4.859 3.358 6.007zm-18.725-5.449c0 2.102.731 3.153 2.193 3.153.741 0 1.291-.257 1.649-.766.358-.509.543-1.306.543-2.387s-.183-1.884-.55-2.398a1.856 1.856 0 00-1.628-.781c-1.472-.006-2.207 1.051-2.207 3.17v.009zm7.477 0c0 1.829-.45 3.219-1.351 4.17-.901.952-2.214 1.428-3.939 1.428-1.708 0-3.016-.479-3.926-1.437-.91-.957-1.36-2.349-1.351-4.174 0-1.802.45-3.182 1.351-4.141.901-.959 2.216-1.437 3.946-1.434 1.73 0 3.04.473 3.932 1.421.892.947 1.34 2.333 1.345 4.158l-.007.009zm-19.608 0c0 2.102.73 3.153 2.192 3.153.743 0 1.293-.257 1.65-.766.359-.509.541-1.306.541-2.387s-.18-1.884-.55-2.398a1.845 1.845 0 00-1.628-.781c-1.47-.006-2.205 1.051-2.205 3.17v.009zm7.475 0c0 1.829-.45 3.219-1.35 4.17-.902.952-2.215 1.428-3.94 1.428-1.704 0-3.013-.479-3.926-1.437-.913-.957-1.363-2.349-1.351-4.174 0-1.802.45-3.182 1.351-4.141.901-.959 2.217-1.437 3.946-1.434 1.731 0 3.042.473 3.933 1.421.89.947 1.336 2.333 1.337 4.158v.009zm-17.488.901v2.281h1.025c.916 0 1.376-.385 1.376-1.16a.989.989 0 00-.372-.833 1.673 1.673 0 00-1.063-.288h-.966zm0-2.148h.885c.344.022.686-.07.973-.261a.906.906 0 00.35-.773c0-.608-.451-.914-1.384-.914h-.824v1.948zm-2.928-4.17h3.79c1.478 0 2.573.225 3.287.662.713.437 1.078 1.126 1.078 2.044a2.605 2.605 0 01-.468 1.561 2.102 2.102 0 01-1.234.833v.072a2.537 2.537 0 011.464.901c.319.478.476 1.046.45 1.621a2.783 2.783 0 01-1.126 2.332c-.741.566-1.748.849-3.027.849h-4.223l.009-10.875zm-5.687 4.278a1.223 1.223 0 00-.862.326 1.521 1.521 0 00-.401 1.011h2.497a1.428 1.428 0 00-.349-.972 1.131 1.131 0 00-.894-.379l.01.014zm.171 6.741c-1.402 0-2.492-.375-3.27-1.125-.778-.751-1.164-1.814-1.16-3.189 0-1.423.36-2.513 1.077-3.269.717-.757 1.744-1.139 3.079-1.146 1.267 0 2.243.332 2.927.997.692.658 1.041 1.61 1.041 2.853v1.292h-5.198a1.449 1.449 0 00.513 1.108c.384.285.855.427 1.331.401.472.004.942-.043 1.404-.142a6.932 6.932 0 001.398-.497v2.089a5.103 5.103 0 01-1.41.482 9.762 9.762 0 01-1.74.133l.008.013zm-7.648-.153h-1.442l-5.939-9.119h-.051c.08 1.07.118 2.051.117 2.943v6.176h-1.167v-10.875h1.428l5.928 9.074h.06c-.012-.132-.034-.56-.067-1.284a22.04 22.04 0 01-.036-1.56v-6.23h1.169v10.875zm-11.969 0h-6.049v-10.875h6.059v1.126h-4.798v3.499h4.505v1.114h-4.505v3.999h4.797l-.009 1.137zm-15.033-5.359h1.137c1.12 0 1.93-.181 2.43-.542.5-.361.75-.941.75-1.739 0-.717-.235-1.253-.705-1.607-.47-.349-1.204-.527-2.2-.527h-1.412v4.415zm5.63-2.341c0 1.101-.375 1.949-1.126 2.542-.75.593-1.823.886-3.218.88h-1.277v4.278h-1.264v-10.875h2.818c2.715 0 4.072 1.055 4.072 3.166l-.005.009zm-19.046 2.251c0 1.47.312 2.587.936 3.353.625.766 1.536 1.145 2.735 1.137 1.2 0 2.11-.379 2.727-1.137s.925-1.876.923-3.353c0-1.462-.307-2.569-.923-3.321-.616-.752-1.517-1.127-2.703-1.126-1.2 0-2.117.382-2.75 1.144-.632.763-.945 1.861-.941 3.294l-.005.009zm8.66 0c0 1.742-.441 3.109-1.323 4.103-.881.993-2.103 1.492-3.666 1.495-1.6 0-2.836-.491-3.708-1.464-.871-.972-1.301-2.364-1.301-4.147 0-1.784.434-3.139 1.308-4.109.874-.971 2.11-1.466 3.716-1.466 1.562 0 2.781.496 3.658 1.488.877.992 1.316 2.356 1.318 4.091l-.003.009z",fill:"#000"}),n.createElement("path",{d:"M54.346 10.793C11.75 6.924 0 23.627 0 23.627v97.554s11.75-16.705 54.346-12.834V10.793z",fill:"url(#logo-openebooks-with-text-negative_svg__paint1_linear_54498_42322)"}),n.createElement("path",{d:"M8.52 106.014c36.338-17.129 64.973 0 64.973 0V16.266s-28.604-17.124-64.972 0v89.748z",fill:"#0B1F31"}))),Xn||(Xn=n.createElement("defs",null,n.createElement("linearGradient",{id:"logo-openebooks-with-text-negative_svg__paint0_linear_54498_42322",x1:127.8,y1:121.19,x2:127.8,y2:10.218,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})),n.createElement("linearGradient",{id:"logo-openebooks-with-text-negative_svg__paint1_linear_54498_42322",x1:27.173,y1:121.181,x2:27.173,y2:10.209,gradientUnits:"userSpaceOnUse"},n.createElement("stop",{stopColor:"#8ABF3F"}),n.createElement("stop",{offset:.36,stopColor:"#9EC856"}),n.createElement("stop",{offset:.9,stopColor:"#FFFFF9"}),n.createElement("stop",{offset:.97,stopColor:"#fff"}),n.createElement("stop",{offset:1,stopColor:"#fff"})))))},qplAltBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,tc);return n.createElement("svg",lc({viewBox:"0 0 250 134",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Qn||(Qn=n.createElement("path",{d:"M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"})))},qplAltWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,oc);return n.createElement("svg",sc({viewBox:"0 0 250 134",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ec||(ec=n.createElement("path",{d:"M25.853 14.85L0 29.697l.045 29.9.067 29.899 38.6 22.162c21.23 12.174 38.712 22.207 38.869 22.252.224.111 25.336-14.091 26.032-14.716.225-.2-2.76-2.006-12.5-7.58-7.047-4.036-12.792-7.403-12.792-7.47 0-.067 5.768-3.433 12.792-7.469l12.792-7.313V29.765l-25.83-14.827C63.846 6.778 52.108.09 51.974.067 51.84.022 40.08 6.689 25.853 14.849zm38.712 22.407c6.89 3.946 12.657 7.29 12.814 7.424.202.201.27 6.333.224 29.699l-.067 29.453-12.567-7.224c-6.912-3.99-12.702-7.29-12.837-7.358-.157-.066-6.014 3.166-13.016 7.18-7.024 4.013-12.814 7.358-12.927 7.402-.09.045-.134-13.221-.112-29.475l.067-29.587 12.792-7.336c7.047-4.035 12.86-7.335 12.95-7.335.089 0 5.811 3.233 12.679 7.157zM136.917 15.05c-1.818.513-3.254 1.382-4.623 2.81-5.207 5.417-2.693 14.514 4.488 16.364 1.683.424 3.905.424 5.543 0l1.279-.334 2.155 1.226c2.738 1.539 2.827 1.561 3.882 1.026 1.75-.892 1.526-1.45-1.189-2.965l-2.087-1.16.763-.892c2.917-3.389 3.052-8.784.314-12.419-1.077-1.427-2.783-2.697-4.444-3.322-1.683-.646-4.443-.78-6.081-.334zm5.677 3.099c.696.334 1.683 1.092 2.245 1.717 3.276 3.612 2.244 8.985-2.177 11.282-1.01.535-1.414.624-3.187.624-1.75 0-2.177-.09-3.142-.602-3.231-1.695-4.825-5.284-3.793-8.562 1.347-4.28 6.082-6.377 10.054-4.46zM214.34 15.027c-.179.201-.224 2.966-.202 9.744l.067 9.453 1.033.067c.673.045 1.122-.044 1.279-.245.179-.2.292-2.363.314-6.956l.067-6.667 5.678 7.068c5.409 6.711 5.745 7.068 6.441 7.068.471 0 .785-.134.875-.357.202-.535.157-18.439-.067-18.773-.112-.2-.561-.268-1.279-.223l-1.1.067-.112 6.822-.112 6.845-5.723-7.112c-4.87-6.065-5.812-7.113-6.306-7.113-.337 0-.718.134-.853.313zM240.642 14.938c-2.671.535-4.556 2.609-4.556 5.062 0 2.318 1.369 4.102 4.152 5.395 3.074 1.427 3.568 1.695 4.286 2.386 1.436 1.338 1.167 3.077-.651 3.88-1.615.735-2.917.49-5.206-1.026-1.392-.914-1.616-.892-2.424.178-.583.78-.359 1.36.875 2.207 2.379 1.606 5.835 2.052 8.057 1.004 3.389-1.561 4.286-5.24 1.952-7.938-.583-.69-1.526-1.27-3.994-2.474-3.546-1.717-4.13-2.23-4.13-3.724 0-.714.158-1.048.674-1.583 1.167-1.137 2.805-1.204 5.049-.156.651.312 1.347.58 1.549.58.471 0 1.324-1.45 1.144-1.985-.179-.602-2.199-1.538-3.837-1.806-1.482-.245-1.639-.245-2.94 0zM155.453 15.295c-.09.09-.157 3.21-.157 6.912 0 6.31.023 6.845.471 8.004.629 1.672 2.222 3.256 3.95 3.902 1.84.691 4.825.557 6.486-.267 1.346-.692 2.648-2.074 3.321-3.501.449-.981.471-1.338.471-8.049v-7.023l-1.077-.067c-.606-.045-1.234.045-1.414.2-.246.201-.314 1.383-.314 6.645 0 6.198-.022 6.421-.494 7.38-.291.535-.897 1.27-1.368 1.65-.719.58-1.1.69-2.357.758-1.975.111-3.231-.513-4.196-2.074l-.674-1.07-.112-6.711-.112-6.711-1.122-.067c-.629-.045-1.212 0-1.302.09zM177.334 15.429c-.404.401-.382 17.993.022 18.528.247.357.808.379 6.105.334l5.834-.067v-2.229l-4.645-.067-4.668-.045v-6.02l3.995-.044 3.972-.067v-2.23l-3.972-.067-3.995-.044V17.614l4.668-.045 4.645-.067v-2.229l-5.834-.067c-4.354-.045-5.925.022-6.127.223zM195.803 15.429c-.067.156-.089 4.46-.067 9.543l.067 9.253h11.894v-2.23l-4.645-.067-4.668-.044v-6.02l3.995-.045 3.972-.067v-2.23l-3.972-.066-3.995-.045V17.614l4.668-.045 4.645-.066v-2.23l-5.902-.067c-4.6-.045-5.924 0-5.992.223zM223.407 57.301c-3.367.535-6.082 2.587-7.586 5.753-.673 1.404-.718 1.627-.718 4.08 0 2.52.023 2.608.831 4.236a10.298 10.298 0 004.825 4.727c1.458.669 1.66.713 4.219.713 2.58 0 2.76-.022 4.151-.713 1.639-.803 2.918-1.873 2.918-2.408 0-.513-1.1-1.45-1.683-1.45-.27 0-.763.201-1.078.447-.314.245-1.144.713-1.862 1.047-2.469 1.115-5.768.357-7.63-1.806-1.369-1.583-1.773-2.697-1.773-4.816 0-2.23.449-3.433 1.862-4.95 2.379-2.563 6.329-2.92 9.224-.824.516.356 1.1.646 1.346.646.404 0 1.594-1.16 1.594-1.538 0-.714-2.379-2.319-4.264-2.876-1.167-.357-3.12-.469-4.376-.268zM130.947 57.814c-.067.134-.09 4.437-.067 9.52l.067 9.253h2.468l.068-3.277.067-3.255 2.962-.09c3.187-.089 3.928-.312 5.499-1.627 2.535-2.118 2.535-6.89 0-9.164-1.684-1.494-2.267-1.65-6.868-1.65-3.074 0-4.129.067-4.196.29zm8.213 2.898c1.325.67 2.11 2.163 1.886 3.523-.202 1.182-1.437 2.564-2.536 2.876-.472.112-1.773.223-2.895.223h-2.087V60.2h2.311c1.997 0 2.469.066 3.321.512zM149.26 57.948c-.315.58-.315 11.014 0 12.954.404 2.475 1.66 4.236 3.86 5.395.807.446 1.279.513 3.411.513 2.244 0 2.58-.044 3.613-.602a7.063 7.063 0 003.456-4.147c.404-1.27.449-2.073.449-7.625 0-3.411-.068-6.355-.135-6.555-.157-.424-2.11-.49-2.514-.09-.201.201-.269 1.985-.269 6.645 0 6.176-.022 6.399-.494 7.358-.291.535-.897 1.27-1.368 1.65-1.594 1.248-4.713 1.025-6.015-.446-1.167-1.316-1.212-1.583-1.324-8.674l-.112-6.688-1.167-.067c-.965-.067-1.212 0-1.391.379zM171.275 57.792c-.202.2-.27 2.586-.27 9.342 0 7.625.045 9.097.315 9.342.246.178 1.526.245 4.667.178 3.95-.067 4.421-.111 5.252-.557 3.366-1.784 4.062-6.243 1.324-8.473l-.853-.713.696-.87c.942-1.16 1.167-1.828 1.167-3.411 0-1.65-.382-2.564-1.459-3.612-1.324-1.271-2.311-1.494-6.732-1.494-2.694 0-3.928.09-4.107.268zm8.191 2.764c.337.245.785.892.965 1.383.292.825.292 1.048 0 1.873-.561 1.538-1.212 1.828-4.062 1.917l-2.446.09V59.931l2.446.09c2.065.066 2.581.155 3.097.534zm.224 8.34c1.01.601 1.459 1.404 1.459 2.496-.022 1.093-.561 1.918-1.638 2.453-.584.312-1.324.401-3.165.401h-2.423V68.45h2.536c2.087 0 2.625.067 3.231.446zM190.575 57.791c-.427.424-.382 18.306.044 18.662.202.179 1.841.246 5.431.201l5.14-.067v-2.229l-3.973-.067-3.994-.045-.045-8.316-.067-8.295-1.123-.066c-.673-.045-1.234.044-1.413.222zM206.261 57.948c-.381.69-.336 17.881.045 18.394.225.29.539.38 1.392.312l1.122-.067V57.636l-1.167-.067c-.965-.067-1.212 0-1.392.379zM201.773 100.266c-3.366 7.179-8.102 17.904-8.057 18.238.068.379.27.446 1.324.513l1.257.067 1.01-2.297 1.01-2.296 4.421-.067 4.398-.045.898 1.94c1.279 2.787 1.122 2.631 2.491 2.631 1.122 0 1.212-.045 1.257-.557.045-.335-1.549-4.148-4.04-9.588l-4.084-9.03-.808-.067c-.673-.067-.83.023-1.077.558zm2.76 8.16l1.661 3.724h-3.366c-3.12 0-3.367-.023-3.232-.402.247-.691 3.164-7.134 3.209-7.09.023.022.786 1.717 1.728 3.768zM130.947 100.177c-.067.133-.09 4.437-.067 9.52l.067 9.253h10.772v-2.23l-3.972-.066-3.995-.045v-8.094c0-5.997-.067-8.16-.269-8.361-.359-.356-2.402-.356-2.536.023zM146.679 100.243c-.18.446-.18 18.016 0 18.462.157.423 2.109.49 2.513.089.202-.201.269-2.564.269-9.231 0-4.927-.067-9.119-.134-9.32-.202-.512-2.446-.512-2.648 0zM156.912 100.154c-.202.201-.269 2.587-.269 9.342 0 7.626.045 9.097.314 9.342.247.179 1.526.246 4.668.179l4.331-.067 1.234-.691c3.097-1.739 3.658-6.02 1.078-8.205l-.921-.781.629-.735c.92-1.071 1.234-1.985 1.234-3.523 0-1.65-.359-2.587-1.459-3.634-1.324-1.271-2.311-1.494-6.732-1.494-2.693 0-3.927.089-4.107.267zm8.191 2.765c.337.245.786.892.965 1.382.292.825.292 1.048 0 1.873-.224.602-.606 1.115-1.099 1.449-.674.446-1.033.513-3.075.513h-2.334V102.295l2.446.089c2.065.067 2.581.156 3.097.535zm.045 8.294c2.244 1.137 2.244 3.857 0 4.994-.583.313-1.324.402-3.164.402h-2.424V110.812h2.424c1.84 0 2.581.089 3.164.401zM176.212 100.154c-.202.201-.269 2.587-.269 9.342 0 7.559.045 9.12.314 9.32.179.156.808.246 1.414.201l1.077-.067.067-3.523.067-3.5h4.466l1.796 3.567 1.795 3.568h1.347c2.019 0 1.997-.313-.18-4.281l-1.773-3.256.965-.691c1.953-1.36 3.03-3.701 2.693-5.841-.179-1.271-1.279-3.144-2.222-3.858-1.436-1.092-2.334-1.248-6.979-1.248-3.052 0-4.399.089-4.578.267zm8.775 2.72c.404.157 1.009.625 1.346 1.004 1.167 1.382 1.01 3.121-.426 4.504l-.786.758-3.142.067-3.119.089v-6.734h2.693c1.773 0 2.962.112 3.434.312zM216.697 100.221c-.18.468-.18 18.016 0 18.484.202.513 2.446.513 2.648 0 .067-.201.134-1.806.134-3.568v-3.21H223.856l1.795 3.523 1.795 3.5h1.324c2.087 0 2.087-.156-.045-4.036-1.795-3.299-1.795-3.322-1.324-3.656 2.155-1.494 3.142-3.144 3.142-5.351.023-1.739-.538-3.122-1.683-4.281-1.548-1.516-1.997-1.628-7.271-1.695-4.219-.066-4.758-.022-4.892.29zm8.976 2.698c.943.446 1.571 1.226 1.908 2.341.224.736.202.959-.269 1.918-.292.579-.876 1.293-1.302 1.56-.696.469-1.032.513-3.636.513h-2.895v-6.689h2.716c2.042 0 2.895.089 3.478.357zM234.179 100.355c-.18.535.044.892 3.747 5.953l2.648 3.634v4.281c0 3.055.068 4.37.27 4.571.404.401 2.356.334 2.513-.089.067-.201.135-2.252.135-4.549v-4.214l3.254-4.414c3.837-5.173 3.927-5.485 1.885-5.597l-1.279-.066-2.626 3.589c-1.459 1.984-2.715 3.523-2.783 3.411-.089-.089-1.122-1.493-2.266-3.076-2.918-4.036-2.783-3.902-4.174-3.902-.988 0-1.212.067-1.324.468z"})))},qplBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,vc);return n.createElement("svg",mc({viewBox:"0 0 320 43",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ac||(ac=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"})),rc||(rc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"})),nc||(nc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"})),cc||(cc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"})),ic||(ic=n.createElement("path",{d:"M59.443 28.671a.703.703 0 01.03 1.258l-.772.437c-.28.162-.655.119-.914-.035L54.5 28.467c-.9.37-1.907.563-3.01.563-4.136 0-7.425-3.271-7.425-7.384a7.393 7.393 0 017.424-7.424 7.41 7.41 0 017.445 7.425c0 1.932-.826 4-2.296 5.422l2.806 1.602zm89.86-6.949a2.672 2.672 0 002.662-2.668c0-1.372-1.196-2.47-2.662-2.47h-2.801v5.138h2.801zm-2.801 6.404a.723.723 0 01-.712.708h-.75a.709.709 0 01-.713-.708v-13a.71.71 0 01.712-.708h4.362c2.611 0 4.759 2.111 4.759 4.674 0 2.615-2.138 4.756-4.738 4.756h-2.92v4.277zm11.38-13c0-.382.329-.708.713-.708h.749a.71.71 0 01.714.709v8.187c0 2.149 1.338 3.65 3.373 3.65 2.064 0 3.411-1.474 3.411-3.61v-8.226a.71.71 0 01.713-.709h.751c.384 0 .712.326.712.708v8.305c0 3.22-2.33 5.6-5.588 5.6-3.237 0-5.548-2.38-5.548-5.6v-8.305zm21.313 5.456c1.258 0 2.029-.847 2.029-2.117 0-1.266-.734-2.02-2.029-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.919v4.236h3.255zm4.481-2.138c0 2.41-1.932 4.126-4.64 4.126h-4.5a.711.711 0 01-.712-.71V15.127a.71.71 0 01.712-.708h4.323c2.553 0 4.384 1.663 4.384 3.948 0 1.256-.64 2.362-1.593 3.094 1.226.673 2.026 1.761 2.026 3.248v-.001zm11.994 2.138c.4 0 .714.323.714.708v.57a.727.727 0 01-.21.504.717.717 0 01-.504.207h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.77c.384 0 .712.326.712.708v11.719h5.347zm4.119-11.72c0-.38.329-.708.712-.708h.791c.384 0 .714.326.714.709v12.998a.726.726 0 01-.714.71h-.791a.725.725 0 01-.712-.711V15.127zm13.994-.903c1.949 0 3.477.617 5.017 1.923.288.288.31.735.019 1.026l-.508.502c-.292.363-.681.34-.999.025-.998-.86-2.328-1.39-3.548-1.39-2.876 0-5.169 2.4-5.169 5.318 0 2.9 2.297 5.298 5.169 5.298 1.372 0 2.186-.368 3.558-1.399.291-.23.61-.25.911-.047l.571.512c.334.25.295.76.011 1.041-1.365 1.317-3.128 2-5.032 2-4.141 0-7.463-3.28-7.463-7.386 0-4.112 3.33-7.424 7.463-7.424zm24.873 12.624c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.657.716.716 0 01-.273.053h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.771c.383 0 .712.327.712.708v11.719h5.346zm4.119-11.72c0-.382.329-.708.713-.708h.788c.385 0 .714.326.714.708v12.998a.725.725 0 01-.714.71h-.788a.724.724 0 01-.713-.711V15.127zm12.572 5.456c1.259 0 2.03-.848 2.03-2.117 0-1.266-.734-2.02-2.03-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.918v4.236h3.254zm4.482-2.139c0 2.41-1.933 4.127-4.641 4.127h-4.499a.71.71 0 01-.714-.71V15.127c0-.385.314-.708.714-.708h4.322c2.554 0 4.385 1.663 4.385 3.948 0 1.256-.64 2.362-1.594 3.094 1.226.673 2.027 1.761 2.027 3.248zm10.178-3.221c1.36 0 2.504-1.133 2.504-2.53 0-1.301-1.164-2.432-2.504-2.432h-3.491v4.962h3.491zm-3.529 6.638a.723.723 0 01-.712.708h-.771a.714.714 0 01-.658-.436.725.725 0 01-.055-.272V15.127a.71.71 0 01.713-.709h5.111c2.567 0 4.642 2.005 4.642 4.518 0 1.783-1.091 3.353-2.788 4.166l2.531 4.667c.262.487-.048 1.064-.635 1.064h-1.006a.675.675 0 01-.617-.36l-2.531-5.018h-3.224v4.67zm18.887-7.384a575.069 575.069 0 00-1.209-2.708l-2.441 5.455h4.878c-.318-.707-.64-1.426-1.228-2.747zm-1.926-6.12a.688.688 0 01.637-.4h.198c.297 0 .514.157.643.415l5.961 13.21c.222.48-.104.988-.644.988h-.79a.688.688 0 01-.643-.415l-1.37-3.04h-6.569l-1.347 3.028a.698.698 0 01-.651.427h-.788c-.539 0-.866-.506-.644-.986l6.007-13.227zm16.639 6.865c1.36 0 2.503-1.133 2.503-2.53 0-1.301-1.164-2.432-2.503-2.432h-3.491v4.962h3.491zm-3.531 6.639a.724.724 0 01-.713.709h-.77a.716.716 0 01-.504-.207.706.706 0 01-.209-.502V15.127a.71.71 0 01.712-.709h5.113c2.566 0 4.641 2.005 4.641 4.518 0 1.782-1.092 3.353-2.788 4.166l2.531 4.668c.261.486-.049 1.063-.635 1.063h-1.006a.671.671 0 01-.618-.36l-2.53-5.018h-3.224v4.67zM308.115 15.5a.694.694 0 01-.026-.724.698.698 0 01.63-.358h.926c.241 0 .45.133.59.316l3.714 5.101 3.716-5.106a.744.744 0 01.586-.31h.929c.578 0 .901.598.588 1.103l-4.751 6.45v6.153a.726.726 0 01-.713.71h-.771a.71.71 0 01-.712-.71V21.99l-4.706-6.49V15.5zm-245.026-.33c0-.38.328-.707.712-.707h.75a.71.71 0 01.713.708v8.188c0 2.15 1.338 3.65 3.374 3.65 2.063 0 3.411-1.474 3.411-3.61V15.17a.71.71 0 01.712-.708h.751c.384 0 .713.326.713.708v8.306c0 3.218-2.33 5.598-5.587 5.598-3.24 0-5.55-2.379-5.55-5.598v-8.306zm24.767 11.72c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.711.711 0 01-.712-.709V15.171c0-.386.312-.708.712-.708h7.777c.399 0 .714.322.714.708v.57a.711.711 0 01-.714.71h-6.294v4.118h5.327c.383 0 .712.328.712.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.294zm13.653 0c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.712.712 0 01-.712-.709V15.171a.71.71 0 01.712-.708h7.777c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.656.712.712 0 01-.273.054h-6.294v4.118h5.327c.384 0 .713.328.713.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.293zm7.281 1.28a.704.704 0 01-.209.502.724.724 0 01-.503.206h-.692a.723.723 0 01-.712-.709V14.956c0-.385.329-.69.712-.69h.332c.206 0 .399.094.527.253l8.238 10.21v-9.557a.71.71 0 01.713-.709h.691c.384 0 .714.327.714.709v13.214c0 .384-.331.69-.714.69h-.192a.677.677 0 01-.527-.253l-8.378-10.402v9.749zm14.292-1.87l.027-.036c.036-.045.068-.084.139-.175.077-.1.111-.143.147-.184.34-.444.752-.595 1.18-.228l.107.093c.26.229.539.435.834.618.707.439 1.444.698 2.174.698 1.361 0 2.307-.81 2.307-1.824 0-1.072-.869-1.803-3.251-2.793-2.668-1.159-3.678-2.203-3.678-4.372 0-2.023 1.686-3.83 4.543-3.83a6.623 6.623 0 012.544.526c.277.115.526.238.744.362.133.075.228.136.24.148.374.188.56.66.248 1.154a5.326 5.326 0 00-.11.172l-.002.006c-.04.064-.08.127-.122.19-.279.434-.677.548-1.14.288-.008-.003-.186-.11-.275-.162-.172-.1-.348-.19-.528-.275-.527-.245-1.042-.398-1.509-.42a2.478 2.478 0 00-.109-.003c-1.577 0-2.386.843-2.386 1.824 0 1.042.727 1.742 2.453 2.458 3.317 1.343 4.594 2.465 4.594 4.67 0 2.2-2.066 3.87-4.602 3.87a6.553 6.553 0 01-3.014-.744 6.331 6.331 0 01-1.373-.929l-.042-.036c-.329-.29-.423-.622-.14-1.066zm-71.594.684c2.957 0 5.385-2.405 5.385-5.338 0-2.94-2.437-5.377-5.385-5.377-2.944 0-5.365 2.434-5.365 5.378 0 2.935 2.413 5.336 5.365 5.336z"})))},qplColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,zc);return n.createElement("svg",yc({viewBox:"0 0 355 48",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,hc||(hc=n.createElement("g",{clipPath:"url(#logo-qpl-color_svg__clip0)"},n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M36.012 11.016v20.682l-9.003 5.17V16.186l-9.002-5.17-9.003 5.17v20.681L0 31.697v-20.68l9.004-5.173 9.001-5.17h.002l9.003 5.17 9.003 5.17-.001.002zM9.002 36.868l9.004-5.17 9.003 5.17 9.004 5.17-9.004 5.17-9.003-5.17-9.004-5.17z",fill:"#4B2D83"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M9.003 36.868L27 47.209l9-5.17-18-10.341-8.997 5.171z",fill:"#422980"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M27 16.185v20.683l9-5.17V11.015l-9 5.17z",fill:"#5C3296"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 31.698l9 5.17V16.185l-9-5.17v20.682z",fill:"#282561"}),n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 11.016l9.004 5.17L18 11.016l9 5.17 9-5.17L18 .674 0 11.016z",fill:"#422980"}),n.createElement("path",{d:"M65.945 32.481a.78.78 0 01.033 1.395l-.856.485c-.312.18-.727.132-1.014-.039l-3.648-2.067c-.998.41-2.115.624-3.34.624-4.587 0-8.236-3.629-8.236-8.19a8.202 8.202 0 018.236-8.237 8.221 8.221 0 018.259 8.236c0 2.144-.916 4.438-2.547 6.016l3.113 1.777zm99.688-7.709a2.962 2.962 0 002.953-2.96c0-1.522-1.326-2.74-2.953-2.74h-3.107v5.7h3.107zm-3.107 7.104a.803.803 0 01-.79.786h-.832a.787.787 0 01-.791-.786v-14.42c0-.429.347-.787.79-.787h4.839c2.896 0 5.28 2.342 5.28 5.185 0 2.901-2.372 5.276-5.257 5.276h-3.239v4.746zm12.624-14.42c0-.425.365-.787.791-.787h.832c.444 0 .791.358.791.786v9.083c0 2.384 1.485 4.05 3.742 4.05 2.29 0 3.785-1.636 3.785-4.006v-9.126c0-.428.348-.786.79-.786h.834c.426 0 .79.362.79.786v9.213c0 3.571-2.585 6.212-6.2 6.212-3.591 0-6.155-2.64-6.155-6.212v-9.213zm23.645 6.051c1.395 0 2.251-.94 2.251-2.348 0-1.405-.815-2.24-2.251-2.24H195.6v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.239v4.7H199.167zm4.972-2.373c0 2.674-2.144 4.578-5.148 4.578h-4.992a.79.79 0 01-.79-.788V17.455c0-.427.347-.785.79-.785h4.796c2.832 0 4.863 1.845 4.863 4.38 0 1.393-.71 2.62-1.767 3.432 1.36.747 2.248 1.954 2.248 3.603zm13.305 2.372c.444 0 .792.358.792.786v.633a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.348-.785.79-.785h.855c.426 0 .79.362.79.786v13h5.931zm4.57-13c0-.424.365-.787.79-.787h.877c.426 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.877a.804.804 0 01-.79-.788V17.455zm15.525-1.004c2.162 0 3.857.685 5.565 2.134.32.32.344.815.021 1.138l-.563.557c-.324.403-.756.378-1.109.028-1.107-.955-2.582-1.543-3.936-1.543-3.19 0-5.734 2.664-5.734 5.9 0 3.217 2.548 5.878 5.734 5.878 1.523 0 2.425-.408 3.948-1.552.322-.255.676-.278 1.01-.052l.634.568c.37.278.327.842.012 1.155-1.514 1.461-3.47 2.218-5.582 2.218-4.594 0-8.28-3.639-8.28-8.193 0-4.562 3.694-8.236 8.28-8.236zm27.593 14.005c.444 0 .792.358.792.786v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-7.576a.79.79 0 01-.79-.788v-14.42c0-.427.346-.785.79-.785h.855c.425 0 .79.363.79.786v13h5.931v.001zm4.57-13c0-.425.364-.787.79-.787h.875c.427 0 .792.362.792.786v14.42a.805.805 0 01-.792.787h-.875a.802.802 0 01-.79-.789V17.455v.001zm13.947 6.051c1.396 0 2.252-.94 2.252-2.348 0-1.405-.815-2.24-2.252-2.24h-3.195v4.59h3.195v-.002zm.372 6.95c1.378 0 2.384-1.018 2.384-2.394 0-1.296-1.207-2.306-2.756-2.306h-3.238v4.7h3.61zm4.973-2.373c0 2.674-2.145 4.578-5.149 4.578h-4.991a.792.792 0 01-.792-.788v-14.42c0-.427.348-.785.792-.785h4.795c2.833 0 4.864 1.845 4.864 4.38 0 1.393-.71 2.62-1.768 3.432 1.36.747 2.249 1.954 2.249 3.603zm11.291-3.574c1.509 0 2.778-1.257 2.778-2.807 0-1.443-1.292-2.698-2.778-2.698h-3.873v5.505h3.873zm-3.915 7.364a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.429.347-.786.79-.786h5.671c2.847 0 5.149 2.224 5.149 5.012 0 1.978-1.21 3.72-3.093 4.622l2.808 5.177c.291.54-.053 1.181-.704 1.181h-1.116a.75.75 0 01-.685-.4l-2.808-5.567h-3.576v5.181zm20.953-8.192a772.62 772.62 0 00-1.342-3.004l-2.708 6.052h5.412a687.64 687.64 0 01-1.362-3.048zm-2.137-6.789a.759.759 0 01.706-.443h.22c.33 0 .57.174.714.46l6.612 14.655c.247.533-.115 1.096-.714 1.096h-.876a.768.768 0 01-.714-.46l-1.52-3.374h-7.287l-1.494 3.36a.774.774 0 01-.722.474h-.875c-.598 0-.96-.562-.714-1.094l6.664-14.674zm18.459 7.616c1.508 0 2.777-1.257 2.777-2.807 0-1.443-1.292-2.698-2.777-2.698h-3.873v5.505h3.873zm-3.918 7.365a.803.803 0 01-.79.786h-.855a.787.787 0 01-.791-.786v-14.42c0-.428.348-.786.79-.786h5.672c2.847 0 5.149 2.224 5.149 5.012 0 1.977-1.211 3.72-3.093 4.622l2.808 5.178c.29.54-.054 1.18-.704 1.18h-1.117a.744.744 0 01-.685-.4l-2.807-5.567h-3.577v5.181zm12.088-14.006a.773.773 0 01.67-1.2h1.028c.267 0 .499.147.654.35l4.12 5.66 4.123-5.665a.824.824 0 01.65-.345h1.03c.642 0 1 .665.653 1.225l-5.271 7.155v6.826a.806.806 0 01-.791.788h-.855a.79.79 0 01-.79-.788V25.07l-5.221-7.2zm-271.826-.365c0-.423.364-.785.79-.785h.832c.445 0 .792.357.792.785v9.084c0 2.384 1.484 4.05 3.742 4.05 2.289 0 3.785-1.636 3.785-4.006v-9.128c0-.428.347-.785.79-.785h.833c.426 0 .79.362.79.785v9.215c0 3.57-2.584 6.21-6.198 6.21-3.593 0-6.156-2.639-6.156-6.21v-9.215zm27.476 13.001c.444 0 .792.358.792.787v.632a.79.79 0 01-.792.787h-8.627a.79.79 0 01-.79-.787v-14.42c0-.428.346-.785.79-.785h8.627c.443 0 .792.357.792.785v.632a.791.791 0 01-.792.788h-6.982v4.57h5.91c.425 0 .79.362.79.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm15.147 0c.444 0 .792.358.792.787v.632a.793.793 0 01-.792.787h-8.628a.79.79 0 01-.79-.787v-14.42c0-.427.347-.785.79-.785h8.628c.444 0 .792.357.792.785v.632a.784.784 0 01-.233.558.785.785 0 01-.559.23h-6.983v4.57h5.91c.426 0 .791.362.791.784v.632c0 .442-.36.787-.79.787h-5.91v4.808h6.982zm8.077 1.42a.78.78 0 01-.232.557.8.8 0 01-.558.23h-.767a.8.8 0 01-.79-.788V17.266c0-.427.365-.765.79-.765h.368a.75.75 0 01.585.28l9.139 11.326V17.505c0-.427.347-.786.79-.786h.767c.426 0 .792.363.792.786v14.66c0 .426-.367.765-.792.765h-.213a.752.752 0 01-.585-.28l-9.294-11.54v10.815zm15.855-2.074l.03-.04c.04-.05.076-.094.155-.195.085-.11.123-.158.163-.204.377-.492.834-.66 1.309-.253l.118.104a7 7 0 00.925.685c.785.487 1.602.775 2.412.775 1.51 0 2.56-.899 2.56-2.024 0-1.189-.964-2-3.607-3.098-2.96-1.286-4.08-2.444-4.08-4.85 0-2.245 1.87-4.25 5.04-4.25.97.007 1.929.205 2.822.584.307.128.583.264.825.402.148.083.253.15.266.164.415.208.622.732.276 1.28-.032.048-.06.091-.122.191l-.003.006a8.212 8.212 0 01-.135.211c-.31.482-.751.608-1.265.32-.009-.004-.206-.123-.305-.18a7.769 7.769 0 00-.585-.305c-.585-.272-1.156-.442-1.675-.466a2.67 2.67 0 00-.12-.003c-1.75 0-2.647.935-2.647 2.023 0 1.156.806 1.933 2.721 2.727 3.68 1.49 5.096 2.734 5.096 5.18 0 2.442-2.292 4.294-5.105 4.294a7.273 7.273 0 01-3.344-.825 7.02 7.02 0 01-1.523-1.03l-.046-.04c-.365-.323-.47-.69-.156-1.183zm-79.424.758c3.28 0 5.974-2.668 5.974-5.92 0-3.263-2.704-5.967-5.974-5.967-3.266 0-5.952 2.7-5.952 5.966 0 3.257 2.677 5.92 5.952 5.92v.001z",fill:"#422980"}))),dc||(dc=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-qpl-color_svg__clip0"},n.createElement("path",{fill:"#fff",transform:"translate(0 .674)",d:"M0 0h355v47H0z"})))))},qplWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,jc);return n.createElement("svg",Cc({viewBox:"0 0 320 43",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,pc||(pc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M32.462 9.322v18.643l-8.116 4.66V13.984l-8.114-4.66-8.116 4.66v18.642L0 27.965V9.322L8.116 4.66 16.23 0h.002l8.115 4.66 8.115 4.66v.002zM8.114 32.626l8.117-4.662 8.115 4.662 8.116 4.66-8.116 4.66-8.115-4.66-8.117-4.66z"})),uc||(uc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M8.115 32.626l16.223 9.32 8.112-4.66-16.225-9.322-8.11 4.662z"})),fc||(fc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M24.338 13.982v18.644l8.113-4.661V9.322l-8.113 4.66zM0 27.965l8.113 4.66V13.982L0 9.322v18.643z"})),gc||(gc=n.createElement("path",{fillRule:"evenodd",clipRule:"evenodd",d:"M0 9.322l8.116 4.66 8.11-4.66 8.112 4.66 8.113-4.66L16.225 0 0 9.322z"})),bc||(bc=n.createElement("path",{d:"M59.443 28.671a.703.703 0 01.03 1.258l-.772.437c-.28.162-.655.119-.914-.035L54.5 28.467c-.9.37-1.907.563-3.01.563-4.136 0-7.425-3.271-7.425-7.384a7.393 7.393 0 017.424-7.424 7.41 7.41 0 017.445 7.425c0 1.932-.826 4-2.296 5.422l2.806 1.602zm89.86-6.949a2.672 2.672 0 002.662-2.668c0-1.372-1.196-2.47-2.662-2.47h-2.801v5.138h2.801zm-2.801 6.404a.723.723 0 01-.712.708h-.75a.709.709 0 01-.713-.708v-13a.71.71 0 01.712-.708h4.362c2.611 0 4.759 2.111 4.759 4.674 0 2.615-2.138 4.756-4.738 4.756h-2.92v4.277zm11.38-13c0-.382.329-.708.713-.708h.749a.71.71 0 01.714.709v8.187c0 2.149 1.338 3.65 3.373 3.65 2.064 0 3.411-1.474 3.411-3.61v-8.226a.71.71 0 01.713-.709h.751c.384 0 .712.326.712.708v8.305c0 3.22-2.33 5.6-5.588 5.6-3.237 0-5.548-2.38-5.548-5.6v-8.305zm21.313 5.456c1.258 0 2.029-.847 2.029-2.117 0-1.266-.734-2.02-2.029-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.919v4.236h3.255zm4.481-2.138c0 2.41-1.932 4.126-4.64 4.126h-4.5a.711.711 0 01-.712-.71V15.127a.71.71 0 01.712-.708h4.323c2.553 0 4.384 1.663 4.384 3.948 0 1.256-.64 2.362-1.593 3.094 1.226.673 2.026 1.761 2.026 3.248v-.001zm11.994 2.138c.4 0 .714.323.714.708v.57a.727.727 0 01-.21.504.717.717 0 01-.504.207h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.77c.384 0 .712.326.712.708v11.719h5.347zm4.119-11.72c0-.38.329-.708.712-.708h.791c.384 0 .714.326.714.709v12.998a.726.726 0 01-.714.71h-.791a.725.725 0 01-.712-.711V15.127zm13.994-.903c1.949 0 3.477.617 5.017 1.923.288.288.31.735.019 1.026l-.508.502c-.292.363-.681.34-.999.025-.998-.86-2.328-1.39-3.548-1.39-2.876 0-5.169 2.4-5.169 5.318 0 2.9 2.297 5.298 5.169 5.298 1.372 0 2.186-.368 3.558-1.399.291-.23.61-.25.911-.047l.571.512c.334.25.295.76.011 1.041-1.365 1.317-3.128 2-5.032 2-4.141 0-7.463-3.28-7.463-7.386 0-4.112 3.33-7.424 7.463-7.424zm24.873 12.624c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.657.716.716 0 01-.273.053h-6.829a.71.71 0 01-.712-.71V15.127a.71.71 0 01.712-.708h.771c.383 0 .712.327.712.708v11.719h5.346zm4.119-11.72c0-.382.329-.708.713-.708h.788c.385 0 .714.326.714.708v12.998a.725.725 0 01-.714.71h-.788a.724.724 0 01-.713-.711V15.127zm12.572 5.456c1.259 0 2.03-.848 2.03-2.117 0-1.266-.734-2.02-2.03-2.02h-2.88v4.138h2.88v-.001zm.336 6.264c1.242 0 2.149-.917 2.149-2.157 0-1.169-1.088-2.079-2.485-2.079h-2.918v4.236h3.254zm4.482-2.139c0 2.41-1.933 4.127-4.641 4.127h-4.499a.71.71 0 01-.714-.71V15.127c0-.385.314-.708.714-.708h4.322c2.554 0 4.385 1.663 4.385 3.948 0 1.256-.64 2.362-1.594 3.094 1.226.673 2.027 1.761 2.027 3.248zm10.178-3.221c1.36 0 2.504-1.133 2.504-2.53 0-1.301-1.164-2.432-2.504-2.432h-3.491v4.962h3.491zm-3.529 6.638a.723.723 0 01-.712.708h-.771a.714.714 0 01-.658-.436.725.725 0 01-.055-.272V15.127a.71.71 0 01.713-.709h5.111c2.567 0 4.642 2.005 4.642 4.518 0 1.783-1.091 3.353-2.788 4.166l2.531 4.667c.262.487-.048 1.064-.635 1.064h-1.006a.675.675 0 01-.617-.36l-2.531-5.018h-3.224v4.67zm18.887-7.384a575.069 575.069 0 00-1.209-2.708l-2.441 5.455h4.878c-.318-.707-.64-1.426-1.228-2.747zm-1.926-6.12a.688.688 0 01.637-.4h.198c.297 0 .514.157.643.415l5.961 13.21c.222.48-.104.988-.644.988h-.79a.688.688 0 01-.643-.415l-1.37-3.04h-6.569l-1.347 3.028a.698.698 0 01-.651.427h-.788c-.539 0-.866-.506-.644-.986l6.007-13.227zm16.639 6.865c1.36 0 2.503-1.133 2.503-2.53 0-1.301-1.164-2.432-2.503-2.432h-3.491v4.962h3.491zm-3.531 6.639a.724.724 0 01-.713.709h-.77a.716.716 0 01-.504-.207.706.706 0 01-.209-.502V15.127a.71.71 0 01.712-.709h5.113c2.566 0 4.641 2.005 4.641 4.518 0 1.782-1.092 3.353-2.788 4.166l2.531 4.668c.261.486-.049 1.063-.635 1.063h-1.006a.671.671 0 01-.618-.36l-2.53-5.018h-3.224v4.67zM308.115 15.5a.694.694 0 01-.026-.724.698.698 0 01.63-.358h.926c.241 0 .45.133.59.316l3.714 5.101 3.716-5.106a.744.744 0 01.586-.31h.929c.578 0 .901.598.588 1.103l-4.751 6.45v6.153a.726.726 0 01-.713.71h-.771a.71.71 0 01-.712-.71V21.99l-4.706-6.49V15.5zm-245.026-.33c0-.38.328-.707.712-.707h.75a.71.71 0 01.713.708v8.188c0 2.15 1.338 3.65 3.374 3.65 2.063 0 3.411-1.474 3.411-3.61V15.17a.71.71 0 01.712-.708h.751c.384 0 .713.326.713.708v8.306c0 3.218-2.33 5.598-5.587 5.598-3.24 0-5.55-2.379-5.55-5.598v-8.306zm24.767 11.72c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.711.711 0 01-.712-.709V15.171c0-.386.312-.708.712-.708h7.777c.399 0 .714.322.714.708v.57a.711.711 0 01-.714.71h-6.294v4.118h5.327c.383 0 .712.328.712.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.294zm13.653 0c.4 0 .714.323.714.71v.57a.712.712 0 01-.714.708h-7.777a.712.712 0 01-.712-.709V15.171a.71.71 0 01.712-.708h7.777c.4 0 .714.322.714.708v.57a.708.708 0 01-.441.656.712.712 0 01-.273.054h-6.294v4.118h5.327c.384 0 .713.328.713.708v.57a.71.71 0 01-.712.709h-5.327v4.334h6.293zm7.281 1.28a.704.704 0 01-.209.502.724.724 0 01-.503.206h-.692a.723.723 0 01-.712-.709V14.956c0-.385.329-.69.712-.69h.332c.206 0 .399.094.527.253l8.238 10.21v-9.557a.71.71 0 01.713-.709h.691c.384 0 .714.327.714.709v13.214c0 .384-.331.69-.714.69h-.192a.677.677 0 01-.527-.253l-8.378-10.402v9.749zm14.292-1.87l.027-.036c.036-.045.068-.084.139-.175.077-.1.111-.143.147-.184.34-.444.752-.595 1.18-.228l.107.093c.26.229.539.435.834.618.707.439 1.444.698 2.174.698 1.361 0 2.307-.81 2.307-1.824 0-1.072-.869-1.803-3.251-2.793-2.668-1.159-3.678-2.203-3.678-4.372 0-2.023 1.686-3.83 4.543-3.83a6.623 6.623 0 012.544.526c.277.115.526.238.744.362.133.075.228.136.24.148.374.188.56.66.248 1.154a5.326 5.326 0 00-.11.172l-.002.006c-.04.064-.08.127-.122.19-.279.434-.677.548-1.14.288-.008-.003-.186-.11-.275-.162-.172-.1-.348-.19-.528-.275-.527-.245-1.042-.398-1.509-.42a2.478 2.478 0 00-.109-.003c-1.577 0-2.386.843-2.386 1.824 0 1.042.727 1.742 2.453 2.458 3.317 1.343 4.594 2.465 4.594 4.67 0 2.2-2.066 3.87-4.602 3.87a6.553 6.553 0 01-3.014-.744 6.331 6.331 0 01-1.373-.929l-.042-.036c-.329-.29-.423-.622-.14-1.066zm-71.594.684c2.957 0 5.385-2.405 5.385-5.338 0-2.94-2.437-5.377-5.385-5.377-2.944 0-5.365 2.434-5.365 5.378 0 2.935 2.413 5.336 5.365 5.336z"})))},reservoirIconColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Tc);return n.createElement("svg",kc({viewBox:"0 0 105 129",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xc||(xc=n.createElement("path",{d:"M57.736.066H27.298S17.876-1.02 9.18 5.622C.483 12.265.604 20.962.604 20.962h48.798S73.317 19.634 71.868 42.1c-1.45 22.466-22.466 19.446-22.466 19.446L40 61.667l9.146 19.688h.86s14.735 4.953 32.733-7.247C100.736 61.908 99.528 42.1 99.528 42.1s1.812-15.944-9.059-28.627C79.599.791 57.736.066 57.736.066z",fill:"#0576D3"})),wc||(wc=n.createElement("path",{d:"M49.146 81.355V61.546L57.736 68l12.79 13.355h-21.38z",fill:"#fff"})),Ec||(Ec=n.createElement("path",{d:"M57.132 61.667H38.41l34.303 66.916h32.13l-27.66-51.28s-9.663-15.636-20.05-15.636z",fill:"#004B98"})),Oc||(Oc=n.createElement("path",{d:"M55.079 61.305c-13.528.362-16.669.362-16.669.362l10.364 19.787s12.965-.229 18.504-1.548c5.54-1.32 9.784-2.537 9.784-2.537s-8.455-16.427-21.983-16.064zM0 .066h27.056v20.775H0z",fill:"#004B98"})),Mc||(Mc=n.createElement("path",{fill:"#0576D3",d:"M0 20.841h27.056v107.5H0z"})))},reservoirVerticalColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Bc);return n.createElement("svg",Rc({viewBox:"0 0 234 261",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Sc||(Sc=n.createElement("g",{clipPath:"url(#logo-reservoir-vertical-color_svg__clip0_362_388)"},n.createElement("path",{d:"M3.63 181.54H17.3a14.33 14.33 0 016.56 1.4 10.237 10.237 0 014.3 3.93 11.481 11.481 0 011.52 6v.06a11.16 11.16 0 01-2.22 7 10.896 10.896 0 01-6.08 3.92l9.4 16.46h-4.27l-8.92-15.9c-.13.011-.26.011-.39 0H7.28v15.87H3.63v-38.74zM17 201.17a9.403 9.403 0 006.57-2.17 7.75 7.75 0 002.35-6 7.624 7.624 0 00-2.42-6 9.677 9.677 0 00-6.66-2.14H7.28v16.35l9.72-.04zM41.15 219a11.557 11.557 0 01-4.39-5 17.6 17.6 0 01-1.54-7.64 17.739 17.739 0 011.54-7.65 11.911 11.911 0 014.34-5.08 11.786 11.786 0 016.52-1.8 11.809 11.809 0 016.46 1.73 11.392 11.392 0 014.22 4.88 16.998 16.998 0 011.49 7.33v1.4H37v-2.82h21.07l-1.8 2.55v-1.35a13.449 13.449 0 00-1.11-5.78 8.22 8.22 0 00-3.06-3.56 8.43 8.43 0 00-12.17 3.64 13.048 13.048 0 00-1.14 5.7v1.35a13.422 13.422 0 001.14 5.8 8.37 8.37 0 003.21 3.65 9.162 9.162 0 004.86 1.28 9.927 9.927 0 003.65-.63 7.162 7.162 0 002.69-1.78 6.86 6.86 0 001.53-2.69l.08-.24h3.49v.27a9.678 9.678 0 01-1.44 3.29c-.66 1.02-1.5 1.911-2.48 2.63a11.782 11.782 0 01-3.44 1.72c-1.358.41-2.771.612-4.19.6a12.665 12.665 0 01-6.74-1.8zM70.65 219.74a9.361 9.361 0 01-3.75-2.93 8.558 8.558 0 01-1.66-4.33v-.25h3.52v.25a6.002 6.002 0 002.34 3.88 8.222 8.222 0 005 1.43 10.21 10.21 0 003.69-.59 5.24 5.24 0 002.39-1.7c.56-.739.86-1.643.85-2.57A3.812 3.812 0 0082 210a8.8 8.8 0 00-4-1.75l-4.22-1a12.702 12.702 0 01-5.86-2.76 6.125 6.125 0 01-1.92-4.66 6.899 6.899 0 011.27-4.12 8.552 8.552 0 013.52-2.81 12.281 12.281 0 015.14-1 11.883 11.883 0 015.2 1.06 8.902 8.902 0 013.52 2.93 8.593 8.593 0 011.49 4.28v.3H82.8v-.19a5.802 5.802 0 00-2.11-3.91 7.231 7.231 0 00-4.69-1.51 8.543 8.543 0 00-3.33.6 5.081 5.081 0 00-2.2 1.7 4.18 4.18 0 00-.78 2.51 3.567 3.567 0 001.21 2.77 9.203 9.203 0 004 1.77l4.19 1c2.8.667 4.783 1.583 5.95 2.75a6.33 6.33 0 011.76 4.68 6.859 6.859 0 01-1.37 4.22 9.117 9.117 0 01-3.75 2.86 13.45 13.45 0 01-5.43 1 13.224 13.224 0 01-5.6-.98zM99.15 219a11.557 11.557 0 01-4.39-5 17.599 17.599 0 01-1.55-7.64 17.74 17.74 0 011.55-7.65 12.282 12.282 0 0117.32-5.15 11.367 11.367 0 014.21 4.88 16.841 16.841 0 011.49 7.33v1.4H95v-2.82h21.09l-1.8 2.55v-1.35a13.31 13.31 0 00-1.12-5.78 8.094 8.094 0 00-3.06-3.56 8.42 8.42 0 00-6.909-.95 8.408 8.408 0 00-5.251 4.59 12.91 12.91 0 00-1.15 5.7v1.35a13.269 13.269 0 001.15 5.8 8.41 8.41 0 003.2 3.65 9.169 9.169 0 004.87 1.26 10.014 10.014 0 003.65-.63 7.124 7.124 0 002.68-1.78 6.62 6.62 0 001.53-2.69l.08-.24h3.5l-.06.27a9.882 9.882 0 01-1.35 3.29 10.197 10.197 0 01-2.49 2.63 11.685 11.685 0 01-3.44 1.72 13.99 13.99 0 01-4.19.6 12.614 12.614 0 01-6.78-1.78zM125.67 192.36h3.55v5h.08a7.999 7.999 0 012.54-4 6.54 6.54 0 014.33-1.48 8.024 8.024 0 012.21.32v3.47a4.558 4.558 0 00-1-.28 9.786 9.786 0 00-1.64-.12 5.997 5.997 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.55l-.05-27.96zM143.52 192.36h3.73l8.49 24.22h.1l8.52-24.22H168l-10.37 27.93h-3.76l-10.35-27.93zM177.41 219a11.85 11.85 0 01-4.47-5 17.174 17.174 0 01-1.6-7.68v-.06a16.99 16.99 0 011.6-7.66 11.775 11.775 0 014.47-5 13.457 13.457 0 0113.31 0 11.994 11.994 0 014.47 5 17.067 17.067 0 011.61 7.68v.06a17.139 17.139 0 01-1.61 7.69 12.099 12.099 0 01-4.46 5 12.366 12.366 0 01-6.66 1.77 12.74 12.74 0 01-6.66-1.8zm11.47-2.73a8.821 8.821 0 003.17-3.89 14.997 14.997 0 001.13-6.07v-.06a14.877 14.877 0 00-1.13-6.07 8.728 8.728 0 00-3.19-3.85A8.63 8.63 0 00184 195a8.497 8.497 0 00-4.75 1.34 8.892 8.892 0 00-3.18 3.87 14.599 14.599 0 00-1.14 6v.06a14.813 14.813 0 001.14 6.07 8.837 8.837 0 003.18 3.89 9.254 9.254 0 009.59 0l.04.04zM204 186.63a2.288 2.288 0 01-.68-1.68 2.206 2.206 0 01.68-1.65 2.354 2.354 0 012.566-.512c.286.119.546.293.764.512a2.217 2.217 0 01.67 1.7 2.354 2.354 0 01-1.446 2.159 2.36 2.36 0 01-2.554-.479v-.05zm-.12 5.73h3.54v27.93h-3.54v-27.93zM215.8 192.36h3.55v5h.08a8.007 8.007 0 012.53-4 6.579 6.579 0 014.34-1.48c.432-.002.864.035 1.29.11.308.05.612.12.91.21v3.47a4.25 4.25 0 00-1-.28 10.002 10.002 0 00-1.64-.12 5.927 5.927 0 00-5.68 3.65 9.813 9.813 0 00-.79 4.11v17.29h-3.59v-27.96zM3.28 235.89H5.2l8.24 11.83-2.2-1.95h.9v-9.88h2.06v13.39h-1.92l-8.23-11.85 2.2 1.94h-.9v9.91H3.28v-13.39zM22 243.79l-4.71-7.9h2.31l3.42 5.9h.06l3.41-5.9h2.32l-4.72 7.9v5.49H22v-5.49zM31.86 235.89h2.08v13.39h-2.08v-13.39zm1 7.07h3.43a2.9 2.9 0 002.09-.7 2.513 2.513 0 00.75-1.94 2.541 2.541 0 00-.75-2 3.002 3.002 0 00-2.09-.7H32.9v-1.75h4a4.815 4.815 0 012.32.55c.64.376 1.163.923 1.51 1.58a4.54 4.54 0 01.57 2.3 4.54 4.54 0 01-.57 2.3 4.004 4.004 0 01-1.56 1.55 4.71 4.71 0 01-2.32.55h-4l.01-1.74zM44.71 235.89h2.08v11.59H53v1.8h-8.29v-13.39zM64.88 235.89h4.72a7.002 7.002 0 013.41.78 5.292 5.292 0 012.17 2.27 7.91 7.91 0 01.76 3.6 7.901 7.901 0 01-.76 3.62 5.257 5.257 0 01-2.18 2.33 6.999 6.999 0 01-3.42.79h-4.7v-13.39zm4.52 11.59c.84.026 1.671-.17 2.41-.57a3.608 3.608 0 001.49-1.66 6.298 6.298 0 00.51-2.67 6.28 6.28 0 00-.51-2.66 3.761 3.761 0 00-1.5-1.65 4.786 4.786 0 00-2.4-.56H67v9.79l2.4-.02zM79.52 235.89H88v1.8h-6.4v3.9h6.07v1.74H81.6v4.15H88v1.8h-8.5l.02-13.39zM93.69 249.05a4.238 4.238 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.054.4.237.772.52 1.06.306.315.683.552 1.1.69a4.79 4.79 0 001.58.24 4.24 4.24 0 001.55-.25 2.31 2.31 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.489 4.489 0 00-1.91-.77l-1.46-.3a6.003 6.003 0 01-2.93-1.34 3.202 3.202 0 01-1-2.41c-.01-.717.21-1.418.63-2a3.996 3.996 0 011.71-1.35 6.06 6.06 0 012.52-.49 6.14 6.14 0 012.46.47c.666.285 1.245.74 1.68 1.32.425.583.668 1.279.7 2v.15h-2v-.12a2 2 0 00-.46-1.07 2.42 2.42 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.126 2.126 0 00-.94.69 1.592 1.592 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.21 6.21 0 013 1.33 3.186 3.186 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.901 3.901 0 01-1.67 1.35 6.837 6.837 0 01-2.73.49 7.083 7.083 0 01-2.63-.44zM105.26 235.89h2.08v13.39h-2.08v-13.39zM113.85 248.65a5.64 5.64 0 01-2.16-2.41 8.373 8.373 0 01-.77-3.72 7.998 7.998 0 01.76-3.64 5.644 5.644 0 012.16-2.37 6.421 6.421 0 013.31-.83 6.26 6.26 0 012.72.55 5.11 5.11 0 011.91 1.51 5.518 5.518 0 011 2.17v.16h-2.08v-.11a3.676 3.676 0 00-1.31-1.8 3.742 3.742 0 00-2.2-.64 4 4 0 00-2.2.6 3.697 3.697 0 00-1.41 1.71 6.644 6.644 0 00-.49 2.69 6.809 6.809 0 00.5 2.76A4.005 4.005 0 00115 247c.656.418 1.422.63 2.2.61a4.172 4.172 0 001.92-.42 3.241 3.241 0 001.3-1.19 3.479 3.479 0 00.48-1.78V244h-3.51v-1.7h5.57v1.37a6.56 6.56 0 01-.69 3.11 4.686 4.686 0 01-2 2 6.498 6.498 0 01-3.11.69 6.247 6.247 0 01-3.31-.82zM126.56 235.89h1.92l8.24 11.83-2.2-1.95h.9v-9.88h2.07v13.39h-1.92l-8.24-11.85 2.2 1.94h-.9v9.91h-2.07v-13.39zM152 249.05a4.24 4.24 0 01-1.79-1.31 3.569 3.569 0 01-.74-2v-.14h2v.12c.055.398.233.769.51 1.06.311.313.691.55 1.11.69.51.168 1.044.249 1.58.24a4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71 1.78 1.78 0 00.35-1.09 1.558 1.558 0 00-.58-1.28 4.486 4.486 0 00-1.91-.77l-1.46-.3a6 6 0 01-2.93-1.34 3.208 3.208 0 01-1-2.41 3.417 3.417 0 01.64-2 3.995 3.995 0 011.71-1.35 6.673 6.673 0 015 0 4.1 4.1 0 011.69 1.32c.425.583.668 1.279.7 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.125 2.125 0 00-.94.69 1.59 1.59 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.212 6.212 0 013 1.33 3.215 3.215 0 01.94 2.44 3.65 3.65 0 01-.62 2.12 3.895 3.895 0 01-1.76 1.38 6.855 6.855 0 01-2.73.49 7.076 7.076 0 01-2.58-.49zM166.38 243.79l-4.72-7.9H164l3.43 5.9 3.42-5.9h2.32l-4.73 7.9v5.49h-2.08l.02-5.49zM177.85 249.05a4.24 4.24 0 01-1.79-1.31 3.652 3.652 0 01-.74-2v-.14h2v.12c.059.399.241.769.52 1.06.308.317.689.554 1.11.69a4.73 4.73 0 001.57.24 4.24 4.24 0 001.55-.25 2.311 2.311 0 001-.71c.241-.311.368-.696.36-1.09a1.583 1.583 0 00-.58-1.28 4.607 4.607 0 00-1.92-.77l-1.46-.3a6.057 6.057 0 01-2.93-1.34 3.206 3.206 0 01-1-2.41 3.343 3.343 0 01.63-2 3.995 3.995 0 011.71-1.35 6.702 6.702 0 015 0 4.238 4.238 0 011.69 1.32 3.74 3.74 0 01.69 2v.15h-2v-.12a2.003 2.003 0 00-.46-1.07 2.416 2.416 0 00-1-.69 4.412 4.412 0 00-2.84 0 2.18 2.18 0 00-.94.69 1.65 1.65 0 00-.34 1 1.49 1.49 0 00.6 1.23c.552.378 1.18.631 1.84.74l1.46.32a6.163 6.163 0 013 1.33 3.193 3.193 0 01.94 2.44 3.58 3.58 0 01-.62 2.12 3.853 3.853 0 01-1.76 1.38 6.838 6.838 0 01-2.73.49 7.059 7.059 0 01-2.56-.49zM192.36 237.69h-4.1v-1.8h10.27v1.8h-4.09v11.59h-2.08v-11.59zM201.82 235.89h8.5v1.8h-6.42v3.9h6.1v1.74h-6.1v4.15h6.42v1.8h-8.5v-13.39zM214.06 235.89h2.4l4.33 10.68h.06l4.33-10.68h2.41v13.39h-1.9v-9.87h-1l2.17-3.15-5.31 13h-1.54l-5.31-13 2.17 3.15H216v9.87h-1.9l-.04-13.39z",fill:"#000"}),n.createElement("path",{d:"M87.67.02H57.52v23.63h30.15V.02z",fill:"#004B98"}),n.createElement("path",{d:"M87.67 23.65H57.52v120.51h30.15V23.65zM87.67 23.65h28.18s22.16.88 21.8 22.8C137.29 67.85 118 68.79 118 68.79l-17 .32L112.39 92s54.7 5.57 56.11-45.65C168.5-2.44 117.92 0 117.92 0H87.67v23.65z",fill:"#0676D3"}),n.createElement("path",{d:"M101 69.11l37.59 75 36.66.06L144 86.6s-10.59-17.31-21.38-17.77l-21.62.28z",fill:"#004B98"}))))},schomburgBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Wc);return n.createElement("svg",qc({viewBox:"0 0 185 79",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Vc||(Vc=n.createElement("path",{d:"M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"})),_c||(_c=n.createElement("path",{d:"M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"})),Lc||(Lc=n.createElement("path",{d:"M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"})),Ic||(Ic=n.createElement("path",{d:"M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"})),Pc||(Pc=n.createElement("path",{d:"M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086zM77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z"})))},schomburgCircleBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Kc);return n.createElement("svg",Qc({viewBox:"0 0 67 67",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Hc||(Hc=n.createElement("path",{d:"M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"})),Fc||(Fc=n.createElement("path",{d:"M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"})),Nc||(Nc=n.createElement("path",{d:"M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"})),Dc||(Dc=n.createElement("path",{d:"M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"})),Ac||(Ac=n.createElement("path",{d:"M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z"})))},schomburgCircleColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,ai);return n.createElement("svg",ri({viewBox:"0 0 67 67",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Yc||(Yc=n.createElement("path",{d:"M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z",fill:"#C54B38"})),Gc||(Gc=n.createElement("path",{d:"M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z",fill:"#C54B38"})),Uc||(Uc=n.createElement("path",{d:"M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z",fill:"#C54B38"})),Xc||(Xc=n.createElement("path",{d:"M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z",fill:"#C54B38"})),Jc||(Jc=n.createElement("path",{d:"M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z",fill:"#C54B38"})))},schomburgCircleWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,vi);return n.createElement("svg",mi({viewBox:"0 0 67 67",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Zc||(Zc=n.createElement("path",{d:"M60.907 31.366l3.903 3.89 2.026-2-3.94-3.854 3.227-3.187-2.026-1.964-9.157 9.042 9.232 9.079 2.026-1.964-7.242-7.115 1.951-1.927zM.675 26.216l7.206 7.078-1.952 1.89-3.903-3.854L0 33.294l3.94 3.89-3.302 3.262 2.026 1.964 9.194-9.116-9.194-9.08-1.989 2.002zM17.714 43.04l15.687 15.49 15.723-15.527 1.99-1.964-17.676-17.454-1.989 1.964 15.649 15.49-13.697 13.526-15.65-15.49h-.037L5.293 51.34l2.026 2.001L17.714 43.04z"})),$c||($c=n.createElement("path",{d:"M33.397 62.312l-15.686-15.49-8.969 8.893 1.99 1.964 6.98-6.892 1.913 1.89-6.492 6.41 1.989 1.965 6.492-6.411 1.914 1.89-5.329 5.262 2.026 2.001 5.33-5.262 1.913 1.89-3.302 3.26 2.026 1.965 3.265-3.261 3.94 3.89 3.94-3.853 3.266 3.26 2.026-2-3.302-3.261 1.951-1.89 5.329 5.262 1.989-2.001-5.329-5.262 1.914-1.89 6.492 6.41 2.026-1.963-6.492-6.411 1.877-1.89 6.98 6.892 2.026-2-6.98-6.893 1.914-1.89 6.492 6.41 1.99-2-7.544-7.45-.938-.926-19.627 19.382zM53.041 35.163l-2.017 1.991L62.17 48.16l2.017-1.992L53.04 35.163z"})),ei||(ei=n.createElement("path",{d:"M31.635 49.008l1.764 1.779 9.87-9.746-1.99-1.964L27.582 25.55l5.854-5.744 15.65 15.454h.037l15.123-14.935-1.989-2-13.134 12.97-15.687-15.49-9.87 9.745 15.687 15.49-5.854 5.782-13.66-13.527-2.026-1.964L2.552 46.303l2.026 1.964 13.135-12.97 13.922 13.711zM4.603 18.36l-2.017 1.992L13.81 31.436l2.017-1.991L4.603 18.36z"})),ti||(ti=n.createElement("path",{d:"M33.437 4.278l15.686 15.49 8.931-8.82-1.989-2-6.942 6.855-1.914-1.89 6.455-6.336-2.027-2.002-6.417 6.374-1.951-1.89 5.254-5.188-1.99-2-5.253 5.187-1.914-1.89 3.227-3.187-2.026-1.964-3.227 3.15-1.914-1.89h.037L33.437.313l-3.94 3.891-3.19-3.187-2.027 1.964 3.227 3.187-1.913 1.89-5.217-5.114-1.988 1.964 5.178 5.151-1.914 1.89L15.2 5.575l-1.99 2.002 6.455 6.337-1.951 1.89-6.943-6.856-1.988 2 6.942 6.857-1.914 1.89-6.492-6.375-1.989 1.965 8.481 8.375L33.437 4.278z"})),li||(li=n.createElement("path",{d:"M33.436 8.057L15.724 25.548l1.989 1.964 15.686 15.49 2.026-1.964-15.686-15.49 13.697-13.526 15.687 15.49L61.469 15.32l-2.026-1.964-10.32 10.191-15.687-15.49z"})))},schomburgColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,zi);return n.createElement("svg",yi({viewBox:"0 0 185 79",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,ni||(ni=n.createElement("path",{d:"M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27z",fill:"#010101"})),ci||(ci=n.createElement("path",{d:"M55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z",fill:"#C54B38"})),ii||(ii=n.createElement("path",{d:"M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z",fill:"#C54B38"})),oi||(oi=n.createElement("path",{d:"M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z",fill:"#C54B38"})),si||(si=n.createElement("path",{d:"M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z",fill:"#C54B38"})),hi||(hi=n.createElement("path",{d:"M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086z",fill:"#C54B38"})),di||(di=n.createElement("path",{d:"M77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z",fill:"#010101"})))},schomburgWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ei);return n.createElement("svg",Oi({viewBox:"0 0 185 79",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,pi||(pi=n.createElement("path",{d:"M72.306 33.437a.607.607 0 100-1.213c-.306 0-.613.27-.613.606.034.337.307.607.613.607zm-.374 8.728h.817v-7.212h-.817v7.212zm2.758 0h.784v-5.257c.442-.674 1.328-1.416 2.248-1.416 1.09 0 1.498.674 1.498 1.72v4.953h.783v-5.122c0-1.315-.613-2.258-2.111-2.258-1.022 0-1.873.606-2.418 1.314v-1.146h-.784v7.212zm9.707 0h2.316c2.316 0 3.78-.81 3.78-2.797 0-1.45-1.056-2.292-2.316-2.528v-.033c1.124-.27 1.873-1.045 1.873-2.224 0-1.786-1.294-2.494-3.303-2.494H84.43v10.076h-.034zm.817-.708v-4.246h1.533c1.975 0 2.895.809 2.895 2.19 0 1.45-.954 2.09-2.93 2.09h-1.498v-.034zm0-4.954v-3.706h1.43c1.703 0 2.555.539 2.555 1.82 0 1.246-.817 1.886-2.554 1.886h-1.43zm6.948 5.662h.783V31.28h-.783v10.885zm4.632.168a2.87 2.87 0 002.213-1.078c0 .27.069.674.103.91h.783c-.102-.304-.17-.843-.17-1.45v-3.639c0-1.55-.852-2.291-2.35-2.291-.954 0-1.737.303-2.384.91l.442.539c.613-.573 1.192-.775 1.908-.775 1.09 0 1.6.539 1.6 1.718v.81h-.34c-1.703 0-3.849.538-3.849 2.459 0 1.146.818 1.887 2.044 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.03-1.82h.341v1.921c-.51.708-1.226 1.112-2.043 1.112zm7.458.674c1.09 0 1.874-.404 2.248-.741l-.34-.607c-.307.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.133 0-1.652.749-3.067 2.35-3.067.817 0 1.362.303 1.77.64l.409-.572c-.408-.337-1.09-.742-2.179-.742-1.874 0-3.202 1.483-3.202 3.774.034 1.955 1.09 3.808 3.167 3.808zm7.936-.168h.987l-3.405-4.044 3.235-3.168h-.987l-3.202 3.168 3.372 4.044zm-4.223 0h.783V31.28h-.783v10.885zm13.589.168c1.328 0 2.384-.438 2.997-1.01l-.409-.607c-.613.539-1.464.876-2.554.876-2.589 0-4.053-2.157-4.053-4.55 0-2.358 1.464-4.481 4.019-4.481.953 0 1.702.27 2.316.674l.442-.64c-.715-.472-1.566-.742-2.724-.742-3.065 0-4.905 2.46-4.905 5.19 0 2.83 1.805 5.29 4.871 5.29zm6.709 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783V31.28h-.783v10.885zm5.245.168c.681 0 1.192-.27 1.396-.438l-.307-.607c-.136.102-.579.337-1.021.337-.647 0-.886-.404-.886-1.145v-4.92h1.873v-.64h-1.873v-2.056h-.783v2.056h-1.226v.64h1.226v4.953c0 1.18.511 1.82 1.601 1.82zm5.006 0c1.226 0 2.077-.809 2.418-1.348 0 .405.068.944.102 1.18h.818c-.069-.27-.137-.81-.137-1.382v-5.83h-.783v5.223c-.238.438-1.158 1.45-2.248 1.45-1.124 0-1.498-.674-1.498-1.753v-4.92h-.784v5.089c0 1.314.579 2.291 2.112 2.291zm5.756-.168h.783v-5.021c.204-.438.851-1.618 1.873-1.618.307 0 .477.068.613.101l.205-.741c-.137-.034-.375-.135-.716-.135-1.021 0-1.669.91-1.941 1.415V34.92h-.783v7.245h-.034zm7.356.168c1.192 0 2.009-.404 2.486-.741l-.34-.607a3.708 3.708 0 01-2.112.674c-1.737 0-2.452-1.516-2.452-3.167v-.169h5.04v-.404c0-1.854-1.021-3.134-2.758-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.055 1.021 3.841 3.269 3.841zm-2.384-4.65c.204-1.247.954-2.224 2.214-2.224 1.396 0 1.975 1.112 1.975 2.224H155.1zM72.1 26.53h.783v-6.572h1.907v-.64h-1.907v-1.146c0-1.314.545-1.988 1.67-1.988.442 0 .748.101.919.202l.204-.707c-.204-.102-.579-.203-1.124-.203-1.6 0-2.452.977-2.452 2.629v1.213h-1.26v.64h1.26v6.571zm6.777.168c2.282 0 3.338-1.989 3.338-3.808 0-1.786-1.056-3.74-3.338-3.74-2.281 0-3.27 1.954-3.27 3.774s.989 3.774 3.27 3.774zm.035-.674c-1.67 0-2.453-1.483-2.453-3.134 0-1.618.75-3.067 2.418-3.067 1.67 0 2.555 1.483 2.555 3.1-.034 1.652-.852 3.1-2.52 3.1zm4.836.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.022 0-1.668.876-1.941 1.415v-1.247h-.783v7.245h-.034zm8.446 0h.851v-4.886h.273c.613 0 .783.101 1.805 1.483l2.486 3.403h1.022l-2.827-3.808c-.579-.741-.783-1.01-.988-1.112h.136c1.772-.067 2.998-.91 2.998-2.56 0-1.686-1.26-2.596-3.304-2.596h-2.418V26.53h-.034zm.817-5.56v-3.808h1.465c1.668 0 2.554.64 2.554 1.887 0 1.247-.851 1.921-2.486 1.921H93.01zm9.604 5.729c1.192 0 2.01-.405 2.487-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.269 3.842zm-2.384-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.975 2.224h-4.189zm8.447 4.683c1.498 0 2.452-.775 2.452-2.022 0-1.179-1.022-1.684-2.146-2.19-.851-.37-1.566-.674-1.566-1.516 0-.708.476-1.18 1.362-1.18a2.71 2.71 0 011.669.573l.408-.573c-.34-.27-1.055-.674-2.077-.674-1.362 0-2.146.81-2.146 1.887 0 1.18.92 1.685 2.01 2.157.987.438 1.668.775 1.668 1.584 0 .775-.647 1.247-1.634 1.247-.784 0-1.533-.337-1.873-.607l-.341.607c.443.337 1.26.707 2.214.707zm7.016-.033c1.192 0 2.009-.405 2.486-.742l-.341-.606a3.707 3.707 0 01-2.111.674c-1.737 0-2.453-1.517-2.453-3.168v-.168h5.041v-.405c0-1.853-1.022-3.134-2.759-3.134-1.941 0-3.133 1.651-3.133 3.707 0 2.09 1.056 3.842 3.27 3.842zm-2.385-4.65c.205-1.247.954-2.225 2.214-2.225 1.397 0 1.941 1.112 1.976 2.224h-4.19zm8.379 4.65a2.87 2.87 0 002.213-1.079c0 .27.068.674.103.91h.783c-.102-.303-.136-.842-.136-1.449v-3.64c0-1.55-.852-2.29-2.35-2.29-.954 0-1.737.303-2.384.91l.442.538c.613-.572 1.192-.775 1.908-.775 1.089 0 1.6.54 1.6 1.719v.809h-.34c-1.703 0-3.849.539-3.849 2.46-.034 1.145.784 1.887 2.01 1.887zm.102-.674c-.647 0-1.328-.438-1.328-1.213 0-1.348 1.396-1.82 3.031-1.82h.34v1.92c-.545.708-1.226 1.113-2.043 1.113zm5.313.505h.783v-5.02c.204-.439.851-1.618 1.873-1.618.307 0 .477.067.613.1l.205-.74c-.137-.034-.375-.135-.716-.135-1.021 0-1.668.876-1.941 1.415v-1.247h-.817v7.245zm7.186.169c1.09 0 1.873-.405 2.248-.742l-.341-.606c-.306.303-1.022.64-1.873.64-1.635 0-2.35-1.516-2.35-3.134 0-1.651.749-3.066 2.35-3.066.817 0 1.362.303 1.771.64l.409-.573c-.409-.337-1.09-.741-2.18-.741-1.873 0-3.201 1.482-3.201 3.774.034 1.954 1.055 3.808 3.167 3.808zm3.985-.169h.783v-5.257c.272-.404 1.158-1.415 2.248-1.415 1.09 0 1.498.674 1.498 1.719v4.953h.784v-5.122c0-1.314-.613-2.258-2.112-2.258-1.226 0-2.078.81-2.418 1.315v-4.82h-.783V26.53zM74.452 48.769v-.809h-3.576v.809h1.294v3.808h.988v-3.808h1.294zm3.44 3.808v-2.36c0-.606-.273-1.078-1.022-1.078a1.36 1.36 0 00-1.056.506v-2.022h-.92v4.987h.92v-2.325c.068-.1.34-.438.716-.438.34 0 .442.169.442.506v2.19h.92v.034zm1.532-1.483h2.18c.102-1.247-.409-1.988-1.464-1.988-.954 0-1.703.674-1.703 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.817-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm8.48 2.123V47.96h-.885v2.426c0 .37.034.708.034.742 0 0-.204-.371-.477-.775l-1.668-2.393h-1.056v4.617h.885v-2.629c0-.303-.034-.606-.034-.606s.17.337.443.707l1.805 2.561h.954v-.033zm1.567-1.483h2.18c.102-1.247-.409-1.988-1.465-1.988-.953 0-1.702.674-1.702 1.752 0 1.078.647 1.786 1.77 1.786.716 0 1.056-.202 1.26-.337l-.306-.607c-.17.068-.442.236-.885.236-.545.034-.818-.337-.852-.842zm0-.64c.069-.438.273-.708.681-.708.443 0 .58.303.58.708h-1.26zm7.425-1.247h-.92l-.545 2.157-.579-2.157h-.851l-.579 2.157-.51-2.157h-.989l.954 3.37h.852l.715-2.258.715 2.258h.851l.886-3.37zm5.551-1.247h-.953l-.988 1.954-.988-1.954h-1.09l1.533 2.864v1.753h.988v-1.753l1.498-2.864zm3.031 2.898c0-.876-.545-1.752-1.737-1.752-1.192 0-1.702.91-1.702 1.786s.51 1.752 1.702 1.752c1.226 0 1.737-.944 1.737-1.786zm-.987.034c0 .64-.205 1.044-.716 1.044-.51 0-.749-.471-.749-1.078 0-.606.17-1.078.715-1.078.511 0 .75.471.75 1.112zm3.78-1.685a.974.974 0 00-.477-.101c-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.328 1.718l1.09 1.652h1.09l-1.294-1.854 1.26-1.516h-1.022l-1.124 1.348v-2.966h-.919v4.988h.919v-1.652zm7.561-1.516c0-.977-.783-1.449-1.771-1.449h-1.533v4.617h.988v-1.652h.443c1.158 0 1.873-.505 1.873-1.516zm-.988 0c0 .505-.272.775-.885.775h-.443v-1.483h.477c.613 0 .851.27.851.708zm1.465-.202v2.359c0 .606.272 1.078 1.022 1.078.579 0 .919-.303 1.089-.54 0 .136.034.371.069.439h.919c-.034-.202-.102-.54-.102-.977v-2.393h-.92v2.258c-.068.067-.34.438-.715.438-.34 0-.443-.169-.443-.505v-2.19h-.919v.033zm3.78-1.618v4.785c.17.068.613.27 1.397.27 1.021 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.465-1.752-.374 0-.681.202-.817.337v-1.854h-.92zm.954 2.494c.068-.067.272-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.307 1.079-.817 1.079-.273 0-.409-.068-.477-.068v-1.752zm3.814-2.494h-.919v4.988h.919v-4.988zm1.873 1.618h-.953v3.37h.953v-3.37zm.103-1.011c0-.303-.239-.54-.579-.54-.341 0-.579.237-.579.54 0 .303.238.54.579.54.34.033.579-.237.579-.54zm3.439 4.145l-.272-.607c-.102.068-.341.202-.749.202-.579 0-.852-.471-.852-1.078 0-.606.273-1.045.818-1.045.34 0 .545.101.715.203l.306-.64c-.17-.102-.476-.27-1.055-.27-1.022 0-1.805.64-1.805 1.786 0 1.044.681 1.752 1.77 1.752.648 0 .954-.202 1.124-.303zm4.905.236v-.775h-1.737v-3.808h-.988v4.616h2.725v-.033zm1.498-3.37h-.953v3.37h.953v-3.37zm.102-1.011c0-.303-.238-.54-.579-.54-.34 0-.579.237-.579.54 0 .303.239.54.579.54.341.033.579-.237.579-.54zm.784-.607v4.785c.17.068.613.27 1.396.27 1.022 0 1.805-.64 1.805-1.786 0-1.18-.579-1.752-1.464-1.752-.375 0-.682.202-.818.337v-1.854h-.919zm.953 2.494c.068-.067.273-.27.579-.27.511 0 .715.371.715 1.011 0 .708-.306 1.079-.817 1.079-.272 0-.409-.068-.477-.068v-1.752zm5.075-.876c-.068-.034-.204-.101-.477-.101-.443 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .306.034.34.068l.239-.775zm3.133 3.37c-.034-.203-.102-.54-.102-1.011v-1.213c0-.91-.443-1.247-1.362-1.247-.716 0-1.192.303-1.397.471l.409.573c.136-.1.443-.303.885-.303.443 0 .545.169.545.472v.202h-.136c-.919 0-1.805.303-1.805 1.213 0 .607.443.944 1.022.944.477 0 .817-.27.953-.438 0 .1.035.27.069.37h.919v-.033zm-1.022-.91c-.102.1-.306.303-.613.303-.204 0-.408-.101-.408-.337 0-.404.374-.54.919-.54h.136v.574h-.034zm3.951-2.46c-.068-.034-.204-.101-.477-.101-.442 0-.715.303-.851.539v-.472h-.92v3.37h.92V50.42c.068-.169.34-.506.749-.506.204 0 .307.034.341.068l.238-.775zm1.396 3.302l-.136.337c-.136.37-.306.607-.783.607-.204 0-.273-.034-.341-.034l-.136.741c.068.034.238.068.511.068.919 0 1.294-.472 1.601-1.247l1.396-3.74h-.954l-.681 2.224h-.034l-.749-2.225h-.988l1.294 3.27zM55.275 46.374l3.541 3.539 1.84-1.82-3.576-3.505 2.928-2.898-1.839-1.785-8.31 8.222 8.378 8.256 1.84-1.786-6.573-6.47 1.77-1.753zM.613 41.693l6.54 6.436-1.772 1.718-3.542-3.504L0 48.129l3.576 3.538-2.997 2.965 1.84 1.786 8.343-8.29-8.344-8.255-1.805 1.82zM16.075 56.992L30.31 71.077l14.27-14.12 1.805-1.785L30.345 39.3l-1.805 1.786 14.202 14.086-12.431 12.3-14.202-14.086h-.034L4.802 64.54l1.839 1.82 9.434-9.368z"})),ui||(ui=n.createElement("path",{d:"M30.31 74.513L16.072 60.427l-8.14 8.088L9.74 70.3l6.334-6.268 1.737 1.718-5.892 5.83 1.805 1.786 5.892-5.83 1.737 1.719-4.836 4.785 1.84 1.82 4.835-4.785 1.737 1.718-2.997 2.966 1.84 1.786 2.962-2.966 3.576 3.538 3.576-3.504 2.963 2.965 1.84-1.82-2.998-2.965 1.771-1.718 4.837 4.785 1.805-1.82-4.837-4.785 1.737-1.719 5.892 5.83 1.84-1.786-5.892-5.83 1.702-1.718L50.88 70.3l1.84-1.82-6.336-6.268 1.737-1.718 5.892 5.83 1.805-1.82-6.845-6.774-.852-.842L30.31 74.513zM48.136 49.83l-1.83 1.81L56.42 61.649l1.83-1.81L48.136 49.83z"})),fi||(fi=n.createElement("path",{d:"M28.709 62.417l1.6 1.617 8.958-8.862-1.805-1.786-12.431-12.3 5.313-5.223 14.202 14.052h.034l13.725-13.58-1.805-1.82L44.58 46.31 30.344 32.224l-8.957 8.862 14.236 14.086-5.313 5.257-12.397-12.3-1.84-1.786L2.315 59.957l1.84 1.786 11.92-11.794 12.635 12.468zM4.18 34.547l-1.83 1.811 10.186 10.08 1.83-1.811L4.18 34.547z"})),gi||(gi=n.createElement("path",{d:"M30.347 21.744l14.236 14.085 8.106-8.02-1.806-1.82-6.3 6.235-1.737-1.719 5.858-5.762-1.84-1.82-5.823 5.796L39.27 27l4.768-4.717-1.805-1.82-4.768 4.718-1.737-1.719 2.929-2.898-1.84-1.786-2.928 2.864-1.737-1.718h.034l-1.84-1.786-3.575 3.538-2.895-2.898-1.84 1.786 2.93 2.898-1.737 1.719-4.734-4.65-1.805 1.785L21.39 27l-1.737 1.719-5.858-5.796-1.805 1.82 5.858 5.762-1.771 1.719-6.3-6.234-1.806 1.82 6.3 6.233-1.736 1.719-5.892-5.796-1.805 1.786 7.697 7.616 17.812-17.624z"})),bi||(bi=n.createElement("path",{d:"M30.347 25.179L14.27 41.084l1.805 1.786 14.236 14.086 1.84-1.786-14.236-14.086 12.43-12.3L44.584 42.87l11.205-11.086-1.84-1.786-9.365 9.267-14.236-14.086zM77.683 8.128c0-1.82-1.226-2.46-2.554-3.066-1.056-.472-1.84-.708-1.84-1.483 0-.674.512-1.01 1.33-1.01.85 0 1.6.37 1.94.606l.852-1.45c-.409-.302-1.294-.808-2.895-.808-1.771 0-3.201 1.045-3.201 2.73 0 1.583.92 2.325 2.111 2.931 1.158.573 2.214.809 2.214 1.685 0 .64-.58 1.146-1.567 1.146a3.338 3.338 0 01-2.111-.741l-.886 1.449c.443.336 1.465.977 3.065.977 2.214-.068 3.542-1.18 3.542-2.966zm6.676 2.258l-.613-1.314c-.239.135-.716.438-1.567.438-1.226 0-1.805-.977-1.805-2.291 0-1.315.613-2.224 1.77-2.224.716 0 1.193.235 1.5.438l.646-1.348c-.34-.236-1.055-.573-2.213-.573-2.18 0-3.815 1.348-3.815 3.774 0 2.224 1.43 3.74 3.747 3.74 1.362 0 2.009-.404 2.35-.64zm7.288.472V5.837c0-1.314-.58-2.325-2.18-2.325-1.192 0-1.873.64-2.248 1.044V.276h-1.975v10.582h1.975V6.039c.137-.202.716-.91 1.499-.91.715 0 .953.371.953 1.079v4.65h1.976zm8.276-3.606c0-1.853-1.158-3.706-3.678-3.706s-3.61 1.954-3.61 3.774c0 1.853 1.09 3.74 3.61 3.74 2.554-.034 3.678-2.022 3.678-3.808zm-2.112.034c0 1.348-.408 2.258-1.532 2.258s-1.567-.978-1.567-2.325c0-1.348.375-2.258 1.499-2.258s1.6 1.01 1.6 2.325zm9.094-2.628c-.273-.674-.818-1.146-1.874-1.146-1.158 0-1.805.64-2.179 1.044V3.68h-1.942v7.178h1.976V6.039c.136-.202.613-.876 1.362-.876.579 0 .852.37.852 1.078v4.617h1.975V5.972c.272-.337.715-.809 1.362-.809.647 0 .852.37.852 1.078v4.617h1.975V5.837c0-1.314-.545-2.325-2.078-2.325-1.021 0-1.702.472-2.281 1.146zm5.721-4.381v10.177c.341.168 1.328.572 2.963.572 2.18 0 3.849-1.381 3.849-3.807 0-2.46-1.26-3.707-3.065-3.707a2.54 2.54 0 00-1.771.741V.277h-1.976zm1.976 5.324c.136-.135.579-.54 1.226-.54 1.055 0 1.532.81 1.532 2.158 0 1.482-.647 2.291-1.771 2.291-.545 0-.851-.135-.987-.168v-3.74zm5.823-1.887v5.021c0 1.314.579 2.325 2.18 2.325a2.83 2.83 0 002.316-1.146c0 .304.102.775.136.944h1.941c-.102-.438-.204-1.146-.204-2.056V3.714h-1.975v4.785c-.136.169-.715.91-1.499.91-.715 0-.953-.37-.953-1.078V3.714h-1.942zm12.738 0c-.17-.101-.443-.202-.988-.202-.919 0-1.532.606-1.839 1.146V3.68h-1.975v7.178h1.975V6.342c.17-.337.681-1.078 1.567-1.078.408 0 .647.101.749.169l.511-1.719zm4.7 0c-.375-.135-.818-.168-1.294-.168-2.01 0-3.202 1.044-3.202 2.594 0 .944.477 1.685 1.294 2.157-.442.236-.817.674-.817 1.348 0 .505.238.842.647 1.078-.715.37-1.226.944-1.226 1.752 0 1.28 1.192 1.921 3.167 1.921 2.384 0 3.951-1.078 3.951-2.595 0-2.123-1.907-2.123-3.406-2.19-1.055-.067-1.464-.135-1.464-.505 0-.203.136-.337.272-.438.273.033.545.067.852.067 2.009 0 3.133-1.045 3.133-2.595 0-.404-.102-.808-.272-1.145h.953V3.714h-2.588zm-1.26 3.74c-.818 0-1.294-.505-1.294-1.314 0-.842.476-1.314 1.294-1.314.817 0 1.294.472 1.294 1.314 0 .809-.477 1.314-1.294 1.314zm-.852 3.64c.307.034.647.067.988.1 1.056.068 1.737.035 1.737.81 0 .606-.681 1.044-1.873 1.044-1.022 0-1.397-.404-1.397-.977-.034-.404.171-.741.545-.977zm15.939-1.079l-.851-1.449c-.511.371-1.158.742-2.248.742-1.941 0-2.895-1.55-2.895-3.404 0-1.82.988-3.268 2.861-3.268.919 0 1.532.236 2.077.573l.92-1.517c-.783-.505-1.669-.775-2.963-.775-3.338 0-5.109 2.393-5.109 5.055s1.703 5.088 5.075 5.088c1.464-.034 2.656-.607 3.133-1.045zm2.248-2.291h4.598c.238-2.662-.852-4.212-3.134-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.363 3.807 3.781 3.807 1.498 0 2.213-.438 2.69-.674l-.647-1.28c-.34.168-.919.505-1.873.505-1.192 0-1.737-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm12.158 4.448V5.837c0-1.314-.579-2.325-2.179-2.325-1.192 0-1.907.64-2.316 1.078v-.91h-1.941v7.178h1.975V6.039c.136-.202.715-.91 1.498-.91.716 0 .954.371.954 1.079v4.65h2.009zm1.976-5.695v3.64c0 1.381.579 2.223 2.282 2.223.919 0 1.532-.236 1.805-.404l-.477-1.449c-.136.101-.511.27-.954.27-.545 0-.715-.304-.715-1.011V5.163h1.703V3.714h-1.703v-2.09h-1.975v2.09h-1.158v1.449h1.192zm6.403 2.561h4.597c.239-2.662-.851-4.212-3.133-4.212-2.009 0-3.576 1.449-3.576 3.707 0 2.291 1.362 3.807 3.78 3.807 1.499 0 2.214-.438 2.691-.674l-.647-1.28c-.341.168-.92.505-1.873.505-1.192 0-1.771-.74-1.839-1.853zm0-1.314c.136-.944.613-1.483 1.43-1.483.92 0 1.226.674 1.26 1.483h-2.69zm10.523-2.696c-.17-.101-.442-.202-.987-.202-.92 0-1.499.606-1.839 1.146V3.68h-1.942v7.178h1.976V6.342c.17-.337.681-1.078 1.566-1.078.409 0 .647.101.749.169l.477-1.719z"})))},simplyeBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ci);return n.createElement("svg",Si({viewBox:"0 0 512 148",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,xi||(xi=n.createElement("g",{clipPath:"url(#logo-simplye-black_svg__clip0)"},n.createElement("path",{d:"M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"}),n.createElement("path",{d:"M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"}),n.createElement("path",{d:"M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"}))),wi||(wi=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-simplye-black_svg__clip0"},n.createElement("path",{fill:"#fff",transform:"translate(0 .118)",d:"M0 0h511.984v147H0z"})))))},simplyeWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Vi);return n.createElement("svg",_i({viewBox:"0 0 512 148",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Mi||(Mi=n.createElement("g",{clipPath:"url(#logo-simplye-white_svg__clip0)"},n.createElement("path",{d:"M25.017 34.161c-.504-.616-.54-1.441.215-1.69l52.402-17.328a.944.944 0 011.24.898.998.998 0 00.93.945c.415.067.836.084 1.254.05a1.001 1.001 0 001.009-.941l-.003-5.512a1.001 1.001 0 00-.558-.914 1.137 1.137 0 00-.83-.118L21.98 29.023c-2.26.73-2.663 1.004-2.663 3.432l.02 99.764a.916.916 0 00.039.282c1.212 3.697 5.547 5.389 5.547 5.389 4.256 1.615 6.449 2.064 10.304.727 0 0 .085-99.525.035-99.963a.28.28 0 00-.23-.242c-.41-.077-6.716-.21-10.017-4.25"}),n.createElement("path",{d:"M6.382 25.48c-.529-.595-.54-1.44.216-1.69L58.999 6.462a.944.944 0 011.241.897.985.985 0 00.93.945c.415.059.835.075 1.254.05a.997.997 0 001.008-.94l-.002-5.403a1.172 1.172 0 00-.496-.989 1.077 1.077 0 00-.893-.152L3.346 20.342c-2.26.731-2.344 1.05-2.344 3.478l.006 100.104c.003.096.016.19.04.283.93 3.738 5.241 5.003 5.241 5.003 4.256 1.615 6.45 2.064 10.304.726 0 0 .086-99.525.035-99.962a.28.28 0 00-.229-.243c-.41-.077-6.585-.386-10.017-4.25"}),n.createElement("path",{d:"M112.969 28.139a.946.946 0 00-1.242-.897L65.072 42.744c-12.007 3.546-12.608 3.957-16.436 2.548a10.762 10.762 0 01-4.804-3.209c-.487-.63-.489-1.441.267-1.691l52.402-17.327a.946.946 0 011.24.897.984.984 0 00.93.946c.415.054.833.07 1.25.05a.99.99 0 001.013-.941l-.003-5.419a1.01 1.01 0 00-.557-1.008.99.99 0 00-.831-.117L40.848 36.944c-2.26.732-2.663 1.005-2.663 3.432l.02 97.48c0 .096.004 1.042.002 1.138-.059 3.155 3.655 4.911 5.418 5.699a14.107 14.107 0 0010.47.824l58.236-18.912a.945.945 0 00.638-.894v-18.715a.948.948 0 00-.783-.93.942.942 0 00-.435.027l-46.7 15.307a.986.986 0 01-1.265-.917v-16.534a.944.944 0 01.672-.904l47.793-15.656c.581-.213.718-.312.718-.808l-.037-19.111a.91.91 0 00-1.224-.756l-46.771 15.49c-.603.174-1.15-.439-1.15-1.067l.071-16.602a.945.945 0 01.656-.9l47.895-15.902c.391-.125.555-.68.555-1.091l.005-18.504zM193.94 91.63c.043 3.264-.609 6.5-1.911 9.494a19.556 19.556 0 01-5.499 7.236 25.79 25.79 0 01-8.742 4.574 38.338 38.338 0 01-11.52 1.621 41.503 41.503 0 01-8.569-.811 43.232 43.232 0 01-6.773-1.968 31.143 31.143 0 01-5.094-2.49 32.82 32.82 0 01-3.416-2.373l6.947-11.347c.463.31 1.158.792 2.084 1.447a20.297 20.297 0 003.473 1.911 33.661 33.661 0 004.864 1.679c2.003.521 4.066.774 6.136.752 3.937 0 6.967-.868 9.089-2.605a7.893 7.893 0 003.184-6.31 6.703 6.703 0 00-1.447-4.342 13.8 13.8 0 00-3.821-3.184 48.838 48.838 0 00-5.5-2.721 95.44 95.44 0 01-6.484-3.068 49.257 49.257 0 01-6.599-3.821 25.536 25.536 0 01-5.211-4.747 20.55 20.55 0 01-3.473-6.195 24.361 24.361 0 01-1.274-8.278 19.651 19.651 0 011.969-8.916 20.53 20.53 0 015.326-6.715 24.22 24.22 0 017.873-4.284 30.599 30.599 0 019.726-1.505c2.813-.03 5.624.202 8.394.694 2.181.398 4.329.96 6.426 1.68a26.533 26.533 0 014.631 2.083 41.813 41.813 0 013.126 2.027l-6.599 11.462a32.073 32.073 0 00-2.547-1.505 24.885 24.885 0 00-3.474-1.505 38.012 38.012 0 00-4.284-1.216 21.567 21.567 0 00-4.747-.521 12.53 12.53 0 00-7.526 2.026 6.912 6.912 0 00-2.779 5.963 6.563 6.563 0 001.101 3.88 11.19 11.19 0 003.01 2.836 30.206 30.206 0 004.515 2.431c1.737.773 3.609 1.622 5.616 2.547a110.48 110.48 0 017.41 3.706 26.855 26.855 0 016.31 4.747 21.065 21.065 0 016.079 15.63zM220.454 40.221a8.972 8.972 0 01-2.721 6.484 9.097 9.097 0 01-6.773 2.78 8.91 8.91 0 01-6.716-2.78 9.064 9.064 0 01-2.663-6.483 8.684 8.684 0 012.663-6.369 9.097 9.097 0 016.716-2.663 9.294 9.294 0 016.773 2.663 8.596 8.596 0 012.721 6.368zm-17.252 72.944V56.779h15.515v56.386h-15.515zM275.449 64.305a30.007 30.007 0 017.643-6.484 20.409 20.409 0 0110.42-2.432 18.358 18.358 0 017.584 1.39 13.05 13.05 0 014.978 3.82 14.903 14.903 0 012.721 5.79 31.09 31.09 0 01.81 7.294v39.482h-15.398V76.809a11.606 11.606 0 00-1.447-6.368c-.967-1.465-2.723-2.199-5.268-2.2a9.43 9.43 0 00-3.474.637c-1.037.4-2.012.946-2.895 1.62a20.225 20.225 0 00-2.315 2.085 74.01 74.01 0 00-1.853 2.026v38.556h-15.399V76.809c0-2.855-.521-4.997-1.564-6.426-1.041-1.427-2.72-2.141-5.036-2.142a8.78 8.78 0 00-3.878.868 14.06 14.06 0 00-3.127 2.026 15.322 15.322 0 00-2.2 2.316 73.736 73.736 0 01-1.331 1.737v37.977h-15.399V56.779h15.051v6.946a73.305 73.305 0 012.548-2.662 17.54 17.54 0 013.589-2.721 24.398 24.398 0 014.747-2.084 19.363 19.363 0 016.021-.869c4.013 0 7.159.81 9.437 2.432a14.285 14.285 0 015.035 6.484zM371.897 84.914a37.586 37.586 0 01-1.853 12.157 27.702 27.702 0 01-5.21 9.321 23.497 23.497 0 01-7.989 6.02 23.991 23.991 0 01-10.19 2.143 20.801 20.801 0 01-8.336-1.39 19.832 19.832 0 01-4.632-2.663v28.02h-15.398V56.779h15.052v5.904a21.67 21.67 0 016.078-5.094 18.72 18.72 0 019.553-2.2c7.178 0 12.794 2.547 16.846 7.642 4.052 5.094 6.078 12.389 6.079 21.883zm-16.326 0c0-5.326-.926-9.533-2.779-12.62a9.202 9.202 0 00-8.452-4.632 10.535 10.535 0 00-3.937.695c-1.095.43-2.142.974-3.126 1.62-.831.538-1.59 1.18-2.257 1.911a44.486 44.486 0 00-1.332 1.563v25.357a24.172 24.172 0 003.763 2.547 12.078 12.078 0 005.963 1.274 10.195 10.195 0 009.031-4.69c2.084-3.125 3.126-7.467 3.126-13.025zM380.929 113.165V29.801h15.399v83.364h-15.399zM402.811 56.779h16.441l12.505 37.166h.579l11.463-37.166h15.862l-23.272 62.407a64.516 64.516 0 01-4.053 8.916 25.026 25.026 0 01-5.21 6.599 21.354 21.354 0 01-7.121 4.111 29.982 29.982 0 01-9.9 1.447 31.243 31.243 0 01-5.673-.405c-1.389-.272-2.392-.484-3.01-.637l2.199-12.157a8.43 8.43 0 001.737.405c1.23.14 2.468.197 3.705.173 3.937 0 6.793-.888 8.568-2.663a19.126 19.126 0 004.284-7.178l2.084-5.79-21.188-55.228zM466.725 113.165V36.053h44.461v13.431h-28.368v17.368h25.009v12.736h-25.009v20.146h29.178v13.431h-45.271z"}))),ji||(ji=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-simplye-white_svg__clip0"},n.createElement("path",{transform:"translate(0 .118)",d:"M0 0h511.984v147H0z"})))))},simplyeColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ii);return n.createElement("svg",Pi({viewBox:"0 0 682 196",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Ti||(Ti=n.createElement("g",{clipPath:"url(#logo-simplye-color_svg__clip0)"},n.createElement("path",{d:"M32.454 44.821c-.672-.822-.72-1.921.288-2.254l69.866-23.102a1.258 1.258 0 011.654 1.195c-.001.69.559 1.155 1.242 1.26.528.083 1.108.12 1.67.068.727-.068 1.346-.526 1.346-1.255l-.004-7.35c0-.376-.164-.94-.744-1.218-.324-.158-.735-.28-1.108-.156l-78.258 25.96c-3.012.975-3.55 1.34-3.55 4.576l.027 133.016c0 .126.013.257.052.377 1.616 4.929 7.396 7.184 7.396 7.184 5.674 2.155 8.598 2.753 13.738.969 0 0 .115-132.697.047-133.28a.373.373 0 00-.306-.323c-.546-.103-8.954-.279-13.355-5.667",fill:"#1B385E"}),n.createElement("path",{d:"M7.609 33.247c-.705-.794-.72-1.922.287-2.255L77.763 7.89a1.26 1.26 0 011.655 1.197c-.001.69.556 1.174 1.24 1.26.513.064 1.124.112 1.67.067.727-.059 1.346-.525 1.346-1.255l-.004-7.204c0-.477-.232-1.084-.66-1.317-.455-.248-.817-.327-1.19-.203L3.561 26.396c-3.013.975-3.55 1.34-3.55 4.576l.025 133.015c0 .127.016.256.053.376 1.47 4.922 7.395 7.186 7.395 7.186 5.674 2.153 8.599 2.751 13.739.969 0 0 .113-132.697.046-133.28a.373.373 0 00-.307-.324c-.546-.102-8.78-.514-13.355-5.667",fill:"#57AC35"}),n.createElement("path",{d:"M149.72 36.79c0-.858-.839-1.465-1.655-1.194L85.861 56.265c-16.01 4.726-16.81 5.274-21.914 3.396-2.865-1.054-5.098-2.59-6.405-4.279-.65-.838-.652-1.921.356-2.254l69.866-23.102a1.26 1.26 0 011.654 1.197c-.001.69.556 1.177 1.24 1.26a9.148 9.148 0 001.666.066c.73-.045 1.352-.522 1.35-1.254l-.002-7.224c0-.555-.1-.947-.743-1.344-.336-.207-.735-.28-1.108-.156l-78.258 25.96c-3.013.975-3.55 1.34-3.55 4.577l.026 129.97c0 .127.004 1.389.001 1.516-.078 4.206 4.874 6.547 7.224 7.598 3.853 1.723 8.819 2.882 13.96 1.1l77.645-25.217c.509-.174.851-.652.851-1.19v-24.953a1.26 1.26 0 00-1.624-1.205l-62.266 20.41c-.808.245-1.685-.379-1.685-1.223v-22.045c0-.556.364-1.045.895-1.205l63.724-20.874c.773-.284.956-.416.956-1.079l-.048-25.479c0-.73-.827-1.241-1.632-1.01l-62.361 20.654c-.805.231-1.534-.584-1.534-1.423l.096-22.134c0-.548.353-1.032.874-1.199l63.859-21.203c.52-.168.74-.908.74-1.456l.006-24.67",fill:"#656263"}),n.createElement("path",{d:"M257.68 121.443c0 4.631-.848 8.852-2.547 12.658-1.698 3.81-4.144 7.024-7.333 9.65-3.19 2.624-7.077 4.657-11.654 6.096-4.581 1.44-9.703 2.162-15.361 2.162-4.221 0-8.028-.362-11.424-1.08-3.396-.721-6.406-1.594-9.03-2.625-2.626-1.027-4.891-2.134-6.793-3.319-1.906-1.181-3.423-2.238-4.554-3.165l9.261-15.128c.619.412 1.546 1.056 2.78 1.93 1.235.876 2.779 1.724 4.631 2.548 1.853.824 4.015 1.569 6.484 2.237 2.47.67 5.196 1.004 8.181 1.004 5.249 0 9.288-1.158 12.12-3.473 2.829-2.316 4.245-5.119 4.245-8.414 0-2.264-.645-4.193-1.929-5.79-1.29-1.593-2.987-3.009-5.096-4.245-2.11-1.235-4.554-2.443-7.332-3.627a127.762 127.762 0 01-8.645-4.092c-3.192-1.544-6.124-3.241-8.8-5.093-2.677-1.853-4.993-3.961-6.947-6.33-1.955-2.366-3.499-5.118-4.631-8.259-1.134-3.139-1.698-6.817-1.698-11.038 0-4.424.874-8.387 2.624-11.887 1.75-3.497 4.115-6.484 7.101-8.954 2.984-2.47 6.484-4.372 10.497-5.71 4.015-1.338 8.338-2.009 12.968-2.009 4.219 0 7.951.31 11.193.927 3.241.617 6.097 1.365 8.568 2.239 2.469.876 4.528 1.8 6.175 2.778 1.645.979 3.034 1.879 4.167 2.702l-8.799 15.283c-.926-.617-2.06-1.285-3.395-2.007-1.34-.718-2.884-1.389-4.632-2.008a50.57 50.57 0 00-5.712-1.62 28.702 28.702 0 00-6.329-.694c-4.221 0-7.565.901-10.034 2.701-2.471 1.803-3.706 4.452-3.706 7.95 0 2.06.487 3.782 1.467 5.172.976 1.39 2.315 2.65 4.013 3.782 1.699 1.134 3.706 2.214 6.022 3.242a601.234 601.234 0 017.486 3.396 147.494 147.494 0 019.88 4.94c3.189 1.75 5.994 3.86 8.414 6.329 2.416 2.471 4.373 5.379 5.865 8.723 1.491 3.345 2.239 7.385 2.239 12.118zm12.349 28.714v-75.18h20.686v75.18h-20.686zm23.002-97.256c0 3.294-1.211 6.174-3.628 8.645-2.418 2.47-5.429 3.705-9.03 3.705-3.604 0-6.588-1.236-8.955-3.705-2.368-2.47-3.55-5.35-3.55-8.645 0-3.293 1.182-6.123 3.55-8.49 2.367-2.367 5.351-3.551 8.955-3.551 3.601 0 6.612 1.184 9.03 3.55 2.417 2.368 3.628 5.198 3.628 8.49zm73.325 32.11c3.089-3.602 6.485-6.484 10.19-8.645 3.706-2.162 8.336-3.242 13.893-3.242 4.015 0 7.385.618 10.112 1.852 2.727 1.235 4.94 2.933 6.637 5.095 1.699 2.161 2.907 4.734 3.628 7.718.719 2.987 1.081 6.228 1.081 9.725v52.643h-20.531v-48.473c0-3.706-.643-6.535-1.929-8.49-1.29-1.956-3.628-2.934-7.024-2.934-1.648 0-3.192.284-4.632.848a15.621 15.621 0 00-3.86 2.161 26.835 26.835 0 00-3.086 2.78 92.35 92.35 0 00-2.471 2.701v51.407h-20.532v-48.473c0-3.807-.694-6.663-2.085-8.57-1.388-1.902-3.626-2.854-6.714-2.854-1.852 0-3.578.385-5.171 1.157-1.597.772-2.987 1.674-4.169 2.701-1.184 1.031-2.161 2.06-2.932 3.088a106.536 106.536 0 01-1.776 2.316v50.635h-20.532v-75.18h20.068v9.262a97.36 97.36 0 013.397-3.55c1.336-1.337 2.934-2.547 4.785-3.629 1.854-1.081 3.962-2.006 6.33-2.778 2.366-.772 5.041-1.158 8.027-1.158 5.351 0 9.545 1.08 12.583 3.242 3.034 2.16 5.272 5.043 6.713 8.645zm106.828 27.478c0-7.1-1.235-12.71-3.705-16.827-2.471-4.114-6.228-6.174-11.269-6.174-1.956 0-3.704.308-5.25.925-1.544.619-2.933 1.34-4.167 2.162-1.235.825-2.238 1.674-3.01 2.547a59.725 59.725 0 00-1.776 2.084v33.808c1.336 1.134 3.01 2.266 5.018 3.397 2.006 1.133 4.654 1.698 7.95 1.698 5.249 0 9.261-2.085 12.041-6.253 2.779-4.168 4.168-9.957 4.168-17.367zm21.767 0c0 5.97-.825 11.374-2.47 16.21-1.647 4.838-3.964 8.98-6.947 12.426a31.322 31.322 0 01-10.651 8.028c-4.118 1.904-8.647 2.856-13.587 2.856-4.629 0-8.336-.616-11.114-1.852-2.779-1.236-4.839-2.417-6.175-3.551v37.358h-20.531V74.976h20.069v7.873c2.057-2.57 4.758-4.836 8.103-6.791 3.344-1.955 7.588-2.934 12.737-2.934 9.571 0 17.059 3.396 22.461 10.188 5.403 6.793 8.105 16.518 8.105 29.177zm12.041 37.668V39.007h20.532v111.15h-20.532zm29.176-75.18h21.92l16.673 49.554h.772l15.284-49.555h21.149l-31.029 83.208c-1.649 4.425-3.449 8.387-5.404 11.887-1.956 3.497-4.272 6.43-6.946 8.8-2.679 2.365-5.843 4.192-9.495 5.48-3.654 1.285-8.054 1.93-13.198 1.93-3.192 0-5.713-.181-7.565-.541-1.852-.361-3.192-.644-4.013-.848l2.932-16.21c.514.205 1.286.385 2.316.541 1.028.154 2.674.23 4.941.23 5.248 0 9.054-1.183 11.422-3.551 2.367-2.368 4.269-5.557 5.712-9.569l2.779-7.72-28.25-73.637zm85.216 75.18V47.342h59.28v17.91h-37.823v23.156h33.344v16.981h-33.344v26.861h38.903v17.907h-60.36z",fill:"#1B385E"}))),ki||(ki=n.createElement("defs",null,n.createElement("clipPath",{id:"logo-simplye-color_svg__clip0"},n.createElement("path",{fill:"#fff",transform:"translate(0 .118)",d:"M0 0h682v195H0z"})))))},snflBlack:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Ri);return n.createElement("svg",Hi({viewBox:"0 0 84 111",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Li||(Li=n.createElement("path",{d:"M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"})))},snflWhite:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Do);return n.createElement("svg",Ao({viewBox:"0 0 84 111",fill:"#fff",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Bi||(Bi=n.createElement("path",{d:"M5.483 30.355c0 .392-.058.723-.204 1.055-.146.301-.32.572-.583.784a2.812 2.812 0 01-.933.512c-.38.12-.788.18-1.225.18-.35 0-.642-.03-.905-.09-.262-.06-.525-.12-.729-.21a9.82 9.82 0 01-.554-.272 1.82 1.82 0 01-.35-.271l.73-1.266c.057.03.116.09.233.15.087.06.233.151.379.211.145.06.32.12.525.181.204.06.408.09.641.09.409 0 .73-.09.963-.3a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.121-.233-.242-.408-.362-.175-.09-.35-.211-.584-.302-.233-.09-.466-.21-.7-.331a3.985 3.985 0 01-.7-.422 3.085 3.085 0 01-.554-.513 2.213 2.213 0 01-.379-.693 2.928 2.928 0 01-.146-.904c0-.362.059-.694.204-.995.146-.302.321-.543.555-.754.233-.21.525-.362.845-.482.321-.12.671-.181 1.05-.181.35 0 .642.03.905.09.262.06.495.12.7.181.204.06.35.15.495.241.146.09.234.151.321.211l-.7 1.267-.262-.181a4.677 4.677 0 00-.38-.181 2.13 2.13 0 00-.466-.12c-.175-.031-.321-.061-.496-.061-.35 0-.613.06-.817.21-.204.152-.291.363-.291.664 0 .181.029.301.116.422.088.12.175.211.321.302.146.09.292.18.496.27.175.091.38.182.613.272.262.12.525.271.787.422.263.151.467.332.67.513.205.18.35.452.468.723.087.392.145.724.145 1.116zM11.171 25.712v7.024H9.392v-7.024H7.117v-1.477h6.3v1.477h-2.246zM18.346 27.672c-.059-.181-.117-.362-.175-.513-.059-.18-.088-.331-.146-.452a5.04 5.04 0 00-.088-.332c-.029-.09-.029-.15-.029-.18h-.03c0 .03-.028.09-.057.18a5.04 5.04 0 00-.088.332 2.71 2.71 0 01-.146.452c-.058.15-.116.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.655 5.064h-1.75l3.15-8.5h1.692l3.238 8.5h-1.896l-.584-1.598h-3.295l-.555 1.598zM27.183 32.736h-1.662l-3.18-8.5h1.867l1.75 5.094c.059.15.088.331.146.482.059.15.088.301.146.452.03.15.088.241.088.332.029.09.029.15.029.15h.029s0-.06.03-.15c.028-.09.058-.211.087-.332.029-.15.087-.271.145-.452.059-.15.088-.332.146-.482l1.663-5.095h1.75l-3.034 8.501zM36.255 26.797c0-.391-.117-.693-.35-.874-.233-.18-.583-.301-1.08-.301h-.874v2.351h.962c.467 0 .817-.09 1.021-.301.204-.211.321-.513.321-.875zm.467 5.94l-1.517-2.413c-.175-.24-.292-.452-.408-.572-.117-.151-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.5h2.741c.963 0 1.721.21 2.246.632.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.152 2.152 0 01-.438.664 2.34 2.34 0 01-.612.452c-.234.12-.467.18-.73.24v.031c.117.09.263.211.409.392.146.18.35.452.554.814l1.604 2.532h-1.808zM46.522 28.486c0-.392-.058-.754-.146-1.116a2.491 2.491 0 00-.437-.934 2.123 2.123 0 00-.73-.633 2.262 2.262 0 00-1.05-.242c-.408 0-.758.09-1.078.242-.292.15-.555.361-.759.633a2.49 2.49 0 00-.437.934 4.669 4.669 0 00-.146 1.116c0 .392.058.783.146 1.145.087.362.233.694.437.965s.438.482.758.663c.292.15.671.241 1.08.241.408 0 .758-.09 1.079-.241.292-.15.554-.362.758-.633a2.49 2.49 0 00.438-.935c.029-.422.087-.783.087-1.205zm1.838-.03c0 .572-.088 1.145-.263 1.657a4.179 4.179 0 01-.787 1.417c-.35.422-.788.724-1.313.995-.525.241-1.137.362-1.808.362-.7 0-1.313-.12-1.838-.362a4.094 4.094 0 01-1.341-.965 4.112 4.112 0 01-.817-1.386 4.619 4.619 0 01-.292-1.658c0-.573.088-1.146.292-1.658.175-.543.467-.995.817-1.417.35-.422.787-.724 1.341-.965.525-.24 1.138-.361 1.838-.361.7 0 1.312.12 1.837.361.525.241.963.573 1.342.965.35.392.642.874.817 1.387.087.512.175 1.055.175 1.627zM55.534 30.355c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.81 2.81 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.73-.211-.203-.09-.378-.181-.553-.271a1.819 1.819 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.408 0 .73-.09.963-.301a.854.854 0 00.35-.694.854.854 0 00-.146-.482c-.117-.12-.234-.241-.409-.362-.175-.09-.35-.21-.583-.301a7.331 7.331 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.086 3.086 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.32-.542.554-.753.234-.211.525-.362.846-.483.32-.12.67-.18 1.05-.18.35 0 .642.03.904.09.263.06.496.12.7.18.204.061.35.151.496.242.146.09.233.15.32.21l-.7 1.267-.262-.18a4.669 4.669 0 00-.379-.182 2.125 2.125 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.292.362-.292.664 0 .18.03.301.117.422.088.12.175.21.32.301.147.09.293.18.497.271.175.09.379.181.612.272.263.12.525.271.788.422.262.15.466.331.67.512.205.211.35.452.467.724.088.392.146.723.146 1.115zM84 62.187H0v1.809h84v-1.809zM84 39.127H0v1.809h84v-1.809zM84 108.31H0v1.809h84v-1.809zM84 85.25H0v1.809h84V85.25zM5.542 55.796l-3.209-4.732a16.202 16.202 0 01-.583-.875c-.146-.24-.204-.392-.233-.392h.029v.121c0 .06 0 .15.029.271 0 .12 0 .211.03.362v5.245H0v-8.5h1.75l2.975 4.4c.117.181.233.362.35.513.117.181.204.332.263.452.087.12.145.242.175.332.058.09.058.12.058.12H5.6v-.12c0-.09 0-.181-.03-.302 0-.12 0-.27-.028-.422v-4.974h1.575v8.501H5.542zM11.842 47.295h-1.75v8.501h1.75v-8.5zM18.406 50.732c-.058-.18-.116-.362-.175-.513-.058-.18-.087-.331-.146-.452a5.04 5.04 0 00-.087-.331c-.03-.09-.03-.151-.03-.181h-.028c0 .03-.03.09-.059.18a5.04 5.04 0 00-.087.332 2.71 2.71 0 01-.146.452c-.058.151-.117.332-.175.513l-.7 2.02h2.304l-.67-2.02zm-2.625 5.064h-1.75l3.15-8.5h1.692l3.237 8.5h-1.895L19.66 54.2h-3.325l-.554 1.597zM28.174 49.858c0-.392-.117-.694-.35-.874-.233-.181-.583-.302-1.108-.302h-.875v2.351h.962c.467 0 .817-.09 1.021-.301.233-.211.35-.513.35-.874zm.467 5.938l-1.517-2.411c-.175-.241-.292-.452-.408-.573-.117-.15-.204-.241-.292-.332-.087-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.5h2.742c.963 0 1.721.21 2.246.633.525.421.788 1.024.788 1.838 0 .362-.059.663-.175.905a2.15 2.15 0 01-.438.663c-.175.18-.38.331-.613.452-.233.12-.466.18-.729.241v.03c.117.09.263.211.409.392.145.181.35.453.554.814l1.604 2.532h-1.808zM38.763 55.043c-.117.09-.234.211-.409.301-.175.09-.379.212-.583.302-.233.09-.467.15-.73.21-.262.061-.553.091-.845.091-.7 0-1.312-.12-1.837-.361a3.968 3.968 0 01-1.313-.965 4.18 4.18 0 01-.787-1.417 5.323 5.323 0 01-.263-1.658c0-.573.088-1.145.263-1.658.175-.542.437-.995.816-1.386.35-.392.817-.724 1.342-.965.525-.241 1.137-.362 1.837-.362.555 0 1.021.06 1.4.18.38.122.759.272 1.08.513l-.788 1.327a2.975 2.975 0 00-.758-.362c-.263-.09-.584-.12-.963-.12s-.729.06-1.02.21c-.292.151-.555.362-.73.603-.204.272-.35.573-.437.905-.117.331-.146.723-.146 1.115 0 .422.058.784.146 1.146.087.361.233.663.437.934.204.272.438.483.759.633.291.151.641.241 1.05.241.437 0 .816-.06 1.108-.21.292-.121.554-.272.758-.453l.613 1.206zM46.315 55.796V52.12H42.61v3.677H40.89v-8.5h1.72v3.346h3.705v-3.347h1.72v8.501h-1.72zM56.962 51.546c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.121 2.121 0 00-.729-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.079.241-.292.15-.554.362-.758.633a2.49 2.49 0 00-.438.935 4.667 4.667 0 00-.146 1.115c0 .392.059.784.146 1.146.088.361.233.693.438.964.204.272.437.483.758.663.292.151.67.242 1.08.242.407 0 .758-.09 1.078-.242.292-.15.555-.361.759-.633.204-.27.35-.572.437-.934.03-.422.088-.784.088-1.206zm1.837-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.092 4.092 0 01-1.342-.965 4.112 4.112 0 01-.816-1.387 4.617 4.617 0 01-.292-1.658c0-.572.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.088.513.175 1.055.175 1.628zM66.033 53.416c0 .392-.058.724-.204 1.055-.146.302-.32.573-.583.784a2.811 2.811 0 01-.934.512c-.379.121-.787.181-1.225.181-.35 0-.641-.03-.904-.09-.262-.06-.525-.12-.729-.211-.204-.09-.38-.181-.554-.271a1.83 1.83 0 01-.35-.272l.729-1.266c.058.03.117.09.233.15.088.061.234.152.38.212.145.06.32.12.524.18.205.061.409.091.642.091.409 0 .73-.09.963-.301a.854.854 0 00.35-.694.853.853 0 00-.146-.482 1.707 1.707 0 00-.408-.362c-.175-.09-.35-.21-.584-.301a7.367 7.367 0 01-.7-.332 3.986 3.986 0 01-.7-.422 3.088 3.088 0 01-.554-.512 2.213 2.213 0 01-.38-.694 2.928 2.928 0 01-.145-.904c0-.362.058-.693.204-.995.146-.301.321-.542.554-.753.234-.211.525-.362.846-.483.321-.12.671-.18 1.05-.18a4 4 0 01.904.09c.263.06.496.12.7.18.204.061.35.151.496.242.146.09.234.15.321.21l-.7 1.267a1.17 1.17 0 00-.263-.15c-.116-.061-.233-.121-.379-.182a2.13 2.13 0 00-.466-.12c-.175-.03-.321-.06-.496-.06-.35 0-.613.06-.817.21-.204.151-.291.362-.291.664 0 .18.029.301.116.422.088.12.175.21.321.301.146.09.292.181.496.272.175.09.379.18.612.27.263.122.525.272.788.423.262.15.466.331.67.512.205.211.35.453.467.724.117.271.146.693.146 1.085zM1.75 71.834v2.08h2.625v1.417H1.75v3.527H0v-8.501h4.725v1.477H1.75zM13.182 74.608c0-.392-.058-.754-.146-1.115a2.49 2.49 0 00-.437-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.408 0-.758.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.079-.242.32-.15.554-.361.758-.632.204-.272.35-.573.438-.935.029-.422.087-.784.087-1.206zm1.838-.03c0 .573-.088 1.145-.263 1.658a4.18 4.18 0 01-.787 1.417c-.35.422-.788.723-1.313.995-.525.24-1.137.361-1.808.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.787-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.524.241.962.573 1.341.965.38.391.642.874.817 1.386.087.513.175 1.055.175 1.628zM24.092 75.392c0 1.176-.291 2.05-.845 2.683-.555.633-1.4.934-2.538.934-1.196 0-2.07-.3-2.654-.874-.584-.603-.846-1.447-.846-2.562v-5.215h1.75v5.064c0 .724.146 1.266.408 1.598.263.332.73.512 1.4.512.613 0 1.05-.18 1.342-.542.292-.362.408-.844.408-1.477v-5.185h1.605v5.064h-.03zM32.345 78.858l-3.208-4.733a16.16 16.16 0 01-.583-.874c-.146-.241-.205-.392-.234-.392h-.029v.12c0 .06 0 .151.03.272 0 .12 0 .21.028.362v5.245h-1.575v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.205.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.029-.422v-4.974h1.575v8.5h-1.546zM42.262 74.547c0-.965-.233-1.658-.7-2.08-.466-.452-1.196-.663-2.158-.663h-.759v5.607h.817c.933 0 1.633-.241 2.1-.724.467-.482.7-1.205.7-2.14zm1.838-.06c0 .603-.088 1.175-.292 1.718-.204.543-.467.995-.875 1.387-.38.392-.875.693-1.487.934-.613.211-1.313.332-2.13.332h-2.42v-8.501h2.479c.816 0 1.516.09 2.1.301.583.211 1.079.483 1.458.844.38.362.67.814.846 1.297.233.512.32 1.085.32 1.688zM49.524 73.793c-.058-.18-.116-.361-.175-.512-.058-.18-.087-.332-.145-.452-.03-.12-.059-.241-.088-.332-.03-.09-.03-.15-.03-.18h-.028c0 .03-.03.09-.059.18-.029.09-.058.211-.087.332-.03.15-.088.301-.146.452a9.94 9.94 0 00-.175.512l-.7 2.02h2.304l-.67-2.02zM46.9 78.858h-1.75l3.15-8.501h1.692l3.238 8.5h-1.896l-.554-1.597h-3.296l-.584 1.598zM57.634 71.834v7.024h-1.75v-7.024H53.61v-1.477h6.3v1.477h-2.275zM63.846 70.357h-1.75v8.5h1.75v-8.5zM72.77 74.608c0-.392-.059-.754-.146-1.115a2.49 2.49 0 00-.438-.935 2.122 2.122 0 00-.73-.633 2.262 2.262 0 00-1.05-.241c-.407 0-.757.09-1.078.241-.292.15-.554.362-.759.633a2.49 2.49 0 00-.437.935 4.668 4.668 0 00-.146 1.115c0 .392.058.784.146 1.146.087.361.233.693.437.964.205.272.438.483.759.663.291.151.67.242 1.079.242.408 0 .758-.09 1.08-.242.29-.15.553-.361.757-.632a2.49 2.49 0 00.438-.935 8.39 8.39 0 00.087-1.206zm1.866-.03c0 .573-.087 1.145-.262 1.658a4.18 4.18 0 01-.788 1.417c-.35.422-.787.723-1.312.995-.525.24-1.138.361-1.809.361-.7 0-1.312-.12-1.837-.361a4.094 4.094 0 01-1.342-.965 4.112 4.112 0 01-.817-1.387 4.617 4.617 0 01-.291-1.658c0-.573.087-1.145.291-1.658.175-.542.467-.995.817-1.416.35-.423.788-.724 1.342-.965.525-.241 1.137-.362 1.837-.362s1.313.12 1.838.362c.525.241.962.573 1.341.965.38.391.642.874.817 1.386.058.513.175 1.055.175 1.628zM82.395 78.858l-3.208-4.733a16.16 16.16 0 01-.584-.874c-.145-.241-.204-.392-.233-.392h-.03v.12c0 .06 0 .151.03.272 0 .12 0 .21.03.362v5.245h-1.576v-8.501h1.75l2.975 4.401c.117.181.234.362.35.513.117.18.204.331.263.452.087.12.146.241.175.331.058.09.058.121.058.121h.03v-.12c0-.091 0-.181-.03-.302 0-.12 0-.271-.03-.422v-4.974h1.576v8.5h-1.546zM0 101.92v-8.501h1.75v7.054h3.063v1.447H0zM8.867 93.419h-1.75v8.501h1.75v-8.501zM16.013 99.418c0-.392-.117-.694-.35-.905-.234-.21-.613-.3-1.109-.3h-.991v2.35h.904c.496 0 .875-.09 1.137-.271.292-.181.409-.482.409-.874zM15.72 95.8c0-.693-.437-1.025-1.312-1.025h-.846v2.11h.816c.467 0 .817-.09 1.021-.27.234-.151.321-.423.321-.815zm2.07 3.769c0 .422-.087.814-.232 1.115-.175.301-.38.543-.671.723a2.6 2.6 0 01-1.021.392 5.778 5.778 0 01-1.283.121H11.87v-8.501h2.742c.379 0 .729.03 1.079.09s.642.181.904.362c.263.15.467.392.613.663.145.272.233.603.233.995 0 .543-.146.995-.408 1.296a2.131 2.131 0 01-1.05.664v.03c.233.03.466.12.7.21.204.091.408.242.583.423.175.18.292.361.38.603.087.21.145.482.145.814zM24.267 95.981c0-.392-.117-.693-.35-.874-.234-.18-.584-.301-1.109-.301h-.875v2.351h.963c.467 0 .817-.09 1.02-.301.263-.212.35-.513.35-.875zm.466 5.939l-1.516-2.412c-.175-.24-.292-.452-.409-.572-.116-.151-.204-.242-.291-.332-.088-.06-.146-.12-.233-.15-.059-.03-.146-.03-.263-.03h-.117v3.496h-1.75v-8.501h2.742c.962 0 1.72.211 2.246.633.525.422.787 1.025.787 1.839 0 .362-.058.663-.175.904a2.151 2.151 0 01-.437.663 2.34 2.34 0 01-.613.453c-.233.12-.466.18-.729.24v.03c.117.091.263.212.409.393.145.18.35.452.554.814l1.604 2.532h-1.809zM32.464 96.856c-.058-.181-.117-.362-.175-.513-.059-.18-.088-.332-.146-.452a5.006 5.006 0 00-.087-.332c-.03-.09-.03-.15-.03-.18h-.029c0 .03-.029.09-.058.18-.03.09-.058.211-.088.332-.029.15-.087.301-.145.452-.059.15-.117.332-.175.513l-.7 2.02h2.304l-.671-2.02zm-2.625 5.064h-1.75l3.15-8.501h1.692l3.237 8.501h-1.896l-.554-1.598h-3.296l-.583 1.598zM42.205 95.981c0-.392-.116-.693-.35-.874-.233-.18-.583-.301-1.079-.301h-.875v2.351h.963c.466 0 .816-.09 1.02-.301.205-.212.321-.513.321-.875zm.467 5.939l-1.517-2.412c-.175-.24-.291-.452-.408-.572-.117-.151-.204-.242-.292-.332-.087-.06-.146-.12-.233-.15-.058-.03-.146-.03-.263-.03h-.116v3.496h-1.75v-8.501h2.741c.963 0 1.721.211 2.246.633.525.422.788 1.025.788 1.839 0 .362-.059.663-.175.904a2.151 2.151 0 01-.438.663 2.34 2.34 0 01-.612.453c-.234.12-.467.18-.73.24v.03c.117.091.263.212.409.393.146.18.35.452.554.814l1.604 2.532h-1.808zM49.788 98.725v3.195h-1.75v-3.195l-2.713-5.306h1.925L49 97.036l1.75-3.617h1.692l-2.654 5.306zM84 17.844H55.533V3.224l-27.066 14.62H0v-1.778h28L57.254.119v15.947H84v1.778z"})))},treasuresColor:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,qs);return n.createElement("svg",Ys({viewBox:"0 0 324 265",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Fi||(Fi=n.createElement("path",{d:"M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",fill:"#D3BA81"})),Ni||(Ni=n.createElement("path",{d:"M21.553 153.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H10.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H18.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",fill:"#D3BA81"})),Di||(Di=n.createElement("path",{d:"M51.246 115.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688zM104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",fill:"#D3BA81"})),Ai||(Ai=n.createElement("path",{d:"M104.139 153.784c-1.174-.059-5.388-.118-8.141-.118H80.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H94.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.06-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.06 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184zM133.126 138.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126z",fill:"#D3BA81"})),Wi||(Wi=n.createElement("path",{d:"M133.126 138.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126zM170.141 113.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579z",fill:"#D3BA81"})),qi||(qi=n.createElement("path",{d:"M170.141 113.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579zM183.444 138.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172z",fill:"#D3BA81"})),Yi||(Yi=n.createElement("path",{d:"M183.444 138.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172zM238.379 115.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688z",fill:"#D3BA81"})),Gi||(Gi=n.createElement("path",{d:"M238.379 115.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688zM291.728 153.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184z",fill:"#D3BA81"})),Ui||(Ui=n.createElement("path",{d:"M291.728 153.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184zM318.907 113.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),Xi||(Xi=n.createElement("path",{d:"M318.907 113.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),Ji||(Ji=n.createElement("path",{d:"M43.565 89.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2-.029.052-.265.023-.294-.022-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.65.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.25.155-.31.45-1.13.93-2.909l1.174-4.392c.465-1.756.612-2.605.634-2.96z",fill:"#05002F"})),Ki||(Ki=n.createElement("path",{d:"M43.565 89.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2-.029.052-.265.023-.294-.022-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.65.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.25.155-.31.45-1.13.93-2.909l1.174-4.392c.465-1.756.612-2.605.634-2.96zM52.118 86.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.462 3.646c-.036.044-.265-.007-.287-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215z",fill:"#05002F"})),Qi||(Qi=n.createElement("path",{d:"M52.118 86.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.462 3.646c-.036.044-.265-.007-.287-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215zM62.391 76.918c-.044.037-.265-.044-.28-.088.066-.953-.317-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735z",fill:"#05002F"})),Zi||(Zi=n.createElement("path",{d:"M62.391 76.918c-.044.037-.265-.044-.28-.088.066-.953-.317-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735zM77.832 53.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466z",fill:"#05002F"})),$i||($i=n.createElement("path",{d:"M77.832 53.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466zM80.61 50.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432z",fill:"#05002F"})),eo||(eo=n.createElement("path",{d:"M80.61 50.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432zM80.585 32.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.47 10.223c-.008.051-.318.295-.385.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945z",fill:"#05002F"})),to||(to=n.createElement("path",{d:"M80.585 32.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.47 10.223c-.008.051-.318.295-.385.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945zM113.49 25.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28z",fill:"#05002F"})),lo||(lo=n.createElement("path",{d:"M113.49 25.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28zM124.912 13.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868z",fill:"#05002F"})),ao||(ao=n.createElement("path",{d:"M124.912 13.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868zM133.974 5.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894z",fill:"#05002F"})),ro||(ro=n.createElement("path",{d:"M133.974 5.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894zM148.67 14.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.686 53.686 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295z",fill:"#05002F"})),no||(no=n.createElement("path",{d:"M148.67 14.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.686 53.686 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295zM166.79 1.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443z",fill:"#05002F"})),co||(co=n.createElement("path",{d:"M166.79 1.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443zM185.818 9.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322z",fill:"#05002F"})),io||(io=n.createElement("path",{d:"M185.818 9.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322zM196.219 9.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458z",fill:"#05002F"})),oo||(oo=n.createElement("path",{d:"M196.219 9.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458zM203.754 19.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336z",fill:"#05002F"})),so||(so=n.createElement("path",{d:"M203.754 19.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336zM216.547 24.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657z",fill:"#05002F"})),ho||(ho=n.createElement("path",{d:"M216.547 24.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657zM230.961 17.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672z",fill:"#05002F"})),vo||(vo=n.createElement("path",{d:"M230.961 17.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672zM236.254 37.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406z",fill:"#05002F"})),mo||(mo=n.createElement("path",{d:"M236.254 37.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406zM247.103 46.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554z",fill:"#05002F"})),po||(po=n.createElement("path",{d:"M247.103 46.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554zM257.738 48c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L257.738 48zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468z",fill:"#05002F"})),uo||(uo=n.createElement("path",{d:"M257.738 48c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L257.738 48zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468zM270.23 56.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03z",fill:"#05002F"})),fo||(fo=n.createElement("path",{d:"M270.23 56.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03zM272.487 73.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86z",fill:"#05002F"})),go||(go=n.createElement("path",{d:"M272.487 73.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86zM283.825 82.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554z",fill:"#05002F"})),bo||(bo=n.createElement("path",{d:"M283.825 82.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554zM277.367 100.663a36.15 36.15 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.442 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.35.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029z",fill:"#05002F"})),zo||(zo=n.createElement("path",{d:"M277.367 100.663a36.15 36.15 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.442 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.35.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029zM55.772 173.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894z",fill:"#05002F"})),yo||(yo=n.createElement("path",{d:"M55.772 173.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894zM51.96 182.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111z",fill:"#05002F"})),xo||(xo=n.createElement("path",{d:"M51.96 182.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111zM53.49 199.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.402.82a45.84 45.84 0 00-1.366.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661z",fill:"#05002F"})),wo||(wo=n.createElement("path",{d:"M53.49 199.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.402.82a45.84 45.84 0 00-1.366.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661zM76.283 211.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473z",fill:"#05002F"})),Eo||(Eo=n.createElement("path",{d:"M76.283 211.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473zM87.902 230.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953z",fill:"#05002F"})),Oo||(Oo=n.createElement("path",{d:"M87.902 230.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953zM91.6 241.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148z",fill:"#05002F"})),Mo||(Mo=n.createElement("path",{d:"M91.6 241.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148zM113.329 246.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614z",fill:"#05002F"})),jo||(jo=n.createElement("path",{d:"M113.329 246.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614zM127.326 258.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074z",fill:"#05002F"})),Co||(Co=n.createElement("path",{d:"M127.326 258.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074zM138.92 251.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417z",fill:"#05002F"})),So||(So=n.createElement("path",{d:"M138.92 251.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417zM153.814 263.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258z",fill:"#05002F"})),To||(To=n.createElement("path",{d:"M153.814 263.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258zM174.948 263.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302z",fill:"#05002F"})),ko||(ko=n.createElement("path",{d:"M174.948 263.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302zM189.9 261.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479z",fill:"#05002F"})),Vo||(Vo=n.createElement("path",{d:"M189.9 261.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479zM208.286 256.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86z",fill:"#05002F"})),_o||(_o=n.createElement("path",{d:"M208.286 256.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86zM220.929 244.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24z",fill:"#05002F"})),Lo||(Lo=n.createElement("path",{d:"M220.929 244.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24zM240.985 238.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225z",fill:"#05002F"})),Io||(Io=n.createElement("path",{d:"M240.985 238.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225zM249.227 230.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336z",fill:"#05002F"})),Po||(Po=n.createElement("path",{d:"M249.227 230.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336zM260.086 221.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73z",fill:"#05002F"})),Bo||(Bo=n.createElement("path",{d:"M260.086 221.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73zM260.161 200.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525z",fill:"#05002F"})),Ro||(Ro=n.createElement("path",{d:"M260.161 200.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525zM275.512 199.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177z",fill:"#05002F"})),Ho||(Ho=n.createElement("path",{d:"M275.512 199.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177zM277.085 182.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835z",fill:"#05002F"})),Fo||(Fo=n.createElement("path",{d:"M277.085 182.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835zM288.748 168.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#05002F"})),No||(No=n.createElement("path",{d:"M288.748 168.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#05002F"})))},treasuresColorNegative:function(e){var t=e.title,l=e.titleId,a=function(e,t){if(null==e)return{};var l,a,r=function(e,t){if(null==e)return{};var l,a,r={},n=Object.keys(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||(r[l]=e[l]);return r}(e,t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);for(a=0;a<n.length;a++)t.indexOf(l=n[a])>=0||Object.prototype.propertyIsEnumerable.call(e,l)&&(r[l]=e[l])}return r}(e,Gs);return n.createElement("svg",Us({viewBox:"0 0 327 266",fill:"none",xmlns:"http://www.w3.org/2000/svg","aria-labelledby":l},a),t?n.createElement("title",{id:l},t):null,Wo||(Wo=n.createElement("path",{d:"M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236z",fill:"#D3BA81"})),qo||(qo=n.createElement("path",{d:"M23.553 154.725c-.997-.059-3.455-.118-5.33-.118-1.874 0-4.332.059-5.329.118-.059 0-.118-.177-.059-.236 2.111-.819 2.99-1.986 2.99-6.894v-31.067H12.31c-5.742 0-8.141 1.284-10.075 6.54-.059.059-.236 0-.236-.059.236-3.388.236-7.123.118-9.168 0-.118.06-.177.177-.177 1.174.059 5.388.118 8.142.118h15.581c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 2.045-.118 5.78.119 9.168 0 .059-.178.118-.237.059-1.934-5.256-4.332-6.54-10.075-6.54H20.63v31.067c0 4.908.878 6.075 2.99 6.894.05.059-.008.236-.067.236zM53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688z",fill:"#D3BA81"})),Yo||(Yo=n.createElement("path",{d:"M53.246 116.536h-7.263v16.762h7.263c6.503 0 9.367-2.568 9.367-8.407.007-5.845-2.864-8.355-9.367-8.355zm5.27 18.859l6.385 11.854c1.934 3.616 3.75 5.196 5.912 5.196.524 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.982-1.639-7.322-6.016l-6.909-13.02h-7.38v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.06.236-.996-.059-3.454-.118-5.328-.118-1.875 0-4.156.059-5.152.118-.06 0-.118-.177-.06-.236 1.934-.82 2.813-1.868 2.813-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.06-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.724c9.315 0 14.35 3.565 14.35 10.924 0 6.015-3.219 9.581-9.139 10.688zM106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184z",fill:"#D3BA81"})),Go||(Go=n.createElement("path",{d:"M106.139 154.784c-1.174-.059-5.388-.118-8.141-.118H82.593c-4.392 0-6.148.059-6.148.059-.06 0-.118-.177-.06-.236 1.935-.819 2.813-1.867 2.813-6.599v-27.332c0-4.731-.878-5.779-2.812-6.598-.06-.06 0-.237.059-.237 0 0 1.757.059 6.148.059H96.47c2.753 0 6.967-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.6v15.707h7.5c5.506 0 7.322-.937 8.606-3.853.059-.059.236 0 .236.059-.118 1.048-.177 3.27-.177 5.137 0 1.868.059 4.09.177 5.138 0 .059-.177.118-.236.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.5v16.991h11.537c6.326 0 8.725-1.056 10.659-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.17.184zM135.126 139.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126z",fill:"#D3BA81"})),Uo||(Uo=n.createElement("path",{d:"M135.126 139.661l-7.263-17.692-7.263 17.692h14.526zm2.17 15.065c-.059-.059-.059-.288-.059-.288 2.517-.937 3.1-2.222.819-7.706l-1.756-4.266h-16.807l-1.521 3.676c-2.221 5.373-2.17 7.004 1.174 8.296 0 0 0 .236-.059.288a108.307 108.307 0 00-5.152-.118c-1.757 0-3.927.059-5.152.118-.059-.059-.059-.288-.059-.288 2.635-1.225 3.808-2.923 6.03-8.296l13.884-33.754c.059-.059.295-.059.354 0l14.231 34.337c2.288 5.55 3.107 6.539 5.152 7.706 0 0 0 .236-.059.287a120.397 120.397 0 00-5.565-.118c-2.407.008-4.34.067-5.455.126zM172.141 114.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579z",fill:"#D3BA81"})),Xo||(Xo=n.createElement("path",{d:"M172.141 114.491c.642 0 1.285-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.953-7.418-4.156 0-7.027 2.568-7.027 6.421 0 4.613 3.218 5.898 9.603 8.88 5.152 2.391 11.13 5.373 11.13 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805a2.68 2.68 0 00-1.402.406c-.059 0-.237-.059-.178-.118.532-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.437-3.27 8.437-7.824 0-4.731-2.695-6.311-9.374-9.404-5.211-2.391-11.36-4.967-11.36-11.913 0-6.539 5.093-10.746 11.419-10.746 3.816 0 6.333 1.579 8.495 1.579zM185.444 139.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172z",fill:"#D3BA81"})),Jo||(Jo=n.createElement("path",{d:"M185.444 139.366v-18.807c0-4.732-.878-5.78-2.812-6.599-.059-.059 0-.236.059-.236.996.059 3.277.118 5.152.118s4.155-.059 5.152-.118c.059 0 .118.177.059.236-1.934.819-2.812 1.867-2.812 6.599v18.917c0 9.168 4.037 12.674 11.418 12.674 7.086 0 11.131-4.03 11.131-13.08v-17.227c0-5.019-.76-6.886-3.395-7.883-.059-.059 0-.236.059-.236a94.55 94.55 0 004.864.118c2.052 0 3.867-.059 4.864-.118.059 0 .118.177.059.236-2.635.997-3.395 2.864-3.395 7.883v17.405c0 11.33-6.031 16.29-15.05 16.29-9.323.007-15.353-4.96-15.353-16.172zM240.379 116.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688z",fill:"#D3BA81"})),Ko||(Ko=n.createElement("path",{d:"M240.379 116.536h-7.263v16.762h7.263c6.502 0 9.373-2.568 9.373-8.407-.007-5.845-2.878-8.355-9.373-8.355zm5.27 18.859l6.384 11.854c1.934 3.616 3.75 5.196 5.912 5.196.525 0 1.174-.177 1.174-.177.059 0 .177.177.177.236-.642 1.343-2.34 2.569-4.569 2.569-3.166 0-4.975-1.639-7.322-6.016l-6.908-13.02h-7.381v11.559c0 4.908.878 6.074 2.989 6.894.059.059 0 .236-.059.236-.997-.059-3.455-.118-5.329-.118-1.875 0-4.156.059-5.152.118-.059 0-.118-.177-.059-.236 1.933-.82 2.812-1.868 2.812-6.599v-27.332c0-4.732-.879-5.78-2.812-6.599-.059-.059 0-.236.059-.236 0 0 1.756.059 6.148.059h8.725c9.314 0 14.348 3.565 14.348 10.924 0 6.015-3.225 9.581-9.137 10.688zM293.728 154.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184z",fill:"#D3BA81"})),Qo||(Qo=n.createElement("path",{d:"M293.728 154.784c-1.174-.059-5.388-.118-8.142-.118h-15.404c-4.392 0-6.148.059-6.148.059-.059 0-.118-.177-.059-.236 1.933-.819 2.812-1.867 2.812-6.599v-27.332c0-4.731-.879-5.779-2.812-6.598-.059-.06 0-.237.059-.237 0 0 1.756.059 6.148.059h13.884c2.753 0 6.968-.059 8.141-.118.118 0 .177.059.177.177-.118 1.868-.118 5.197.118 8.348 0 .059-.177.119-.236.059-1.875-4.613-4.805-5.72-10.075-5.72h-10.599v15.707h7.499c5.506 0 7.322-.937 8.606-3.853.059-.059.237 0 .237.059-.119 1.048-.178 3.27-.178 5.137 0 1.868.059 4.09.178 5.138 0 .059-.178.118-.237.059-1.291-2.923-3.107-3.853-8.606-3.853h-7.499v16.991h11.537c6.325 0 8.724-1.056 10.658-6.311.059-.059.236 0 .236.059-.236 3.388-.236 6.894-.118 8.939 0 .125-.059.184-.177.184zM320.907 114.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),Zo||(Zo=n.createElement("path",{d:"M320.907 114.491c.642 0 1.284-.236 1.639-.465.059 0 .236.059.236.118 0 2.982.236 5.898.701 8.88 0 .059-.177.118-.236.059-2.694-5.019-6.68-7.418-10.954-7.418-4.155 0-7.026 2.568-7.026 6.421 0 4.613 3.218 5.898 9.602 8.88 5.152 2.391 11.131 5.373 11.131 12.496 0 7.241-5.034 12.09-12.887 12.09-6.149 0-9.898-2.805-11.832-2.805-.524 0-1.056.177-1.403.406-.059 0-.236-.059-.177-.118.524-2.864.82-5.956 1.115-9.868 0-.059.236-.059.236-.059 1.698 5.72 5.329 9.691 12.238 9.691 5.565 0 8.436-3.27 8.436-7.824 0-4.731-2.694-6.311-9.374-9.404-5.211-2.391-11.359-4.967-11.359-11.913 0-6.539 5.093-10.746 11.419-10.746 3.808 0 6.332 1.579 8.495 1.579z",fill:"#D3BA81"})),$o||($o=n.createElement("path",{d:"M45.565 90.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2.001-.029.051-.265.022-.294-.023-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.649.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.251.155-.31.45-1.13.93-2.908l1.174-4.392c.465-1.756.612-2.605.634-2.96z",fill:"#fff"})),es||(es=n.createElement("path",{d:"M45.565 90.555c.023-.067.14-.17.214-.17.421.17 1.713.494 2.746.679.067.037.037.288-.03.325-1.446.17-2.11.775-2.59 2.568l-.31 1.166 8.621 2.31c1.373.37 1.963.266 2.613-.553.044-.022.258.067.266.126a33.08 33.08 0 00-.584 1.97c-.199.753-.361 1.432-.48 2.001-.029.051-.265.022-.294-.023-.156-1.025-.613-1.41-1.986-1.778l-8.621-2.31-.31 1.166c-.48 1.793-.207 2.649.96 3.52.036.067-.06.303-.133.296-.99-.355-2.266-.724-2.717-.783-.066-.037-.118-.184-.103-.251.155-.31.45-1.13.93-2.908l1.174-4.392c.465-1.756.612-2.605.634-2.96zM54.118 87.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.461 3.646c-.037.044-.266-.007-.288-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215z",fill:"#fff"})),ts||(ts=n.createElement("path",{d:"M54.118 87.1l3.063 1.225c1.27.51 1.86.495 2.539-.184.044-.022.25.103.25.155a35.084 35.084 0 00-1.461 3.646c-.036.044-.265-.007-.287-.059-.023-.96-.436-1.38-1.713-1.89l-6.997-2.797c-1.27-.51-1.86-.494-2.54.185-.043.022-.25-.104-.25-.155a35.184 35.184 0 001.462-3.646c.036-.045.265.007.287.058.022.96.436 1.38 1.713 1.89l2.945 1.18 2.48-6.207-2.945-1.18c-1.27-.51-1.86-.495-2.54.184-.044.022-.25-.103-.25-.155a34.754 34.754 0 001.461-3.646c.037-.044.266.007.288.059.022.96.435 1.38 1.712 1.89l6.998 2.797c1.27.51 1.86.494 2.539-.192.044-.022.25.103.25.155a35.093 35.093 0 00-1.461 3.646c-.037.044-.266-.007-.288-.059-.022-.96-.435-1.38-1.712-1.89l-3.063-1.225-2.48 6.215zM64.391 77.918c-.044.037-.265-.044-.28-.088.066-.953-.318-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735z",fill:"#fff"})),ls||(ls=n.createElement("path",{d:"M64.391 77.918c-.044.037-.265-.044-.28-.088.066-.953-.318-1.447-1.66-2.185l-6.06-3.314c-1.484-.812-2.156-.871-2.909-.318-.051.015-.236-.133-.229-.184.259-.436.65-1.107.982-1.72l1.97-3.61c.88-1.608 1.233-2.406 1.337-2.738.037-.066.177-.133.243-.11.37.265 1.314.76 2.274 1.18.051.052-.037.288-.111.31-1.255-.147-1.963.325-2.805 1.86l-1.557 2.85 4.096 2.243 1.056-1.933c.56-1.026.672-1.787.11-2.569-.029-.059.133-.28.185-.266.31.192.967.569 1.402.812.443.244 1.115.59 1.44.746.037.044-.06.295-.126.302-.96-.051-1.542.45-2.103 1.484l-1.056 1.926 4.193 2.296 1.653-3.019c.9-1.646.87-2.458-.126-3.639-.022-.074.133-.28.2-.258.96.605 1.948 1.13 2.42 1.321.067.037.097.2.067.258-.177.251-.516.79-1.609 2.798l-2.089 3.83a76.59 76.59 0 00-.908 1.735zM79.832 54.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466z",fill:"#fff"})),as||(as=n.createElement("path",{d:"M79.832 54.528l-13.006.354 5.396 4.222c1.35 1.055 1.993 1.255 2.974.79.052-.008.214.162.192.221-.273.317-.716.856-1.085 1.329a46.4 46.4 0 00-1.026 1.372c-.052.03-.258-.08-.258-.132.214-1.07-.133-1.639-1.484-2.694l-5.41-4.23c-1.078-.841-1.727-1.011-2.569-.612-.051.007-.214-.17-.192-.222.28-.332.709-.841 1.085-1.328.436-.554.672-.893.967-1.329.045-.03.2-.022.259.022.347.546.93.775 2.007.746l9.02-.178-4.827-3.771c-1.351-1.056-1.993-1.262-2.975-.79-.052.007-.214-.17-.192-.221.266-.318.716-.857 1.085-1.33a38.22 38.22 0 001.026-1.372c.044-.03.251.081.259.133-.215 1.07.132 1.639 1.483 2.694l7.5 5.86c.029.067-.14.436-.23.466zM82.61 51.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432z",fill:"#fff"})),rs||(rs=n.createElement("path",{d:"M82.61 51.265c-.052.03-.244-.11-.244-.162.325-.893.096-1.476-.996-2.561l-4.901-4.857c-1.203-1.189-1.83-1.432-2.709-1.107-.052 0-.192-.192-.17-.244.37-.347.93-.886 1.425-1.38l2.893-2.923c1.292-1.306 1.853-1.97 2.045-2.266.051-.052.206-.074.265-.037.28.354 1.049 1.092 1.853 1.764.037.067-.11.266-.192.266-1.159-.495-1.978-.236-3.21 1.011l-2.281 2.303 3.314 3.284 1.55-1.564c.827-.834 1.136-1.535.82-2.436-.016-.067.198-.229.25-.207.244.266.768.812 1.13 1.166a34.9 34.9 0 001.18 1.115c.03.052-.14.266-.199.258-.908-.317-1.609.008-2.428.842l-1.55 1.565 3.395 3.358 2.42-2.443c1.322-1.329 1.521-2.126.887-3.536 0-.073.199-.228.265-.192.753.85 1.565 1.624 1.956 1.942.052.051.037.214-.014.265-.244.192-.709.613-2.326 2.244l-3.07 3.1a82.204 82.204 0 00-1.358 1.432zM82.585 33.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.469 10.223c-.007.051-.317.295-.384.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945z",fill:"#fff"})),ns||(ns=n.createElement("path",{d:"M82.585 33.543c-.052-.007-.17-.214-.133-.258.325-.23 1.018-.716 1.572-1.152a59.99 59.99 0 001.624-1.32c.052-.016.229.147.221.198-.531.665-.56 1.307.864 2.23l6.104 3.963-2.052-6.894-.118-.066c-1.55-.945-1.97-1.07-2.65-.893-.051-.008-.17-.214-.133-.259.325-.229 1.019-.716 1.573-1.151a59.954 59.954 0 001.623-1.321c.052-.023.23.147.222.199-.517.65-.576 1.292.9 2.2l6.2 3.823-2.31-6.695c-.458-1.358-1.122-1.779-2.31-1.247-.052-.008-.163-.214-.133-.258a53.535 53.535 0 001.616-1.211 40.976 40.976 0 001.344-1.085c.051-.022.229.148.221.2-.369.67-.42 1.284.155 2.937l3.469 10.223c-.007.051-.317.295-.384.295l-7.964-4.872 2.68 8.961c-.008.052-.318.295-.384.295l-9.197-5.897c-1.52-.967-1.956-1.115-2.62-.945zM115.49 26.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28z",fill:"#fff"})),cs||(cs=n.createElement("path",{d:"M115.49 26.28c-.524.236-1.158.554-1.837.916-.687.361-1.3.708-1.787 1.01-.059.008-.199-.176-.184-.228.649-.812.62-1.41-.052-2.665l-1.373-2.576-4.834-2.635c-1.55-.849-1.978-1.07-2.776-1.033-.051-.015-.125-.236-.088-.28.354-.17 1.136-.547 1.779-.886.686-.362 1.395-.783 1.756-.997.059-.007.2.178.185.23-.473.575-.473 1.07.827 1.785l3.734 2.075.377-3.935c.125-1.373-.251-2.007-1.388-1.808-.052-.015-.125-.236-.088-.28.376-.178 1.24-.62 1.801-.916a36.956 36.956 0 001.336-.753c.059-.007.199.178.184.23-.384.427-.48 1.092-.672 2.952l-.538 5.388 1.38 2.59c.671 1.255 1.144 1.617 2.185 1.536.037.022.118.243.073.28zM126.912 14.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868z",fill:"#fff"})),is||(is=n.createElement("path",{d:"M126.912 14.44c-1.306-3.306-3.388-4.612-5.875-3.63-2.466.973-3.108 3.32-1.809 6.62 1.307 3.307 3.388 4.613 5.876 3.631 2.465-.966 3.107-3.314 1.808-6.62zm-9.514 3.75c-1.417-3.587-.059-7.07 3.262-8.377 3.351-1.321 6.658.258 8.075 3.867 1.417 3.588.059 7.072-3.262 8.378-3.351 1.329-6.651-.258-8.075-3.868zM135.974 6.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894z",fill:"#fff"})),os||(os=n.createElement("path",{d:"M135.974 6.226l-2.532.656 1.277 4.902 2.532-.657c1.882-.488 2.48-1.41 2.037-3.123-.45-1.72-1.447-2.266-3.314-1.778zm-3.794 2.96c-.428-1.64-.841-2.163-1.764-2.333-.044-.022-.067-.258-.022-.295a61.49 61.49 0 001.926-.465l3.403-.886c2.842-.738 4.908.118 5.469 2.266.451 1.727-.376 3.21-2.17 4.104l2.141 2.37c.841.937 1.365 1.32 2.118 1.128.281-.073.524-.265.672-.435.051-.03.236.03.243.081.03.68-.361 1.602-1.38 1.867-1.306.34-2.236-.516-3.218-1.623l-2.406-2.746-2.215.576.739 2.827c.346 1.32.708 1.786 1.66 1.933.045.023.067.259.022.296-.546.103-1.203.258-1.919.443-.716.184-1.358.369-1.889.546-.059-.008-.148-.222-.126-.266.761-.59.849-1.174.502-2.495l-1.786-6.894zM150.67 15.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.708 53.708 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295z",fill:"#fff"})),ss||(ss=n.createElement("path",{d:"M150.67 15.083c-.561.037-1.226.11-1.956.207-.731.096-1.395.206-1.942.317-.059-.007-.125-.236-.088-.28.827-.495.982-1.063.804-2.421l-1.011-7.47c-.184-1.358-.487-1.86-1.417-2.118-.037-.03-.037-.266.015-.296.561-.037 1.218-.11 1.956-.206.73-.096 1.387-.207 1.941-.318.059.008.125.237.089.28-.827.495-.982 1.064-.798 2.422l.539 3.963 3.713-4.723c.915-1.181.982-1.897-.03-2.126-.044-.03-.037-.266.015-.295a53.708 53.708 0 003.986-.539c.052.007.125.236.088.28-.745.303-1.262.915-2.516 2.502l-2.23 2.776 4.348 4.856c1.129 1.248 1.454 1.602 2.192 1.853.044.03.037.266-.015.295-.398.037-1.254.118-1.97.214-.79.104-1.624.259-2.03.332-.059-.007-.126-.236-.089-.28.657-.384.834-.841-.111-1.912l-3.454-3.919-1.698 2.118.281 2.074c.184 1.358.487 1.86 1.417 2.119.022.037.015.273-.029.295zM168.79 2.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443z",fill:"#fff"})),hs||(hs=n.createElement("path",{d:"M168.79 2.181l-.125 5.432 2.28.052c1.971.044 2.805-.738 2.849-2.613.045-1.911-.789-2.775-2.723-2.82l-2.281-.051zm.952 11.455c.037.037-.007.274-.059.288a36.338 36.338 0 00-2.074-.103 34.686 34.686 0 00-1.985.007c-.052-.022-.082-.258-.045-.295.901-.362 1.152-.9 1.181-2.288l.17-7.197c.037-1.712-.221-2.34-1.063-2.76-.037-.037.007-.273.059-.288.509.03 1.292.066 2 .081l3.189.074c2.952.066 4.739 1.55 4.687 3.882-.052 2.333-1.926 3.75-4.879 3.676l-2.281-.051-.059 2.531c-.037 1.447.207 2 1.159 2.443zM187.818 10.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322z",fill:"#fff"})),ds||(ds=n.createElement("path",{d:"M187.818 10.492l.583-4.583c.214-1.69.066-2.348-.842-2.953-.029-.037.037-.266.089-.28.406.073 1.1.177 1.69.25.591.074 1.285.148 1.698.178.052.022.059.258.015.295-1.026.362-1.336.952-1.55 2.65l-.583 4.583c-.429 3.337-2.385 4.901-5.595 4.488-3.337-.428-4.857-2.413-4.429-5.765l.65-5.115c.169-1.358.007-1.919-.82-2.406-.029-.037.037-.266.089-.28.546.103 1.203.206 1.934.302.73.096 1.395.163 1.948.192.052.022.059.259.015.295-.923.266-1.218.768-1.395 2.126l-.649 5.115c-.325 2.532.693 3.934 3.048 4.23 2.443.302 3.779-.775 4.104-3.322zM198.219 10.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458z",fill:"#fff"})),vs||(vs=n.createElement("path",{d:"M198.219 10.795c1.816.472 2.761-.015 3.159-1.565.414-1.587-.192-2.488-1.993-2.953l-2.133-.553-1.166 4.517 2.133.554zm-1.07 5.735c1.83.472 2.819-.015 3.225-1.602.428-1.639-.214-2.554-2.029-3.019l-2.51-.65-1.196 4.628 2.51.643zm-5.565-.303c-.052-.03-.023-.266.022-.295.937-.17 1.328-.665 1.712-2.148l1.727-6.687c.421-1.639.318-2.303-.406-2.901-.029-.044.067-.258.126-.266.487.148 1.232.354 1.911.532l3.005.775c2.775.716 4.177 2.362 3.69 4.251-.354 1.358-1.483 2.148-3.107 2.23 1.675.863 2.435 2.177 2.037 3.712-.524 2.044-2.598 2.849-5.41 2.126l-3.366-.871c-.694-.17-1.447-.347-1.941-.458zM205.754 20.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336z",fill:"#fff"})),ms||(ms=n.createElement("path",{d:"M205.754 20.257a77.349 77.349 0 00-1.867-.664c-.045-.037.007-.266.051-.288.93-.074 1.403-.553 1.993-2.14l2.495-6.673c.48-1.284.45-1.867-.244-2.532-.022-.044.096-.25.155-.25.51.228 1.13.48 1.823.738.724.273 1.395.501 1.942.671.044.037-.008.266-.052.288-1.041.052-1.469.473-1.963 1.809l-3.13 8.355 2.716 1.018c1.757.657 2.562.517 3.587-.642.067-.03.296.089.288.163-.465 1.04-.841 2.088-.967 2.583-.022.066-.184.125-.251.096-.273-.14-.848-.399-2.996-1.196l-3.58-1.336zM218.547 25.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657z",fill:"#fff"})),ps||(ps=n.createElement("path",{d:"M218.547 25.372c.015.044-.118.244-.17.236-.509-.28-1.137-.59-1.838-.922a32.606 32.606 0 00-1.882-.827c-.044-.037.029-.266.074-.28 1.041.03 1.498-.347 2.103-1.639l3.13-6.65c.605-1.292.605-1.882-.081-2.665-.015-.052.11-.243.17-.236.509.28 1.136.59 1.837.923a32.92 32.92 0 001.883.826c.044.037-.03.266-.074.288-1.041-.03-1.499.347-2.104 1.639l-3.129 6.65c-.606 1.277-.606 1.875.081 2.657zM232.961 18.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672z",fill:"#fff"})),us||(us=n.createElement("path",{d:"M232.961 18.847c1.366.805 1.787 1.654 2.458 2.045.185.11.384.096.561.037.089.03.207.184.222.236a22.26 22.26 0 00-1.454 2.953c-.037.059-.274.007-.296-.067.096-1.948-.612-3.447-2.029-4.281-2.193-1.284-4.429-.317-6.215 2.731-1.787 3.048-1.521 5.521.701 6.827 1.476.864 3.218.783 4.923-.273.074-.022.244.163.199.222a27.916 27.916 0 00-2.037 2.65.467.467 0 01-.288-.081c-.051-.2-.155-.34-.391-.48-.635-.377-1.587-.325-2.967-1.137-3.048-1.786-3.816-5.395-1.875-8.71 1.941-3.306 5.514-4.413 8.488-2.672zM238.254 38.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406z",fill:"#fff"})),fs||(fs=n.createElement("path",{d:"M238.254 38.023a52.693 52.693 0 00-1.565-1.218c-.029-.051.089-.25.14-.258.908.222 1.506-.081 2.569-1.395l4.488-5.528c.863-1.063 1.018-1.632.576-2.48-.008-.052.169-.207.221-.192a39.056 39.056 0 003.122 2.532c.03.051-.088.25-.14.258-1.004-.28-1.535-.022-2.436 1.085l-5.617 6.93 2.251 1.831c1.454 1.181 2.266 1.3 3.602.532.074-.008.251.177.222.243-.768.834-1.462 1.712-1.735 2.14-.044.06-.214.06-.266.015-.214-.221-.679-.65-2.457-2.089l-2.975-2.406zM249.103 47.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554z",fill:"#fff"})),gs||(gs=n.createElement("path",{d:"M249.103 47.272c0 .052-.184.2-.236.17-.391-.428-.886-.93-1.447-1.462a34.865 34.865 0 00-1.52-1.387c-.03-.052.111-.244.162-.244.974.362 1.535.148 2.525-.878l5.107-5.3c.989-1.026 1.181-1.594.783-2.554 0-.051.191-.192.236-.17.391.428.886.93 1.446 1.462a34.762 34.762 0 001.521 1.388c.03.051-.111.243-.162.243-.975-.362-1.536-.148-2.525.878l-5.107 5.3c-.989 1.033-1.181 1.594-.783 2.554zM259.738 49c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L259.738 49zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468z",fill:"#fff"})),bs||(bs=n.createElement("path",{d:"M259.738 49c1.233 1.416 2.281 1.55 3.492.501 1.24-1.078 1.247-2.163.037-3.565l-1.44-1.66-3.521 3.062L259.738 49zm-4.133 4.118c1.24 1.424 2.325 1.58 3.565.509 1.277-1.114 1.27-2.222.037-3.639l-1.705-1.956-3.602 3.13 1.705 1.956zm-4.414-3.41c-.022-.052.133-.236.185-.23.871.392 1.468.207 2.627-.796l5.211-4.525c1.277-1.114 1.565-1.72 1.307-2.62.007-.052.206-.177.251-.148.317.391.812.99 1.277 1.52l2.029 2.34c1.883 2.163 2.097 4.311.628 5.588-1.063.923-2.443.93-3.824.074.894 1.66.775 3.174-.428 4.214-1.594 1.38-3.757.871-5.661-1.32l-2.281-2.629c-.45-.524-.974-1.092-1.321-1.468zM272.23 57.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03z",fill:"#fff"})),zs||(zs=n.createElement("path",{d:"M272.23 57.524l-1.484-2.155-4.178 2.871 1.484 2.156c1.1 1.601 2.17 1.852 3.631.856 1.469-1.019 1.639-2.14.547-3.728zm-4.075-2.56c1.395-.96 1.75-1.529 1.595-2.451.007-.052.221-.155.265-.118.273.428.694 1.077 1.093 1.653l1.993 2.9c1.66 2.422 1.557 4.658-.266 5.913-1.469 1.011-3.144.738-4.598-.65l-1.499 2.82c-.59 1.107-.775 1.734-.339 2.377.162.236.428.406.634.48.045.036.052.228 0 .258-.634.258-1.631.199-2.221-.657-.768-1.115-.273-2.281.428-3.58l1.764-3.196-1.299-1.89-2.406 1.654c-1.13.775-1.44 1.277-1.255 2.222-.008.051-.222.154-.266.118-.288-.48-.649-1.041-1.07-1.654a28.662 28.662 0 00-1.159-1.587c-.015-.051.155-.214.207-.206.812.516 1.387.398 2.517-.377l5.882-4.03zM274.487 74.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86z",fill:"#fff"})),ys||(ys=n.createElement("path",{d:"M274.487 74.87l3.542-4.303-5.528.516 1.986 3.787zm-5.913-1.764c-.014.051-.236.125-.28.088a52.308 52.308 0 00-.849-1.69 54.499 54.499 0 00-.819-1.484c-.008-.059.184-.199.229-.184.634.398 1.269.516 2.959.361l10.991-.937c.059.03.236.37.229.428l-7.02 8.665c-1.129 1.388-1.336 1.92-1.358 2.54-.015.051-.236.125-.28.088a29.893 29.893 0 00-.805-1.653 38.002 38.002 0 00-1.055-1.89c-.008-.059.184-.2.228-.184.635.583 1.233.679 2.399-.746l.642-.76-2.391-4.562-.657.06c-1.653.147-2.296.583-2.163 1.86zM285.825 83.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554z",fill:"#fff"})),xs||(xs=n.createElement("path",{d:"M285.825 83.454l-.945-2.436-4.724 1.83.945 2.436c.701 1.816 1.683 2.303 3.329 1.668 1.661-.65 2.089-1.697 1.395-3.498zm-3.381-3.432c1.58-.613 2.052-1.085 2.119-2.015.022-.045.251-.096.288-.052.169.48.428 1.203.679 1.86l1.269 3.277c1.063 2.739.443 4.894-1.624 5.69-1.668.643-3.233-.006-4.325-1.69l-2.104 2.4c-.834.937-1.158 1.513-.878 2.229.103.273.325.494.509.612.037.044-.007.236-.059.251-.671.103-1.631-.177-2.015-1.151-.487-1.262.259-2.281 1.24-3.38l2.451-2.71-.827-2.133-2.724 1.056c-1.276.494-1.697.908-1.734 1.867-.022.044-.251.096-.288.052a33.158 33.158 0 00-.657-1.853 31.568 31.568 0 00-.76-1.816c0-.059.199-.177.251-.155.672.687 1.262.709 2.539.215l6.65-2.554zM279.367 101.663a36.087 36.087 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.443 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.351.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029z",fill:"#fff"})),ws||(ws=n.createElement("path",{d:"M279.367 101.663a36.087 36.087 0 00-.465-2 41.487 41.487 0 00-.568-1.978c.007-.06.221-.148.265-.126.643.82 1.233.93 2.606.569l2.827-.739 3.683-4.089c1.181-1.313 1.498-1.675 1.646-2.458.03-.044.266-.066.295-.022.081.392.266 1.233.451 1.934.191.753.442 1.543.561 1.941-.008.06-.222.148-.266.126-.45-.59-.93-.709-1.927.391l-2.886 3.152 3.743 1.277c1.306.443 2.015.221 2.088-.938.03-.044.259-.066.296-.022.088.406.317 1.351.472 1.963.155.591.31 1.115.421 1.477-.008.059-.222.147-.266.125-.325-.472-.952-.723-2.716-1.343l-5.123-1.779-2.841.738c-1.381.362-1.838.738-2.001 1.772-.029.051-.265.073-.295.029zM57.772 174.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894z",fill:"#fff"})),Es||(Es=n.createElement("path",{d:"M57.772 174.197c.023.066-.03.214-.096.251-.45.074-1.727.45-2.708.826-.074 0-.178-.228-.14-.295 1.15-.886 1.417-1.749.907-3.535l-.332-1.159-8.584 2.436c-1.373.391-1.823.782-1.956 1.808-.022.044-.258.074-.295.029a33.396 33.396 0 00-.51-1.992 36.505 36.505 0 00-.612-1.964c0-.059.214-.155.266-.133.656.805 1.247.901 2.62.51l8.584-2.436-.332-1.159c-.51-1.786-1.181-2.384-2.628-2.532-.066-.037-.103-.288-.037-.324 1.034-.2 2.318-.547 2.739-.724.073 0 .191.096.214.163.022.346.192 1.203.694 2.967l1.24 4.369c.501 1.772.804 2.584.966 2.894zM53.96 183.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111z",fill:"#fff"})),Os||(Os=n.createElement("path",{d:"M53.96 183.615l-3.018 1.328c-1.255.554-1.654.982-1.646 1.942-.015.044-.251.11-.288.066a27.626 27.626 0 00-.745-1.816 30.375 30.375 0 00-.842-1.779c-.007-.059.192-.184.244-.162.7.657 1.291.657 2.546.103l6.894-3.033c1.255-.554 1.653-.982 1.646-1.949.022-.044.251-.111.288-.066.192.524.443 1.144.745 1.815.296.68.584 1.277.842 1.779.007.059-.192.185-.244.163-.701-.657-1.291-.65-2.546-.104l-2.901 1.277 2.694 6.119 2.9-1.277c1.256-.553 1.654-.981 1.647-1.948.015-.052.243-.111.288-.067a34.151 34.151 0 001.58 3.602c.007.059-.193.185-.244.163-.701-.657-1.292-.65-2.547-.104l-6.894 3.034c-1.255.553-1.653.982-1.646 1.948-.022.045-.25.111-.288.067a29.387 29.387 0 00-.745-1.823 30.37 30.37 0 00-.841-1.779c-.008-.059.191-.185.243-.162.701.656 1.292.649 2.547.103l3.018-1.329-2.686-6.111zM55.49 200.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.403.82a45.84 45.84 0 00-1.365.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661z",fill:"#fff"})),Ms||(Ms=n.createElement("path",{d:"M55.49 200.34c-.014-.059.17-.206.215-.199.79.531 1.417.443 2.716-.362l5.883-3.616c1.446-.886 1.823-1.44 1.72-2.37.014-.051.228-.14.272-.103.251.443.643 1.107 1.004 1.705l2.156 3.499c.96 1.564 1.476 2.266 1.72 2.517.036.059.029.214-.023.273-.413.192-1.306.76-2.148 1.387-.073.022-.236-.177-.214-.251.753-1.011.694-1.867-.221-3.358l-1.698-2.761-3.978 2.444 1.151 1.874c.613.997 1.218 1.469 2.178 1.373.066 0 .177.251.14.295-.317.178-.974.554-1.403.82a45.84 45.84 0 00-1.365.878c-.06.015-.229-.199-.2-.258.517-.805.377-1.565-.243-2.561l-1.151-1.875-4.067 2.502 1.8 2.93c.982 1.594 1.706 1.978 3.226 1.698.074.015.177.251.126.302-1.004.532-1.949 1.137-2.347 1.447-.06.037-.222-.015-.259-.074-.133-.28-.428-.834-1.631-2.782l-2.288-3.713c-.37-.583-.79-1.24-1.07-1.661zM78.283 212.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473z",fill:"#fff"})),js||(js=n.createElement("path",{d:"M78.283 212.711l-4.037 3.543 1.483 1.691c1.285 1.461 2.414 1.55 3.809.324 1.425-1.247 1.484-2.435.221-3.867l-1.476-1.691zm-7.69 8.363c0 .052-.208.177-.252.148a35.684 35.684 0 00-1.314-1.58 28.253 28.253 0 00-1.336-1.439c-.022-.052.133-.236.185-.229.864.413 1.424.236 2.458-.672l5.351-4.701c1.277-1.115 1.558-1.727 1.292-2.621 0-.051.199-.177.25-.147.318.391.82.989 1.285 1.513l2.082 2.369c1.926 2.192 2.044 4.488.31 6.008-1.735 1.521-4.016 1.108-5.942-1.085l-1.484-1.69-1.882 1.653c-1.085.938-1.329 1.484-1.004 2.473zM89.902 231.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953z",fill:"#fff"})),Cs||(Cs=n.createElement("path",{d:"M89.902 231.533c2.34-2.672 2.554-5.123.546-6.88-1.993-1.749-4.37-1.247-6.717 1.425-2.34 2.672-2.554 5.122-.546 6.879 1.993 1.749 4.377 1.248 6.717-1.424zm-7.684-6.739c2.54-2.901 6.26-3.285 8.946-.93 2.709 2.376 2.812 6.037.258 8.953-2.546 2.901-6.259 3.284-8.945.93-2.717-2.377-2.82-6.038-.259-8.953zM93.6 242.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148z",fill:"#fff"})),Ss||(Ss=n.createElement("path",{d:"M93.6 242.169a52.592 52.592 0 00-1.669-1.078c-.037-.044.067-.258.118-.266.923.148 1.491-.214 2.436-1.616l3.986-5.905c.767-1.137.87-1.712.354-2.524-.007-.052.155-.222.207-.207.443.34.989.731 1.601 1.144.643.436 1.233.812 1.735 1.107.037.045-.066.259-.118.266-1.026-.192-1.535.118-2.333 1.299l-4.99 7.396 2.407 1.624c1.557 1.048 2.37 1.1 3.639.214.074-.015.266.155.236.229-.694.9-1.306 1.838-1.543 2.288-.044.059-.206.081-.265.037-.236-.2-.738-.583-2.635-1.86l-3.167-2.148zM115.329 247.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614z",fill:"#fff"})),Ts||(Ts=n.createElement("path",{d:"M115.329 247.572c1.616-3.159 1.217-5.587-1.159-6.805-2.362-1.203-4.547-.14-6.163 3.026-1.617 3.159-1.218 5.595 1.158 6.805 2.362 1.203 4.547.133 6.164-3.026zm-9.101-4.65c1.756-3.432 5.262-4.716 8.444-3.093 3.21 1.639 4.2 5.167 2.435 8.614-1.756 3.432-5.262 4.717-8.444 3.093-3.203-1.646-4.199-5.167-2.435-8.614zM129.326 259.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074z",fill:"#fff"})),ks||(ks=n.createElement("path",{d:"M129.326 259.809l-4.555-12.186-2.243 6.473c-.561 1.617-.547 2.289.214 3.071.022.044-.089.258-.148.251a33.895 33.895 0 00-1.609-.591 47.214 47.214 0 00-1.631-.524c-.044-.037 0-.265.044-.288 1.078-.14 1.506-.656 2.067-2.28l2.251-6.488c.45-1.292.391-1.964-.258-2.628-.022-.044.088-.251.147-.251.406.163 1.026.391 1.609.598.665.229 1.063.347 1.565.487.044.037.089.185.067.251-.406.509-.429 1.129-.052 2.141l3.093 8.473 2.007-5.794c.561-1.617.546-2.288-.214-3.071-.022-.044.089-.258.148-.258.384.155 1.041.399 1.609.598.561.192 1.232.406 1.631.524.044.037 0 .266-.044.288-1.078.14-1.506.657-2.067 2.281l-3.115 8.997c-.066.044-.465 0-.516-.074zM140.92 252.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417z",fill:"#fff"})),Vs||(Vs=n.createElement("path",{d:"M140.92 252.458c-.266 1.307.435 1.927 2.413 3.145 1.772 1.151 3.337 2.317 2.879 4.546-.465 2.259-2.303 3.359-4.776 2.849-1.749-.354-2.745-1.313-3.439-1.454a.659.659 0 00-.583.141c-.074 0-.244-.089-.266-.148.369-1.085.701-2.155.982-3.255.044-.044.265-.037.31.029.192 1.934 1.336 3.292 3.225 3.676 1.521.31 2.576-.28 2.849-1.587.281-1.358-.28-2.059-2.273-3.277-1.838-1.166-3.447-2.229-3.004-4.406.421-2.067 2.155-3.145 4.362-2.695 1.292.266 1.845.783 2.48.908a.622.622 0 00.517-.11c.074-.008.243.066.265.125a30.288 30.288 0 00-.332 3.063c-.014.074-.258.096-.302.03-.576-1.683-1.558-2.731-2.864-2.997-1.284-.28-2.207.266-2.443 1.417zM155.814 264.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258z",fill:"#fff"})),_s||(_s=n.createElement("path",{d:"M155.814 264.821a32.29 32.29 0 00-1.956-.199 29.109 29.109 0 00-1.963-.088c-.052-.023-.074-.259-.029-.296.907-.31 1.181-.834 1.284-2.199l.553-7.514c.104-1.366-.088-1.927-.944-2.37-.03-.036.022-.265.073-.28.554.074 1.218.14 1.956.199.739.059 1.403.089 1.964.089.051.022.074.258.029.295-.908.31-1.181.834-1.284 2.2l-.295 3.993 4.606-3.853c1.136-.96 1.35-1.653.406-2.082-.03-.036.022-.273.073-.28.428.052 1.469.148 2.133.192.65.052 1.455.088 1.875.103.052.022.074.259.037.295-.79.141-1.424.635-2.982 1.934l-2.753 2.251 3.248 5.647c.849 1.454 1.092 1.867 1.764 2.266.037.037-.022.266-.074.288a38.308 38.308 0 00-1.971-.199c-.79-.059-1.638-.082-2.052-.096-.051-.023-.073-.259-.029-.288.723-.236.989-.65.288-1.897l-2.576-4.547-2.097 1.727-.155 2.089c-.103 1.366.089 1.919.945 2.362.03.015-.022.244-.074.258zM176.948 264.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302z",fill:"#fff"})),Ls||(Ls=n.createElement("path",{d:"M176.948 264.88a38.028 38.028 0 00-4.096.259c-.052-.015-.104-.244-.074-.288.93-.472 1.144-1.033 1.055-2.451l-.184-2.915-3.314-4.392c-1.063-1.41-1.358-1.793-2.104-2.089-.037-.037-.015-.265.037-.295.399-.007 1.262-.022 1.978-.074.775-.051 1.602-.14 2.015-.184.052.015.104.243.074.288-.664.332-.871.775.015 1.963l2.546 3.432 1.964-3.432c.679-1.196.598-1.934-.524-2.222-.037-.037-.015-.273.037-.288a48.614 48.614 0 002.015-.096 27.316 27.316 0 001.527-.132c.052.014.104.243.074.287-.524.229-.885.798-1.83 2.414l-2.716 4.687.184 2.93c.089 1.418.376 1.942 1.358 2.296.037.052.015.288-.037.302zM191.9 262.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479z",fill:"#fff"})),Is||(Is=n.createElement("path",{d:"M191.9 262.887c-.059-.007-.148-.221-.118-.265.752-.583.863-1.203.509-2.694l-1.594-6.717c-.392-1.646-.798-2.185-1.713-2.369-.044-.03-.059-.259-.015-.296.495-.103 1.255-.258 1.934-.428l4.001-.952c1.786-.428 2.613-.694 2.93-.849.074-.015.214.045.251.111.052.45.317 1.484.642 2.48 0 .074-.236.17-.302.125-.724-1.033-1.558-1.24-3.256-.834l-3.159.753 1.078 4.54 2.141-.51c1.136-.273 1.778-.701 1.978-1.638.022-.059.295-.089.324-.037.067.354.222 1.092.34 1.587.118.487.31 1.225.413 1.572-.007.059-.258.155-.31.111-.605-.746-1.365-.842-2.509-.576l-2.141.509 1.107 4.65 3.351-.797c1.823-.435 2.414-.996 2.621-2.532.037-.066.295-.088.332-.022.192 1.122.465 2.207.635 2.687.014.074-.082.207-.148.221-.31.037-.93.148-3.152.679l-4.244 1.012c-.694.147-1.439.339-1.926.479zM210.286 257.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86z",fill:"#fff"})),Ps||(Ps=n.createElement("path",{d:"M210.286 257.389c.044.022.096.251.052.287a55.95 55.95 0 00-1.934.702c-.576.221-1.085.435-1.454.59-.059 0-.177-.207-.155-.251.487-.398.731-1.07 1.203-2.76l1.292-4.584-4.149-2.775c-1.372-.908-1.764-1.181-2.546-1.248-.044-.022-.096-.251-.052-.288a50.187 50.187 0 001.875-.656c.738-.281 1.521-.62 1.897-.783.059 0 .177.207.155.251-.554.517-.62 1.004.531 1.786l3.108 2.111.923-3.38c.332-1.248.118-1.919-1.019-1.868-.044-.022-.096-.251-.052-.287a79.933 79.933 0 001.934-.702 54.652 54.652 0 001.454-.59c.059 0 .177.206.155.251-.487.398-.731 1.07-1.203 2.76l-1.218 4.326 4.377 2.922c1.366.908 1.764 1.181 2.539 1.248.045.022.096.251.052.288-.377.125-1.196.398-1.875.657-.738.28-1.52.62-1.897.782-.059 0-.177-.207-.155-.251.554-.524.62-1.011-.531-1.786l-3.336-2.273-.997 3.661c-.332 1.24-.111 1.911 1.026 1.86zM222.929 245.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24z",fill:"#fff"})),Bs||(Bs=n.createElement("path",{d:"M222.929 245.793l1.602 2.886c.664 1.196 1.129 1.557 2.088 1.461.052.015.133.236.096.281-.509.236-1.099.546-1.741.908-.643.361-1.218.701-1.691.996-.059.007-.199-.177-.184-.229.59-.76.531-1.343-.133-2.546l-3.654-6.591c-.664-1.196-1.129-1.558-2.089-1.462-.051-.015-.132-.236-.088-.28.509-.237 1.1-.547 1.742-.908a38.594 38.594 0 001.69-.997c.059-.007.199.177.185.229-.591.76-.532 1.343.132 2.547l1.536 2.775 5.845-3.24-1.535-2.776c-.664-1.195-1.129-1.557-2.089-1.461-.051-.015-.132-.236-.096-.281.51-.243 1.1-.546 1.742-.908.65-.354 1.218-.693 1.691-.996.059-.015.199.177.184.229-.59.76-.531 1.343.133 2.546l3.654 6.592c.664 1.195 1.129 1.557 2.088 1.461.052.015.133.236.089.281-.509.243-1.1.546-1.742.907-.649.355-1.218.694-1.69.997-.059.007-.199-.177-.185-.229.591-.76.532-1.343-.133-2.546l-1.601-2.886-5.846 3.24zM242.985 239.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225z",fill:"#fff"})),Rs||(Rs=n.createElement("path",{d:"M242.985 239.755c.051.007.155.222.125.266-.487.31-1.07.708-1.697 1.159-.628.45-1.189.878-1.632 1.247-.059.015-.221-.155-.214-.199.532-.893.421-1.484-.413-2.635l-4.303-5.964c-.834-1.152-1.351-1.447-2.369-1.225-.052-.008-.155-.222-.126-.266a38.79 38.79 0 001.698-1.159c.627-.45 1.188-.878 1.631-1.247.052-.015.221.155.214.199-.531.893-.421 1.483.413 2.635l4.303 5.964c.827 1.159 1.351 1.454 2.37 1.225zM251.227 231.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336z",fill:"#fff"})),Hs||(Hs=n.createElement("path",{d:"M251.227 231.939c1.418-1.255 1.558-2.348.465-3.573-1.129-1.269-2.236-1.24-3.638 0l-1.942 1.727 3.174 3.573 1.941-1.727zm-4.162-4.09c1.402-1.247 1.527-2.295.457-3.498-1.092-1.225-2.177-1.225-3.565.007l-1.646 1.462 3.1 3.491 1.654-1.462zm.811 8.54c-.051.022-.236-.125-.228-.177.383-.871.192-1.469-.827-2.613l-4.591-5.159c-1.129-1.27-1.735-1.543-2.635-1.277-.052 0-.177-.199-.155-.251a66.42 66.42 0 001.506-1.292l2.317-2.059c2.141-1.904 4.289-2.148 5.58-.694.93 1.048.953 2.429.118 3.824 1.646-.916 3.167-.812 4.215.376 1.402 1.58.915 3.742-1.255 5.676l-2.598 2.31c-.517.458-1.078.989-1.447 1.336zM262.086 222.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73z",fill:"#fff"})),Fs||(Fs=n.createElement("path",{d:"M262.086 222.21c.052 0 .2.185.177.237-.413.398-.907.908-1.432 1.476a30.86 30.86 0 00-1.35 1.55c-.052.029-.251-.103-.251-.155.339-.982.111-1.535-.938-2.502l-5.417-4.975c-1.048-.967-1.617-1.144-2.569-.723-.052 0-.199-.185-.177-.237.413-.398.908-.908 1.432-1.476.524-.568.989-1.1 1.351-1.55.051-.029.243.103.251.155-.34.982-.111 1.535.937 2.495l5.418 4.975c1.048.974 1.616 1.151 2.568.73zM262.161 201.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525z",fill:"#fff"})),Ns||(Ns=n.createElement("path",{d:"M262.161 201.927c.044-.059.191-.103.258-.073.332.31 1.41 1.092 2.303 1.646.044.059-.074.28-.148.295-1.41-.377-2.251-.059-3.358 1.432l-.724.967 7.16 5.336c1.144.849 1.727.975 2.628.45.051-.007.214.163.199.215-.376.442-.812.996-1.269 1.616a32.52 32.52 0 00-1.189 1.683c-.044.029-.258-.081-.266-.133.237-1.011-.044-1.543-1.188-2.391l-7.16-5.337-.723.967c-1.107 1.491-1.173 2.384-.413 3.631.015.074-.17.259-.236.229-.783-.694-1.846-1.505-2.237-1.734-.044-.059-.044-.214 0-.273.266-.229.842-.886 1.934-2.355l2.716-3.646c1.107-1.469 1.565-2.207 1.713-2.525zM277.512 200.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177z",fill:"#fff"})),Ds||(Ds=n.createElement("path",{d:"M277.512 200.731c.052-.014.229.141.221.192-.325.48-.701 1.071-1.092 1.742a32.024 32.024 0 00-1.004 1.794c-.044.037-.266-.052-.273-.103.133-1.034-.207-1.528-1.432-2.252l-6.326-3.757c-1.225-.73-1.815-.789-2.664-.177-.052.015-.229-.14-.222-.192.325-.479.702-1.07 1.093-1.742.398-.664.738-1.276 1.004-1.793.044-.037.265.051.273.103-.133 1.034.206 1.528 1.432 2.251l6.325 3.757c1.226.724 1.816.783 2.665.177zM279.085 183.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835z",fill:"#fff"})),As||(As=n.createElement("path",{d:"M279.085 183.947c-3.233-1.469-5.647-.959-6.746 1.469-1.1 2.414.073 4.547 3.306 6.016 3.233 1.468 5.647.959 6.747-1.469 1.099-2.414-.074-4.547-3.307-6.016zm-4.23 9.308c-3.513-1.595-4.952-5.049-3.476-8.297 1.491-3.284 4.967-4.436 8.496-2.834 3.513 1.594 4.952 5.049 3.476 8.296-1.491 3.285-4.967 4.436-8.496 2.835zM290.748 169.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#fff"})),Ws||(Ws=n.createElement("path",{d:"M290.748 169.082l-11.95 5.144 6.576 1.919c1.646.48 2.318.436 3.056-.361.044-.022.258.074.266.133a53.248 53.248 0 00-.517 1.631c-.17.568-.347 1.255-.443 1.653-.029.045-.265.015-.295-.029-.192-1.071-.731-1.477-2.377-1.956l-6.591-1.927c-1.314-.384-1.978-.295-2.613.384-.044.022-.258-.074-.266-.133.141-.413.347-1.048.517-1.631.199-.672.295-1.078.406-1.587.03-.044.177-.096.251-.081.524.376 1.152.376 2.141-.052l8.311-3.506-5.883-1.72c-1.646-.479-2.318-.435-3.056.362-.044.022-.258-.074-.266-.133.133-.391.347-1.063.517-1.631.17-.568.347-1.247.45-1.653.03-.045.266-.015.288.029.192 1.07.731 1.469 2.377 1.956l9.138 2.672c.059.059.029.465-.037.517z",fill:"#fff"})))}},Js=["children","className","decorative","id","name","size","title"],Ks=r.chakra((function(e){var t,l,a=e.children,c=e.className,i=e.decorative,o=void 0!==i&&i,s=e.id,v=e.name,m=e.size,p=void 0===m?"medium":m,u=e.title,f=void 0===u?v+" logo":u,g=d(e,Js),b=r.useStyleConfig("Logo",{size:p}),z=h({"aria-hidden":o,className:c,id:s,role:"img",title:f},g),y=null;return v&&a?(console.warn("NYPL Reservoir Logo: Pass either a `name` prop or an `svg` element child. Do not pass both."),null):v||a?v?n.createElement(r.Icon,Object.assign({as:Xs[v]},z,{__css:b})):("svg"===a.type||"svg"===(null==(t=a.props)?void 0:t.type)||"svg"===(null==(l=a.props)?void 0:l.mdxType)?y=n.cloneElement(a,h({},z)):console.warn("NYPL Reservoir Logo: An `svg` element must be passed to the `Logo` component as its child."),n.createElement(r.Box,{__css:b},y)):(console.warn("NYPL Reservoir Logo: Pass a logo `name` prop or an SVG child to `Logo` to ensure a logo appears."),null)})),Qs=["bodyContent","closeButtonLabel","headingText","id","isOpen","onClose"],Zs=["buttonText","id","modalProps"],$s=["bodyContent","closeButtonLabel","headingText","id"],eh=r.chakra((function(e){var t=e.bodyContent,l=e.closeButtonLabel,a=void 0===l?"Close":l,c=e.headingText,i=e.id,o=e.isOpen,s=e.onClose,h=d(e,Qs),v=n.useState("xl"),m=v[0],p=v[1],u=zt();return n.useEffect((function(){p(u.width<=600?"full":"xl")}),[u.width]),n.createElement(r.Modal,Object.assign({id:i,isOpen:o,onClose:s,scrollBehavior:"inside",size:m},h),n.createElement(r.ModalOverlay,null),n.createElement(r.ModalContent,null,n.createElement(r.ModalHeader,null,c),n.createElement(r.ModalCloseButton,null),n.createElement(r.ModalBody,null,t),n.createElement(r.ModalFooter,null,n.createElement(xt,null,n.createElement(bt,{id:"modal-close-btn",onClick:s},a)))))})),th=r.chakra((function(e){var t=e.buttonText,l=e.id,a=e.modalProps,c=d(e,Zs),i=r.useDisclosure(),o=i.isOpen,s=i.onClose;return n.createElement(n.Fragment,null,n.createElement(bt,{id:"modal-open-btn",onClick:i.onOpen},t),n.createElement(eh,Object.assign({bodyContent:a.bodyContent,closeButtonLabel:a.closeButtonLabel,headingText:a.headingText,id:l,isOpen:o,onClose:function(){a.onClose&&a.onClose(),s()}},c)))})),lh=["children","icon","id","isCentered","notificationType"],ah=["alignText","children","icon","notificationType"],rh=["ariaLabel","className","dismissible","icon","id","isCentered","noMargin","notificationContent","notificationHeading","notificationType","showIcon"],nh=r.chakra((function(e){var t=e.children,l=e.icon,a=e.id,n=e.isCentered,i=e.notificationType,o=d(e,lh),s=r.useMultiStyleConfig("NotificationHeading",{icon:l,isCentered:n,notificationType:i});return c.createElement(r.Box,Object.assign({as:"header",__css:s},o),l,c.createElement(Mt,{id:a+"-heading",level:"four",__css:s.heading},t))})),ch=r.chakra((function(e){var t=e.alignText,l=e.children,a=e.icon,n=e.notificationType,i=d(e,ah),o=r.useMultiStyleConfig("NotificationContent",{alignText:t,icon:a,notificationType:n});return c.createElement(r.Box,Object.assign({__css:o},i),a,c.createElement(r.Box,{__css:o.content},l))})),ih=r.chakra((function(e){var t=e.ariaLabel,l=e.className,a=e.dismissible,i=void 0!==a&&a,o=e.icon,s=e.id,v=e.isCentered,m=void 0!==v&&v,p=e.noMargin,u=void 0!==p&&p,f=e.notificationContent,g=e.notificationHeading,b=e.notificationType,z=void 0===b?"standard":b,y=e.showIcon,x=void 0===y||y,w=d(e,rh),E=n.useState(!0),O=E[0],M=E[1],j=r.useMultiStyleConfig("Notification",{dismissible:i,isCentered:m,noMargin:u,notificationType:z}),C=i&&c.createElement(bt,{"aria-label":"Close the notification",buttonType:"link",id:s+"-notification-dismissible-button",onClick:function(){return M(!1)},__css:j.dismissibleButton},c.createElement(vt,{id:s+"-dismissible-notification-icon",name:"close",size:"large",title:"Notification close icon"})),S=function(){var e={size:"large",__css:j.icon};if(x)return o?c.cloneElement(o,h({id:s+"-custom-notification-icon"},e)):c.createElement(vt,Object.assign({id:s+"-notification-icon"},{announcement:{color:"section.research.secondary",name:"speakerNotes",title:"Notification announcement icon"},standard:{color:"ui.black",name:"alertNotificationImportant",title:"Notification standard icon"},warning:{color:"brand.primary",name:"errorFilled",title:"Notification warning icon"}}[z],e))}(),T=g&&c.createElement(nh,{icon:S,id:s,isCentered:m,notificationType:z},g),k=c.createElement(ch,{alignText:!(!T||!x||!o&&m),icon:T?void 0:S,notificationType:z},f);return O?c.createElement(r.Box,Object.assign({"aria-label":t,as:"aside",className:l,"data-type":z,id:s,__css:j},w),c.createElement(r.Box,{__css:j.container},T,k),C):null})),oh=["className","currentPage","getPageHref","id","initialPage","onPageChange","pageCount"],sh=r.chakra((function(e){var t=e.className,l=e.currentPage,a=e.getPageHref,i=e.id,o=e.initialPage,s=void 0===o?1:o,v=e.onPageChange,m=e.pageCount,p=d(e,oh),u=n.useRef(l),f=n.useState(s),g=f[0],b=f[1],z=r.useMultiStyleConfig("Pagination",{}),y=g-1,x=g+1;if(c.useEffect((function(){v&&l&&l!==u.current&&(b(l),u.current=l)}),[l,v]),m<=1)return null;a&&v&&console.warn("NYPL Reservoir Pagination: Props for both `getPageHref` and `onPageChange` are passed. The component will default to using `getPageHref`."),a&&l&&console.warn("NYPL Reservoir Pagination: The `currentPage` prop does not work with the `getPageHref` prop. Use `currentPage` with `onPageChange` instead.");var w,E,O,M,j,C,S=void 0!==a&&"function"==typeof a,T=function(e,t){e.preventDefault&&e.preventDefault(),g!==t&&(b(t),v&&v(t))},k=function(e){g>1&&T(e,y)},V=function(e){g<m&&T(e,x)},_=function(e,t){var l=g===t,r=l?{color:"ui.black",pointerEvent:"none"}:{},n={items:{href:S?a(t):"#",attributes:{"aria-label":"Page "+t,"aria-current":l?"page":null,onClick:S?void 0:function(e){return T(e,t)}},text:t},previous:{href:S?a(y):"#",attributes:{"aria-label":"Previous page",onClick:S?void 0:k},text:"Previous"},next:{href:S?a(x):"#",attributes:{"aria-label":"Next page",onClick:S?void 0:V},text:"Next"}}[e];return c.createElement(Et,Object.assign({href:n.href,id:i+"-"+n.text},n.attributes,{__css:h({},z.link,r)}),n.text)},L=1!==g&&c.createElement("li",{key:"previous"},_("previous")),I=g!==m&&c.createElement("li",{key:"next"},_("next"));return c.createElement(r.Box,Object.assign({as:"nav",id:i,"aria-label":"Pagination",role:"navigation",className:t,__css:z},p),c.createElement(rr,{type:"ul",inline:!0,noStyling:!0,id:i+"-list"},L,(w=g,j=Math.max(3,Math.min(w-1,m-4)),C=Math.min(m-2,Math.max(w+1,5)),(m<4?Array.from({length:m},(function(e,t){return t+1})):[1,j>3?"ellipse-start":2].concat((O=C+1,void 0===M&&(M=1),(E=j)?Array(Math.ceil((O-E)/M)).fill(E).map((function(e,t){return e+t*M})):[]),[C<m-2?"ellipse-end":m-1,m])).map((function(e){var t="number"==typeof e?_("items",e):"...";return c.createElement("li",{key:e},t)}))),I))})),hh=["darkMode","id","indicatorType","isIndeterminate","labelText","showLabel","size","value"],dh=r.chakra((function(e){var t=e.darkMode,l=void 0!==t&&t,a=e.id,n=e.indicatorType,i=void 0===n?"linear":n,o=e.isIndeterminate,s=void 0!==o&&o,h=e.labelText,v=e.showLabel,m=void 0===v||v,p=e.size,u=void 0===p?"default":p,f=e.value,g=void 0===f?0:f,b=d(e,hh),z=r.useMultiStyleConfig("ProgressIndicator",{darkMode:l,size:u}),y=g;a||console.warn("NYPL Reservoir Progress Indicator: This component's required `id` prop was not passed."),(y<0||y>100)&&(console.warn("NYPL Reservoir ProgressIndicator: An invalid value was passed for the `value` prop, so 0 will be used. A valid value should be a number between 0 and 100."),y=0);var x={id:a,"aria-label":m?void 0:h,"aria-labelledby":m?a+"-label":void 0,isIndeterminate:s||void 0,value:s?void 0:y};return c.createElement(r.Box,Object.assign({__css:z},b),function(e){return"circular"===e?("small"===u&&(x["aria-label"]=h),c.createElement(r.Box,{__css:z.circularContainer},c.createElement(r.CircularProgress,Object.assign({},x,{sx:z.circular}),m&&!s&&"small"!==u&&c.createElement(r.CircularProgressLabel,null,y,"%")),m&&"small"!==u&&c.createElement(zl,{id:a+"-label",htmlFor:a},h))):c.createElement(c.Fragment,null,m&&c.createElement(zl,{id:a+"-label",htmlFor:a},h),c.createElement(r.Box,{__css:z.linearContainer},c.createElement(r.Progress,Object.assign({},x,{sx:z.linear})),m&&!s&&c.createElement(r.Box,{__css:z.linearPercentage},y,"%")))}(i))})),vh=["className","helperText","id","invalidText","isChecked","isDisabled","isInvalid","isRequired","labelText","name","onChange","showHelperInvalidText","showLabel","value"],mh=r.chakra(n.forwardRef((function(e,t){var l=e.className,a=e.helperText,c=e.id,i=e.invalidText,o=e.isChecked,s=e.isDisabled,h=void 0!==s&&s,v=e.isInvalid,m=void 0!==v&&v,p=e.isRequired,u=void 0!==p&&p,f=e.labelText,g=e.name,b=e.onChange,z=e.showHelperInvalidText,y=void 0===z||z,x=e.showLabel,w=void 0===x||x,E=e.value,O=d(e,vh),M=r.useMultiStyleConfig("Radio",{}),j=Gt({footnote:m?i:a,id:c,labelText:f,name:"Radio",showLabel:w});return c||console.warn("NYPL Reservoir Radio: This component's required `id` prop was not passed."),n.createElement(Yt,Object.assign({helperText:a,helperTextStyles:M.helperErrorText,id:c,invalidText:i,isInvalid:m,showHelperInvalidText:y},O),n.createElement(r.Radio,Object.assign({className:l,id:c,isChecked:o,isDisabled:h,isInvalid:m,isRequired:u,name:g,onChange:b,ref:t,value:E,alignItems:"flex-start",__css:M},j),w&&f))}))),ph=["children","className","defaultValue","helperText","id","invalidText","isDisabled","isFullWidth","isInvalid","isRequired","labelText","layout","name","onChange","showHelperInvalidText","showLabel","showRequiredLabel"],uh=r.chakra(n.forwardRef((function(e,t){var l=e.children,a=e.className,c=void 0===a?"":a,i=e.defaultValue,o=e.helperText,s=e.id,h=e.invalidText,v=e.isDisabled,m=void 0!==v&&v,p=e.isFullWidth,u=void 0!==p&&p,f=e.isInvalid,g=void 0!==f&&f,b=e.isRequired,z=void 0!==b&&b,y=e.labelText,x=e.layout,w=void 0===x?"column":x,E=e.name,O=e.onChange,M=e.showHelperInvalidText,j=void 0===M||M,C=e.showLabel,S=void 0===C||C,T=e.showRequiredLabel,k=void 0===T||T,V=d(e,ph),_=n.useState(i),L=_[0],I=_[1],P=g?h:o,B="column"===w?il.s:il.l,R=[],H=r.useMultiStyleConfig("RadioGroup",{isFullWidth:u}),F={"aria-label":S?void 0:y,name:E,onChange:function(e){I(e),O&&O(e)},ref:t,value:L};return s||console.warn("NYPL Reservoir RadioGroup: This component's required `id` prop was not passed."),n.Children.map(l,(function(e,t){var l,a;(null==e?void 0:e.type)!==mh&&(null!=(l=e.props)&&l.mdxType&&"Radio"===(null==(a=e.props)?void 0:a.mdxType)||console.warn("NYPL Reservoir RadioGroup: Only `Radio` components are allowed inside the `RadioGroup` component.")),null!=e&&R.push(n.cloneElement(e,{key:t,isDisabled:m,isInvalid:g,isRequired:z}))})),n.createElement(cl,Object.assign({className:c,id:"radio-group-"+s,isLegendHidden:!S,isRequired:z,legendText:y,showRequiredLabel:k},V,{__css:H}),n.createElement(r.RadioGroup,Object.assign({},F),n.createElement(r.Stack,{direction:[w],spacing:B},R)),P&&j&&n.createElement(Dt,{id:s+"-helperErrorText",isInvalid:g,text:P,__css:H.helperErrorText}))}))),fh=["children","className","helperText","id","invalidText","isDisabled","isInvalid","isRequired","labelPosition","labelText","name","onChange","placeholder","selectType","showHelperInvalidText","showLabel","showRequiredLabel","value"],gh=r.chakra(c.forwardRef((function(e,t){var l=e.children,a=e.className,i=e.helperText,o=e.id,s=e.invalidText,h=e.isDisabled,v=void 0!==h&&h,m=e.isInvalid,p=void 0!==m&&m,u=e.isRequired,f=void 0!==u&&u,g=e.labelPosition,b=void 0===g?"default":g,z=e.labelText,y=e.name,x=e.onChange,w=e.placeholder,E=e.selectType,O=void 0===E?"default":E,M=e.showHelperInvalidText,j=void 0===M||M,C=e.showLabel,S=void 0===C||C,T=e.showRequiredLabel,k=void 0===T||T,V=e.value,_=void 0===V?"":V,L=d(e,fh),I=n.useState(0),P=I[0],B=I[1],R=n.useRef(null),H=r.useMultiStyleConfig("CustomSelect",{variant:O,labelPosition:b}),F=s||"There is an error related to this field.",N=Gt({footnote:p?F:i,id:o,labelText:z,name:"Select",showLabel:S}),D=x?{onChange:x,value:_}:{};return o||console.warn("NYPL Reservoir Select: This component's required `id` prop was not passed."),n.useEffect((function(){"inline"===b?R.current&&B(R.current.clientWidth+8):B(0)}),[b]),c.createElement(Yt,Object.assign({className:a,helperText:i,helperTextStyles:{marginLeft:{sm:"auto",md:P+"px"}},id:o,invalidText:F,isInvalid:p,showHelperInvalidText:j,__css:H},L),c.createElement(r.Box,{__css:"inline"===b&&H.inline},S&&c.createElement(r.Box,{ref:R},c.createElement(zl,{htmlFor:o,id:o+"-label",isInlined:!0,isRequired:k&&f},z)),c.createElement(r.Select,Object.assign({id:o,variant:"outline",isRequired:f,isDisabled:v,isInvalid:p,name:y,placeholder:w,ref:t},D,N,{icon:c.createElement(vt,{id:o+"-icon",name:"arrow",size:"medium"}),__css:H.select}),l)))}))),bh=["action","buttonOnClick","className","descriptionText","headingText","helperText","id","invalidText","isDisabled","isInvalid","isRequired","labelText","method","noBrandButtonType","onSubmit","selectProps","textInputElement","textInputProps"],zh=r.chakra((function(e){var t=e.action,l=e.buttonOnClick,a=e.className,c=e.descriptionText,i=e.headingText,o=e.helperText,s=e.id,h=e.invalidText,v=e.isDisabled,m=void 0!==v&&v,p=e.isInvalid,u=void 0!==p&&p,f=e.isRequired,g=void 0!==f&&f,b=e.labelText,z=e.method,y=e.noBrandButtonType,x=void 0!==y&&y,w=e.onSubmit,E=e.selectProps,O=e.textInputElement,M=e.textInputProps,j=d(e,bh),C=r.useMultiStyleConfig("SearchBar",{}),S={helperText:"",isDisabled:m,isInvalid:u,isRequired:g,showHelperInvalidText:!1,showLabel:!1},T=u?h:o,k=T?b+" - "+T:b,V=((null==M?void 0:M.placeholder)||"Search terms")+" "+(g?"(Required)":""),_=x?"noBrand":"primary";s||console.warn("NYPL Reservoir SearchBar: This component's required `id` prop was not passed.");var L=E&&n.createElement(gh,Object.assign({id:"searchbar-select-"+s,labelText:null==E?void 0:E.labelText,name:null==E?void 0:E.name,onChange:null==E?void 0:E.onChange,selectType:"searchbar",value:null==E?void 0:E.value,__css:C.select},S),null==E?void 0:E.optionsData.map((function(e){return n.createElement("option",{key:e,value:e},e)}))),I=M&&n.createElement(wl,Object.assign({id:"searchbar-textinput-"+s,labelText:null==M?void 0:M.labelText,name:null==M?void 0:M.name,onChange:null==M?void 0:M.onChange,placeholder:V,textInputType:L?"searchBarSelect":"searchBar",type:"text",value:null==M?void 0:M.value},S)),P=n.createElement(bt,{buttonType:_,id:"searchbar-button-"+s,isDisabled:m,onClick:l,type:"submit",__css:{borderLeftRadius:"none",borderRightRadius:{base:"none",md:"sm"},lineHeight:"1.70",marginBottom:"auto"}},n.createElement(vt,{align:"left",id:"searchbar-icon-"+s,name:"search",size:"small"}),"Search"),B=O||I;return n.createElement(Yt,Object.assign({descriptionText:c,headingText:i,helperText:o,id:s,invalidText:h,isInvalid:u},j),n.createElement(r.Box,{as:"form",id:"searchbar-form-"+s,className:a,role:"search","aria-label":k,onSubmit:w,method:z,action:t,__css:C},L,B,P))})),yh=["className","contentSize","headingSize","imageAspectRatio","isBordered","layout","showButton","showContent","showHeading","showImage","width"],xh=r.chakra((function(e){var t=e.className,l=e.contentSize,a=void 0===l?3:l,c=e.headingSize,i=void 0===c?1:c,o=e.imageAspectRatio,s=void 0===o?"square":o,v=e.isBordered,m=void 0!==v&&v,p=e.layout,u=void 0===p?"column":p,f=e.showButton,g=void 0!==f&&f,b=e.showContent,z=void 0===b||b,y=e.showHeading,x=void 0===y||y,w=e.showImage,E=void 0===w||w,O=e.width,M=d(e,yh),j=r.useMultiStyleConfig("SkeletonLoader",{isBordered:m,imageAspectRatio:s,showImage:E,variant:u}),C=function(e,t,l){return void 0===t&&(t=1),void 0===l&&(l="80%"),new Array(t).fill(null).map((function(a,c){return n.createElement(r.Skeleton,{key:e+"-"+c,width:c===t-1?l:"100%"},n.createElement(r.Box,{__css:j[e],style:{marginBottom:c===t-1&&"content"===e?"0":void 0}}))}))};return n.createElement(r.Box,Object.assign({className:t,__css:j,style:{width:O}},M),E&&n.createElement(r.Skeleton,null,n.createElement(r.Box,{__css:h({},j.element,j.image)})),n.createElement(r.Box,{className:u,__css:j.container},x&&n.createElement(r.Box,{__css:j.section},C("heading",i,"80%")),z&&n.createElement(r.Box,{__css:j.section},C("content",a,"30%")),g&&n.createElement(r.Box,{__css:h({},j.section,j.button)},n.createElement(r.Skeleton,{borderRadius:"16px"},n.createElement(r.Box,{__css:j.button})))))})),wh=["className","id","target"],Eh=r.chakra((function(e){var t=e.className,l=e.id,a=e.target,c=void 0===a?"#mainContent":a,i=d(e,wh),o=r.useStyleConfig("SkipNavigation");return n.createElement(r.Box,Object.assign({as:"nav","aria-label":"Skip Navigation",className:t,id:l,__css:o},i),n.createElement(rr,{inline:!0,noStyling:!0,type:"ul"},n.createElement("li",null,n.createElement(Et,{href:c},"Skip to Main Content")),n.createElement("li",null,n.createElement(Et,{href:"https://www.nypl.org/accessibility"},"Click to learn about accessibility at the Library"))))})),Oh=["className","defaultValue","helperText","id","invalidText","isDisabled","isInvalid","isRangeSlider","isRequired","labelText","max","min","name","onChange","showBoxes","showHelperInvalidText","showLabel","showRequiredLabel","showValues","step"],Mh=r.chakra((function(e){var t=e.className,l=e.defaultValue,a=void 0===l?0:l,c=e.helperText,i=e.id,o=e.invalidText,s=e.isDisabled,v=void 0!==s&&s,m=e.isInvalid,p=void 0!==m&&m,u=e.isRangeSlider,f=void 0!==u&&u,g=e.isRequired,b=void 0!==g&&g,z=e.labelText,y=e.max,x=void 0===y?100:y,w=e.min,E=void 0===w?0:w,O=e.name,M=e.onChange,j=e.showBoxes,C=void 0===j||j,S=e.showHelperInvalidText,T=void 0===S||S,k=e.showLabel,V=void 0===k||k,_=e.showRequiredLabel,L=void 0===_||_,I=e.showValues,P=void 0===I||I,B=e.step,R=void 0===B?1:B,H=d(e,Oh);i||console.warn("NYPL Reservoir Slider: This component's required `id` prop was not passed.");var F=n.useState(f&&"number"==typeof a?[E,x]:a),N=F[0],D=F[1],A=p;f&&N[0]>N[1]&&(A=!0);var W=r.useMultiStyleConfig("CustomSlider",{isDisabled:v,isInvalid:A,showBoxes:C,showValues:P}),q={focusThumbOnChange:!1,id:i,isDisabled:v,max:x,min:E,name:O,onChange:function(e){D(e),M&&M(e)},step:R,sx:W.sliderContainer},Y={isDisabled:v,isInvalid:A,isRequired:b,max:x,min:E,showHelperInvalidText:!1,showLabel:!1,step:R,type:"number"},G=function(e){var t={start:h({value:f?N[0].toString():"",onChange:function(e){var t=[parseInt(e.target.value,10)?parseInt(e.target.value,10):0,N[1]];D(t),M&&M(t)}},Y),end:h({value:f?N[1].toString():N.toString(),onChange:function(e){var t=parseInt(e.target.value,10)?parseInt(e.target.value,10):0;t>x&&(t=x);var l=f?[N[0],t]:t;D(l),M&&M(l)}},Y)};return n.createElement(wl,Object.assign({id:i+"-textInput-"+e,labelText:f?z+" - "+e+" value":z,__css:h({},W.textInput,{marginRight:"start"===e?"s":null,marginLeft:"end"===e?"s":null})},t[e]))};return n.createElement(Yt,Object.assign({className:t,helperText:c,id:i,invalidText:o,isInvalid:A,showHelperInvalidText:T,__css:W},H),V&&n.createElement(zl,{id:i+"-label",htmlFor:C?i+"-textInput-"+(f?"start":"end"):"",isRequired:L&&b},z),n.createElement(r.Box,{__css:W.container},C&&f&&G("start"),P&&n.createElement(r.Box,{__css:W.leftValue},E),f?n.createElement(r.RangeSlider,Object.assign({"aria-label":V?void 0:[z+" - start value",z+" - end value"],"aria-labelledby":V?[i+"-label",i+"-label"]:void 0,value:N,size:"lg"},q),n.createElement(r.RangeSliderTrack,{sx:W.track},n.createElement(r.RangeSliderFilledTrack,{sx:W.filledTrack})),n.createElement(r.RangeSliderThumb,{index:0,sx:W.thumb}),n.createElement(r.RangeSliderThumb,{index:1,sx:W.thumb})):n.createElement(r.Slider,Object.assign({"aria-label":V?void 0:z,"aria-labelledby":i+"-label",value:N,size:"lg"},q),n.createElement(r.SliderTrack,{sx:W.track},n.createElement(r.SliderFilledTrack,{sx:W.filledTrack})),n.createElement(r.SliderThumb,{sx:W.thumb})),P&&n.createElement(r.Box,{__css:W.rightValue},x),C&&G("end")))})),jh=["children","className","id","level"],Ch=r.chakra((function(e){var t=e.children,l=e.className,a=e.id,c=e.level,i=void 0===c?"low":c,o=d(e,jh),s=r.useStyleConfig("StatusBadge",{variant:i});return t||console.warn("NYPL Reservoir StatusBadge: No children were passed."),n.createElement(r.Box,Object.assign({id:a,className:l,__css:s},o),t)})),Sh=["calloutText","className","headingText","id","imageProps","bodyContent"],Th=r.chakra((function(e){return n.createElement(Tt,{additionalFigureStyles:e.additionalFigureStyles,additionalImageStyles:e.additionalImageStyles,additionalWrapperStyles:e.additionalWrapperStyles,alt:e.alt,component:e.component,aspectRatio:e.aspectRatio,size:e.size,caption:e.caption,credit:e.credit,src:e.src})})),kh=r.chakra((function(e){var t=e.calloutText,l=e.className,a=e.headingText,c=e.id,i=e.imageProps,o=void 0===i?{alt:"",aspectRatio:"square",caption:void 0,component:void 0,credit:void 0,position:"left",size:"medium",src:""}:i,s=e.bodyContent,h=d(e,Sh),v=o.src||o.component,m=r.useMultiStyleConfig("StructuredContent",{hasFigureImage:o.caption||o.credit,imageAspectRatio:o.aspectRatio,imagePosition:o.position}),p="string"==typeof s?n.createElement("div",{className:"structuredcontent-body",dangerouslySetInnerHTML:{__html:s}}):n.createElement(r.Box,{className:"structuredcontent-body"},s);return v&&!o.alt&&console.warn("NYPL Reservoir StructuredContent: The `imageProps.alt` prop is required when using an image."),n.createElement(r.Box,Object.assign({id:c,className:l,__css:m},h),a&&n.createElement(Mt,{id:c+"-heading"},a),t&&n.createElement(Mt,{id:c+"-callout",level:"three",size:"callout"},t),v&&n.createElement(Th,{additionalFigureStyles:m.imageFigure,additionalImageStyles:m.image,additionalWrapperStyles:m.imageWrapper,alt:o.alt,component:o.component,aspectRatio:o.aspectRatio,caption:o.caption,credit:o.credit,size:o.size,src:o.src?o.src:void 0}),p)})),Vh=function(e,t){void 0===e&&(e=0),void 0===t&&(t=100);var l=c.useState(0),a=l[1];return{prevSlide:function(){a((function(t){return 0===t?e-1:t-1}))},nextSlide:function(){a((function(t){return t===e-1?0:t+1}))},carouselStyle:{transition:"all .5s",marginLeft:"-"+l[0]*t+"%"},goToStart:function(){a(0)}}},_h=["children","defaultIndex","id","onChange","tabsData","useHash"],Lh=r.chakra((function(e){var t,l,a=e.children,c=e.defaultIndex,i=void 0===c?0:c,o=e.id,s=e.onChange,v=e.tabsData,m=e.useHash,p=void 0!==m&&m,u=d(e,_h),f=r.useMultiStyleConfig("Tabs",{}),g=n.useState(65),b=g[0],z=g[1],y=zt(),x=v?function(e,t){var l=[],a=[];return null!=e&&e.length?((null==e?void 0:e.length)>6&&console.warn("NYPL Reservoir Tabs: it is recommended to use no more than six tabs. If more than six tabs are needed, consider other navigational patterns."),e.forEach((function(e,c){var i,o=n.createElement(r.Tab,{fontSize:["0",null,"1"],key:c,onClick:t?function(){window.location.hash="tab"+(c+1)}:void 0},e.label);i="string"==typeof e.content?n.createElement(r.TabPanel,{dangerouslySetInnerHTML:{__html:e.content},key:c}):n.createElement(r.TabPanel,{key:c},e.content),l.push(o),a.push(i)})),{tabs:[n.createElement(r.TabList,{key:"list"},l)],panels:[n.createElement(r.TabPanels,{key:"panels"},a)]}):{tabs:[],panels:[]}}(v,p):function(e){var t=[],l=[];return null!=e&&e.length?(e.forEach((function(e){e.type!==r.TabList&&"TabList"!==e.props.mdxType||(t.push(e),n.Children.count(e.props.children)>6&&console.warn("NYPL Reservoir Tabs: It is recommended to use no more than six tabs. If more than six tabs are needed, consider other navigational patterns.")),e.type!==r.TabPanels&&"TabPanels"!==e.props.mdxType||l.push(e)})),{tabs:t,panels:l}):{tabs:[],panels:[]}}(a),w=x.tabs,E=x.panels;0!==w.length&&0!==E.length||console.warn("NYPL Reservoir Tabs: Pass data in the `contentData` props or as children.");var O=w[0]?null==(t=w[0])?void 0:t.props:w.props,M=Vh(null==O||null==(l=O.children)?void 0:l.length,b),j=M.prevSlide,C=M.nextSlide,S=M.carouselStyle,T=M.goToStart;n.useEffect((function(){z(y.width>320?40:65),y.width>600&&T()}),[T,y.width]);var k=n.createElement(bt,{"aria-label":"Previous",id:"tabs-previous-"+o,onClick:j,__css:h({},f.buttonArrows,{left:"0"})},n.createElement(vt,{iconRotation:"rotate90",id:"tabs-previous-icon-"+o,name:"arrow",size:"small"})),V=n.createElement(bt,{"aria-label":"Next",id:"tabs-next-"+o,onClick:C,__css:h({},f.buttonArrows,{right:"0"})},n.createElement(vt,{iconRotation:"rotate270",id:"tabs-next-icon-"+o,name:"arrow",size:"small"}));return a&&null!=v&&v.length&&console.warn("NYPL Reservoir Tabs: Only pass children or data in the `contentData` prop. Do not pass both."),n.createElement(r.Tabs,Object.assign({defaultIndex:i,id:o,isLazy:!0,onChange:s,variant:"enclosed"},u),n.createElement(r.Box,{__css:f.tablistWrapper,sx:{"&::-webkit-scrollbar":{display:"none"}}},k,n.createElement(r.Box,{__css:f.carouselParent},n.createElement(r.Box,Object.assign({},S),w)),V),E)})),Ih=["aboveHeader","breakout","contentId","contentPrimary","contentSidebar","contentTop","footer","header","sidebar","renderFooterElement","renderHeaderElement","renderSkipNavigation"],Ph=r.chakra((function(e){var t=r.useStyleConfig("Template",{});return n.createElement(r.Box,Object.assign({__css:t},e),e.children)})),Bh=function(e){var t=r.useStyleConfig("TemplateBreakout",{});return n.createElement(r.Box,{__css:t},e.children)},Rh=function(e){var t=e.children,l=e.renderHeaderElement,a=void 0===l||l,c=r.useStyleConfig("TemplateHeader",{}),i=n.createElement(r.Box,{__css:c},t);return a&&(n.Children.map(t,(function(e){var t;"header"!==(null==e?void 0:e.type)&&"header"!==(null==e||null==(t=e.props)?void 0:t.mdxType)||console.warn("NYPL Reservoir TemplateHeader: An HTML `header` element was passed in. Set `renderHeaderElement` to `false` to avoid nested HTML `header` elements.")})),i=n.createElement(r.Box,{as:"header",__css:c},t)),i},Hh=function(e){var t=r.useStyleConfig("TemplateBreakout",{});return n.createElement(r.Box,{__css:t},e.children)},Fh=function(e){var t=e.children,l=e.id,a=void 0===l?"mainContent":l,c=e.sidebar,i=void 0===c?"none":c,o=r.useStyleConfig("TemplateContent",{variant:"none"!==i?"sidebar":null}),s=n.Children.map(t,(function(e){var t,l,a=e;return(e&&(null==e?void 0:e.type)===Dh||null!=e&&e.props&&"TemplateContentPrimary"===(null==(t=e.props)?void 0:t.mdxType)||(null==e?void 0:e.type)===Ah||null!=e&&e.props&&"TemplateContentSidebar"===(null==(l=e.props)?void 0:l.mdxType))&&(a=n.cloneElement(e,{sidebar:i})),a}));return n.createElement(r.Box,{as:"main",id:a,__css:o},s)},Nh=function(e){var t=r.useStyleConfig("TemplateContentTop",{});return n.createElement(r.Box,{__css:t},e.children)},Dh=function(e){var t=r.useStyleConfig("TemplateContentPrimary",{variant:e.sidebar});return n.createElement(r.Box,{__css:t},e.children)},Ah=function(e){var t=r.useStyleConfig("TemplateContentSidebar",{variant:e.sidebar});return n.createElement(r.Box,{__css:t},e.children)},Wh=function(e){var t=e.children,l=e.renderFooterElement,a=void 0===l||l,c=n.createElement(n.Fragment,null,t);return a&&(n.Children.map(t,(function(e){var t;"footer"!==(null==e?void 0:e.type)&&"footer"!==(null==e||null==(t=e.props)?void 0:t.mdxType)||console.warn("NYPL Reservoir TemplateFooter: An HTML `footer` element was passed in. Set `renderFooterElement` to `false` to avoid nested HTML `footer` elements.")})),c=n.createElement(r.Box,{as:"footer"},t)),c},qh=r.chakra((function(e){var t=e.aboveHeader,l=e.breakout,a=e.contentId,r=void 0===a?"mainContent":a,c=e.contentPrimary,i=e.contentSidebar,o=e.contentTop,s=e.footer,h=e.header,v=e.sidebar,m=void 0===v?"none":v,p=e.renderFooterElement,u=void 0===p||p,f=e.renderHeaderElement,g=void 0===f||f,b=e.renderSkipNavigation,z=void 0!==b&&b,y=d(e,Ih),x=t&&n.createElement(Bh,null,t),w=l&&n.createElement(Hh,null,l),E=o&&n.createElement(Nh,null,o),O=c&&n.createElement(Dh,null,c),M=i&&n.createElement(Ah,null,i);return n.createElement(Ph,Object.assign({},y),z?n.createElement(Eh,null):null,x,(h||w)&&n.createElement(Rh,{renderHeaderElement:g},h,w),n.createElement(Fh,{id:r,sidebar:m},E,"left"===m&&M,O,"right"===m&&M),s&&n.createElement(Wh,{renderFooterElement:u},s))})),Yh=["defaultChecked","helperText","id","invalidText","isChecked","isDisabled","isInvalid","isRequired","labelText","name","onChange","size"],Gh=function(){},Uh=r.chakra(n.forwardRef((function(e,t){var l=e.defaultChecked,a=void 0!==l&&l,c=e.helperText,i=e.id,o=e.invalidText,s=e.isChecked,h=e.isDisabled,v=void 0!==h&&h,m=e.isInvalid,p=void 0!==m&&m,u=e.isRequired,f=void 0!==u&&u,g=e.labelText,b=e.name,z=e.onChange,y=void 0===z?Gh:z,x=e.size,w=void 0===x?"default":x,E=d(e,Yh),O=r.useMultiStyleConfig("Toggle",{isDisabled:v,size:w}),M=r.useStyleConfig("Switch",{size:w}),j=Gt({footnote:p?o:c,id:i,labelText:g,name:"Toggle",showLabel:!0});return i||console.warn("NYPL Reservoir Toggle: This component's required `id` prop was not passed."),n.createElement(Yt,Object.assign({helperText:c,helperTextStyles:O.helperErrorText,id:i,invalidText:o,isInvalid:p},E),n.createElement(r.Box,{__css:O},n.createElement(r.Switch,Object.assign({id:i,isDisabled:v,isInvalid:p,isRequired:f,name:b||"default",ref:t,size:"default"===w?"lg":"sm",lineHeight:"1.5"},void 0!==s?{isChecked:s,onChange:y}:{defaultChecked:a},j,{__css:M}),g)))}))),Xh=["aspectRatio","className","descriptionText","embedCode","headingText","helperText","id","iframeTitle","showHelperInvalidText","videoId","videoType"],Jh=r.chakra((function(e){var t=e.aspectRatio,l=e.className,a=e.descriptionText,c=e.embedCode,i=e.headingText,o=e.helperText,s=e.id,h=e.iframeTitle,v=e.showHelperInvalidText,m=void 0===v||v,p=e.videoId,u=e.videoType,f=d(e,Xh),g="vimeo"===u?h||"Vimeo video player":h||"YouTube video player",b="vimeo"===u?"https://player.vimeo.com/video/"+p+"?autoplay=0&loop=0":"https://www.youtube.com/embed/"+p+"?disablekb=1&autoplay=0&fs=1&modestbranding=0",z=h?""+h:"Video player",y=c&&c.includes("<iframe")&&!c.includes("title=")?c.replace("<iframe ",'<iframe title="'+z+'" '):c,x=!1;y||u||p?y||u?y||p?y&&(u||p)&&(console.warn("NYPL Reservoir VideoPlayer: Pass in either the `embedCode` prop or both the `videoType` and `videoId` props; all were set."),x=!0):(console.warn("NYPL Reservoir VideoPlayer: The `videoId` prop is also required. Only the `videoType` prop was set."),x=!0):(console.warn("NYPL Reservoir VideoPlayer: The `videoType` prop is also required. Only the `videoId` prop was set."),x=!0):(console.warn("NYPL Reservoir VideoPlayer: Pass in either the `embedCode` prop or both the `videoType` and `videoId` props; none were passed."),x=!0),p&&(p.includes("://")||p.includes("http")||p.includes(".")||p.includes("youtube")||p.includes("vimeo"))&&(console.warn("NYPL Reservoir VideoPlayer: The `videoId` prop is not configured properly."),x=!0),!y||(y.includes("vimeo.com")||y.includes("youtube.com"))&&y.includes("<iframe")&&y.includes("</iframe")||(console.warn("NYPL Reservoir VideoPlayer: The `embedCode` prop is not configured properly."),x=!0);var w=r.useMultiStyleConfig("VideoPlayer",{variant:x?"invalid":t}),E=y?n.createElement("span",{dangerouslySetInnerHTML:{__html:y}}):n.createElement(r.Box,{as:"iframe",src:b,title:g,frameBorder:"0",allow:"accelerometer; autoplay; clipboard-write; encrypted-media; fullscreen; gyroscope; picture-in-picture",allowFullScreen:!0,__css:w.iframe});return n.createElement(r.Box,Object.assign({className:l,"data-testid":"video-player-component",id:s,__css:w},f),x?n.createElement("span",{dangerouslySetInnerHTML:{__html:"<strong>Error:</strong> This video player has not been configured properly. Please contact the site administrator."}}):n.createElement(Yt,{headingText:i||void 0,descriptionText:a||void 0,helperText:o&&m?o:void 0,id:s+"-componentWrapper"},n.createElement(r.Box,{__css:w.inside},E)))})),Kh=["className","columnHeaders","columnHeadersBackgroundColor","columnHeadersTextColor","id","showRowDividers","tableData","titleText","useRowHeaders"],Qh=r.chakra((function(e){var t=e.className,l=e.columnHeaders,a=void 0===l?[]:l,c=e.columnHeadersBackgroundColor,i=e.columnHeadersTextColor,o=e.id,s=e.showRowDividers,h=void 0!==s&&s,v=e.tableData,m=e.titleText,p=e.useRowHeaders,u=void 0!==p&&p,f=d(e,Kh),g={};c&&(g.backgroundColor=c),i&&(g.color=i);for(var b=r.useMultiStyleConfig("CustomTable",{columnHeadersTextColor:i,showRowDividers:h,useRowHeaders:u}),z=m&&n.createElement(r.TableCaption,null,m),y=(null==a?void 0:a.length)>0&&n.createElement(r.Thead,null,n.createElement(r.Tr,null,a.map((function(e,t){return n.createElement(r.Th,{key:t,scope:"col",sx:g},e)})))),x=0;x<v.length;x++)if(a.length!==v[x].length){console.warn("NYPL Reservoir Table: The number of column headers in the `columnHeaders` prop is not equal to the number of columns in the data table. The `Table` component may not render properly.");break}return n.createElement(r.Table,Object.assign({id:o,sx:b,className:t},f),z,y,function(){if(!Array.isArray(v)||v.length<=0||v[0].constructor!==Array)return console.warn("NYPL Reservoir Table: Data in the `tableData` prop must be a two dimensional array."),null;for(var e=1;e<v.length;e++)if(v[0].length!==v[e].length){console.warn("NYPL Reservoir Table: The number of columns in each row of the data table are not identical. The `Table` component may not render properly.");break}return n.createElement(r.Tbody,null,v.map((function(e,t){return n.createElement(r.Tr,{key:t},e.map((function(e,t){return 0===t&&u?n.createElement(r.Th,{scope:"row",key:t},e):n.createElement(r.Td,{key:t},e)})))})))}())}));Object.defineProperty(exports,"Box",{enumerable:!0,get:function(){return r.Box}}),Object.defineProperty(exports,"Center",{enumerable:!0,get:function(){return r.Center}}),Object.defineProperty(exports,"Circle",{enumerable:!0,get:function(){return r.Circle}}),Object.defineProperty(exports,"Flex",{enumerable:!0,get:function(){return r.Flex}}),Object.defineProperty(exports,"Grid",{enumerable:!0,get:function(){return r.Grid}}),Object.defineProperty(exports,"GridItem",{enumerable:!0,get:function(){return r.GridItem}}),Object.defineProperty(exports,"HStack",{enumerable:!0,get:function(){return r.HStack}}),Object.defineProperty(exports,"Spacer",{enumerable:!0,get:function(){return r.Spacer}}),Object.defineProperty(exports,"Square",{enumerable:!0,get:function(){return r.Square}}),Object.defineProperty(exports,"Stack",{enumerable:!0,get:function(){return r.Stack}}),Object.defineProperty(exports,"Tab",{enumerable:!0,get:function(){return r.Tab}}),Object.defineProperty(exports,"TabList",{enumerable:!0,get:function(){return r.TabList}}),Object.defineProperty(exports,"TabPanel",{enumerable:!0,get:function(){return r.TabPanel}}),Object.defineProperty(exports,"TabPanels",{enumerable:!0,get:function(){return r.TabPanels}}),Object.defineProperty(exports,"VStack",{enumerable:!0,get:function(){return r.VStack}}),exports.Accordion=pt,exports.Breadcrumbs=ft,exports.Button=bt,exports.ButtonGroup=xt,exports.Card=Ft,exports.CardActions=Bt,exports.CardContent=Pt,exports.CardHeading=It,exports.Checkbox=rl,exports.CheckboxGroup=sl,exports.DSProvider=function(e){return c.createElement(r.ChakraProvider,{theme:Qa},e.children)},exports.DatePicker=Sl,exports.Fieldset=cl,exports.Form=gl,exports.FormField=fl,exports.FormRow=ul,exports.Heading=Mt,exports.HelperErrorText=Dt,exports.Hero=er,exports.HorizontalRule=lr,exports.Icon=vt,exports.Image=Tt,exports.Label=zl,exports.Link=Et,exports.List=rr,exports.Logo=Ks,exports.ModalTrigger=th,exports.Notification=ih,exports.Pagination=sh,exports.ProgressIndicator=dh,exports.Radio=mh,exports.RadioGroup=uh,exports.SearchBar=zh,exports.Select=gh,exports.SimpleGrid=dl,exports.SkeletonLoader=xh,exports.SkipNavigation=Eh,exports.Slider=Mh,exports.StatusBadge=Ch,exports.StructuredContent=kh,exports.Table=Qh,exports.Tabs=Lh,exports.Template=Ph,exports.TemplateAboveHeader=Bh,exports.TemplateAppContainer=qh,exports.TemplateBreakout=Hh,exports.TemplateContent=Fh,exports.TemplateContentPrimary=Dh,exports.TemplateContentSidebar=Ah,exports.TemplateContentTop=Nh,exports.TemplateFooter=Wh,exports.TemplateHeader=Rh,exports.Text=Wt,exports.TextInput=wl,exports.Toggle=Uh,exports.VideoPlayer=Jh,exports.useCarouselStyles=Vh,exports.useModal=function(){var e=r.useDisclosure(),t=e.isOpen,l=e.onClose,a=e.onOpen,c=r.chakra((function(e){var a=e.bodyContent,r=e.closeButtonLabel,c=e.headingText,i=e.id,o=d(e,$s);return n.createElement(eh,Object.assign({bodyContent:a,closeButtonLabel:r,headingText:c,id:i,isOpen:t,onClose:l},o))}));return{onClose:l,onOpen:a,Modal:c}},exports.useNYPLTheme=function(){var e=r.useTheme();return e&&0!==Object.keys(e).length?{breakpoints:e.breakpoints,colors:{brand:e.colors.brand,section:e.colors.section,transparent:e.colors.transparent,ui:e.colors.ui},fontSizes:{"-3":e.fontSizes[-3],"-2":e.fontSizes[-2],"-1":e.fontSizes[-1],0:e.fontSizes[0],1:e.fontSizes[1],2:e.fontSizes[2],3:e.fontSizes[3],4:e.fontSizes[4],breadcrumbs:e.fontSizes.breadcrumbs,button:e.fontSizes.button,heading:e.fontSizes.heading,helper:e.fontSizes.helper,label:e.fontSizes.label,text:e.fontSizes.text},fontWeights:{light:e.fontWeights.light,regular:e.fontWeights.regular,medium:e.fontWeights.medium,bold:e.fontWeights.bold,breadcrumbs:e.fontWeights.breadcrumbs,button:e.fontWeights.button,heading:e.fontWeights.heading,helper:e.fontWeights.helper,label:e.fontWeights.label,text:e.fontWeights.text},fonts:{body:e.fonts.body,heading:e.fonts.heading},radii:e.radii,space:{xxs:e.space.xxs,xs:e.space.xs,s:e.space.s,m:e.space.m,l:e.space.l,xl:e.space.xl,xxl:e.space.xxl,xxxl:e.space.xxxl}}:(console.warn("NYPL Reservoir useNYPLTheme: hook must be used inside of `<DSProvider />`."),{})},exports.useWindowSize=zt;
2
2
  //# sourceMappingURL=design-system-react-components.cjs.production.min.js.map