@qld-gov-au/qgds-bootstrap5 1.1.39 → 1.1.41
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.
- package/dist/assets/components/bs5/backToTop/backToTop.hbs +1 -1
- package/dist/assets/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
- package/dist/assets/components/bs5/button/button.hbs +48 -30
- package/dist/assets/components/bs5/containerLayout/containerLayout.hbs +100 -0
- package/dist/assets/components/bs5/contentFooter/contentFooter.hbs +15 -4
- package/dist/assets/components/bs5/formcheck/formcheck.hbs +1 -1
- package/dist/assets/components/bs5/head/head.hbs +1 -1
- package/dist/assets/components/bs5/iconLink/iconLink.hbs +41 -0
- package/dist/assets/components/bs5/logo/logo.hbs +7 -0
- package/dist/assets/components/bs5/logo/logoCOALandscape.hbs +58 -0
- package/dist/assets/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
- package/dist/assets/components/bs5/navbar/navbar.hbs +65 -245
- package/dist/assets/components/bs5/pageLayout/pageLayout.hbs +11 -10
- package/dist/assets/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
- package/dist/assets/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
- package/dist/assets/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
- package/dist/assets/components/bs5/searchInput/searchInput.hbs +8 -10
- package/dist/assets/css/qld.bootstrap.css +1 -1
- package/dist/assets/css/qld.bootstrap.css.map +3 -3
- package/dist/assets/js/bootstrap.bundle.js +3 -6
- package/dist/assets/js/bootstrap.bundle.js.map +1 -1
- package/dist/assets/js/bootstrap.bundle.min.js +2 -2
- package/dist/assets/js/bootstrap.bundle.min.js.map +1 -1
- package/dist/assets/js/bootstrap.js +3 -6
- package/dist/assets/js/bootstrap.min.js +2 -2
- package/dist/assets/js/bootstrap.min.js.map +1 -1
- package/dist/assets/js/handlebars.helpers.bundle.js +1 -1
- package/dist/assets/js/handlebars.helpers.bundle.js.map +3 -3
- package/dist/assets/js/handlebars.helpers.js +51 -40
- package/dist/assets/js/handlebars.init.min.js +698 -347
- package/dist/assets/js/handlebars.init.min.js.map +4 -4
- package/dist/assets/js/handlebars.partials.js +16 -0
- package/dist/assets/js/qld.bootstrap.min.js +9 -9
- package/dist/assets/js/qld.bootstrap.min.js.map +4 -4
- package/dist/assets/node/handlebars.init.min.js +359 -72
- package/dist/assets/node/handlebars.init.min.js.map +3 -3
- package/dist/components/bs5/backToTop/backToTop.hbs +1 -1
- package/dist/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
- package/dist/components/bs5/button/button.hbs +48 -30
- package/dist/components/bs5/containerLayout/containerLayout.hbs +100 -0
- package/dist/components/bs5/contentFooter/contentFooter.hbs +15 -4
- package/dist/components/bs5/formcheck/formcheck.hbs +1 -1
- package/dist/components/bs5/head/head.hbs +1 -1
- package/dist/components/bs5/iconLink/iconLink.hbs +41 -0
- package/dist/components/bs5/logo/logo.hbs +7 -0
- package/dist/components/bs5/logo/logoCOALandscape.hbs +58 -0
- package/dist/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
- package/dist/components/bs5/navbar/navbar.hbs +65 -245
- package/dist/components/bs5/pageLayout/pageLayout.hbs +11 -10
- package/dist/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
- package/dist/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
- package/dist/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
- package/dist/components/bs5/searchInput/searchInput.hbs +8 -10
- package/dist/components/handlebars.helpers.js +51 -40
- package/dist/components/handlebars.partials.js +16 -0
- package/dist/package.json +2 -2
- package/dist/sample-data/breadcrumbs/breadcrumbs.data.json +113 -49
- package/dist/sample-data/button/button.data.json +10 -8
- package/dist/sample-data/contentFooter/contentFooter.data.json +9 -1
- package/dist/sample-data/formcheck/stories/checkbox/checkbox.data.json +51 -46
- package/dist/sample-data/formcheck/stories/radio/radio.data.json +51 -46
- package/dist/sample-data/iconLink/iconLink.data.json +77 -0
- package/dist/sample-data/logo/logo.data.json +6 -0
- package/dist/sample-data/navbar/navbar.data.json +191 -0
- package/dist/sample-data/searchInput/searchInput.data.json +2 -3
- package/dist/sample-data/tabs/tabs.data.json +45 -44
- package/package.json +2 -2
- package/src/components/bs5/backToTop/backToTop.hbs +1 -1
- package/src/components/bs5/banner/banner.scss +52 -46
- package/src/components/bs5/breadcrumbs/__snapshots__/breadcrumbs.test.js.snap +49 -0
- package/src/components/bs5/breadcrumbs/breadcrumbs.data.json +113 -49
- package/src/components/bs5/breadcrumbs/breadcrumbs.functions.js +169 -0
- package/src/components/bs5/breadcrumbs/breadcrumbs.hbs +19 -15
- package/src/components/bs5/breadcrumbs/breadcrumbs.scss +164 -43
- package/src/components/bs5/breadcrumbs/breadcrumbs.stories.js +16 -2
- package/src/components/bs5/breadcrumbs/breadcrumbs.test.js +136 -0
- package/src/components/bs5/button/button.data.json +10 -8
- package/src/components/bs5/button/button.hbs +48 -30
- package/src/components/bs5/button/button.scss +365 -244
- package/src/components/bs5/button/button.stories.js +116 -30
- package/src/components/bs5/containerLayout/containerLayout.hbs +100 -0
- package/src/components/bs5/containerLayout/containerLayout.stories.js +83 -0
- package/src/components/bs5/contentFooter/contentFooter.data.json +9 -1
- package/src/components/bs5/contentFooter/contentFooter.hbs +15 -4
- package/src/components/bs5/formcheck/formcheck.hbs +1 -1
- package/src/components/bs5/formcheck/formcheck.scss +161 -139
- package/src/components/bs5/formcheck/stories/checkbox/checkbox.data.json +51 -46
- package/src/components/bs5/formcheck/stories/radio/radio.data.json +51 -46
- package/src/components/bs5/iconLink/iconLink.data.json +77 -0
- package/src/components/bs5/iconLink/iconLink.hbs +41 -0
- package/src/components/bs5/iconLink/iconLink.js +20 -0
- package/src/components/bs5/iconLink/iconLink.mdx +16 -0
- package/src/components/bs5/iconLink/iconLink.scss +57 -0
- package/src/components/bs5/iconLink/iconLink.stories.js +127 -0
- package/src/components/bs5/icons/icons.scss +79 -72
- package/src/components/bs5/inpagenav/inpagenav.scss +37 -37
- package/src/components/bs5/logo/Logo.js +20 -0
- package/src/components/bs5/logo/Logo.mdx +10 -0
- package/src/components/bs5/logo/logo.data.json +6 -0
- package/src/components/bs5/logo/logo.hbs +7 -0
- package/src/components/bs5/logo/logo.stories.js +32 -0
- package/src/components/bs5/logo/logoCOALandscape.hbs +58 -0
- package/src/components/bs5/logo/logoCOALandscape2Lines.hbs +58 -0
- package/src/components/bs5/navbar/Navbar.js +2 -9
- package/src/components/bs5/navbar/navbar.data.json +191 -0
- package/src/components/bs5/navbar/navbar.functions.js +48 -196
- package/src/components/bs5/navbar/navbar.hbs +65 -245
- package/src/components/bs5/navbar/navbar.scss +585 -518
- package/src/components/bs5/navbar/navbar.stories.js +532 -0
- package/src/components/bs5/pageLayout/ContentPageWithForm.js +8 -0
- package/src/components/bs5/pageLayout/ContentPageWithSideNavigation.js +8 -0
- package/src/components/bs5/pageLayout/FullWidthLandingPage.js +8 -0
- package/src/components/bs5/pageLayout/pageLayout.hbs +11 -10
- package/src/components/bs5/pageLayout/pageLayout.stories.js +230 -6
- package/src/components/bs5/pageLayout/templates/contentPageWithForm.hbs +78 -0
- package/src/components/bs5/pageLayout/templates/contentPageWithSideNavigation.hbs +103 -0
- package/src/components/bs5/pageLayout/templates/fullWidthLandingPage.hbs +61 -0
- package/src/components/bs5/searchInput/__snapshots__/searchInput.test.js.snap +9 -8
- package/src/components/bs5/searchInput/search.functions.js +94 -63
- package/src/components/bs5/searchInput/searchInput.data.json +2 -3
- package/src/components/bs5/searchInput/searchInput.hbs +8 -10
- package/src/components/bs5/searchInput/searchInput.scss +296 -255
- package/src/components/bs5/searchInput/searchInput.test.js +98 -89
- package/src/components/bs5/sidenav/sidenav.stories.js +17 -15
- package/src/components/bs5/tabs/tabs.data.json +45 -44
- package/src/components/bs5/tabs/tabs.scss +544 -500
- package/src/components/bs5/tabs/tabs.stories.js +81 -51
- package/src/components/common/footer/footer.scss +137 -140
- package/src/components/common/layout/container.scss +22 -0
- package/src/components/common/layout/content.scss +11 -4
- package/src/components/common/layout/grid.scss +26 -0
- package/src/css/main.scss +5 -4
- package/src/css/qld-variables.scss +102 -81
- package/src/js/handlebars.helpers.js +51 -40
- package/src/js/handlebars.partials.js +16 -0
- package/src/js/qld.bootstrap.js +17 -9
- package/src/components/bs5/backToTop/backToTop.scss +0 -9
- package/src/components/bs5/breadcrumbs/breadcrumb.functions.js +0 -95
- package/src/components/bs5/breadcumbsWrapper/breadcrumbsWrapper.stories.js +0 -34
- package/src/components/bs5/contentFooterWrapper/contentFooterWrapper.stories.js +0 -36
- package/src/components/bs5/contentWrapper/contentWrapper.stories.js +0 -65
- package/src/components/bs5/fullPageWrapper/fullPage.stories.js +0 -63
- package/src/components/bs5/mainContainerWrapper/mainContainerWrapper.stories.js +0 -50
- package/src/components/bs5/navbar/_colours.scss +0 -85
- package/src/components/bs5/navbar/_icons.scss +0 -64
- package/src/components/bs5/sidenavWrapper/SidenavWrapper.mdx +0 -11
- package/src/components/bs5/sidenavWrapper/sidenavWrapper.stories.js +0 -65
- package/src/stories/integration/MainIntegration.js +0 -28
- package/src/stories/integration/MainIntegration.mdx +0 -10
- package/src/stories/integration/breadcrumb.data.json +0 -28
- package/src/stories/integration/content.data.json +0 -3
- package/src/stories/integration/contentFooter.data.json +0 -3
- package/src/stories/integration/footer.data.json +0 -111
- package/src/stories/integration/globalAlert.data.json +0 -10
- package/src/stories/integration/header.data.json +0 -173
- package/src/stories/integration/inpagenav.data.json +0 -26
- package/src/stories/integration/integration.stories.js +0 -147
- package/src/stories/integration/main.hbs +0 -13
- package/src/stories/integration/navigation.data.json +0 -22
- package/src/stories/integration/search.data.json +0 -20
- package/src/stories/integration/sidenav.data.json +0 -88
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{{!prettier-ignore}}
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 170 56" fill="{{fill}}" class="{{className}}">
|
|
3
|
+
<title>Queensland Government</title>
|
|
4
|
+
<path d="M59.2787 21.2601C59.0853 21.3115 58.617 21.4554 58.3116 21.4965C58.8918 20.9209 59.2379 20.2219 59.2379 19.6463C58.9631 19.7388 58.4643 19.9238 58.0062 20.0266C58.9122 19.2454 59.4008 18.3511 59.187 17.1588C58.9122 17.3027 58.5152 17.5288 58.1284 17.6933C58.9224 16.4701 58.9122 15.3805 58.5865 14.7432C58.2302 15.0824 57.8026 15.473 57.3548 15.7505C57.65 14.332 57.6296 13.4172 57.0392 12.7696C56.4386 13.9209 55.9195 14.7637 55.0746 15.7814C55.1458 14.846 55.044 13.6742 54.4333 13.0574C54.4333 13.0574 54.2602 14.3629 53.8021 14.7843C53.6902 13.4994 53.3034 12.8005 52.7231 12.1118C52.7231 12.1118 52.6824 13.448 52.3261 14.2704C52.0208 13.1499 51.4507 12.2865 50.728 11.4642C50.7789 13.9311 50.0969 18.5773 48.1424 21.7021C47.9083 23.5523 47.7047 26.3482 44.7221 27.9928C44.2946 27.6844 43.5312 27.2938 42.4725 27.3555C42.1875 25.9576 43.9994 24.683 45.567 23.6756C47.1448 22.6477 47.837 21.774 47.7963 20.3966C47.7556 18.8959 46.7478 18.2792 45.7095 18.238C44.2437 18.1661 43.0425 19.5126 42.7575 20.078C42.33 20.2836 41.0779 20.6742 40.5588 20.8181C39.9887 20.9723 39.3372 21.2087 38.9301 21.5479C39.1744 21.7021 39.8564 21.7535 40.1312 21.7123C40.63 21.6404 42.218 21.3423 43.7347 21.1573C44.2946 21.4554 45.1802 21.9693 44.2335 22.6272C42.9408 23.4598 42.3809 23.6756 40.5588 24.6419C37.678 26.1631 38.6145 29.9972 39.3169 30.285C39.3169 31.5802 40.4672 33.9135 41.2408 34.7255C41.5869 36.3496 41.1288 38.7755 40.6402 39.7828C40.2432 38.796 39.5408 36.5141 39.0929 35.1778C39.5612 32.6492 38.8079 31.5391 38.2786 31.1176C37.7493 30.6756 36.9146 30.799 36.375 31.6727C37.2098 31.5802 37.4846 32.6595 37.4642 33.7696C37.4439 35.1059 37.108 36.1749 36.1816 36.1852C36.2529 37.3261 37.4744 37.6551 38.0852 37.1C38.1768 37.357 38.6654 38.8577 39.1337 40.194C39.4085 40.9855 39.6732 41.7153 39.8564 42.0956C40.0498 42.517 41.4546 42.589 41.6174 42.0956C41.8414 41.448 42.0144 40.9546 42.3707 40.194C42.6354 39.6184 43.012 38.8783 43.5719 37.7887C43.9485 38.4465 44.4575 39.4847 44.7425 40.194C44.8748 40.5126 44.9766 40.7799 44.9868 40.9032C45.0988 41.9928 45.0377 45.8577 44.7425 48.1705C41.5971 47.307 40.7115 48.8592 40.9863 50.0104C41.4444 49.5067 42.0246 49.5684 42.3911 49.8357C42.2994 50.6785 42.5336 51.2953 43.3886 51.5523C44.2946 49.1367 47.5317 49.6712 47.837 49.8768C47.8472 49.4142 48.2849 48.2527 46.6155 48.006C46.6766 45.9194 46.8903 43.3599 46.9718 42.8254C47.043 42.2909 47.1041 41.962 46.8496 41.1294C46.7784 40.8827 46.6868 40.5743 46.5951 40.2043C46.3814 39.3614 46.1574 38.2615 46.1371 37.0589C46.4221 37.3467 47.1143 37.5831 47.5927 37.47C47.9592 39.053 48.4885 38.5905 48.7634 39.2483C48.9059 39.5875 48.9364 39.9062 48.9771 40.194C49.0077 40.4715 49.0484 40.7079 49.2011 40.9135C50.3208 40.9443 51.2675 40.6771 51.9495 40.194C52.1633 40.0398 52.3363 39.8753 52.4992 39.6903C52.2243 38.0148 51.7561 37.1822 50.8908 36.1646C50.6669 34.7872 50.0256 33.5332 49.1604 32.4231C50.2597 32.0633 51.3693 31.1587 51.9597 30.542C52.489 30.5009 53.0896 30.0589 53.1303 29.1955C53.4357 29.1543 53.7004 29.1441 53.9345 29.0927C53.9039 28.8562 53.8429 28.4965 53.8123 28.2806C54.2195 28.2806 54.5961 28.2601 54.983 28.2292C54.871 27.9106 54.7285 27.5816 54.6165 27.3452C55.0237 27.3452 55.5225 27.3144 55.9296 27.2938C55.7159 26.8827 55.553 26.5332 55.4309 26.1734C55.8991 26.1323 56.6117 26.009 57.2021 25.8753C57.0087 25.6698 56.7949 25.4642 56.4793 25.1455C58.0164 24.683 58.6781 23.614 58.7595 23.1411C58.5356 23.1411 58.0673 23.2439 57.7925 23.2234C58.617 22.7094 59.1972 22.0104 59.2787 21.2601Z" />
|
|
5
|
+
<path d="M37.8308 24.7343H28.3232H18.8055H18.4492V25.0941V31.9605C18.5408 32.0119 18.6223 32.0838 18.7139 32.1661V25.0427H37.9936V31.6624C38.0649 31.7343 38.126 31.8268 38.187 31.9502V25.1044V24.7446H37.8308V24.7343Z" />
|
|
6
|
+
<path d="M28.2942 49.6403C19.7435 46.4229 18.6543 39.3407 18.6238 36.1337C18.6136 36.1337 18.6034 36.1337 18.5933 36.1234C18.6034 36.0412 18.6136 35.9692 18.6238 35.887C18.6238 35.188 18.6747 34.7152 18.7052 34.5507C18.6849 34.0881 18.6136 33.7387 18.5424 33.4611C18.522 33.4097 18.4813 33.3481 18.4609 33.2967V36.6271C18.4609 40.3583 19.825 43.5757 22.492 46.1865C24.8332 48.4787 27.4595 49.5478 28.2128 49.815L28.3349 49.8561L28.4571 49.815C29.2104 49.5478 31.8366 48.4787 34.1779 46.1865C36.8449 43.5757 38.1988 40.3481 38.1988 36.6271V36.0206C38.1377 36.1337 38.0664 36.1953 37.985 36.2878C37.9137 37.9633 37.6084 40.5639 36.4988 42.5169C35.1755 45.2717 33.1498 47.5228 28.2942 49.6403Z" />
|
|
7
|
+
<path d="M24.8714 18.3408C23.5379 18.423 22.2248 20.1705 22.7846 22.1646C22.5912 22.2365 22.011 22.2262 21.8176 21.8254C21.6751 22.4729 20.3721 23.2233 19.4153 23.1205C19.9446 22.5449 20.2907 21.2497 21.329 20.5611C22.3673 19.8724 22.8355 19.4098 23.1918 18.238C22.7134 18.4641 20.2194 19.1117 19.5171 18.3305C21.1559 18.0941 23.09 17.1587 24.0469 16.5522L23.6601 16.1514C22.632 16.7373 21.2577 17.2204 20.5655 17.4362C20.3212 15.3702 22.2757 15.4524 22.4182 16.0075C23.2224 15.0412 22.6625 13.6536 22.0619 13.4994C22.6727 11.8547 22.0619 10.8371 21.5428 10.2204C21.4206 11.9781 19.4865 12.2556 19.2524 13.6022C19.171 12.5332 19.1099 9.64476 19.0183 8.23654C18.8656 5.6154 15.598 4.71085 15.0992 4.71085C12.9615 4.81364 12.758 4.52583 12.8089 3.52876C11.7298 4.77252 12.0963 5.88265 13.0124 6.41716C12.8903 7.16753 11.6993 7.74315 10.9766 7.90761C12.7172 9.53169 14.7328 8.56547 15.6896 7.64036C15.7609 7.57869 15.8321 7.51701 15.9034 7.45534C16.2495 8.07208 16.504 9.20277 16.504 9.85034C14.8753 9.75783 14.5902 11.0324 14.5902 11.4847C16.6567 10.6213 16.8806 14.6095 17.4201 15.2571C16.8908 15.2263 15.9645 13.9928 14.5902 13.9003C12.9412 13.7975 12.361 14.6815 11.6891 14.6506C11.8113 15.8224 13.2364 16.4906 14.1525 16.6345C13.6843 17.8371 14.1016 18.6594 15.0687 18.9575C15.0687 17.8577 16.4531 17.5082 17.9393 18.3922C19.7207 19.4406 20.6368 19.5332 22.0619 19.0912C21.8278 19.6154 21.1763 19.6668 20.3925 20.448C19.2829 21.5478 19.2524 22.9869 18.0105 23.5111C19.4662 24.2101 21.6446 23.2336 21.9601 22.6682C22.5709 23.0486 23.3547 22.8224 23.5583 22.4318C22.5811 20.2321 24.2301 18.9267 24.8816 18.9575C24.902 18.9781 25.187 18.3202 24.8714 18.3408ZM17.3183 17.4362C16.5854 17.1382 15.4657 16.9428 14.8345 17.8371C14.4884 17.2409 14.9974 16.3364 15.313 16.0691C13.7148 16.0897 12.8089 15.6066 12.5747 15.1132C13.1651 14.7843 14.6615 14.2395 15.883 15.144C16.7279 15.7608 17.1554 16.0691 18.153 16.3981C18.5093 16.028 18.377 16.1925 18.4991 16.0897C17.6848 15.5243 17.3183 11.1249 15.71 10.9605C15.9441 10.4054 16.7686 10.4568 17.4303 10.6315C17.4812 9.64476 17.074 8.02068 16.4734 7.08529C17.3998 6.5919 18.0411 7.12641 18.3668 8.29822C18.7129 9.54197 18.3057 12.6462 19.1099 15.4421L19.6087 14.9693C19.3542 13.3349 21.1254 12.7387 21.5122 11.9267C21.6649 13.0266 21.441 13.5097 21.1356 13.9105C21.7769 13.9928 22.0619 14.6198 21.9601 15.0721C20.4129 14.8357 19.5171 16.4083 19.8632 17.6521C18.7333 17.8988 17.9494 17.7035 17.3183 17.4362ZM12.9412 5.20424C14.1627 5.8107 14.5495 4.70057 16.8297 6.19102C15.3232 6.67413 14.1627 8.55519 12.4628 8.07208C13.6843 7.45534 13.5519 6.56107 14.2645 6.10879C13.8064 6.04712 12.931 5.84154 12.9412 5.20424Z" />
|
|
8
|
+
<path d="M40.711 12.307C40.711 9.86064 40.6194 7.84596 40.5888 7.20866C40.6804 7.22922 40.7721 7.26006 40.884 7.30117C42.6247 7.91791 43.0217 10.0354 46.615 7.6301C44.6911 7.85624 44.5893 6.2116 43.7139 6.17048C45.0474 5.40984 45.139 3.65213 45.139 3.65213C44.0193 4.55668 41.4337 4.61836 40.9247 4.91645C40.2529 5.32761 39.408 5.821 38.838 6.13965C37.3416 6.96197 38.3799 11.4436 38.2374 13.078C37.4332 10.6418 35.7943 11.0016 34.9393 9.60367C34.298 10.7652 34.98 12.7285 35.2447 13.2835C34.3183 14.0442 34.5626 15.4627 34.7866 15.8327C35.5806 15.2571 36.8123 15.401 37.1787 16.3672C36.1404 17.0148 34.3896 17.1279 33.1986 15.9561L32.7711 16.4392C33.6159 17.5699 35.7231 18.0016 37.2907 17.0868C37.2805 17.3437 37.2296 17.6316 37.1278 17.9502C36.3135 18.3819 35.265 18.6183 34.0537 18.1969C34.2165 19.4201 35.6213 20.3452 36.9446 20.7153C36.4967 21.0647 35.9369 21.2086 35.5399 21.1573C35.7842 21.8665 35.9267 22.8122 35.3973 23.5625C34.7357 23.1205 34.3794 22.6683 34.1249 20.9517C33.8704 19.2248 32.6387 17.4671 31.6819 17.1176C31.631 17.7241 31.631 17.4568 31.7328 17.8577C34.2674 19.7388 32.8321 23.1308 35.4788 24.354C36.4458 23.2336 36.456 22.843 36.3135 21.7946C37.2703 21.5376 37.9829 20.7255 38.2374 20.0985C37.3314 20.5302 35.8961 19.7696 35.4991 19.1734C37.0668 19.122 38.5224 17.9297 40.0188 16.357C41.3523 14.9487 43.1235 15.1646 42.981 16.2645C43.8971 16.1308 44.2636 14.8562 43.9582 14.0442C45.3019 13.6228 46.3707 12.6051 46.5132 11.0324C44.7217 11.9678 42.4211 10.4568 40.711 12.307ZM42.8894 13.633C43.6019 14.2189 43.3678 15.0618 43.1947 15.2571C42.5738 14.1573 40.5583 14.5479 38.5835 16.799C38.441 16.9634 38.2577 17.1587 38.044 17.354C38.1967 14.6609 36.0081 14.6095 35.3668 14.8871C35.4381 14.1059 35.9165 13.5816 36.171 13.4994C35.5297 12.749 35.3872 11.8034 35.3159 11.1147C36.3847 11.5772 37.9625 12.8415 38.2374 15.0104L38.9296 14.5376C38.726 10.7446 38.7667 10.7549 38.7464 8.17489C38.7362 7.81512 38.7565 6.97224 39.8966 7.06476C39.9373 8.0207 40.09 10.5699 40.0391 14.1059H40.4463C40.8128 13.1191 42.1056 11.9678 43.6121 12.0603C44.6504 12.1323 44.9965 12.1015 45.5869 11.8445C45.0983 13.0369 43.3474 13.5508 42.8894 13.633ZM39.9373 6.4069C40.6703 5.88267 41.1283 5.64625 41.5151 5.42012C42.1463 5.44067 43.2253 5.36872 43.8768 5.03979C43.1947 5.88267 43.1235 6.18076 42.0139 6.30411C43.4492 6.43774 44.0498 7.73289 44.7624 7.92819C42.36 8.658 42.1157 6.26299 39.9373 6.4069Z" />
|
|
9
|
+
<path d="M30.93 20.6537C30.8079 20.6537 30.6959 20.7154 30.6247 20.8079C30.4923 20.7873 30.3498 20.7668 30.1971 20.7462L30.2073 19.9547C30.3498 19.8931 30.4414 19.7594 30.4414 19.595C30.4414 19.3791 30.2684 19.2044 30.0546 19.2044C29.8408 19.2044 29.6678 19.3894 29.6678 19.595C29.6678 19.7492 29.7492 19.8725 29.8714 19.9342L29.8612 20.6948C29.7289 20.6846 29.5965 20.664 29.454 20.6537C29.393 20.5201 29.2606 20.4173 29.0978 20.4173C28.884 20.4173 28.7109 20.5818 28.7109 20.8079C28.7109 21.0238 28.884 21.1985 29.0978 21.1985C29.2301 21.1985 29.3624 21.1265 29.4235 21.0135C29.5762 21.034 29.7187 21.0443 29.8612 21.0649L29.851 22.2161C29.7289 22.2778 29.6474 22.4114 29.6474 22.5656C29.6474 22.7815 29.8205 22.9562 30.0343 22.9562C30.248 22.9562 30.4211 22.7815 30.4211 22.5656C30.4211 22.4011 30.3295 22.2675 30.1869 22.2058L30.1971 21.106C30.3295 21.1265 30.4414 21.1471 30.5636 21.1677C30.6247 21.3218 30.757 21.4349 30.93 21.4349C31.1438 21.4349 31.3169 21.2602 31.3169 21.0443C31.3169 20.8285 31.1438 20.6537 30.93 20.6537Z" />
|
|
10
|
+
<path d="M27.5589 20.4274C27.3961 20.4274 27.2637 20.5199 27.2027 20.6638C27.0703 20.6741 26.9278 20.6844 26.7955 20.705L26.7853 19.9443C26.9075 19.8826 26.9889 19.749 26.9889 19.6051C26.9889 19.3893 26.8159 19.2145 26.6021 19.2145C26.3883 19.2145 26.2153 19.3995 26.2153 19.6051C26.2153 19.7696 26.3069 19.9032 26.4494 19.9649L26.4596 20.7564C26.3171 20.7666 26.1644 20.7975 26.032 20.818C25.971 20.7255 25.859 20.6638 25.7267 20.6638C25.5129 20.6638 25.3398 20.8489 25.3398 21.0544C25.3398 21.2703 25.5129 21.445 25.7267 21.445C25.8997 21.445 26.0422 21.332 26.0931 21.1778C26.2153 21.1572 26.3374 21.1367 26.4596 21.1161L26.4698 22.216C26.3374 22.2674 26.2458 22.4113 26.2458 22.5757C26.2458 22.7916 26.4189 22.9663 26.6326 22.9663C26.8464 22.9663 27.0194 22.7916 27.0194 22.5757C27.0194 22.4216 26.9278 22.2982 26.8057 22.2263L26.7955 21.075C26.9278 21.0544 27.0805 21.0442 27.223 21.0236C27.2943 21.1367 27.4164 21.2086 27.5488 21.2086C27.7625 21.2086 27.9356 21.0339 27.9356 20.818C27.9458 20.6022 27.7727 20.4274 27.5589 20.4274Z" />
|
|
11
|
+
<path d="M32.7203 23.7989C32.4862 22.2159 31.9161 17.7857 31.8551 16.2952L31.1832 16.3261C31.1934 16.5831 31.224 16.912 31.2545 17.3026C30.4503 17.0662 29.4018 16.8914 28.3228 16.8914C27.254 16.8914 26.1953 17.0559 25.3912 17.3026C25.4217 16.912 25.4522 16.5831 25.4624 16.3261L24.7906 16.2952C24.7295 17.7754 24.1595 22.2057 23.9253 23.7989C23.5182 23.9531 23.2637 24.3643 23.2637 25.0838C23.2637 25.0838 26.9079 25.1352 28.3228 25.1352C29.7276 25.1352 33.3718 25.0838 33.3718 25.0838C33.382 24.354 33.1173 23.9531 32.7203 23.7989ZM28.3228 23.7578C27.7426 24.8782 26.6636 24.8371 25.7271 24.2101C25.3504 23.9634 24.9636 23.7989 24.6074 23.7372C24.7702 22.6374 25.0349 20.561 25.2385 18.8033C26.4498 18.2483 27.9564 18.1249 28.3228 19.5331C28.6893 18.1249 30.1857 18.2483 31.4072 18.8033C31.6006 20.561 31.8754 22.6271 32.0383 23.7372C31.682 23.7989 31.2952 23.9634 30.9186 24.2101C29.9821 24.8371 28.903 24.8679 28.3228 23.7578Z" />
|
|
12
|
+
<path d="M48.774 51.7887C48.3566 51.9223 47.8476 51.9943 47.074 51.9943H46.1273C42.8496 51.9223 39.4904 50.9458 37.4239 48.8078C40.2742 45.9091 36.9252 43.5141 35.1132 45.9811C34.5534 46.752 34.0953 47.2968 33.7085 48.0471C33.3827 48.6536 33.627 49.2498 34.3396 50.1749C34.7264 50.6786 35.6935 51.47 36.4773 51.9943H20.119C20.9028 51.47 21.8699 50.6888 22.2567 50.1749C22.959 49.2498 23.2033 48.6433 22.8878 48.0471C22.4908 47.2968 22.0429 46.752 21.4729 45.9811C19.6609 43.5141 16.3119 45.9091 19.1621 48.8078C17.0957 50.9355 13.7365 51.9223 10.4588 51.9943H9.56297C8.79952 51.9943 8.28037 51.9223 7.86302 51.7887C7.19118 51.6242 7.03849 51.9223 7.40494 53.0941C7.65943 53.8753 7.85284 55.1602 7.94445 56.0442H48.7027C48.7841 55.1705 48.9877 53.8856 49.2422 53.0941C49.6087 51.9223 49.456 51.6242 48.774 51.7887ZM36.0192 46.0838C36.5485 45.3643 37.3323 45.5596 37.6581 46.1661C38.0042 46.8034 37.5054 47.6051 36.8234 48.2219C35.897 47.2043 35.7952 46.3922 36.0192 46.0838ZM34.6653 49.4656C34.3396 48.9928 34.2276 48.7255 34.4007 48.2733C34.5635 47.8313 34.9198 47.4407 35.2761 46.8959C35.8461 49.1367 39.1952 51.2747 41.6789 51.9943H37.7293C36.7012 51.4392 35.4186 50.5244 34.6653 49.4656ZM18.9382 46.1661C19.2639 45.5596 20.0376 45.3746 20.5669 46.0838C20.7908 46.3922 20.6992 47.2043 19.7627 48.2219C19.0909 47.6051 18.5921 46.8034 18.9382 46.1661ZM21.3303 46.8959C21.6968 47.4407 22.0429 47.8313 22.2058 48.2733C22.3788 48.7255 22.2668 49.0031 21.9411 49.4656C21.1878 50.5244 19.9052 51.4289 18.8771 51.9943H14.9377C17.4113 51.285 20.7603 49.147 21.3303 46.8959ZM48.0003 55.3966H8.64683C8.4636 54.1323 8.22947 53.3305 8.01571 52.6418H48.6213C48.4075 53.3305 48.1734 54.1426 48.0003 55.3966Z" />
|
|
13
|
+
<path d="M13.9817 54.5023C13.9919 54.5023 14.0021 54.5126 14.0021 54.5229L14.1039 54.8107C14.114 54.8415 14.1039 54.8621 14.0835 54.8724C14.0631 54.8724 14.053 54.8724 14.053 54.8929C14.053 54.9135 14.0835 54.9135 14.1242 54.9135H14.5619C14.6434 54.9135 14.6637 54.9135 14.6637 54.8929C14.6637 54.8724 14.6535 54.8724 14.6332 54.8724C14.6026 54.8724 14.5721 54.8724 14.5314 54.8621C14.4805 54.8518 14.4092 54.821 14.3278 54.6051C14.1751 54.2454 13.8087 53.2894 13.7578 53.1558C13.7272 53.1044 13.717 53.0838 13.6967 53.0838C13.6763 53.0838 13.656 53.1147 13.6356 53.1763L13.0452 54.6565C13.0045 54.7799 12.9536 54.8518 12.8518 54.8621C12.8314 54.8621 12.8009 54.8621 12.7805 54.8621C12.7602 54.8621 12.75 54.8621 12.75 54.8827C12.75 54.9032 12.7704 54.9032 12.7907 54.9032H13.0656H13.32C13.3404 54.9032 13.3608 54.9032 13.3608 54.8827C13.3608 54.8621 13.3506 54.8621 13.32 54.8621H13.2895C13.2183 54.8621 13.1979 54.8313 13.1979 54.7901C13.1979 54.7696 13.2081 54.7079 13.2284 54.6565L13.2793 54.5229C13.2895 54.5023 13.2895 54.5023 13.2997 54.5023H13.9817ZM13.3506 54.3893C13.3404 54.3893 13.3404 54.379 13.3404 54.3687L13.6356 53.5772C13.6356 53.5669 13.6458 53.5567 13.6458 53.5567C13.656 53.5567 13.656 53.5669 13.656 53.5772L13.9512 54.3687C13.9512 54.379 13.9512 54.3893 13.941 54.3893H13.3506Z" />
|
|
14
|
+
<path d="M15.1404 54.1527C15.1404 54.4919 15.232 54.6769 15.3541 54.7797C15.517 54.9339 15.741 54.9339 15.8631 54.9339C16.0158 54.9339 16.1889 54.9134 16.3517 54.7695C16.5451 54.605 16.5757 54.3172 16.5757 54.0602V53.8135C16.5757 53.4537 16.5757 53.3921 16.5757 53.3201C16.5858 53.2379 16.596 53.1968 16.6571 53.1865C16.6876 53.1865 16.708 53.1762 16.7284 53.1762C16.7589 53.1762 16.7691 53.1659 16.7691 53.1557C16.7691 53.1351 16.7589 53.1351 16.7182 53.1351C16.6266 53.1351 16.4841 53.1454 16.4535 53.1454C16.4535 53.1454 16.3008 53.1351 16.1889 53.1351C16.1583 53.1351 16.138 53.1351 16.138 53.1557C16.138 53.1659 16.1481 53.1762 16.1787 53.1762C16.199 53.1762 16.2397 53.1865 16.2601 53.1865C16.3314 53.2071 16.3517 53.2379 16.3619 53.3201C16.3619 53.3921 16.3619 53.4537 16.3619 53.8135V54.1013C16.3619 54.3583 16.3517 54.5639 16.2296 54.6872C16.138 54.79 16.0056 54.8106 15.9038 54.8106C15.8224 54.8106 15.7206 54.8003 15.6086 54.7181C15.4967 54.6255 15.4254 54.4714 15.4254 54.1322V53.8032C15.4254 53.4435 15.4254 53.3818 15.4356 53.3098C15.4356 53.2276 15.4559 53.1865 15.517 53.1762C15.5476 53.1762 15.5577 53.1659 15.5883 53.1659C15.6086 53.1659 15.629 53.1557 15.629 53.1454C15.629 53.1248 15.6086 53.1248 15.5781 53.1248C15.4967 53.1248 15.344 53.1351 15.2931 53.1351C15.2218 53.1351 15.0793 53.1248 14.9571 53.1248C14.9266 53.1248 14.9062 53.1248 14.9062 53.1454C14.9062 53.1557 14.9164 53.1659 14.947 53.1659C14.9775 53.1659 15.0182 53.1762 15.0386 53.1762C15.12 53.1968 15.1404 53.2276 15.1404 53.3098C15.1404 53.3818 15.1404 53.4435 15.1404 53.8032V54.1527Z" />
|
|
15
|
+
<path d="M17.5627 54.2247C17.5627 54.4405 17.5627 54.6358 17.5525 54.7283C17.5423 54.8003 17.5321 54.8517 17.4812 54.8517C17.4609 54.862 17.4303 54.862 17.3896 54.862C17.3591 54.862 17.3489 54.8722 17.3489 54.8825C17.3489 54.9031 17.3591 54.9031 17.3998 54.9031H17.695C17.807 54.9031 18.0207 54.9236 18.1938 54.9236C18.6213 54.9236 18.8554 54.7592 18.9674 54.6461C19.0998 54.5125 19.2219 54.2761 19.2219 53.9883C19.2219 53.7107 19.1099 53.5051 18.9878 53.3921C18.7435 53.1248 18.3465 53.1248 18.0615 53.1248C17.9189 53.1248 17.7764 53.1351 17.7052 53.1351C17.6339 53.1351 17.4914 53.1248 17.3693 53.1248C17.3387 53.1248 17.3184 53.1248 17.3184 53.1454C17.3184 53.1557 17.3285 53.1659 17.3591 53.1659C17.3896 53.1659 17.4303 53.1762 17.4507 53.1762C17.5219 53.1968 17.5525 53.2276 17.5525 53.3098C17.5627 53.3818 17.5627 53.4435 17.5627 53.8032V54.2247ZM17.8579 53.7724C17.8579 53.5874 17.8579 53.3818 17.8579 53.2996C17.8579 53.279 17.868 53.2584 17.8884 53.2482C17.9088 53.2379 17.9902 53.2276 18.0411 53.2276C18.2243 53.2276 18.4992 53.2584 18.7028 53.464C18.8045 53.5565 18.9267 53.7518 18.9267 54.0499C18.9267 54.2863 18.8758 54.5125 18.7333 54.6461C18.5908 54.7695 18.4381 54.8106 18.204 54.8106C18.0207 54.8106 17.9291 54.7592 17.8986 54.7181C17.8884 54.6975 17.8782 54.5947 17.8782 54.533C17.868 54.4919 17.868 54.2966 17.868 54.0602V53.7724H17.8579Z" />
|
|
16
|
+
<path d="M20.7688 54.5023C20.779 54.5023 20.7892 54.5126 20.7892 54.5229L20.9011 54.8107C20.9113 54.8415 20.891 54.8621 20.8808 54.8724C20.8502 54.8724 20.8401 54.8724 20.8401 54.8929C20.8401 54.9135 20.8706 54.9135 20.9113 54.9135H21.349C21.4407 54.9135 21.461 54.9135 21.461 54.8929C21.461 54.8724 21.4508 54.8724 21.4305 54.8724C21.4101 54.8724 21.3694 54.8724 21.3287 54.8621C21.2778 54.8518 21.2167 54.821 21.1251 54.6051C20.9724 54.2454 20.6059 53.2894 20.5449 53.1558C20.5245 53.1044 20.5042 53.0838 20.4838 53.0838C20.4634 53.0838 20.4533 53.1147 20.4227 53.1763L19.8425 54.6565C19.7916 54.7799 19.7509 54.8518 19.6389 54.8621C19.6287 54.8621 19.588 54.8621 19.5676 54.8621C19.5473 54.8621 19.5371 54.8621 19.5371 54.8827C19.5371 54.9032 19.5473 54.9032 19.5778 54.9032H19.8527H20.097C20.1275 54.9032 20.1377 54.9032 20.1377 54.8827C20.1377 54.8621 20.1275 54.8621 20.1072 54.8621H20.0664C19.9952 54.8621 19.9748 54.8313 19.9748 54.7901C19.9748 54.7696 19.985 54.7079 20.0054 54.6565L20.0563 54.5229C20.0563 54.5023 20.0664 54.5023 20.0766 54.5023H20.7688ZM20.1377 54.3893C20.1275 54.3893 20.1275 54.379 20.1275 54.3687L20.4227 53.5772C20.4227 53.5669 20.4329 53.5567 20.4329 53.5567C20.4431 53.5567 20.4431 53.5669 20.4431 53.5772L20.7281 54.3687C20.7281 54.379 20.7281 54.3893 20.7179 54.3893H20.1377Z" />
|
|
17
|
+
<path d="M23.0508 53.382C23.1221 53.2689 23.173 53.2073 23.2239 53.197C23.2544 53.1867 23.285 53.1867 23.3053 53.1867C23.3257 53.1867 23.346 53.1764 23.346 53.1661C23.346 53.1456 23.3358 53.1456 23.3053 53.1456C23.2137 53.1456 23.1221 53.1559 23.0712 53.1559C23.0305 53.1559 22.9287 53.1456 22.8371 53.1456C22.8065 53.1456 22.7862 53.1559 22.7862 53.1661C22.7862 53.1764 22.8065 53.1867 22.8167 53.1867C22.8371 53.1867 22.8676 53.1867 22.888 53.197C22.9083 53.2073 22.9287 53.2175 22.9287 53.2381C22.9287 53.2587 22.9185 53.2998 22.9083 53.3409C22.8778 53.4026 22.664 53.7315 22.5928 53.8343C22.5011 53.6801 22.3993 53.5053 22.2976 53.31C22.2772 53.2895 22.2772 53.2587 22.2772 53.2381C22.2772 53.2278 22.2874 53.2175 22.3077 53.197C22.3281 53.197 22.3586 53.1867 22.3688 53.1867C22.3892 53.1867 22.3993 53.1764 22.3993 53.1661C22.3993 53.1456 22.3892 53.1456 22.3586 53.1456C22.267 53.1456 22.1449 53.1559 22.1041 53.1559C21.9922 53.1559 21.8089 53.1456 21.7479 53.1456C21.7173 53.1456 21.697 53.1456 21.697 53.1661C21.697 53.1867 21.7071 53.1867 21.7173 53.1867C21.7377 53.1867 21.7784 53.197 21.8191 53.2073C21.9006 53.2278 21.9515 53.2792 22.0125 53.382L22.4197 54.0501L21.9718 54.6977C21.8904 54.8108 21.8497 54.8519 21.7784 54.8725C21.7377 54.8827 21.7071 54.8827 21.6868 54.8827C21.6664 54.8827 21.6562 54.893 21.6562 54.9033C21.6562 54.9238 21.6664 54.9238 21.697 54.9238H21.7377H21.9311H22.1449H22.1856C22.2161 54.9238 22.2365 54.9238 22.2365 54.9033C22.2365 54.893 22.2263 54.8827 22.2059 54.8827C22.1856 54.8827 22.1652 54.8827 22.155 54.8827C22.1347 54.8725 22.1143 54.8622 22.1143 54.8416C22.1143 54.8211 22.1245 54.7799 22.1449 54.7491L22.491 54.1838C22.5928 54.3585 22.7353 54.5949 22.8676 54.8211C22.888 54.8519 22.8778 54.8725 22.8574 54.8725C22.8371 54.8827 22.8269 54.8827 22.8269 54.893C22.8269 54.9033 22.8472 54.9238 22.9083 54.9238H23.3257H23.3969C23.4173 54.9238 23.4376 54.9238 23.4376 54.9033C23.4376 54.8827 23.4275 54.8827 23.4071 54.8827C23.3867 54.8827 23.3562 54.8827 23.3155 54.8725C23.2544 54.8622 23.2137 54.8313 23.1832 54.7697C23.1323 54.6977 22.7454 54.0604 22.6742 53.9371L23.0508 53.382Z" />
|
|
18
|
+
<path d="M26.8563 54.5023C26.8665 54.5023 26.8766 54.5126 26.8766 54.5229L26.9784 54.8107C26.9886 54.8415 26.9784 54.8621 26.9581 54.8724C26.9377 54.8724 26.9275 54.8724 26.9275 54.8929C26.9275 54.9135 26.9581 54.9135 26.9988 54.9135H27.4467C27.5281 54.9135 27.5485 54.9135 27.5485 54.8929C27.5485 54.8724 27.5383 54.8724 27.518 54.8724C27.4976 54.8724 27.4569 54.8724 27.4263 54.8621C27.3754 54.8518 27.3042 54.821 27.2227 54.6051C27.0701 54.2454 26.7036 53.2894 26.6425 53.1558C26.6222 53.1044 26.6018 53.0838 26.5814 53.0838C26.5611 53.0838 26.5509 53.1147 26.5204 53.1763L25.9401 54.6565C25.8994 54.7799 25.8485 54.8518 25.7366 54.8621C25.7162 54.8621 25.6857 54.8621 25.6653 54.8621C25.6449 54.8621 25.6348 54.8621 25.6348 54.8827C25.6348 54.9032 25.6449 54.9032 25.6755 54.9032H25.9503H26.1946C26.2252 54.9032 26.2353 54.9032 26.2353 54.8827C26.2353 54.8621 26.2252 54.8621 26.2048 54.8621H26.1743C26.103 54.8621 26.0827 54.8313 26.0827 54.7901C26.0827 54.7696 26.0928 54.7079 26.1234 54.6565L26.1743 54.5229C26.1641 54.5126 26.1743 54.5023 26.1743 54.5023H26.8563ZM26.2252 54.3893C26.215 54.3893 26.215 54.379 26.215 54.3687L26.5 53.5772C26.5102 53.5669 26.5102 53.5567 26.5204 53.5567C26.5204 53.5567 26.5306 53.5669 26.5306 53.5772L26.8258 54.3687C26.8258 54.379 26.8258 54.379 26.8156 54.379H26.2252V54.3893Z" />
|
|
19
|
+
<path d="M28.2921 54.2247C28.2921 54.4406 28.2921 54.6359 28.2819 54.7284C28.2717 54.8003 28.2616 54.8517 28.2107 54.8517C28.1903 54.862 28.1598 54.862 28.1292 54.862C28.0987 54.862 28.0885 54.862 28.0885 54.8826C28.0885 54.9031 28.1089 54.9031 28.1394 54.9031H28.4346H28.8011C28.8214 54.9031 28.8418 54.9031 28.8418 54.8826C28.8418 54.8723 28.8316 54.862 28.8011 54.862C28.7705 54.862 28.7196 54.862 28.6891 54.8517C28.6178 54.8414 28.5975 54.79 28.5975 54.7284C28.5873 54.6256 28.5873 54.4406 28.5873 54.2144V53.2688L28.8825 53.279C29.0861 53.2893 29.1472 53.351 29.1574 53.4127V53.4332C29.1675 53.4641 29.1675 53.4743 29.1777 53.4743C29.1879 53.4743 29.1981 53.4641 29.1981 53.4435C29.1981 53.3818 29.2083 53.2174 29.2083 53.166C29.2083 53.1351 29.2083 53.1146 29.1879 53.1146C29.1675 53.1146 29.1166 53.1351 28.9639 53.1351H28.0478C27.9664 53.1351 27.8849 53.1248 27.8137 53.1248C27.7526 53.1146 27.7322 53.094 27.7119 53.094C27.7017 53.094 27.6915 53.1043 27.6813 53.1351C27.6712 53.1557 27.6406 53.3715 27.6406 53.4024C27.6406 53.4332 27.6406 53.4435 27.661 53.4435C27.6813 53.4435 27.6813 53.4332 27.6915 53.4127C27.6915 53.3921 27.7119 53.3613 27.7322 53.3304C27.773 53.2688 27.8239 53.2688 27.9562 53.2585L28.3023 53.2482V54.2247H28.2921Z" />
|
|
20
|
+
<path d="M32.3453 54.0398C32.3453 54.0295 32.3453 54.0295 32.3657 54.0295C32.4064 54.0295 32.6507 54.0295 32.7118 54.0398C32.783 54.0501 32.8238 54.0912 32.8339 54.1118C32.8441 54.1426 32.8441 54.1735 32.8441 54.194C32.8441 54.2043 32.8543 54.2248 32.8645 54.2248C32.8848 54.2248 32.8848 54.194 32.8848 54.1734C32.8848 54.1529 32.895 54.0501 32.895 54.009C32.9052 53.937 32.9154 53.8754 32.9154 53.8651C32.9154 53.8548 32.9154 53.8445 32.9052 53.8445C32.8848 53.8445 32.8848 53.8548 32.8746 53.8651C32.8543 53.8856 32.8237 53.9062 32.7729 53.9062C32.7423 53.9165 32.7016 53.9165 32.6711 53.9165H32.3759C32.3555 53.9165 32.3555 53.9062 32.3555 53.8959V53.31C32.3555 53.2792 32.3657 53.2792 32.3759 53.2792H32.7321C32.8238 53.2792 32.8746 53.3203 32.8848 53.3511C32.9052 53.382 32.9052 53.4231 32.9052 53.4436C32.9052 53.4745 32.9154 53.4848 32.9255 53.4848C32.9357 53.4848 32.9459 53.4745 32.9459 53.4539C32.9561 53.4334 32.9561 53.2895 32.9561 53.2586C32.9663 53.1969 32.9764 53.1661 32.9764 53.1558C32.9764 53.1455 32.9663 53.1353 32.9663 53.1353C32.9561 53.1353 32.9459 53.1455 32.9255 53.1558C32.9052 53.1558 32.8746 53.1558 32.8238 53.1661C32.7729 53.1661 32.2944 53.1661 32.213 53.1661C32.1417 53.1661 31.9992 53.1558 31.8771 53.1558C31.8364 53.1558 31.8262 53.1558 31.8262 53.1764C31.8262 53.1867 31.8364 53.1969 31.8669 53.1969C31.8974 53.1969 31.9381 53.2072 31.9585 53.2072C32.0399 53.2278 32.0501 53.2586 32.0603 53.3408C32.0705 53.4128 32.0705 53.4745 32.0705 53.8342V54.2454C32.0705 54.4818 32.0705 54.6566 32.0603 54.7491C32.0501 54.821 32.0399 54.8724 31.989 54.8724C31.9687 54.8827 31.9381 54.8827 31.8974 54.8827C31.8669 54.8827 31.8669 54.893 31.8669 54.9033C31.8669 54.9238 31.8771 54.9238 31.9178 54.9238H32.213H32.5693C32.61 54.9238 32.6202 54.9238 32.6202 54.9033C32.6202 54.893 32.61 54.8827 32.5896 54.8827C32.5489 54.8827 32.498 54.8827 32.4675 54.8724C32.3962 54.8621 32.386 54.821 32.3759 54.7491C32.3657 54.6463 32.3657 54.4818 32.3657 54.2454V54.0398H32.3453Z" />
|
|
21
|
+
<path d="M33.8403 54.2248C33.8403 54.4613 33.8403 54.636 33.8301 54.7491C33.8199 54.8107 33.8098 54.8519 33.7589 54.8621C33.7385 54.8724 33.708 54.8724 33.6774 54.8724C33.6469 54.8724 33.6367 54.8724 33.6367 54.893C33.6367 54.9135 33.6571 54.9135 33.6876 54.9135H33.9828H34.3493C34.3696 54.9135 34.39 54.9135 34.39 54.893C34.39 54.8827 34.3798 54.8724 34.3493 54.8724C34.3086 54.8724 34.2577 54.8724 34.2271 54.8621C34.1559 54.8519 34.1355 54.8107 34.1355 54.7491C34.1253 54.6463 34.1253 54.4613 34.1253 54.2248V53.8137C34.1253 53.4539 34.1253 53.3922 34.1253 53.3203C34.1253 53.2278 34.1457 53.1969 34.2169 53.1867C34.2373 53.1867 34.2577 53.1764 34.2882 53.1764C34.3086 53.1764 34.3289 53.1661 34.3289 53.1558C34.3289 53.1455 34.3086 53.1353 34.278 53.1353C34.1864 53.1353 34.0541 53.1456 33.993 53.1456C33.9319 53.1456 33.7792 53.1353 33.6978 53.1353C33.6571 53.1353 33.6469 53.1353 33.6469 53.1558C33.6469 53.1764 33.6571 53.1764 33.6876 53.1764C33.7182 53.1764 33.7385 53.1867 33.769 53.1867C33.8199 53.2072 33.8403 53.2381 33.8505 53.3203C33.8505 53.3922 33.8505 53.4539 33.8505 53.8137V54.2248H33.8403Z" />
|
|
22
|
+
<path d="M35.2345 54.2247C35.2345 54.4405 35.2345 54.6358 35.2244 54.7283C35.2142 54.8003 35.204 54.8517 35.1531 54.8517C35.1327 54.862 35.1022 54.862 35.0615 54.862C35.0411 54.862 35.0208 54.8722 35.0208 54.8825C35.0208 54.9031 35.0411 54.9031 35.0717 54.9031H35.3669C35.4788 54.9031 35.6926 54.9236 35.8657 54.9236C36.2932 54.9236 36.5375 54.7592 36.6495 54.6461C36.7818 54.5125 36.904 54.2761 36.904 53.9883C36.904 53.7107 36.792 53.5051 36.6698 53.3921C36.4153 53.1248 36.0285 53.1248 35.7333 53.1248C35.601 53.1248 35.4483 53.1351 35.3771 53.1351C35.316 53.1351 35.1633 53.1248 35.0411 53.1248C35.0004 53.1248 34.9902 53.1248 34.9902 53.1454C34.9902 53.1557 35.0004 53.1659 35.031 53.1659C35.0513 53.1659 35.1022 53.1762 35.1226 53.1762C35.1938 53.1968 35.2142 53.2276 35.2244 53.3098C35.2244 53.3818 35.2244 53.4435 35.2244 53.8032V54.2247H35.2345ZM35.5196 53.7724V53.2996C35.5196 53.279 35.5297 53.2584 35.5603 53.2482C35.5806 53.2379 35.6621 53.2276 35.7028 53.2276C35.886 53.2276 36.1609 53.2584 36.3746 53.464C36.4662 53.5565 36.5884 53.7518 36.5884 54.0499C36.5884 54.2863 36.5477 54.5125 36.395 54.6461C36.2525 54.7695 36.0998 54.8106 35.8657 54.8106C35.6824 54.8106 35.5908 54.7592 35.5603 54.7181C35.5399 54.6975 35.5399 54.5947 35.5297 54.533C35.5196 54.4919 35.5196 54.2966 35.5196 54.0602V53.7724Z" />
|
|
23
|
+
<path d="M37.7192 54.2247C37.7192 54.4405 37.7192 54.6358 37.709 54.7283C37.6989 54.8003 37.6887 54.8517 37.648 54.8517C37.6276 54.862 37.5971 54.862 37.5563 54.862C37.5258 54.862 37.5156 54.862 37.5156 54.8825C37.5156 54.9031 37.536 54.9031 37.5665 54.9031H37.8617C37.9941 54.9031 38.1569 54.9134 38.503 54.9134C38.5946 54.9134 38.615 54.9134 38.6252 54.8517C38.6354 54.8003 38.6557 54.6461 38.6557 54.5844C38.6557 54.5639 38.6557 54.533 38.6354 54.533C38.615 54.533 38.615 54.5536 38.615 54.5742C38.5946 54.6667 38.5743 54.7283 38.5132 54.7489C38.4521 54.7797 38.3605 54.7797 38.2994 54.7797C38.0653 54.7797 38.0246 54.7386 38.0246 54.5844V54.2144V54.0294C38.0246 54.0191 38.0246 54.0088 38.045 54.0088C38.0959 54.0088 38.3198 54.0088 38.3707 54.0191C38.4521 54.0294 38.4928 54.0602 38.503 54.1116C38.5132 54.1424 38.5132 54.1733 38.5132 54.1938C38.5132 54.2144 38.5132 54.2144 38.5336 54.2144C38.5539 54.2144 38.5539 54.1836 38.5539 54.1733C38.5539 54.163 38.5641 54.0602 38.5641 54.0191C38.5743 53.8957 38.5845 53.8546 38.5845 53.8443C38.5845 53.8238 38.5743 53.8238 38.5641 53.8238C38.5539 53.8238 38.5437 53.8341 38.5336 53.8546C38.5132 53.8752 38.4827 53.8855 38.4216 53.8855C38.3707 53.8957 38.0959 53.8957 38.0551 53.8957C38.0348 53.8957 38.0348 53.8855 38.0348 53.8649V53.279C38.0348 53.2584 38.0348 53.2584 38.0551 53.2584C38.0959 53.2584 38.3402 53.2584 38.3809 53.2584C38.4928 53.279 38.5234 53.2996 38.5336 53.351C38.5437 53.3818 38.5539 53.4229 38.5539 53.4435C38.5539 53.464 38.5641 53.4743 38.5743 53.4743C38.5946 53.4743 38.5946 53.464 38.6048 53.4537C38.615 53.4229 38.615 53.3201 38.615 53.2996C38.6252 53.1968 38.6354 53.1659 38.6354 53.1454C38.6354 53.1351 38.6354 53.1248 38.6252 53.1248C38.615 53.1248 38.5946 53.1351 38.5946 53.1351C38.5743 53.1454 38.5437 53.1454 38.4928 53.1454C38.4521 53.1454 37.9839 53.1454 37.9126 53.1454C37.8515 53.1454 37.6989 53.1351 37.5869 53.1351C37.5462 53.1351 37.536 53.1351 37.536 53.1557C37.536 53.1659 37.5462 53.1762 37.5767 53.1762C37.6072 53.1762 37.648 53.1865 37.6683 53.1865C37.7498 53.2071 37.7701 53.2379 37.7701 53.3201C37.7701 53.3921 37.7701 53.4537 37.7701 53.8135V54.2247H37.7192Z" />
|
|
24
|
+
<path d="M39.8258 53.8137C39.8258 53.4539 39.8258 53.3922 39.8258 53.3203C39.8258 53.2381 39.8461 53.1969 39.9072 53.1867C39.9378 53.1867 39.9785 53.1764 39.9988 53.1764C40.0294 53.1764 40.0396 53.1661 40.0396 53.1558C40.0396 53.1353 40.0294 53.1353 39.9887 53.1353C39.897 53.1353 39.724 53.1456 39.6731 53.1456C39.612 53.1456 39.4695 53.1353 39.3575 53.1353C39.3168 53.1353 39.3066 53.1353 39.3066 53.1558C39.3066 53.1661 39.3168 53.1764 39.3474 53.1764C39.3779 53.1764 39.4084 53.1867 39.4288 53.1867C39.5 53.2072 39.5204 53.2381 39.5306 53.3203C39.5306 53.3922 39.5306 53.4539 39.5306 53.8137V54.2248C39.5306 54.451 39.5306 54.636 39.5204 54.7285C39.5102 54.8005 39.5 54.8519 39.4492 54.8519C39.4288 54.8621 39.3983 54.8621 39.3575 54.8621C39.3372 54.8621 39.327 54.8724 39.327 54.8827C39.327 54.9033 39.3372 54.9033 39.3779 54.9033H39.6731C39.8563 54.9033 40.0192 54.9135 40.3551 54.9135C40.4773 54.9135 40.4874 54.9033 40.5078 54.8416C40.5282 54.7799 40.5383 54.5949 40.5383 54.5641C40.5383 54.5332 40.5383 54.5229 40.518 54.5229C40.4976 54.5229 40.4976 54.5332 40.4976 54.5641C40.4874 54.6052 40.4671 54.6771 40.4366 54.708C40.3857 54.7696 40.294 54.7696 40.1617 54.7696C39.9785 54.7696 39.9276 54.7594 39.8869 54.7182C39.8461 54.6771 39.8461 54.5127 39.8461 54.2043V53.8137H39.8258Z" />
|
|
25
|
+
<path d="M41.2821 54.2248C41.2821 54.4613 41.2821 54.636 41.2719 54.7491C41.2618 54.8107 41.2516 54.8519 41.2007 54.8621C41.1803 54.8724 41.1498 54.8724 41.1091 54.8724C41.0785 54.8724 41.0684 54.8724 41.0684 54.893C41.0684 54.9135 41.0887 54.9135 41.1193 54.9135H41.4145H41.7809C41.8013 54.9135 41.8216 54.9135 41.8216 54.893C41.8216 54.8827 41.8115 54.8724 41.7809 54.8724C41.7504 54.8724 41.6995 54.8724 41.6689 54.8621C41.5977 54.8519 41.5773 54.8107 41.5773 54.7491C41.5671 54.6463 41.5672 54.4613 41.5672 54.2248V53.8137C41.5672 53.4539 41.5671 53.3922 41.5773 53.3203C41.5875 53.2278 41.5977 53.1969 41.6689 53.1867C41.6995 53.1867 41.7097 53.1764 41.7402 53.1764C41.7606 53.1764 41.7707 53.1661 41.7707 53.1558C41.7707 53.1455 41.7504 53.1353 41.73 53.1353C41.6384 53.1353 41.5061 53.1456 41.445 53.1456C41.3737 53.1456 41.2312 53.1353 41.1396 53.1353C41.1091 53.1353 41.0887 53.1353 41.0887 53.1558C41.0887 53.1764 41.0989 53.1764 41.1193 53.1764C41.1498 53.1764 41.1803 53.1867 41.2109 53.1867C41.2618 53.2072 41.2923 53.2381 41.2923 53.3203C41.3025 53.3922 41.3025 53.4539 41.3025 53.8137V54.2248H41.2821Z" />
|
|
26
|
+
<path d="M42.8907 54.9443C43.0129 54.9443 43.1452 54.9237 43.2674 54.8518C43.4302 54.749 43.4811 54.5742 43.4811 54.4406C43.4811 54.2145 43.3793 54.0603 43.1045 53.8341L43.0332 53.7828C42.85 53.6388 42.7889 53.5463 42.7889 53.4538C42.7889 53.3099 42.8907 53.2071 43.0638 53.2071C43.2165 53.2071 43.2775 53.2791 43.3081 53.3305C43.359 53.3819 43.3692 53.4641 43.3692 53.4847C43.3692 53.5052 43.3793 53.5258 43.3895 53.5258C43.3997 53.5258 43.4099 53.5052 43.4099 53.4641C43.4099 53.2688 43.4201 53.2071 43.4201 53.1763C43.4201 53.1557 43.4099 53.1455 43.3895 53.1455C43.3284 53.1249 43.2266 53.1043 43.0841 53.1043C42.7584 53.1043 42.5446 53.2894 42.5446 53.5463C42.5446 53.7416 42.6362 53.9061 42.8907 54.1014L43.0027 54.1836C43.1961 54.3378 43.2266 54.4509 43.2266 54.564C43.2266 54.6873 43.1249 54.8312 42.9111 54.8312C42.7686 54.8312 42.6362 54.7695 42.5853 54.5948C42.5752 54.5537 42.565 54.5023 42.565 54.4817C42.565 54.4612 42.565 54.4406 42.5446 54.4406C42.5243 54.4406 42.5243 54.4714 42.5141 54.5023C42.5141 54.5434 42.5039 54.6873 42.5039 54.8107C42.5039 54.862 42.5141 54.8826 42.5446 54.8929C42.6464 54.934 42.7482 54.9443 42.8907 54.9443Z" />
|
|
27
|
+
<path d="M35.877 6.54051C35.8973 6.19103 35.2458 5.92377 35.0931 5.90321C34.8183 5.88266 34.4824 6.45828 34.1261 6.82832C33.8105 5.13229 33.9734 4.41276 34.1566 3.66239C34.859 4.95755 35.8159 5.23508 36.3248 5.17341C34.6147 3.79602 34.9099 2.55226 34.3908 2.49059C34.0956 2.45975 33.8818 2.48031 33.7291 2.48031C33.1387 2.48031 33.0573 3.64184 32.9758 4.17634C32.589 3.44654 32.2124 2.85035 31.5507 2.00748C30.9196 0.383396 30.1561 0.794556 29.3723 0.0544684C29.9831 0.979578 29.4843 1.5552 30.8992 2.23361C31.2657 2.5831 31.6932 3.12789 31.9782 3.58016C31.7441 3.88853 31.5813 4.07355 31.3675 4.28941C31.1944 4.55667 31.1028 5.56401 30.5633 6.32465C31.3675 5.96489 31.683 5.4715 31.9681 4.98838C34.5129 6.92084 32.4465 11.8753 31.8663 12.9649C31.3064 12.5846 30.5939 12.3687 29.9322 12.2556L29.8609 12.0295L29.2604 10.0765H29.5352C29.8508 10.0765 29.922 9.86063 29.8813 9.68588L31.6321 10.2307L32.4058 10.4774L31.9375 9.80923L31.1232 8.66826L31.9375 7.53758L32.4058 6.86944L31.6321 7.10586L30.0543 7.59925C29.9424 7.23948 29.6472 7.06474 29.3214 7.02363L29.8508 5.21452L30.0747 4.4436L29.4334 4.91643L28.3137 5.73875L27.1838 4.91643L26.5425 4.4436L26.7664 5.21452L27.2957 7.02363C26.97 7.07502 26.685 7.23948 26.5628 7.59925L24.985 7.10586L24.2317 6.86944L24.7 7.53758L25.5143 8.66826L24.7 9.80923L24.2317 10.4774L25.0054 10.2307L26.7664 9.68588C26.7155 9.86063 26.7766 10.0765 27.1023 10.0765H27.3772L26.7766 12.0295L26.7155 12.2556C26.0437 12.379 25.3108 12.5948 24.7407 12.9957C23.0306 9.64477 23.509 6.2527 24.9443 5.12201C24.9239 5.83126 25.5347 6.79749 25.8299 7.00307C25.6365 6.27326 25.9724 4.95755 25.5856 4.62862C25.3209 4.40248 24.9239 4.28941 24.4964 4.29969C24.7916 3.81658 25.1886 3.21012 25.8604 2.30557C26.8682 1.82246 27.1634 0.640371 27.4077 0.0441895C26.3083 0.455349 25.5042 1.02069 25.3311 1.95608C24.9443 2.47003 24.5168 3.08677 24.0383 3.8063C24.0587 2.93259 23.5803 2.62422 22.9491 2.5831C21.0965 2.9737 21.239 4.32025 19.6612 5.24536C20.7402 5.62568 22.4402 3.23068 23.0204 3.49793C23.112 4.96783 22.7761 6.12935 22.7761 6.93111C22.5012 6.62274 22.3587 6.40689 22.1246 6.37605C21.9007 6.33493 21.2797 6.38633 20.8624 6.85916C20.7402 7.59925 20.7707 8.99719 20.0785 10.6829C21.1067 9.727 21.5953 7.85622 21.7683 7.32172C22.033 7.68148 22.318 8.49352 22.3791 9.18221C22.5012 10.5185 23.3156 12.749 24.018 13.8283C23.8246 14.1984 23.7737 14.6198 23.8347 15.0926C23.2952 15.4935 23.2342 16.0589 23.4174 16.4392C23.621 16.8503 24.1503 17.1176 24.7712 16.8812L24.9647 16.7989C25.6161 16.5317 26.8377 16.0177 28.3137 16.0177C29.7897 16.0177 31.0112 16.5317 31.6627 16.7989L31.8561 16.8812C32.477 17.1279 33.0064 16.8606 33.1998 16.4392C33.3932 16.0589 33.3321 15.4935 32.7926 15.0926C32.8639 14.589 32.7926 14.1367 32.5585 13.7461L32.5788 13.7666C33.8411 11.9473 33.9225 8.48324 34.971 7.48618C35.0626 8.6991 35.7039 9.70644 36.335 9.85035C35.8464 8.96636 35.8464 7.30116 35.877 6.54051ZM30.0951 8.15431L31.0214 7.8665L30.5633 8.49352L30.4513 8.65798L30.5735 8.82245L31.0316 9.45975L29.8508 9.0897C29.9525 8.84301 30.0442 8.56547 30.0951 8.15431ZM25.6263 9.44947L26.0844 8.81217L26.2065 8.64771L26.0844 8.48324L25.6263 7.85622L26.5526 8.14404C26.6035 8.5552 26.6951 8.82245 26.7969 9.06915L25.6263 9.44947ZM29.3316 9.1411H28.5885L28.6801 7.81511C29.7795 7.332 29.6777 8.35989 29.3316 9.1411ZM29.1077 11.3922L28.4765 10.9296L28.3238 10.8166L28.161 10.9296L27.54 11.3922L27.9472 10.0662H28.7005L29.1077 11.3922ZM28.161 6.29382L28.3238 6.40689L28.4765 6.29382L29.1178 5.83126L28.7514 7.07502C28.7412 7.0853 28.731 7.0853 28.7208 7.0853C28.6598 6.93111 28.4969 6.82832 28.3238 6.82832C28.1508 6.82832 27.9981 6.93111 27.937 7.0853C27.9269 7.0853 27.9065 7.0853 27.8963 7.07502L27.5299 5.83126L28.161 6.29382ZM27.3263 9.1411C26.97 8.35989 26.8682 7.32172 27.9676 7.81511L28.0592 9.1411H27.3263ZM28.3238 11.495L29.1993 12.1323C28.8226 12.0912 28.5071 12.0912 28.3238 12.0912C28.1304 12.0912 27.8149 12.1014 27.4484 12.1323L28.3238 11.495ZM24.7203 16.1205L24.5371 16.2028C24.2725 16.3056 24.0994 16.2233 24.0383 16.1C23.9671 15.9663 24.0078 15.7402 24.3335 15.5346C24.3742 15.5141 24.4251 15.4832 24.4659 15.4627L25.0868 15.9766C24.9443 16.028 24.8221 16.0794 24.7203 16.1205ZM26.8275 15.4421L26.1862 14.7945C26.7155 14.6609 27.2754 14.5684 27.8251 14.5273L28.2119 15.2879C27.7131 15.2982 27.255 15.3599 26.8275 15.4421ZM30.4004 15.5757L30.0238 14.702C30.604 14.8151 31.1537 14.9796 31.6321 15.1851L31.8561 16.0897C31.4896 15.9355 31.001 15.7402 30.4004 15.5757ZM28.3238 13.8386C27.1023 13.8386 25.7281 14.1367 24.6695 14.5992C24.6898 14.3628 24.7712 14.1572 24.9138 13.9722C25.5245 13.2219 27.1329 12.9546 28.3238 12.9546C29.5047 12.9546 31.113 13.2219 31.7238 13.9722C31.8765 14.147 31.9579 14.3628 31.9681 14.589C30.9196 14.1264 29.5657 13.8386 28.3238 13.8386Z" />
|
|
28
|
+
<path d="M19.9245 34.8181C19.4562 34.8181 19.1508 34.8284 19.1508 34.8284C19.0389 36.1955 19.0898 37.4392 19.273 38.5699C19.7514 37.7682 20.24 36.9664 20.2197 36.4011C20.1891 35.8151 20.0568 35.2909 19.9245 34.8181Z" />
|
|
29
|
+
<path d="M20.2626 34.818C20.3949 35.2908 20.517 35.8048 20.5374 36.3804C20.5578 37.0485 20.0692 37.8708 19.55 38.7445C19.4889 38.8473 19.4279 38.9501 19.377 39.0529C20.8835 46.5052 28.0192 48.9927 28.0192 48.9927V34.8283C28.0192 34.8283 22.6445 34.8077 20.2626 34.818ZM25.6169 43.6785C25.2606 43.7504 24.7008 43.7915 24.3241 43.7915C23.9475 43.7915 23.3774 43.7504 23.0314 43.6785C23.0721 43.5243 23.123 43.3084 23.1637 43.0926C22.899 43.0617 22.6242 42.9692 22.4104 42.887C22.5224 42.4964 22.6954 42.1161 22.8379 41.5918C23.3164 41.7049 23.7846 41.7357 24.3241 41.7357C24.8636 41.7357 25.3319 41.6946 25.8103 41.5918C25.9528 42.1161 26.1259 42.4964 26.2379 42.887C26.0241 42.9692 25.7492 43.0617 25.4846 43.0926C25.5355 43.3084 25.5864 43.5243 25.6169 43.6785ZM22.6954 40.5742C22.9601 40.4817 24.0086 40.42 24.3241 40.42C24.6295 40.42 25.678 40.4817 25.9528 40.5742C25.9834 40.7078 25.9834 40.9134 25.963 41.0573C25.5558 41.1807 24.8535 41.2423 24.3241 41.2423C23.7948 41.2423 23.0924 41.1807 22.6853 41.0573C22.6649 40.9031 22.6649 40.7078 22.6954 40.5742ZM26.6654 37.7783C26.2684 38.7343 25.8816 39.7211 25.7696 40.0191C25.5558 39.9883 25.3319 39.9677 25.1079 39.9575C25.3726 39.1249 25.6983 37.9325 25.9732 37.1821C26.1564 36.6579 27.0318 36.8841 26.6654 37.7783ZM24.3241 36.3804C24.3852 35.9384 25.6271 35.8562 25.393 36.8327C25.1588 37.8092 24.8636 38.9604 24.6397 39.9472C24.5379 39.9472 24.4259 39.9369 24.3241 39.9369C24.2223 39.9369 24.1104 39.9472 24.0086 39.9472C23.7846 38.9604 23.4894 37.8194 23.2553 36.8327C23.0212 35.8562 24.2631 35.9384 24.3241 36.3804ZM22.6954 37.1821C22.9601 37.9325 23.296 39.1249 23.5607 39.9575C23.3266 39.9677 23.1026 39.9883 22.899 40.0191C22.7769 39.7211 22.39 38.7343 21.9931 37.7783C21.6062 36.8841 22.502 36.6579 22.6954 37.1821Z" />
|
|
30
|
+
<path d="M35.8563 36.216L35.8359 35.8665H36.1922C36.6604 35.8665 36.8946 35.4039 37.0269 34.8694C35.1946 34.8592 28.6289 34.8797 28.6289 34.8797V41.7152C29.1786 41.3041 29.6977 40.9752 30.3899 40.749V39.5669V39.2483H30.6953H31.072C31.1127 37.6037 31.4995 36.401 32.2629 35.6095L32.4869 35.3731L32.7108 35.6095C33.4743 36.401 33.8611 37.5934 33.9018 39.2483H34.309H34.6144V39.5669V40.8518C35.3677 41.1602 35.8664 41.6433 36.2533 42.1572C36.8742 40.8827 37.3323 39.4128 37.4951 37.7064C37.4646 37.7064 37.4341 37.7167 37.3934 37.7167C36.6706 37.7064 35.9173 37.1925 35.8563 36.216Z" />
|
|
31
|
+
<path d="M37.4944 34.8694C37.4944 34.8694 37.4333 34.8694 37.362 34.8694C37.1992 35.6506 36.8429 36.1851 36.1914 36.1954C36.2423 36.9766 36.8225 37.3775 37.3824 37.3775C37.4231 37.3775 37.474 37.3672 37.5147 37.3569C37.5656 36.5654 37.5758 35.7534 37.4944 34.8694Z" />
|
|
32
|
+
<path d="M32.4767 41.0882C30.4917 41.0882 29.7181 41.6536 28.6289 42.4965V49.0339C28.6289 49.0339 33.3521 47.3893 35.9275 42.7843C35.3269 41.8797 34.4617 41.0882 32.4767 41.0882ZM34.1054 43.7299L33.5048 43.0412L32.4869 43.9561L32.9042 44.4392C32.9042 44.4392 33.3318 44.2336 33.7084 44.6756C33.4234 44.9223 32.9348 45.354 32.6396 45.611C32.2629 45.169 32.5276 44.7784 32.5276 44.7784L32.1103 44.2953L30.8684 45.426L30.4612 44.9531L31.7336 43.8738L31.2755 43.3393C31.2755 43.3393 31.1127 43.4935 30.8582 43.7094C30.4917 43.2879 30.2067 42.7329 30.4714 42.0236C31.1941 41.8592 31.7031 42.2292 32.0695 42.6404C31.8252 42.8562 31.6522 43.0104 31.6522 43.0104L32.1103 43.5552L33.1486 42.6712L32.5785 41.962C33.118 41.9003 33.5863 42.0853 33.8509 42.3937C34.1156 42.702 34.2377 43.1954 34.1054 43.7299Z" />
|
|
33
|
+
<path d="M19.4177 31.313C19.9165 31.7241 20.1099 32.0325 19.9572 33.4407C19.9369 33.6154 20.0285 33.9444 20.1303 34.3041H37.1095C37.1298 34.1191 37.14 33.9341 37.14 33.7799C37.1502 33.009 37.0179 32.4025 36.7634 32.1456C36.682 32.0633 36.5903 32.0222 36.4376 32.0222C36.4275 32.0222 36.4173 32.0222 36.4173 32.0222L35.7353 32.0942L36.1017 31.5083C36.458 30.9326 36.967 30.6037 37.5065 30.5626V25.4745H19.1836V31.1588C19.2447 31.1999 19.3159 31.2307 19.3668 31.2718L19.4177 31.313ZM30.2079 30.6345V30.2748L29.3732 30.2645C29.5767 29.3805 31.2869 28.2498 32.0503 27.9826C32.0096 27.0163 33.2617 26.6977 34.2796 26.6669C35.5317 26.636 35.8269 27.9928 35.8269 28.4143C35.8269 28.9693 35.6844 30.2131 34.9922 30.5934C33.9844 31.1485 33.1293 30.3776 33.1293 29.6889C33.1293 28.9282 33.6587 28.476 34.5545 28.5787C35.4604 28.6815 35.3892 28.1676 34.7072 27.9928C34.3712 27.9106 32.9359 27.8284 32.4575 28.9077C32.1827 28.918 31.8875 28.8049 31.7144 28.6301C31.5312 28.8768 31.236 29.0413 30.839 29.1544C31.1851 29.8739 31.8976 29.7505 32.3252 29.4113C32.315 29.5039 32.3048 29.6066 32.3048 29.7197C32.3048 31.4774 34.1676 31.9297 35.3179 31.2718C35.1245 31.8372 35.2161 32.567 35.2976 33.0501H30.7881C30.8695 32.5567 31.4599 32.0119 31.9689 31.6522L31.5719 31.0149C31.0833 31.2307 30.6252 31.426 30.0959 31.5699C28.8438 31.8989 28.9151 31.0046 30.2079 30.6345ZM27.0319 32.0736C26.8588 32.3306 25.79 32.6595 25.5253 32.495C25.0775 32.2175 24.8535 31.6316 24.9655 31.3746C25.0978 31.0457 26.2684 30.7168 26.6451 30.8401C27.0115 30.9737 27.1744 31.8577 27.0319 32.0736ZM20.7818 29.2674C21.7793 28.7021 22.2883 28.2807 22.8176 27.4378C22.4206 27.2425 21.9626 26.893 21.6165 26.3996C23.5098 26.9341 24.4667 27.2116 26.6858 26.4099C26.3193 26.9958 25.7798 27.3453 25.3218 27.6331C25.8307 28.476 26.3295 29.4319 26.5026 30.2028C25.8307 30.1514 25.0775 30.3159 24.5379 30.8093C23.7032 30.8504 22.6548 31.1177 22.0644 29.2058C21.7692 29.3599 21.4638 29.5655 21.4638 29.5655C21.7997 30.8093 22.4308 31.6624 24.0901 31.4877C24.1817 31.8886 24.2529 32.1147 24.4565 32.4436C23.7745 32.8445 22.0644 33.8621 20.7614 32.6903V29.2674H20.7818Z" />
|
|
34
|
+
<path d="M19.1836 31.5494V34.2939H19.7842C19.6824 33.9341 19.5908 33.6155 19.6213 33.3893C19.774 32.0119 19.5704 31.868 19.1836 31.5494Z" />
|
|
35
|
+
<path d="M37.4947 34.2938V30.8812C37.0977 30.9223 36.6906 31.169 36.375 31.6727C36.4055 31.6624 36.4463 31.6624 36.4768 31.6624C37.2301 31.6624 37.4846 32.7006 37.4744 33.7696C37.4744 33.9444 37.4642 34.1191 37.4438 34.2938H37.4947Z" />
|
|
36
|
+
<path d="M23.6312 29.6271C23.9468 29.7813 24.3336 29.6065 24.7408 29.6579C24.6594 29.4832 24.5779 29.3496 24.6288 29.1029C24.7306 28.6095 24.3336 28.4759 24.1504 28.4964C23.6923 28.517 23.4276 28.63 22.9492 28.4964C23.2851 28.8048 23.1935 29.4112 23.6312 29.6271Z" />
|
|
37
|
+
<path d="M19.6503 33.3686C19.8131 31.9501 19.5892 31.8371 19.182 31.4979C18.8257 31.1998 18.2455 31.1073 17.6653 30.7064C17.2479 30.4186 17.1359 29.9971 16.6168 29.4318C16.7186 28.2394 17.5635 26.7695 18.1946 26.4406C18.2862 26.3892 18.2557 24.539 18.2557 24.539C18.2557 24.539 18.673 24.5184 18.6323 24.4979C18.0724 24.1484 17.4006 24.4156 16.912 24.9913C16.4336 25.3819 15.3546 26.1117 14.6115 26.3686C13.6037 25.5052 12.0259 24.7548 10.8654 23.583C10.8654 23.583 12.3924 23.5625 13.0947 23.2747C13.278 23.1616 13.7666 22.3701 13.5732 21.6197C13.339 21.5375 12.9929 21.3525 12.657 21.1675C12.2397 20.9208 11.8325 20.6638 11.6493 20.5199C10.9876 20.0162 10.7229 19.5742 9.57267 19.2864C9.64392 18.7519 9.7559 18.8752 10.2649 18.536C10.9062 18.094 11.2624 17.5698 11.5271 17.0559C11.7307 16.6447 11.4966 15.8121 10.9774 16.8708C10.7942 17.2512 10.2954 17.7446 9.73554 17.8987C9.77626 17.5698 9.79661 17.3745 9.79661 17.1998C11.4762 16.0074 11.3133 14.9487 11.181 13.9619C11.1098 13.3863 10.5397 13.1499 10.5702 13.746C10.5804 14.1366 10.9265 15.257 9.78643 15.9149C9.76608 15.4215 9.62356 15.1954 9.52177 14.9384C10.5397 13.5816 10.1122 12.2659 9.68464 11.6697C9.4098 11.2894 8.73796 11.1557 9.04334 11.7622C9.28765 12.2556 9.69482 13.6021 8.94155 14.1469C8.67688 13.818 8.38168 13.6946 8.27989 13.2526C8.35114 11.7725 8.25953 10.8782 8.0763 10.354C7.89307 9.87085 7.435 9.56248 7.46554 10.282C7.50625 11.1043 7.57751 12.1322 7.49607 12.2042C7.42482 12.2659 6.3458 11.2482 5.89791 10.9501C5.45002 10.6418 4.93087 10.7548 5.45002 11.3613C5.90809 11.8958 7.28231 12.9237 7.10926 13.2629C6.99728 13.4685 6.00988 12.6462 5.50091 12.4714C4.98177 12.2864 4.8189 12.5742 5.25661 12.934C5.95899 13.5199 6.42724 13.9002 7.58769 14.2908C8.73796 14.6814 9.31818 16.2952 8.95173 18.608C8.94155 18.7211 8.73796 18.7005 8.62599 18.6594C8.57509 17.7754 8.4224 16.7167 8.20863 16.2541C7.93379 15.6476 7.39428 15.6374 7.58769 16.4597C7.74038 17.1073 7.83199 17.8165 7.72002 18.7005C6.76316 18.536 6.3967 18.2791 5.9997 18.0324C5.95899 17.5904 6.18293 16.8503 6.22365 16.1924C6.28473 15.5449 5.90809 15.1337 5.69432 15.956C5.49074 16.7372 5.34822 17.1175 5.22607 17.6726C4.95123 17.5801 4.6662 17.4567 4.53387 17.3026C4.4728 17.2306 4.53387 16.3466 4.46262 15.7196C4.40154 15.0001 4.1267 15.0206 3.91293 15.6579C3.81114 15.9457 3.73988 16.3363 3.70934 16.8092C3.37342 16.6036 3.1393 16.2027 3.10876 15.8943C3.15966 15.144 3.28181 14.3422 3.37342 13.8488C3.4345 13.4891 3.20037 12.7695 2.91535 13.6432C2.71176 14.2703 2.66087 14.7945 2.53871 15.2365C2.29441 15.2159 1.97885 13.7871 1.8058 12.8826C1.73454 12.4612 1.38844 11.9883 1.32737 12.9134C1.25611 13.9311 1.46988 14.959 1.71418 15.4215C1.22557 15.3701 0.757323 14.4758 0.421403 13.9619C0.116022 13.4993 -0.0264893 13.9824 0.00404883 14.1675C0.289072 15.9869 1.72436 16.6344 2.37584 16.7578C3.3836 18.2174 5.30751 18.8444 6.92603 19.5537C4.80872 19.5331 4.25903 20.3863 3.29199 19.8312C3.33271 20.633 3.7297 21.0133 4.10634 21.1983C4.38118 21.3217 4.64585 21.3628 4.768 21.3833C4.94105 22.3598 5.86737 22.3084 6.64101 22.3598C6.43742 24.2614 6.67154 26.7798 8.33078 28.6609C8.27989 29.6271 8.21881 30.9017 8.22899 31.7343C6.87513 33.0089 5.66378 35.6711 5.18535 37.1513C4.82908 38.2512 4.28957 39.1146 3.46504 39.5155C4.14706 40.2453 5.14464 39.8855 5.72486 39.4744C5.76558 40.1219 5.91827 40.5845 6.02006 40.9648C5.63325 41.5507 5.36858 41.9516 5.4093 42.6711C4.97159 42.7945 4.66621 43.0617 4.43208 43.3701C4.27939 43.5551 4.45244 44.4391 4.62549 44.8092C5.16499 46.0324 4.74764 48.7871 4.64585 49.6094C4.86979 49.6197 5.28715 49.6403 5.37876 49.3011C5.51109 49.4244 5.84701 49.6608 5.9997 50.1954C5.95899 50.3907 5.82665 51.2335 6.26437 51.3466C6.62065 51.4391 8.13737 51.3877 8.34096 51.1205C8.18827 50.9354 7.92361 50.5346 7.76074 50.1337C7.76074 49.7122 7.72002 49.2086 7.60805 48.9824C7.435 48.6741 6.99728 47.9648 6.71226 47.6873C6.65119 47.1836 6.60029 44.9325 6.83441 44.0691C7.23141 43.7915 9.90859 41.7769 10.4685 39.8547C10.9571 40.0191 10.8044 41.3657 10.8044 43.1028C10.8044 43.5654 11.3642 43.8018 11.7002 43.8532C12.4229 43.9457 13.4612 44.6344 14.6115 46.3716C14.8354 46.1351 15.1306 45.8987 15.1306 45.8987C15.2833 46.1043 15.4563 46.608 15.5581 46.9163C15.6803 47.1528 16.6168 47.2967 17.3294 47.0705C17.5635 46.9883 17.706 46.9472 17.8587 46.6902C16.9527 45.0867 16.403 44.028 15.2426 43.144C14.7031 42.7328 13.9803 42.5272 13.3798 42.1366C13.7869 41.376 14.8965 37.7989 14.2246 36.4832C14.0007 36.0515 13.1558 35.6197 12.1277 35.815C12.9828 34.7666 14.7234 32.7108 14.9576 32.0838C15.1611 32.3305 16.1893 32.1557 16.9527 32.4641C17.2276 32.5772 18.0114 33.5948 18.0521 33.9545C18.1233 34.5816 18.1539 35.3422 17.7162 37.0691C18.0216 37.0177 17.9808 36.9971 18.276 36.8738C18.3269 37.3363 18.1844 37.6961 17.7874 38.3951C17.8892 39.0221 18.1641 39.978 18.4593 40.163C18.8461 39.0015 20.2814 37.3363 20.2407 36.3701C20.1898 35.0544 19.579 33.9443 19.6503 33.3686Z" />
|
|
38
|
+
<path d="M78.0588 32.125C78.0588 32.125 77.6414 32.3819 76.766 32.3819C75.6361 32.3819 74.6283 31.7035 74.0888 31.3438C73.3966 30.8812 72.2667 30.2233 71.1368 29.8636C68.9584 29.8636 67.5333 29.2468 66.4237 27.7872C65.3142 26.3482 64.7441 24.4877 64.7441 22.3394C64.7441 19.1734 65.9351 16.6037 68.0321 15.4627C68.8872 15.0002 69.956 14.7432 71.0452 14.7432C74.9133 14.7432 77.3055 17.6007 77.3055 22.2057C77.3055 25.4025 76.1756 27.7872 74.4349 28.9487C74.8319 29.1029 75.402 29.4833 75.7379 29.6888C76.257 30.0075 76.8881 30.3056 77.5396 30.3056C78.1707 30.3056 78.8324 30.2028 78.8324 30.2028L78.0588 32.125ZM73.5595 18.8959C73.3254 18.1558 72.5517 17.0354 71.0045 17.0354C70.0171 17.0354 69.162 17.5391 68.7446 18.3305C68.2458 19.2865 68.0117 20.5714 68.0117 22.3496C68.0117 24.8885 68.4291 26.4715 69.3045 27.1088C69.7728 27.448 70.353 27.6125 71.0452 27.6125C73.0709 27.6125 73.9361 26.0501 73.9361 22.3085C73.9361 20.7975 73.814 19.7182 73.5595 18.8959Z" />
|
|
39
|
+
<path d="M86.5504 29.9252C86.1941 29.6682 85.8989 29.3085 85.7157 28.8665C85.0235 29.5449 84.0157 29.9047 82.8858 29.9047C81.3793 29.9047 80.0763 29.1851 79.7302 28.147C79.5674 27.6536 79.4961 27.0882 79.4961 25.9884V19.05L82.2547 18.5258V25.4847C82.2547 26.4509 82.3463 26.9649 82.4888 27.263C82.6415 27.5611 83.0487 27.7666 83.4762 27.7666C84.1684 27.7666 85.0031 27.263 85.2169 26.7285V19.1117L87.8941 18.5464V26.8107C87.8941 27.5302 88.1282 28.2703 88.5456 28.774L86.5504 29.9252Z" />
|
|
40
|
+
<path d="M93.2171 25.1044V25.1969C93.2171 26.8621 94.0314 27.818 95.4769 27.818C96.4439 27.818 97.3397 27.4583 98.205 26.7387L99.2941 28.4348C98.0624 29.4421 96.7595 29.9355 95.2529 29.9355C92.1788 29.9355 90.1836 27.7358 90.1836 24.3334C90.1836 22.3907 90.5806 21.0956 91.5273 20.0368C92.4027 19.0398 93.4715 18.5772 94.8967 18.5772C96.1284 18.5772 97.3092 18.9986 97.9912 19.7182C98.9786 20.7358 99.4163 22.1954 99.4163 24.4568V25.1147H93.2171V25.1044ZM96.505 22.9047C96.505 22.1029 96.4236 21.6815 96.1691 21.2806C95.8942 20.8591 95.4972 20.6433 94.9374 20.6433C93.8685 20.6433 93.2578 21.4862 93.2578 22.9869V23.028H96.505V22.9047Z" />
|
|
41
|
+
<path d="M103.803 25.1044V25.1969C103.803 26.8621 104.618 27.818 106.063 27.818C107.02 27.818 107.926 27.4583 108.781 26.7387L109.87 28.4348C108.639 29.4421 107.336 29.9355 105.829 29.9355C102.755 29.9355 100.76 27.7358 100.76 24.3334C100.76 22.3907 101.157 21.0956 102.103 20.0368C102.989 19.0398 104.048 18.5772 105.473 18.5772C106.705 18.5772 107.885 18.9986 108.567 19.7182C109.555 20.7358 109.992 22.1954 109.992 24.4568V25.1147H103.803V25.1044ZM107.091 22.9047C107.091 22.1029 107.01 21.6815 106.755 21.2806C106.481 20.8591 106.084 20.6433 105.524 20.6433C104.455 20.6433 103.844 21.4862 103.844 22.9869V23.028H107.091V22.9047Z" />
|
|
42
|
+
<path d="M117.679 29.6271V22.586C117.679 21.3628 117.465 21.0031 116.732 21.0031C116.172 21.0031 115.439 21.3834 114.788 21.9796V29.6271H111.978V21.7843C111.978 20.8489 111.856 19.9649 111.602 19.2453L114.096 18.5258C114.35 18.9781 114.493 19.4406 114.493 19.8826C114.91 19.5846 115.266 19.3379 115.724 19.0809C116.294 18.7828 117.027 18.6183 117.658 18.6183C118.849 18.6183 119.898 19.2556 120.234 20.1807C120.376 20.5816 120.447 21.0545 120.447 21.7226V29.6271H117.679Z" />
|
|
43
|
+
<path d="M126.543 29.9664C125.22 29.9664 123.775 29.5449 122.207 28.7226L123.215 26.6463C124.07 27.1808 125.556 27.8695 126.778 27.8695C127.572 27.8695 128.203 27.335 128.203 26.6463C128.203 25.9062 127.684 25.5259 126.554 25.3203L125.291 25.0839C124.579 24.9605 123.703 24.4466 123.327 23.984C122.95 23.5215 122.716 22.7403 122.716 22.031C122.716 19.9238 124.375 18.5053 126.859 18.5053C128.579 18.5053 129.709 19.0295 130.686 19.5229L129.77 21.4245C128.701 20.8695 127.928 20.6433 127.134 20.6433C126.319 20.6433 125.77 21.0648 125.77 21.7021C125.77 22.2571 126.126 22.545 127.113 22.8019L128.406 23.1411C129.73 23.4803 130.167 23.8812 130.544 24.3643C130.941 24.868 131.134 25.4847 131.134 26.2043C131.134 28.4451 129.292 29.9664 126.543 29.9664Z" />
|
|
44
|
+
<path d="M135.848 29.8842C134.657 29.8842 133.69 29.3189 133.354 28.404C133.14 27.849 133.1 27.5201 133.1 25.9679V17.8886C133.1 16.4701 133.059 15.5964 132.957 14.6302L135.828 13.9723C135.929 14.5582 135.97 15.2572 135.97 16.7888V25.2278C135.97 27.0883 135.99 27.3453 136.153 27.6331C136.255 27.8181 136.489 27.9312 136.713 27.9312C136.815 27.9312 136.886 27.9312 137.029 27.8901L137.507 29.5861C137.049 29.7814 136.459 29.8842 135.848 29.8842Z" />
|
|
45
|
+
<path d="M146.151 30.1822C145.499 29.9047 144.919 29.4216 144.644 28.8665C144.441 29.0824 144.207 29.288 144.003 29.4319C143.474 29.8122 142.721 30.0281 141.845 30.0281C139.453 30.0281 138.16 28.8049 138.16 26.6463C138.16 24.1074 139.901 22.9253 143.311 22.9253C143.525 22.9253 143.708 22.9253 143.942 22.9458V22.5038C143.942 21.3012 143.708 20.9003 142.69 20.9003C141.784 20.9003 140.746 21.3423 139.585 22.1235L138.394 20.0883C138.964 19.7285 139.382 19.5229 140.135 19.194C141.183 18.752 142.079 18.5567 143.067 18.5567C144.868 18.5567 146.1 19.2351 146.517 20.4378C146.66 20.8798 146.731 21.219 146.701 22.3805L146.64 26.0193C146.619 27.2013 146.701 27.7153 147.647 28.4348L146.151 30.1822ZM143.759 24.8988C141.815 24.8988 141.143 25.2586 141.143 26.5435C141.143 27.3864 141.662 27.962 142.374 27.962C142.894 27.962 143.423 27.6844 143.84 27.2219L143.881 24.8988H143.759Z" />
|
|
46
|
+
<path d="M155.29 29.6271V22.586C155.29 21.3628 155.076 21.0031 154.343 21.0031C153.773 21.0031 153.04 21.3834 152.399 21.9796V29.6271H149.59V21.7843C149.59 20.8489 149.467 19.9649 149.213 19.2453L151.707 18.5258C151.961 18.9781 152.104 19.4406 152.104 19.8826C152.521 19.5846 152.877 19.3379 153.336 19.0809C153.895 18.7828 154.638 18.6183 155.27 18.6183C156.461 18.6183 157.509 19.2556 157.845 20.1807C157.988 20.5816 158.059 21.0545 158.059 21.7226V29.6271H155.29Z" />
|
|
47
|
+
<path d="M167.424 29.6271C167.343 29.4626 167.302 29.2879 167.261 28.9898C166.569 29.6065 165.755 29.8944 164.788 29.8944C162.07 29.8944 160.35 27.7563 160.35 24.3951C160.35 21.0133 162.212 18.6902 164.93 18.6902C165.704 18.6902 166.315 18.8855 166.834 19.307C166.793 19.0706 166.752 18.3305 166.752 17.7035V13.9825L169.542 14.4245V25.6697C169.542 28.3319 169.755 29.2057 169.939 29.6271H167.424ZM166.793 21.6609C166.274 21.1983 165.765 20.9619 165.266 20.9619C164.014 20.9619 163.464 22.0206 163.464 24.4259C163.464 26.749 163.943 27.5199 165.409 27.5199C165.928 27.5199 166.518 27.1601 166.793 26.8209V21.6609Z" />
|
|
48
|
+
<path d="M71.3613 50.329C69.5596 50.329 68.0327 49.6917 66.9435 48.5097C65.7322 47.1837 65.1621 45.3848 65.1621 42.8871C65.1621 40.122 65.895 38.1484 67.3812 36.8019C68.4093 35.8665 69.641 35.4245 71.1272 35.4245C72.6541 35.4245 73.9775 35.9076 75.0666 36.8636L74.293 37.9429C73.1224 37.1411 72.2877 36.8224 71.1781 36.8224C69.4985 36.8224 68.1854 37.6036 67.595 39.2688C67.2183 40.3481 67.0351 41.5713 67.0351 42.9487C67.0351 44.8503 67.3914 46.3922 68.0429 47.3481C68.6943 48.3041 70.1602 48.89 71.514 48.89C72.42 48.89 73.1936 48.705 73.7942 48.3246V43.9047H70.9033L70.5674 42.4656H75.4026V49.2292C74.3744 49.9076 72.8272 50.329 71.3613 50.329Z" />
|
|
49
|
+
<path d="M82.7219 50.3703C79.8514 50.3703 78.2227 48.2425 78.2227 44.7682C78.2227 41.3453 79.9226 39.2484 82.6609 39.2484C84.4015 39.2484 85.5315 40.0501 86.244 41.0883C86.8955 42.0443 87.2009 43.288 87.2009 45.0046C87.2009 48.5098 85.3381 50.3703 82.7219 50.3703ZM84.8596 41.9518C84.4219 41.0164 83.4956 40.5949 82.6405 40.5949C81.7142 40.5949 80.8591 41.0369 80.5028 41.7359C80.1669 42.3938 80.004 43.2366 80.004 44.4804C80.004 45.9606 80.2585 47.2763 80.6555 47.9239C81.0322 48.5611 81.8669 48.9826 82.7728 48.9826C83.862 48.9826 84.6764 48.4172 85.0327 47.3996C85.2668 46.7418 85.3482 46.1559 85.3482 45.1177C85.338 43.6478 85.1955 42.6507 84.8596 41.9518Z" />
|
|
50
|
+
<path d="M93.704 50.2057H92.0956L88.3496 39.6595L90.0292 39.2997L92.4621 46.5567C92.7573 47.4201 92.9609 48.3555 92.9609 48.3555H93.0016C93.0016 48.3555 93.1645 47.5332 93.5004 46.5773L95.8925 39.5773H97.6332L93.704 50.2057Z" />
|
|
51
|
+
<path d="M100.852 45.1073V45.3643C100.852 46.3613 100.974 47.122 101.34 47.6668C101.92 48.5713 102.887 48.9619 103.936 48.9619C104.944 48.9619 105.758 48.6433 106.491 47.9649L107.122 49.0236C106.196 49.8665 104.944 50.329 103.6 50.329C100.709 50.329 98.9785 48.2218 98.9785 44.727C98.9785 42.9487 99.3551 41.8077 100.231 40.749C101.065 39.752 102.093 39.2894 103.345 39.2894C104.475 39.2894 105.463 39.6903 106.175 40.4304C107.071 41.3555 107.366 42.3525 107.366 44.8709V45.1073H100.852ZM105.147 41.5097C104.791 40.9443 104.058 40.5845 103.264 40.5845C101.778 40.5845 100.943 41.6844 100.852 43.8636H105.626C105.605 42.7226 105.463 42.0236 105.147 41.5097Z" />
|
|
52
|
+
<path d="M114.726 41.1499C114.624 41.1088 114.431 41.0677 114.268 41.0677C113.637 41.0677 113.016 41.3349 112.527 41.8283C112.049 42.3115 111.926 42.6301 111.926 43.5038V50.1029H110.298V41.9825C110.298 40.4407 109.941 39.7417 109.941 39.7417L111.57 39.2997C111.57 39.2997 111.967 40.122 111.906 41.0163C112.659 39.937 113.769 39.2586 114.838 39.2586C115.113 39.2586 115.398 39.3614 115.398 39.3614L114.726 41.1499Z" />
|
|
53
|
+
<path d="M122.971 50.0926V42.9692C122.971 41.8488 122.89 41.5713 122.595 41.2115C122.36 40.9443 121.923 40.7695 121.444 40.7695C120.61 40.7695 119.307 41.4479 118.553 42.2497V50.0926H116.965V41.9722C116.965 40.4714 116.568 39.7519 116.568 39.7519L118.156 39.3099C118.156 39.3099 118.533 40.0911 118.533 40.9545C119.622 39.8547 120.711 39.3305 121.821 39.3305C122.951 39.3305 123.959 39.9472 124.376 40.8723C124.539 41.2526 124.63 41.6741 124.63 42.0955V50.0926H122.971Z" />
|
|
54
|
+
<path d="M139.207 50.0926V42.3114C139.207 41.2938 138.749 40.7696 137.863 40.7696C136.917 40.7696 136.184 41.3863 135.095 42.3937V50.0926H133.446V42.6095C133.446 41.9722 133.385 41.5508 133.15 41.2527C132.896 40.9546 132.56 40.8312 132.082 40.8312C131.288 40.8312 130.514 41.2321 129.425 42.2292V50.0926H127.857V41.9311C127.857 40.4098 127.48 39.6903 127.48 39.6903L129.068 39.31C129.068 39.31 129.445 40.1323 129.445 40.8724C130.137 40.0912 131.41 39.2894 132.479 39.2894C133.507 39.2894 134.535 39.9267 134.911 41.0471C135.919 39.9678 137.192 39.2894 138.26 39.2894C139.808 39.2894 140.877 40.4715 140.877 42.147V50.0926H139.207Z" />
|
|
55
|
+
<path d="M145.375 45.1073V45.3643C145.375 46.3613 145.498 47.122 145.854 47.6668C146.444 48.5713 147.401 48.9619 148.45 48.9619C149.457 48.9619 150.272 48.6433 151.005 47.9649L151.636 49.0236C150.72 49.8665 149.457 50.329 148.114 50.329C145.223 50.329 143.492 48.2218 143.492 44.727C143.492 42.9487 143.869 41.8077 144.744 40.749C145.579 39.752 146.607 39.2894 147.869 39.2894C148.999 39.2894 149.987 39.6903 150.699 40.4304C151.595 41.3555 151.89 42.3525 151.89 44.8709V45.1073H145.375ZM149.661 41.5097C149.305 40.9443 148.572 40.5845 147.778 40.5845C146.292 40.5845 145.457 41.6844 145.365 43.8636H150.139C150.129 42.7226 149.976 42.0236 149.661 41.5097Z" />
|
|
56
|
+
<path d="M160.817 50.0926V42.9692C160.817 41.8488 160.735 41.5713 160.44 41.2115C160.206 40.9443 159.768 40.7695 159.29 40.7695C158.455 40.7695 157.152 41.4479 156.399 42.2497V50.0926H154.811V41.9722C154.811 40.4714 154.414 39.7519 154.414 39.7519L156.002 39.3099C156.002 39.3099 156.379 40.0911 156.379 40.9545C157.468 39.8547 158.557 39.3305 159.667 39.3305C160.797 39.3305 161.804 39.9472 162.222 40.8723C162.385 41.2526 162.476 41.6741 162.476 42.0955V50.0926H160.817Z" />
|
|
57
|
+
<path d="M169.502 40.8106H167.324V47.5948C167.324 48.7563 167.64 49.1572 168.668 49.1572C169.126 49.1572 169.401 49.0955 169.696 48.9413L169.93 50C169.411 50.2776 168.82 50.4215 168.087 50.4215C167.538 50.4215 167.12 50.3187 166.723 50.1234C165.99 49.7636 165.716 49.0852 165.716 48.0265V40.8003H164.352V39.5566H165.716C165.716 38.539 165.878 36.8943 165.878 36.8943L167.589 36.514C167.589 36.514 167.385 38.1586 167.385 39.5566H170.001L169.502 40.8106Z" />
|
|
58
|
+
</svg>
|
|
@@ -1,255 +1,75 @@
|
|
|
1
1
|
<!-- QGDS Partial: Primary navigation -->
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
<h3 class="navbar__heading">Menu</h3>
|
|
11
|
-
<button aria-controls="main-nav" class="navbar__toggle navbar__toggle--close" data-bs-toggle="collapse"
|
|
12
|
-
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
|
|
13
|
-
aria-expanded="false" aria-label="Close menu">
|
|
14
|
-
<svg aria-hidden="true" focusable="false" xmlns="http://www.w3.org/2000/svg" class="qld__icon">
|
|
15
|
-
<use href="{{metadata.options.icon-root}}#qld__icon__close"></use>
|
|
16
|
-
</svg>
|
|
17
|
-
<span class="navbar__toggle-text">Close</span>
|
|
18
|
-
</button>
|
|
3
|
+
<nav id="main-nav" class="navbar navbar-expand-lg{{#if metadata.alternativeColor}} dark{{/if}}{{#if metadata.verticalOrientation}} vertical{{/if}}" aria-label="Website navigation" role="navigation">
|
|
4
|
+
<div id="navbarNav" class="container">
|
|
5
|
+
<div class="nav-header">
|
|
6
|
+
<span class="navbar-brand" href="#">{{#if metadata.navbarBrandName}}{{metadata.navbarBrandName}}{{/if}}</span>
|
|
7
|
+
<button id="burgerCloseBtn" type="button" class="navbar-btn btn-close" data-bs-toggle="collapse"
|
|
8
|
+
aria-label="Close" data-bs-target="#main-nav" aria-expanded="false"
|
|
9
|
+
aria-controls="collapseExample">Close</button>
|
|
19
10
|
</div>
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
</a>
|
|
37
|
-
</li>
|
|
38
|
-
{{#each navigation}}
|
|
39
|
-
{{#if dropdown_enabled}}
|
|
40
|
-
<li class="nav-item dropdown">
|
|
41
|
-
<!-- Desktop primary dropdown style and behaviour -->
|
|
42
|
-
<a class="nav-link dropdown-toggle desktop-only" href="{{target_url}}" id="menuDropdown"
|
|
43
|
-
role="button" aria-controls="" data-bs-toggle="dropdown" aria-expanded="false"
|
|
44
|
-
aria-label="Toggle navigation">
|
|
45
|
-
{{title}}
|
|
46
|
-
<svg class="toggle_icon">
|
|
47
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__chevron-down"></use>
|
|
48
|
-
</svg>
|
|
49
|
-
</a>
|
|
50
|
-
{{#if navigation_items}}
|
|
51
|
-
<ul id="dropdown-menu" class="dropdown-menu" role="menu"
|
|
52
|
-
data-bs-popper="none">
|
|
53
|
-
<div class="row dropdown-menu__inner">
|
|
54
|
-
{{#if dropdown_options}}
|
|
55
|
-
<div class="col-12">
|
|
56
|
-
<a class="dropdown-menu__featured" href="{{dropdown_options.feature_link_href}}">
|
|
57
|
-
<span class="">{{dropdown_options.feature_link_value}}</span>
|
|
58
|
-
<svg class="chevron__icon">
|
|
59
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right"></use>
|
|
60
|
-
</svg>
|
|
61
|
-
</a>
|
|
62
|
-
{{#if dropdown_options.feature_link_description}}
|
|
63
|
-
<p class="dropdown-menu__description">{{dropdown_options.feature_link_description}}</p>
|
|
11
|
+
<div class="navbar-collapse">
|
|
12
|
+
<ul class="navbar-nav">
|
|
13
|
+
{{#each navigation}}
|
|
14
|
+
{{#if navigationItems}}
|
|
15
|
+
<li class="nav-item dropdown{{#if @first}} active{{/if}}{{#if alternativeColor}} alt{{/if}}{{#if mobileOnly}} mobile-only{{/if}}">
|
|
16
|
+
<a class="nav-link{{#unless ../metadata.verticalOrientation}} dropdown-toggle{{/unless}}" aria-current="page" href="{{url}}"{{#if target}} target="{{target}}"{{/if}}{{#ifCond target '==' '_blank'}} rel="noopener noreferrer"{{/ifCond}} role="button" data-bs-toggle="dropdown"
|
|
17
|
+
aria-expanded="false">
|
|
18
|
+
{{#if iconName}}
|
|
19
|
+
<span class="qld-icon qld-icon-md {{iconName}}" aria-hidden="true"></span>
|
|
20
|
+
{{#if hideLabel}}
|
|
21
|
+
<span class="visually-hidden">{{text}}</span>
|
|
22
|
+
{{else}}
|
|
23
|
+
{{text}}
|
|
24
|
+
{{/if}}
|
|
25
|
+
{{else}}
|
|
26
|
+
{{text}}
|
|
64
27
|
{{/if}}
|
|
65
|
-
<hr>
|
|
66
|
-
</div>
|
|
67
|
-
{{/if}}
|
|
68
|
-
{{#each navigation_items}}
|
|
69
|
-
<li class="col-lg-4 col-sm-12">
|
|
70
|
-
<a href="{{target_url}}" class="dropdown-item">
|
|
71
|
-
<span class="dropdown-item__text">{{title}}</span>
|
|
72
|
-
<svg class="chevron__icon">
|
|
73
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right"></use>
|
|
74
|
-
</svg>
|
|
75
28
|
</a>
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
<
|
|
88
|
-
<
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
<!-- Mobile only -->
|
|
99
|
-
<div class="nav-item-group mobile-only">
|
|
100
|
-
|
|
101
|
-
<!-- Primary dropdown style and behaviour -->
|
|
102
|
-
<a class="nav-link first-element" href="{{target_url}}">
|
|
103
|
-
{{title}}
|
|
104
|
-
</a>
|
|
105
|
-
|
|
106
|
-
<button class="dropdown-toggle second-element" id="menuDropdown" role="button" aria-controls=""
|
|
107
|
-
data-bs-toggle="dropdown" aria-expanded="false" aria-selected="false"
|
|
108
|
-
aria-label="Toggle navigation">
|
|
109
|
-
<svg class="toggle_icon">
|
|
110
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__chevron-down"></use>
|
|
111
|
-
</svg>
|
|
112
|
-
<span class="visually-hidden">Expand</span>
|
|
113
|
-
</button>
|
|
114
|
-
|
|
115
|
-
{{#if navigation_items}}
|
|
116
|
-
<ul id="dropdown-menu" class="dropdown-menu" role="menu"
|
|
117
|
-
data-bs-popper="none">
|
|
118
|
-
<div class="row dropdown-menu__inner">
|
|
119
|
-
{{#if dropdown_options}}
|
|
120
|
-
<div class="col-12">
|
|
121
|
-
<a class="dropdown-menu__featured" href="{{dropdown_options.feature_link_href}}">
|
|
122
|
-
<span class="">{{dropdown_options.feature_link_value}}</span>
|
|
123
|
-
<svg class="chevron__icon">
|
|
124
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right">
|
|
125
|
-
</use>
|
|
126
|
-
</svg>
|
|
127
|
-
</a>
|
|
128
|
-
{{#if dropdown_options.feature_link_description}}
|
|
129
|
-
<p class="dropdown-menu__description">{{dropdown_options.feature_link_description}}
|
|
130
|
-
</p>
|
|
29
|
+
<button class="nav-link dropdown-toggle" aria-current="page" aria-controls="" data-bs-toggle="dropdown" aria-expanded="false" aria-selected="false" aria-label="Toggle navigation">
|
|
30
|
+
<span class="visually-hidden">Expand</span>
|
|
31
|
+
</button>
|
|
32
|
+
<ul class="dropdown-menu">
|
|
33
|
+
<li>
|
|
34
|
+
<a class="dropdown-item parent-link" role="button" aria-controls aria-current="page" href="{{url}}"{{#if target}} target="{{target}}"{{/if}}{{#ifCond target '==' '_blank'}} rel="noopener noreferrer"{{/ifCond}}>{{#if dropdownOptions.alternativeText}}{{dropdownOptions.alternativeText}}{{else}}{{title}}{{/if}}</a>
|
|
35
|
+
{{#if dropdownOptions.description}}
|
|
36
|
+
<p>{{dropdownOptions.description}}</p>
|
|
37
|
+
{{/if}}
|
|
38
|
+
</li>
|
|
39
|
+
{{#each navigationItems}}
|
|
40
|
+
<li{{#if mobileOnly}} class="mobile-only"{{/if}}>
|
|
41
|
+
<a class="dropdown-item" href="{{url}}"{{#if target}} target="{{target}}"{{/if}}{{#ifCond target '==' '_blank'}} rel="noopener noreferrer"{{/ifCond}}>{{text}}</a>
|
|
42
|
+
{{#if description}}
|
|
43
|
+
<p>{{description}}</p>
|
|
44
|
+
{{/if}}
|
|
45
|
+
</li>
|
|
46
|
+
{{/each}}
|
|
47
|
+
{{#if dropdownOptions.viewAllHref}}
|
|
48
|
+
<li>
|
|
49
|
+
<a class="dropdown-item view-all" href="{{dropdownOptions.viewAllHref}}">View all</a>
|
|
50
|
+
</li>
|
|
131
51
|
{{/if}}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
<
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
</a>
|
|
144
|
-
{{#if description}}
|
|
145
|
-
<p class="dropdown-item__description">{{description}}</p>
|
|
52
|
+
</ul>
|
|
53
|
+
</li>
|
|
54
|
+
{{else}}
|
|
55
|
+
<li class="nav-item{{#if @first}} active{{/if}}{{#if alternativeColor}} alt{{/if}}{{#if mobileOnly}} mobile-only{{/if}}">
|
|
56
|
+
<a class="nav-link" aria-current="page" href="{{url}}"{{#if target}} target="{{target}}"{{/if}}{{#ifCond target '==' '_blank'}} rel="noopener noreferrer"{{/ifCond}}>
|
|
57
|
+
{{#if iconName}}
|
|
58
|
+
<span class="qld-icon qld-icon-md {{iconName}}" aria-hidden="true"></span>
|
|
59
|
+
{{#if hideLabel}}
|
|
60
|
+
<span class="visually-hidden">{{text}}</span>
|
|
61
|
+
{{else}}
|
|
62
|
+
{{text}}
|
|
146
63
|
{{/if}}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
{{#if dropdown_options.view_value}}
|
|
150
|
-
<li class="col-12 text-end">
|
|
151
|
-
<hr>
|
|
152
|
-
<a class="dropdown-menu__view_all" href="{{dropdown_options.view_href}}">
|
|
153
|
-
<span>
|
|
154
|
-
{{dropdown_options.view_value}}
|
|
155
|
-
<svg class="chevron__icon">
|
|
156
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right">
|
|
157
|
-
</use>
|
|
158
|
-
</svg>
|
|
159
|
-
</span>
|
|
160
|
-
</a>
|
|
161
|
-
</li>
|
|
64
|
+
{{else}}
|
|
65
|
+
{{text}}
|
|
162
66
|
{{/if}}
|
|
163
|
-
|
|
164
|
-
|
|
67
|
+
</a>
|
|
68
|
+
</li>
|
|
165
69
|
{{/if}}
|
|
166
|
-
|
|
167
|
-
</
|
|
168
|
-
|
|
169
|
-
<li class="nav-item">
|
|
170
|
-
<a class="nav-link" href="{{target_url}}">{{title}}</a>
|
|
171
|
-
</li>
|
|
172
|
-
{{/if}}
|
|
173
|
-
{{/each }}
|
|
174
|
-
{{#each CTA}}
|
|
175
|
-
<li class="nav-item dropdown CTA_feature">
|
|
176
|
-
<!-- Mobile only -->
|
|
177
|
-
<div class="nav-item-group mobile-only">
|
|
178
|
-
|
|
179
|
-
<!-- Primary dropdown style and behaviour -->
|
|
180
|
-
<a class="nav-link first-element" href="{{target_url}}">
|
|
181
|
-
{{{label}}}
|
|
182
|
-
</a>
|
|
183
|
-
|
|
184
|
-
<button class="dropdown-toggle second-element" id="menuDropdown-{{id}}" role="button"
|
|
185
|
-
aria-controls="" data-bs-toggle="dropdown" aria-expanded="false"
|
|
186
|
-
aria-label="Toggle navigation">
|
|
187
|
-
<svg class="toggle_icon">
|
|
188
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__chevron-down"></use>
|
|
189
|
-
</svg>
|
|
190
|
-
<span class="visually-hidden">Expand</span>
|
|
191
|
-
</button>
|
|
192
|
-
|
|
193
|
-
{{#if dropdown_enabled}}
|
|
194
|
-
<ul id="dropdown-menu-{{id}}" class="dropdown-menu"
|
|
195
|
-
role="menu" data-bs-popper="none">
|
|
196
|
-
<div class="row dropdown-menu__inner">
|
|
197
|
-
{{#if dropdown_options.dropdown_config.groups}}
|
|
198
|
-
<div class="col-12">
|
|
199
|
-
<a class="dropdown-menu__featured" href="{{dropdown_options.view_more_url}}">
|
|
200
|
-
<span class="">{{dropdown_options.view_more_label}}</span>
|
|
201
|
-
<svg class="chevron__icon">
|
|
202
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right">
|
|
203
|
-
</use>
|
|
204
|
-
</svg>
|
|
205
|
-
</a>
|
|
206
|
-
<hr>
|
|
207
|
-
</div>
|
|
208
|
-
{{#each dropdown_options.dropdown_config.groups}}
|
|
209
|
-
{{#isType ../dropdown_options.dropdown_type "list"}}
|
|
210
|
-
<li class="col-lg-4 col-sm-12">
|
|
211
|
-
<a href="{{url}}" class="dropdown-item" target="{{action}}">
|
|
212
|
-
{{label}}
|
|
213
|
-
<svg class="chevron__icon">
|
|
214
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right">
|
|
215
|
-
</use>
|
|
216
|
-
</svg>
|
|
217
|
-
</a>
|
|
218
|
-
</li>
|
|
219
|
-
{{/isType}}
|
|
220
|
-
{{#isType ../dropdown_options.dropdown_type "form"}}
|
|
221
|
-
{{#if content}}
|
|
222
|
-
{{{content}}}
|
|
223
|
-
{{/if}}
|
|
224
|
-
{{/isType}}
|
|
225
|
-
|
|
226
|
-
{{/each }}
|
|
227
|
-
{{#if dropdown_options.dropdown_config.view_more}}
|
|
228
|
-
<li class="col-12 text-end">
|
|
229
|
-
<hr>
|
|
230
|
-
<a class="dropdown-menu__view_all"
|
|
231
|
-
href="{{dropdown_options.dropdown_config.view_more_options.url}}"
|
|
232
|
-
target="{{dropdown_options.dropdown_config.view_more_options.target}}">
|
|
233
|
-
<span>
|
|
234
|
-
{{dropdown_options.dropdown_config.view_more_options.label}}
|
|
235
|
-
<svg class="chevron__icon">
|
|
236
|
-
<use href="{{@root.metadata.options.icon-root}}#qld__icon__arrow-right">
|
|
237
|
-
</use>
|
|
238
|
-
</svg>
|
|
239
|
-
</span>
|
|
240
|
-
</a>
|
|
241
|
-
</li>
|
|
242
|
-
{{/if}}
|
|
243
|
-
{{/if}}
|
|
244
|
-
</div>
|
|
245
|
-
</ul>
|
|
246
|
-
{{/if}}
|
|
247
|
-
</div>
|
|
248
|
-
</li>
|
|
249
|
-
{{/each}}
|
|
250
|
-
</ul>
|
|
70
|
+
{{/each}}
|
|
71
|
+
</ul>
|
|
72
|
+
</div>
|
|
251
73
|
</div>
|
|
252
|
-
<div id="overlay"
|
|
253
|
-
|
|
254
|
-
</nav>
|
|
255
|
-
<!-- MAIN NAVIGATION END -->
|
|
74
|
+
<div id="overlay"></div>
|
|
75
|
+
</nav>
|
|
@@ -7,24 +7,25 @@
|
|
|
7
7
|
{{> head }}
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
|
-
{{> header header}}
|
|
11
|
-
{{> navbar navbar}}
|
|
12
10
|
{{> globalAlert globalAlert}}
|
|
11
|
+
{{> header header}}
|
|
12
|
+
{{> navbar navbar}}
|
|
13
13
|
<main>
|
|
14
14
|
<div class="container-fluid">
|
|
15
15
|
<div class="container qld-content">
|
|
16
16
|
<div class="row">
|
|
17
|
+
<!-- Side Nav -->
|
|
18
|
+
{{#> sidenavWrapper}}
|
|
19
|
+
{{> sidenav sidenav}}
|
|
20
|
+
{{/sidenavWrapper}}
|
|
17
21
|
{{#> contentWrapper}}
|
|
18
22
|
<p>content goes here dd</p>
|
|
19
|
-
{{> table table}}
|
|
20
|
-
{{> contentFooter contentFooter }}
|
|
23
|
+
{{> table table}}
|
|
21
24
|
{{/contentWrapper}}
|
|
22
|
-
</div>
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
</div>
|
|
27
|
-
</div>
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="container">
|
|
28
|
+
{{> contentFooter contentFooter }}
|
|
28
29
|
</div>
|
|
29
30
|
</div>
|
|
30
31
|
</main>
|