react-jupiter 5.12.0 → 6.0.0-beta.1
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/.babelrc +12 -0
- package/.env +3 -0
- package/.eslintignore +2 -0
- package/.eslintrc +18 -0
- package/.eslintrc.js +47 -0
- package/.eslintrc.json +16 -0
- package/.flowconfig +0 -0
- package/.storybook/main.js +27 -0
- package/.storybook/preview-head.html +1 -0
- package/.storybook/preview.js +30 -0
- package/.storybook/style.css +9 -0
- package/.vscode/settings.json +4 -0
- package/__mocks__/fileMock.js +1 -0
- package/config-overrides.js +34 -0
- package/dist/App.js +13 -0
- package/dist/components/accordion/index.js +25 -0
- package/dist/components/accordion/index.stories.js +82 -0
- package/dist/components/accordion/index.styles.js +52 -0
- package/dist/components/accordion/panel.js +41 -0
- package/dist/components/avatar/index.js +41 -0
- package/dist/components/avatar/index.stories.js +59 -0
- package/dist/components/avatar/index.styles.js +17 -0
- package/dist/components/avatar/index.test.js +10 -0
- package/dist/components/avatar/theme.js +13 -0
- package/dist/components/button/__snapshots__/index.test.js.snap +489 -0
- package/dist/components/button/index.js +209 -0
- package/dist/components/button/index.stories.js +304 -0
- package/dist/components/button/index.styles.js +104 -0
- package/dist/components/button/theme.js +58 -0
- package/dist/components/button/utils.js +12 -0
- package/dist/components/card/card-template/index.js +74 -0
- package/dist/components/card/card-template/index.stories.js +110 -0
- package/dist/components/card/card-template/index.style.js +25 -0
- package/dist/components/card/card-template/index.test.js +85 -0
- package/dist/components/card/event-card/constants.js +3 -0
- package/dist/components/card/event-card/event-card-label/index.js +24 -0
- package/dist/components/card/event-card/event-card-label/index.style.js +10 -0
- package/dist/components/card/event-card/event-card-label/index.test.js +23 -0
- package/dist/components/card/event-card/index.js +227 -0
- package/dist/components/card/event-card/index.stories.js +166 -0
- package/dist/components/card/event-card/index.style.js +129 -0
- package/dist/components/card/event-card/index.test.js +79 -0
- package/dist/components/card/index.js +16 -0
- package/dist/components/card/organization-card/index.js +59 -0
- package/dist/components/card/organization-card/index.stories.js +49 -0
- package/dist/components/card/organization-card/index.style.js +10 -0
- package/dist/components/card/organization-card/index.test.js +25 -0
- package/dist/components/card/orgnizer-card/buttons.js +48 -0
- package/dist/components/card/orgnizer-card/index.js +179 -0
- package/dist/components/card/orgnizer-card/index.stories.js +81 -0
- package/dist/components/card/orgnizer-card/index.style.js +58 -0
- package/dist/components/cover/index.js +74 -0
- package/dist/components/cover/index.style.js +48 -0
- package/dist/components/cover/index.test.js +25 -0
- package/dist/components/display/index.js +42 -0
- package/dist/components/display/index.style.js +79 -0
- package/dist/components/file-item/fileImgIcon.js +37 -0
- package/dist/components/file-item/fileImgsFont.js +800 -0
- package/dist/components/file-item/index.js +101 -0
- package/dist/components/file-item/index.stories.js +71 -0
- package/dist/components/file-item/index.style.js +31 -0
- package/dist/components/file-item/index.test.js +106 -0
- package/dist/components/file-item/theme.js +12 -0
- package/dist/components/file-item/utils.js +3 -0
- package/dist/components/form/captcha/index.js +86 -0
- package/dist/components/form/captcha/index.stories.js +42 -0
- package/dist/components/form/captcha/index.style.js +38 -0
- package/dist/components/form/captcha/index.test.js +31 -0
- package/dist/components/form/checkbox/checkbox-option.js +41 -0
- package/dist/components/form/checkbox/checkbox.js +54 -0
- package/dist/components/form/checkbox/index.js +10 -0
- package/dist/components/form/checkbox/index.stories.js +121 -0
- package/dist/components/form/checkbox/index.style.js +62 -0
- package/dist/components/form/dropdown/index.js +10 -0
- package/dist/components/form/dropdown/index.stories.js +119 -0
- package/dist/components/form/dropdown/index.style.js +57 -0
- package/dist/components/form/dropdown/index.test.js +20 -0
- package/dist/components/form/dropdown/option.js +22 -0
- package/dist/components/form/dropdown/select.js +68 -0
- package/dist/components/form/errorMsg.js +21 -0
- package/dist/components/form/index.js +22 -0
- package/dist/components/form/radio/index.js +10 -0
- package/dist/components/form/radio/index.stories.js +119 -0
- package/dist/components/form/radio/index.style.js +61 -0
- package/dist/components/form/radio/radio-option.js +45 -0
- package/dist/components/form/radio/radio.js +56 -0
- package/dist/components/form/text-input/index.js +92 -0
- package/dist/components/form/text-input/index.stories.js +77 -0
- package/dist/components/form/text-input/index.style.js +57 -0
- package/dist/components/form/text-input/index.test.js +63 -0
- package/dist/components/form/textarea/index.js +59 -0
- package/dist/components/form/textarea/index.stories.js +90 -0
- package/dist/components/form/textarea/index.style.js +25 -0
- package/dist/components/form/theme.js +16 -0
- package/dist/components/form-v7/captcha/index.js +101 -0
- package/dist/components/form-v7/captcha/index.stories.js +60 -0
- package/dist/components/form-v7/captcha/index.style.js +38 -0
- package/dist/components/form-v7/captcha/index.test.js +31 -0
- package/dist/components/form-v7/checkbox/checkbox-option.js +44 -0
- package/dist/components/form-v7/checkbox/checkbox.js +70 -0
- package/dist/components/form-v7/checkbox/index.js +10 -0
- package/dist/components/form-v7/checkbox/index.stories.js +113 -0
- package/dist/components/form-v7/checkbox/index.style.js +62 -0
- package/dist/components/form-v7/dropdown/index.js +10 -0
- package/dist/components/form-v7/dropdown/index.stories.js +130 -0
- package/dist/components/form-v7/dropdown/index.style.js +57 -0
- package/dist/components/form-v7/dropdown/index.test.js +20 -0
- package/dist/components/form-v7/dropdown/option.js +18 -0
- package/dist/components/form-v7/dropdown/select.js +85 -0
- package/dist/components/form-v7/errorMsg.js +21 -0
- package/dist/components/form-v7/file-input/index.js +73 -0
- package/dist/components/form-v7/file-input/index.stories.js +73 -0
- package/dist/components/form-v7/file-input/index.style.js +62 -0
- package/dist/components/form-v7/file-input/index.test.js +63 -0
- package/dist/components/form-v7/form/index.stories.js +276 -0
- package/dist/components/form-v7/index.js +25 -0
- package/dist/components/form-v7/index.style.js +11 -0
- package/dist/components/form-v7/label/index.js +31 -0
- package/dist/components/form-v7/label/index.style.js +12 -0
- package/dist/components/form-v7/radio/index.js +10 -0
- package/dist/components/form-v7/radio/index.stories.js +117 -0
- package/dist/components/form-v7/radio/index.style.js +61 -0
- package/dist/components/form-v7/radio/radio-option.js +45 -0
- package/dist/components/form-v7/radio/radio.js +75 -0
- package/dist/components/form-v7/text-input/index.js +132 -0
- package/dist/components/form-v7/text-input/index.stories.js +96 -0
- package/dist/components/form-v7/text-input/index.style.js +49 -0
- package/dist/components/form-v7/text-input/index.test.js +63 -0
- package/dist/components/form-v7/textarea/index.js +71 -0
- package/dist/components/form-v7/textarea/index.stories.js +91 -0
- package/dist/components/form-v7/textarea/index.style.js +25 -0
- package/dist/components/form-v7/theme.js +20 -0
- package/dist/components/globalStyle.js +28 -0
- package/dist/components/grid/index.js +83 -0
- package/dist/components/icon/iconFont.js +806 -0
- package/dist/components/icon/index.js +116 -0
- package/dist/components/icon/index.stories.js +45 -0
- package/dist/components/icon/index.styles.js +12 -0
- package/dist/components/icon/index.test.js +66 -0
- package/dist/components/icon/theme.js +23 -0
- package/dist/components/index.js +75 -0
- package/dist/components/modal/index.js +100 -0
- package/dist/components/modal/index.stories.js +86 -0
- package/dist/components/modal/index.style.js +40 -0
- package/dist/components/modal/theme.js +11 -0
- package/dist/components/numeric-summery-report/index.js +28 -0
- package/dist/components/numeric-summery-report/index.stories.js +37 -0
- package/dist/components/numeric-summery-report/index.style.js +16 -0
- package/dist/components/numeric-summery-report/index.test.js +22 -0
- package/dist/components/product-menu/index.js +10 -0
- package/dist/components/product-menu/index.stories.js +33 -0
- package/dist/components/product-menu/index.style.js +38 -0
- package/dist/components/product-menu/index.test.js +27 -0
- package/dist/components/product-menu/menu-item.js +23 -0
- package/dist/components/product-menu/menu.js +88 -0
- package/dist/components/product-menu/theme.js +16 -0
- package/dist/components/product-owner/index.js +85 -0
- package/dist/components/product-owner/index.style.js +16 -0
- package/dist/components/product-owner/index.test.js +75 -0
- package/dist/components/product-properties/index.js +65 -0
- package/dist/components/product-properties/index.stories.js +52 -0
- package/dist/components/product-properties/index.style.js +14 -0
- package/dist/components/product-properties/index.test.js +31 -0
- package/dist/components/product-properties/product-property/index.js +49 -0
- package/dist/components/product-properties/product-property/index.style.js +9 -0
- package/dist/components/progress-bar/index.js +46 -0
- package/dist/components/progress-bar/index.stories.js +33 -0
- package/dist/components/progress-bar/index.styles.js +65 -0
- package/dist/components/responsive/index.js +44 -0
- package/dist/components/show-date/index.js +25 -0
- package/dist/components/show-date/index.stories.js +51 -0
- package/dist/components/show-date/index.test.js +24 -0
- package/dist/components/spacing/core.js +106 -0
- package/dist/components/spacing/index.js +10 -0
- package/dist/components/spacing/margin/index.js +26 -0
- package/dist/components/spacing/padding/index.js +26 -0
- package/dist/components/storybook.css +54 -0
- package/dist/components/table/actionCell.js +57 -0
- package/dist/components/table/index.js +56 -0
- package/dist/components/table/index.stories.js +188 -0
- package/dist/components/table/index.style.js +107 -0
- package/dist/components/table/index.test.js +119 -0
- package/dist/components/table/tableHeaderRow.js +28 -0
- package/dist/components/table/tableRow.js +60 -0
- package/dist/components/table/theme.js +8 -0
- package/dist/components/tabs/index.js +10 -0
- package/dist/components/tabs/index.stories.js +61 -0
- package/dist/components/tabs/index.style.js +35 -0
- package/dist/components/tabs/index.test.js +30 -0
- package/dist/components/tabs/tabPanel.js +17 -0
- package/dist/components/tabs/tabs.js +71 -0
- package/dist/components/tabs/theme.js +10 -0
- package/dist/components/themes.js +97 -0
- package/dist/components/titled-avatar/index.js +48 -0
- package/dist/components/titled-avatar/index.stories.js +52 -0
- package/dist/components/titled-avatar/index.style.js +30 -0
- package/dist/components/titled-avatar/index.test.js +25 -0
- package/dist/components/typography/heading/index.js +59 -0
- package/dist/components/typography/heading/index.stories.js +94 -0
- package/dist/components/typography/heading/index.styles.js +69 -0
- package/dist/components/typography/heading/index.test.js +122 -0
- package/dist/components/typography/index.js +16 -0
- package/dist/components/typography/link/index.js +82 -0
- package/dist/components/typography/link/index.stories.js +70 -0
- package/dist/components/typography/link/index.styles.js +8 -0
- package/dist/components/typography/link/index.test.js +60 -0
- package/dist/components/typography/paragraph/index.js +37 -0
- package/dist/components/typography/paragraph/index.stories.js +56 -0
- package/dist/components/typography/paragraph/index.styles.js +12 -0
- package/dist/components/typography/paragraph/index.test.js +47 -0
- package/dist/components/typography/text/index.js +156 -0
- package/dist/components/typography/text/index.stories.js +196 -0
- package/dist/components/typography/text/index.styles.js +73 -0
- package/dist/components/typography/text/index.test.js +333 -0
- package/dist/components/typography/theme.js +66 -0
- package/dist/components/typography/utils.js +53 -0
- package/dist/components/typography/utils.test.js +188 -0
- package/dist/components/utils/date.js +7 -0
- package/dist/components/utils/date.test.js +15 -0
- package/dist/components/utils/detectMobile.js +15 -0
- package/dist/components/utils/index.js +7 -0
- package/dist/components/utils/media-query.js +12 -0
- package/dist/components/utils/numbers.js +25 -0
- package/dist/components/utils/test.js +6 -0
- package/dist/components/utils/theme.js +67 -0
- package/dist/docs/App.css +33 -0
- package/dist/docs/App.js +52 -0
- package/dist/docs/assets/ads-label.svg +13 -0
- package/dist/docs/assets/avatar-sample.jpeg +0 -0
- package/dist/docs/assets/cover-sample.png +0 -0
- package/dist/docs/assets/fonts/filesImgs.woff +0 -0
- package/dist/docs/assets/fonts/icomoon.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/dist/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/dist/docs/assets/fonts/wer6t7890- +0 -0
- package/dist/docs/assets/logo.svg +7 -0
- package/dist/docs/components/header/index.js +10 -0
- package/dist/docs/components/header/index.styles.js +10 -0
- package/dist/docs/components/side-navigation/index.js +167 -0
- package/dist/docs/components/side-navigation/index.styles.js +46 -0
- package/dist/docs/containers/avatar/index.js +92 -0
- package/dist/docs/containers/button/index.js +295 -0
- package/dist/docs/containers/card/index.js +153 -0
- package/dist/docs/containers/cover/index.js +77 -0
- package/dist/docs/containers/form/index.js +41 -0
- package/dist/docs/containers/home/index.js +41 -0
- package/dist/docs/containers/icon/index.js +56 -0
- package/dist/docs/containers/icons/index.js +1488 -0
- package/dist/docs/containers/product/index.js +123 -0
- package/dist/docs/containers/typography/index.js +138 -0
- package/dist/docs/globalStyle.js +58 -0
- package/dist/index.css +3 -0
- package/dist/index.js +18 -0
- package/dist/playground/index.js +144 -0
- package/dist/playground.css +26 -0
- package/dist/serviceWorker.js +135 -0
- package/dist/setupTests.js +24 -0
- package/dist/stories/Page.js +67 -0
- package/dist/storybook.css +58 -0
- package/dist/styles.css +3 -0
- package/dist/test-utils.js +21 -0
- package/doctor-storybook.log +25 -0
- package/migration-storybook.log +329 -0
- package/package.json +3 -5
- package/package.lib.json +47 -0
- package/postcss.config.js +6 -0
- package/public/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_light_web.woff2 +0 -0
- package/public/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/public/favicon.ico +0 -0
- package/public/index.html +43 -0
- package/public/logo.svg +1 -0
- package/public/logo142.svg +1 -0
- package/public/manifest.json +25 -0
- package/public/robots.txt +2 -0
- package/src/App.js +13 -0
- package/src/components/accordion/index.js +25 -0
- package/src/components/accordion/index.stories.js +82 -0
- package/src/components/accordion/index.styles.js +52 -0
- package/src/components/accordion/panel.js +41 -0
- package/src/components/avatar/index.js +41 -0
- package/src/components/avatar/index.stories.js +59 -0
- package/src/components/avatar/index.styles.js +17 -0
- package/src/components/avatar/index.test.js +10 -0
- package/src/components/avatar/theme.js +13 -0
- package/src/components/button/__snapshots__/index.test.js.snap +489 -0
- package/src/components/button/index.js +209 -0
- package/src/components/button/index.stories.js +304 -0
- package/src/components/button/index.styles.js +104 -0
- package/src/components/button/theme.js +60 -0
- package/src/components/button/utils.js +12 -0
- package/src/components/card/card-template/index.js +74 -0
- package/src/components/card/card-template/index.stories.js +110 -0
- package/src/components/card/card-template/index.style.js +25 -0
- package/src/components/card/card-template/index.test.js +85 -0
- package/src/components/card/event-card/constants.js +3 -0
- package/src/components/card/event-card/event-card-label/index.js +24 -0
- package/src/components/card/event-card/event-card-label/index.style.js +10 -0
- package/src/components/card/event-card/event-card-label/index.test.js +23 -0
- package/src/components/card/event-card/index.js +227 -0
- package/src/components/card/event-card/index.stories.js +166 -0
- package/src/components/card/event-card/index.style.js +129 -0
- package/src/components/card/event-card/index.test.js +79 -0
- package/src/components/card/index.js +16 -0
- package/src/components/card/organization-card/index.js +59 -0
- package/src/components/card/organization-card/index.stories.js +49 -0
- package/src/components/card/organization-card/index.style.js +10 -0
- package/src/components/card/organization-card/index.test.js +25 -0
- package/src/components/card/orgnizer-card/buttons.js +48 -0
- package/src/components/card/orgnizer-card/index.js +179 -0
- package/src/components/card/orgnizer-card/index.stories.js +81 -0
- package/src/components/card/orgnizer-card/index.style.js +58 -0
- package/src/components/cover/index.js +74 -0
- package/src/components/cover/index.style.js +48 -0
- package/src/components/cover/index.test.js +25 -0
- package/src/components/display/index.js +42 -0
- package/src/components/display/index.style.js +80 -0
- package/src/components/file-item/fileImgIcon.js +37 -0
- package/src/components/file-item/fileImgsFont.js +800 -0
- package/src/components/file-item/index.js +101 -0
- package/src/components/file-item/index.stories.js +71 -0
- package/src/components/file-item/index.style.js +31 -0
- package/src/components/file-item/index.test.js +106 -0
- package/src/components/file-item/theme.js +12 -0
- package/src/components/file-item/utils.js +3 -0
- package/src/components/form/captcha/index.js +86 -0
- package/src/components/form/captcha/index.stories.js +42 -0
- package/src/components/form/captcha/index.style.js +38 -0
- package/src/components/form/captcha/index.test.js +31 -0
- package/src/components/form/checkbox/checkbox-option.js +41 -0
- package/src/components/form/checkbox/checkbox.js +54 -0
- package/src/components/form/checkbox/index.js +10 -0
- package/src/components/form/checkbox/index.stories.js +121 -0
- package/src/components/form/checkbox/index.style.js +62 -0
- package/src/components/form/dropdown/index.js +10 -0
- package/src/components/form/dropdown/index.stories.js +119 -0
- package/src/components/form/dropdown/index.style.js +57 -0
- package/src/components/form/dropdown/index.test.js +20 -0
- package/src/components/form/dropdown/option.js +22 -0
- package/src/components/form/dropdown/select.js +68 -0
- package/src/components/form/errorMsg.js +21 -0
- package/src/components/form/index.js +22 -0
- package/src/components/form/radio/index.js +10 -0
- package/src/components/form/radio/index.stories.js +119 -0
- package/src/components/form/radio/index.style.js +61 -0
- package/src/components/form/radio/radio-option.js +45 -0
- package/src/components/form/radio/radio.js +56 -0
- package/src/components/form/text-input/index.js +92 -0
- package/src/components/form/text-input/index.stories.js +77 -0
- package/src/components/form/text-input/index.style.js +57 -0
- package/src/components/form/text-input/index.test.js +63 -0
- package/src/components/form/textarea/index.js +59 -0
- package/src/components/form/textarea/index.stories.js +90 -0
- package/src/components/form/textarea/index.style.js +25 -0
- package/src/components/form/theme.js +16 -0
- package/src/components/form-v7/captcha/index.js +101 -0
- package/src/components/form-v7/captcha/index.stories.js +60 -0
- package/src/components/form-v7/captcha/index.style.js +38 -0
- package/src/components/form-v7/captcha/index.test.js +31 -0
- package/src/components/form-v7/checkbox/checkbox-option.js +44 -0
- package/src/components/form-v7/checkbox/checkbox.js +70 -0
- package/src/components/form-v7/checkbox/index.js +10 -0
- package/src/components/form-v7/checkbox/index.stories.js +113 -0
- package/src/components/form-v7/checkbox/index.style.js +62 -0
- package/src/components/form-v7/dropdown/index.js +10 -0
- package/src/components/form-v7/dropdown/index.stories.js +130 -0
- package/src/components/form-v7/dropdown/index.style.js +57 -0
- package/src/components/form-v7/dropdown/index.test.js +20 -0
- package/src/components/form-v7/dropdown/option.js +18 -0
- package/src/components/form-v7/dropdown/select.js +85 -0
- package/src/components/form-v7/errorMsg.js +21 -0
- package/src/components/form-v7/file-input/index.js +73 -0
- package/src/components/form-v7/file-input/index.stories.js +73 -0
- package/src/components/form-v7/file-input/index.style.js +62 -0
- package/src/components/form-v7/file-input/index.test.js +63 -0
- package/src/components/form-v7/form/index.stories.js +276 -0
- package/src/components/form-v7/index.js +25 -0
- package/src/components/form-v7/index.style.js +11 -0
- package/src/components/form-v7/label/index.js +31 -0
- package/src/components/form-v7/label/index.style.js +12 -0
- package/src/components/form-v7/radio/index.js +10 -0
- package/src/components/form-v7/radio/index.stories.js +117 -0
- package/src/components/form-v7/radio/index.style.js +61 -0
- package/src/components/form-v7/radio/radio-option.js +45 -0
- package/src/components/form-v7/radio/radio.js +75 -0
- package/src/components/form-v7/text-input/index.js +132 -0
- package/src/components/form-v7/text-input/index.stories.js +96 -0
- package/src/components/form-v7/text-input/index.style.js +49 -0
- package/src/components/form-v7/text-input/index.test.js +63 -0
- package/src/components/form-v7/textarea/index.js +71 -0
- package/src/components/form-v7/textarea/index.stories.js +91 -0
- package/src/components/form-v7/textarea/index.style.js +25 -0
- package/src/components/form-v7/theme.js +20 -0
- package/src/components/globalStyle.js +28 -0
- package/src/components/grid/index.js +83 -0
- package/src/components/icon/iconFont.js +806 -0
- package/src/components/icon/index.js +116 -0
- package/src/components/icon/index.stories.js +45 -0
- package/src/components/icon/index.styles.js +12 -0
- package/src/components/icon/index.test.js +66 -0
- package/src/components/icon/theme.js +23 -0
- package/src/components/index.js +75 -0
- package/src/components/modal/index.js +100 -0
- package/src/components/modal/index.stories.js +86 -0
- package/src/components/modal/index.style.js +40 -0
- package/src/components/modal/theme.js +11 -0
- package/src/components/numeric-summery-report/index.js +28 -0
- package/src/components/numeric-summery-report/index.stories.js +37 -0
- package/src/components/numeric-summery-report/index.style.js +16 -0
- package/src/components/numeric-summery-report/index.test.js +22 -0
- package/src/components/product-menu/index.js +10 -0
- package/src/components/product-menu/index.stories.js +33 -0
- package/src/components/product-menu/index.style.js +38 -0
- package/src/components/product-menu/index.test.js +27 -0
- package/src/components/product-menu/menu-item.js +23 -0
- package/src/components/product-menu/menu.js +88 -0
- package/src/components/product-menu/theme.js +16 -0
- package/src/components/product-owner/index.js +85 -0
- package/src/components/product-owner/index.style.js +16 -0
- package/src/components/product-owner/index.test.js +75 -0
- package/src/components/product-properties/index.js +65 -0
- package/src/components/product-properties/index.stories.js +52 -0
- package/src/components/product-properties/index.style.js +14 -0
- package/src/components/product-properties/index.test.js +31 -0
- package/src/components/product-properties/product-property/index.js +49 -0
- package/src/components/product-properties/product-property/index.style.js +9 -0
- package/src/components/progress-bar/index.js +46 -0
- package/src/components/progress-bar/index.stories.js +33 -0
- package/src/components/progress-bar/index.styles.js +65 -0
- package/src/components/responsive/index.js +44 -0
- package/src/components/show-date/index.js +25 -0
- package/src/components/show-date/index.stories.js +51 -0
- package/src/components/show-date/index.style.js +1 -0
- package/src/components/show-date/index.test.js +24 -0
- package/src/components/spacing/core.js +106 -0
- package/src/components/spacing/index.js +10 -0
- package/src/components/spacing/margin/index.js +26 -0
- package/src/components/spacing/padding/index.js +26 -0
- package/src/components/storybook.css +54 -0
- package/src/components/table/actionCell.js +57 -0
- package/src/components/table/index.js +56 -0
- package/src/components/table/index.stories.js +188 -0
- package/src/components/table/index.style.js +107 -0
- package/src/components/table/index.test.js +119 -0
- package/src/components/table/tableHeaderRow.js +28 -0
- package/src/components/table/tableRow.js +60 -0
- package/src/components/table/theme.js +8 -0
- package/src/components/tabs/index.js +10 -0
- package/src/components/tabs/index.stories.js +61 -0
- package/src/components/tabs/index.style.js +35 -0
- package/src/components/tabs/index.test.js +30 -0
- package/src/components/tabs/tabPanel.js +17 -0
- package/src/components/tabs/tabs.js +71 -0
- package/src/components/tabs/theme.js +10 -0
- package/src/components/themes.js +97 -0
- package/src/components/titled-avatar/index.js +48 -0
- package/src/components/titled-avatar/index.stories.js +52 -0
- package/src/components/titled-avatar/index.style.js +30 -0
- package/src/components/titled-avatar/index.test.js +25 -0
- package/src/components/typography/heading/index.js +59 -0
- package/src/components/typography/heading/index.stories.js +94 -0
- package/src/components/typography/heading/index.styles.js +69 -0
- package/src/components/typography/heading/index.test.js +122 -0
- package/src/components/typography/index.js +16 -0
- package/src/components/typography/index.styles.js +1 -0
- package/src/components/typography/link/index.js +82 -0
- package/src/components/typography/link/index.stories.js +70 -0
- package/src/components/typography/link/index.styles.js +8 -0
- package/src/components/typography/link/index.test.js +60 -0
- package/src/components/typography/paragraph/index.js +37 -0
- package/src/components/typography/paragraph/index.stories.js +56 -0
- package/src/components/typography/paragraph/index.styles.js +12 -0
- package/src/components/typography/paragraph/index.test.js +47 -0
- package/src/components/typography/text/index.js +156 -0
- package/src/components/typography/text/index.stories.js +196 -0
- package/src/components/typography/text/index.styles.js +73 -0
- package/src/components/typography/text/index.test.js +333 -0
- package/src/components/typography/theme.js +66 -0
- package/src/components/typography/utils.js +53 -0
- package/src/components/typography/utils.test.js +188 -0
- package/src/components/utils/date.js +7 -0
- package/src/components/utils/date.test.js +15 -0
- package/src/components/utils/detectMobile.js +15 -0
- package/src/components/utils/index.js +7 -0
- package/src/components/utils/media-query.js +12 -0
- package/src/components/utils/numbers.js +25 -0
- package/src/components/utils/test.js +6 -0
- package/src/components/utils/theme.js +67 -0
- package/src/docs/App.css +33 -0
- package/src/docs/App.js +52 -0
- package/src/docs/assets/ads-label.svg +13 -0
- package/src/docs/assets/avatar-sample.jpeg +0 -0
- package/src/docs/assets/cover-sample.png +0 -0
- package/src/docs/assets/fonts/filesImgs.woff +0 -0
- package/src/docs/assets/fonts/icomoon.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_bold_web.woff2 +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff +0 -0
- package/src/docs/assets/fonts/iransharp_regular_web.woff2 +0 -0
- package/src/docs/assets/fonts/wer6t7890- +0 -0
- package/src/docs/assets/logo.svg +7 -0
- package/src/docs/components/header/index.js +10 -0
- package/src/docs/components/header/index.styles.js +10 -0
- package/src/docs/components/side-navigation/index.js +167 -0
- package/src/docs/components/side-navigation/index.styles.js +46 -0
- package/src/docs/containers/avatar/index.js +92 -0
- package/src/docs/containers/button/index.js +295 -0
- package/src/docs/containers/card/index.js +153 -0
- package/src/docs/containers/cover/index.js +77 -0
- package/src/docs/containers/form/index.js +41 -0
- package/src/docs/containers/home/index.js +41 -0
- package/src/docs/containers/icon/index.js +56 -0
- package/src/docs/containers/icons/index.js +1488 -0
- package/src/docs/containers/product/index.js +123 -0
- package/src/docs/containers/typography/index.js +138 -0
- package/src/docs/globalStyle.js +58 -0
- package/src/index.css +3 -0
- package/src/index.js +18 -0
- package/src/playground/index.js +144 -0
- package/src/playground.css +26 -0
- package/src/serviceWorker.js +135 -0
- package/src/setupTests.js +24 -0
- package/src/stories/Page.jsx +67 -0
- package/src/storybook.css +58 -0
- package/src/styles.css +3 -0
- package/src/test-utils.js +21 -0
- package/storybook.log +113 -0
- package/tailwind.config.js +26 -0
- package/update-stories.js +41 -0
- package/accordion/index.js +0 -25
- package/accordion/index.styles.js +0 -10
- package/accordion/panel.js +0 -41
- package/avatar/index.js +0 -41
- package/avatar/index.styles.js +0 -17
- package/avatar/theme.js +0 -13
- package/button/index.js +0 -116
- package/button/index.styles.js +0 -101
- package/button/theme.js +0 -34
- package/button/utils.js +0 -12
- package/card/card-template/index.js +0 -74
- package/card/card-template/index.stories.js +0 -70
- package/card/card-template/index.style.js +0 -25
- package/card/card-template/index.test.js +0 -85
- package/card/event-card/constants.js +0 -3
- package/card/event-card/event-card-label/index.js +0 -24
- package/card/event-card/event-card-label/index.style.js +0 -10
- package/card/event-card/event-card-label/index.test.js +0 -23
- package/card/event-card/index.js +0 -227
- package/card/event-card/index.stories.js +0 -155
- package/card/event-card/index.style.js +0 -119
- package/card/event-card/index.test.js +0 -79
- package/card/index.js +0 -16
- package/card/organization-card/index.js +0 -59
- package/card/organization-card/index.stories.js +0 -19
- package/card/organization-card/index.style.js +0 -10
- package/card/organization-card/index.test.js +0 -25
- package/card/orgnizer-card/buttons.js +0 -48
- package/card/orgnizer-card/index.js +0 -179
- package/card/orgnizer-card/index.stories.js +0 -25
- package/card/orgnizer-card/index.style.js +0 -47
- package/cover/index.js +0 -74
- package/cover/index.style.js +0 -41
- package/display/index.js +0 -42
- package/display/index.style.js +0 -78
- package/file-item/fileImgIcon.js +0 -37
- package/file-item/fileImgsFont.js +0 -800
- package/file-item/index.js +0 -101
- package/file-item/index.style.js +0 -30
- package/file-item/theme.js +0 -12
- package/file-item/utils.js +0 -3
- package/form/captcha/index.js +0 -86
- package/form/captcha/index.stories.js +0 -23
- package/form/captcha/index.style.js +0 -36
- package/form/captcha/index.test.js +0 -31
- package/form/checkbox/checkbox-option.js +0 -41
- package/form/checkbox/checkbox.js +0 -54
- package/form/checkbox/index.js +0 -10
- package/form/checkbox/index.stories.js +0 -56
- package/form/checkbox/index.style.js +0 -40
- package/form/dropdown/index.js +0 -10
- package/form/dropdown/index.stories.js +0 -62
- package/form/dropdown/index.style.js +0 -55
- package/form/dropdown/index.test.js +0 -20
- package/form/dropdown/option.js +0 -22
- package/form/dropdown/select.js +0 -68
- package/form/errorMsg.js +0 -21
- package/form/index.js +0 -22
- package/form/radio/index.js +0 -10
- package/form/radio/index.stories.js +0 -56
- package/form/radio/index.style.js +0 -52
- package/form/radio/radio-option.js +0 -45
- package/form/radio/radio.js +0 -56
- package/form/text-input/index.js +0 -92
- package/form/text-input/index.stories.js +0 -26
- package/form/text-input/index.style.js +0 -55
- package/form/text-input/index.test.js +0 -63
- package/form/textarea/index.js +0 -59
- package/form/textarea/index.stories.js +0 -31
- package/form/textarea/index.style.js +0 -25
- package/form/theme.js +0 -16
- package/form-v7/captcha/index.js +0 -101
- package/form-v7/captcha/index.stories.js +0 -30
- package/form-v7/captcha/index.style.js +0 -36
- package/form-v7/captcha/index.test.js +0 -31
- package/form-v7/checkbox/checkbox-option.js +0 -42
- package/form-v7/checkbox/checkbox.js +0 -68
- package/form-v7/checkbox/index.js +0 -10
- package/form-v7/checkbox/index.stories.js +0 -80
- package/form-v7/checkbox/index.style.js +0 -40
- package/form-v7/dropdown/index.js +0 -10
- package/form-v7/dropdown/index.stories.js +0 -121
- package/form-v7/dropdown/index.style.js +0 -55
- package/form-v7/dropdown/index.test.js +0 -20
- package/form-v7/dropdown/option.js +0 -18
- package/form-v7/dropdown/select.js +0 -84
- package/form-v7/errorMsg.js +0 -21
- package/form-v7/file-input/index.js +0 -73
- package/form-v7/file-input/index.stories.js +0 -32
- package/form-v7/file-input/index.style.js +0 -54
- package/form-v7/file-input/index.test.js +0 -63
- package/form-v7/form/index.stories.js +0 -173
- package/form-v7/index.js +0 -25
- package/form-v7/index.style.js +0 -3
- package/form-v7/label/index.js +0 -31
- package/form-v7/label/index.style.js +0 -12
- package/form-v7/radio/index.js +0 -10
- package/form-v7/radio/index.stories.js +0 -82
- package/form-v7/radio/index.style.js +0 -52
- package/form-v7/radio/radio-option.js +0 -43
- package/form-v7/radio/radio.js +0 -73
- package/form-v7/text-input/index.js +0 -131
- package/form-v7/text-input/index.stories.js +0 -77
- package/form-v7/text-input/index.style.js +0 -41
- package/form-v7/text-input/index.test.js +0 -63
- package/form-v7/textarea/index.js +0 -70
- package/form-v7/textarea/index.stories.js +0 -45
- package/form-v7/textarea/index.style.js +0 -25
- package/form-v7/theme.js +0 -20
- package/globalStyle.js +0 -28
- package/icon/iconFont.js +0 -796
- package/icon/index.js +0 -52
- package/icon/index.styles.js +0 -12
- package/icon/theme.js +0 -23
- package/icons/index.js +0 -29
- package/icons/index.style.js +0 -30
- package/icons/theme.js +0 -12
- package/icons/utils.js +0 -672
- package/index.js +0 -75
- package/modal/index.js +0 -100
- package/modal/index.style.js +0 -40
- package/modal/theme.js +0 -11
- package/numeric-summery-report/index.js +0 -28
- package/numeric-summery-report/index.style.js +0 -11
- package/product-menu/index.js +0 -10
- package/product-menu/index.style.js +0 -37
- package/product-menu/menu-item.js +0 -23
- package/product-menu/menu.js +0 -88
- package/product-menu/theme.js +0 -12
- package/product-owner/index.js +0 -85
- package/product-owner/index.style.js +0 -10
- package/product-properties/index.js +0 -65
- package/product-properties/index.style.js +0 -11
- package/product-properties/product-property/index.js +0 -49
- package/product-properties/product-property/index.style.js +0 -9
- package/progress-bar/index.js +0 -46
- package/progress-bar/index.styles.js +0 -63
- package/responsive/index.js +0 -44
- package/show-date/index.js +0 -25
- package/spacing/core.js +0 -70
- package/spacing/index.js +0 -10
- package/spacing/margin/index.js +0 -26
- package/spacing/padding/index.js +0 -26
- package/table/actionCell.js +0 -57
- package/table/index.js +0 -56
- package/table/index.style.js +0 -106
- package/table/tableHeaderRow.js +0 -28
- package/table/tableRow.js +0 -60
- package/table/theme.js +0 -8
- package/tabs/index.js +0 -10
- package/tabs/index.style.js +0 -32
- package/tabs/tabPanel.js +0 -17
- package/tabs/tabs.js +0 -71
- package/tabs/theme.js +0 -10
- package/themes.js +0 -97
- package/titled-avatar/index.js +0 -48
- package/titled-avatar/index.style.js +0 -25
- package/typography/heading/index.js +0 -59
- package/typography/heading/index.stories.js +0 -41
- package/typography/heading/index.styles.js +0 -67
- package/typography/heading/index.test.js +0 -122
- package/typography/index.js +0 -16
- package/typography/link/index.js +0 -82
- package/typography/link/index.stories.js +0 -12
- package/typography/link/index.styles.js +0 -8
- package/typography/link/index.test.js +0 -60
- package/typography/paragraph/index.js +0 -37
- package/typography/paragraph/index.stories.js +0 -27
- package/typography/paragraph/index.styles.js +0 -12
- package/typography/paragraph/index.test.js +0 -47
- package/typography/text/index.js +0 -156
- package/typography/text/index.stories.js +0 -26
- package/typography/text/index.styles.js +0 -72
- package/typography/text/index.test.js +0 -333
- package/typography/theme.js +0 -66
- package/typography/utils.js +0 -53
- package/utils/date.js +0 -7
- package/utils/detectMobile.js +0 -15
- package/utils/index.js +0 -7
- package/utils/media-query.js +0 -12
- package/utils/numbers.js +0 -25
- package/utils/test.js +0 -6
- package/utils/theme.js +0 -67
- /package/{show-date → dist/components/show-date}/index.style.js +0 -0
- /package/{typography → dist/components/typography}/index.styles.js +0 -0
|
@@ -1,800 +0,0 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _templateObject,_styledComponents=require("styled-components");function _taggedTemplateLiteral(a,b){return b||(b=a.slice(0)),Object.freeze(Object.defineProperties(a,{raw:{value:Object.freeze(b)}}))}
|
|
2
|
-
|
|
3
|
-
const FontStyle=(0,_styledComponents.createGlobalStyle)(_templateObject||(_templateObject=_taggedTemplateLiteral(["\n span.jupiter-file-font {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: 'JupiterfilesImgs' !important;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n\n .icon-doc .path1:before {\n content: \"\\e900\";\n color: rgb(59, 65, 65);\n }\n .icon-doc .path2:before {\n content: \"\\e901\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path3:before {\n content: \"\\e902\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path4:before {\n content: \"\\e903\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-doc .path5:before {\n content: \"\\e904\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path6:before {\n content: \"\\e905\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path7:before {\n content: \"\\e906\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path8:before {\n content: \"\\e907\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc-light .path1:before {\n content: \"\\e908\";\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path2:before {\n content: \"\\e909\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path3:before {\n content: \"\\e90a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path4:before {\n content: \"\\e90b\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-doc-light .path5:before {\n content: \"\\e90c\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path6:before {\n content: \"\\e90d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path7:before {\n content: \"\\e90e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path8:before {\n content: \"\\e90f\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg .path1:before {\n content: \"\\e910\";\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path2:before {\n content: \"\\e911\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path3:before {\n content: \"\\e912\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path4:before {\n content: \"\\e913\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-jpg .path5:before {\n content: \"\\e914\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path6:before {\n content: \"\\e915\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg-light .path1:before {\n content: \"\\e916\";\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path2:before {\n content: \"\\e917\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path3:before {\n content: \"\\e918\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path4:before {\n content: \"\\e919\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-jpg-light .path5:before {\n content: \"\\e91a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path6:before {\n content: \"\\e91b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3 .path1:before {\n content: \"\\e91c\";\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path2:before {\n content: \"\\e91d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path3:before {\n content: \"\\e91e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path4:before {\n content: \"\\e91f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path5:before {\n content: \"\\e920\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp3-light .path1:before {\n content: \"\\e921\";\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path2:before {\n content: \"\\e922\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path3:before {\n content: \"\\e923\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path4:before {\n content: \"\\e924\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path5:before {\n content: \"\\e925\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp4 .path1:before {\n content: \"\\e926\";\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path2:before {\n content: \"\\e927\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path3:before {\n content: \"\\e928\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path4:before {\n content: \"\\e929\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp4 .path5:before {\n content: \"\\e92a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path6:before {\n content: \"\\e92b\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4-light .path1:before {\n content: \"\\e92c\";\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path2:before {\n content: \"\\e92d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path3:before {\n content: \"\\e92e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path4:before {\n content: \"\\e92f\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp4-light .path5:before {\n content: \"\\e930\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path6:before {\n content: \"\\e931\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pdf .path1:before {\n content: \"\\e932\";\n color: rgb(59, 65, 65);\n }\n .icon-pdf .path2:before {\n content: \"\\e933\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pdf .path3:before {\n content: \"\\e934\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pdf .path4:before {\n content: \"\\e935\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pdf .path5:before {\n content: \"\\e936\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pdf-light .path1:before {\n content: \"\\e937\";\n color: rgb(210, 210, 210);\n }\n .icon-pdf-light .path2:before {\n content: \"\\e938\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pdf-light .path3:before {\n content: \"\\e939\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pdf-light .path4:before {\n content: \"\\e93a\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pdf-light .path5:before {\n content: \"\\e93b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-png .path1:before {\n content: \"\\e93c\";\n color: rgb(59, 65, 65);\n }\n .icon-png .path2:before {\n content: \"\\e93d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-png .path3:before {\n content: \"\\e93e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-png .path4:before {\n content: \"\\e93f\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-png .path5:before {\n content: \"\\e940\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-png-light .path1:before {\n content: \"\\e941\";\n color: rgb(210, 210, 210);\n }\n .icon-png-light .path2:before {\n content: \"\\e942\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-png-light .path3:before {\n content: \"\\e943\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-png-light .path4:before {\n content: \"\\e944\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-png-light .path5:before {\n content: \"\\e945\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx .path1:before {\n content: \"\\e946\";\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path2:before {\n content: \"\\e947\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path3:before {\n content: \"\\e948\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path4:before {\n content: \"\\e949\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pptx .path5:before {\n content: \"\\e94a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path6:before {\n content: \"\\e94b\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path7:before {\n content: \"\\e94c\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path8:before {\n content: \"\\e94d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path9:before {\n content: \"\\e94e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path10:before {\n content: \"\\e94f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path11:before {\n content: \"\\e950\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path12:before {\n content: \"\\e951\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path13:before {\n content: \"\\e952\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx-light .path1:before {\n content: \"\\e953\";\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path2:before {\n content: \"\\e954\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path3:before {\n content: \"\\e955\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path4:before {\n content: \"\\e956\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pptx-light .path5:before {\n content: \"\\e957\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path6:before {\n content: \"\\e958\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path7:before {\n content: \"\\e959\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path8:before {\n content: \"\\e95a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path9:before {\n content: \"\\e95b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path10:before {\n content: \"\\e95c\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path11:before {\n content: \"\\e95d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path12:before {\n content: \"\\e95e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path13:before {\n content: \"\\e95f\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar .path1:before {\n content: \"\\e960\";\n color: rgb(59, 65, 65);\n }\n .icon-rar .path2:before {\n content: \"\\e961\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path3:before {\n content: \"\\e962\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path4:before {\n content: \"\\e963\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-rar .path5:before {\n content: \"\\e964\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path6:before {\n content: \"\\e965\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path7:before {\n content: \"\\e966\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path8:before {\n content: \"\\e967\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path9:before {\n content: \"\\e968\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path10:before {\n content: \"\\e969\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path11:before {\n content: \"\\e96a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path12:before {\n content: \"\\e96b\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar-light .path1:before {\n content: \"\\e96c\";\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path2:before {\n content: \"\\e96d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path3:before {\n content: \"\\e96e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path4:before {\n content: \"\\e96f\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-rar-light .path5:before {\n content: \"\\e970\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path6:before {\n content: \"\\e971\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path7:before {\n content: \"\\e972\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path8:before {\n content: \"\\e973\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path9:before {\n content: \"\\e974\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path10:before {\n content: \"\\e975\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path11:before {\n content: \"\\e976\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path12:before {\n content: \"\\e977\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx .path1:before {\n content: \"\\e978\";\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path2:before {\n content: \"\\e979\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path3:before {\n content: \"\\e97a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path4:before {\n content: \"\\e97b\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-xlsx .path5:before {\n content: \"\\e97c\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path6:before {\n content: \"\\e97d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path7:before {\n content: \"\\e97e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path8:before {\n content: \"\\e97f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx-light .path1:before {\n content: \"\\e980\";\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path2:before {\n content: \"\\e981\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path3:before {\n content: \"\\e982\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path4:before {\n content: \"\\e983\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-xlsx-light .path5:before {\n content: \"\\e984\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path6:before {\n content: \"\\e985\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path7:before {\n content: \"\\e986\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path8:before {\n content: \"\\e987\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip .path1:before {\n content: \"\\e988\";\n color: rgb(59, 65, 65);\n }\n .icon-zip .path2:before {\n content: \"\\e989\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path3:before {\n content: \"\\e98a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path4:before {\n content: \"\\e98b\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-zip .path5:before {\n content: \"\\e98c\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path6:before {\n content: \"\\e98d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path7:before {\n content: \"\\e98e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path8:before {\n content: \"\\e98f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path9:before {\n content: \"\\e990\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path10:before {\n content: \"\\e991\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path11:before {\n content: \"\\e992\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path12:before {\n content: \"\\e993\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip-light .path1:before {\n content: \"\\e994\";\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path2:before {\n content: \"\\e995\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path3:before {\n content: \"\\e996\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path4:before {\n content: \"\\e997\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-zip-light .path5:before {\n content: \"\\e998\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path6:before {\n content: \"\\e999\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path7:before {\n content: \"\\e99a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path8:before {\n content: \"\\e99b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path9:before {\n content: \"\\e99c\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path10:before {\n content: \"\\e99d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path11:before {\n content: \"\\e99e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path12:before {\n content: \"\\e99f\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n"],["\n span.jupiter-file-font {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: 'JupiterfilesImgs' !important;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n }\n\n .icon-doc .path1:before {\n content: \"\\\\e900\";\n color: rgb(59, 65, 65);\n }\n .icon-doc .path2:before {\n content: \"\\\\e901\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path3:before {\n content: \"\\\\e902\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path4:before {\n content: \"\\\\e903\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-doc .path5:before {\n content: \"\\\\e904\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path6:before {\n content: \"\\\\e905\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path7:before {\n content: \"\\\\e906\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc .path8:before {\n content: \"\\\\e907\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-doc-light .path1:before {\n content: \"\\\\e908\";\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path2:before {\n content: \"\\\\e909\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path3:before {\n content: \"\\\\e90a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path4:before {\n content: \"\\\\e90b\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-doc-light .path5:before {\n content: \"\\\\e90c\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path6:before {\n content: \"\\\\e90d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path7:before {\n content: \"\\\\e90e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-doc-light .path8:before {\n content: \"\\\\e90f\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg .path1:before {\n content: \"\\\\e910\";\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path2:before {\n content: \"\\\\e911\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path3:before {\n content: \"\\\\e912\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path4:before {\n content: \"\\\\e913\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-jpg .path5:before {\n content: \"\\\\e914\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg .path6:before {\n content: \"\\\\e915\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-jpg-light .path1:before {\n content: \"\\\\e916\";\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path2:before {\n content: \"\\\\e917\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path3:before {\n content: \"\\\\e918\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path4:before {\n content: \"\\\\e919\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-jpg-light .path5:before {\n content: \"\\\\e91a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-jpg-light .path6:before {\n content: \"\\\\e91b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3 .path1:before {\n content: \"\\\\e91c\";\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path2:before {\n content: \"\\\\e91d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path3:before {\n content: \"\\\\e91e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path4:before {\n content: \"\\\\e91f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp3 .path5:before {\n content: \"\\\\e920\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp3-light .path1:before {\n content: \"\\\\e921\";\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path2:before {\n content: \"\\\\e922\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path3:before {\n content: \"\\\\e923\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path4:before {\n content: \"\\\\e924\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp3-light .path5:before {\n content: \"\\\\e925\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp4 .path1:before {\n content: \"\\\\e926\";\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path2:before {\n content: \"\\\\e927\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path3:before {\n content: \"\\\\e928\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path4:before {\n content: \"\\\\e929\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp4 .path5:before {\n content: \"\\\\e92a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4 .path6:before {\n content: \"\\\\e92b\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-mp4-light .path1:before {\n content: \"\\\\e92c\";\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path2:before {\n content: \"\\\\e92d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path3:before {\n content: \"\\\\e92e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path4:before {\n content: \"\\\\e92f\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-mp4-light .path5:before {\n content: \"\\\\e930\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-mp4-light .path6:before {\n content: \"\\\\e931\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pdf .path1:before {\n content: \"\\\\e932\";\n color: rgb(59, 65, 65);\n }\n .icon-pdf .path2:before {\n content: \"\\\\e933\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pdf .path3:before {\n content: \"\\\\e934\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pdf .path4:before {\n content: \"\\\\e935\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pdf .path5:before {\n content: \"\\\\e936\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pdf-light .path1:before {\n content: \"\\\\e937\";\n color: rgb(210, 210, 210);\n }\n .icon-pdf-light .path2:before {\n content: \"\\\\e938\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pdf-light .path3:before {\n content: \"\\\\e939\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pdf-light .path4:before {\n content: \"\\\\e93a\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pdf-light .path5:before {\n content: \"\\\\e93b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-png .path1:before {\n content: \"\\\\e93c\";\n color: rgb(59, 65, 65);\n }\n .icon-png .path2:before {\n content: \"\\\\e93d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-png .path3:before {\n content: \"\\\\e93e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-png .path4:before {\n content: \"\\\\e93f\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-png .path5:before {\n content: \"\\\\e940\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-png-light .path1:before {\n content: \"\\\\e941\";\n color: rgb(210, 210, 210);\n }\n .icon-png-light .path2:before {\n content: \"\\\\e942\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-png-light .path3:before {\n content: \"\\\\e943\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-png-light .path4:before {\n content: \"\\\\e944\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-png-light .path5:before {\n content: \"\\\\e945\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx .path1:before {\n content: \"\\\\e946\";\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path2:before {\n content: \"\\\\e947\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path3:before {\n content: \"\\\\e948\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path4:before {\n content: \"\\\\e949\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pptx .path5:before {\n content: \"\\\\e94a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path6:before {\n content: \"\\\\e94b\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path7:before {\n content: \"\\\\e94c\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path8:before {\n content: \"\\\\e94d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path9:before {\n content: \"\\\\e94e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path10:before {\n content: \"\\\\e94f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path11:before {\n content: \"\\\\e950\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path12:before {\n content: \"\\\\e951\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx .path13:before {\n content: \"\\\\e952\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-pptx-light .path1:before {\n content: \"\\\\e953\";\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path2:before {\n content: \"\\\\e954\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path3:before {\n content: \"\\\\e955\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path4:before {\n content: \"\\\\e956\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-pptx-light .path5:before {\n content: \"\\\\e957\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path6:before {\n content: \"\\\\e958\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path7:before {\n content: \"\\\\e959\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path8:before {\n content: \"\\\\e95a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path9:before {\n content: \"\\\\e95b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path10:before {\n content: \"\\\\e95c\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path11:before {\n content: \"\\\\e95d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path12:before {\n content: \"\\\\e95e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-pptx-light .path13:before {\n content: \"\\\\e95f\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar .path1:before {\n content: \"\\\\e960\";\n color: rgb(59, 65, 65);\n }\n .icon-rar .path2:before {\n content: \"\\\\e961\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path3:before {\n content: \"\\\\e962\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path4:before {\n content: \"\\\\e963\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-rar .path5:before {\n content: \"\\\\e964\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path6:before {\n content: \"\\\\e965\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path7:before {\n content: \"\\\\e966\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path8:before {\n content: \"\\\\e967\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path9:before {\n content: \"\\\\e968\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path10:before {\n content: \"\\\\e969\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path11:before {\n content: \"\\\\e96a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar .path12:before {\n content: \"\\\\e96b\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-rar-light .path1:before {\n content: \"\\\\e96c\";\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path2:before {\n content: \"\\\\e96d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path3:before {\n content: \"\\\\e96e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path4:before {\n content: \"\\\\e96f\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-rar-light .path5:before {\n content: \"\\\\e970\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path6:before {\n content: \"\\\\e971\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path7:before {\n content: \"\\\\e972\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path8:before {\n content: \"\\\\e973\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path9:before {\n content: \"\\\\e974\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path10:before {\n content: \"\\\\e975\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path11:before {\n content: \"\\\\e976\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-rar-light .path12:before {\n content: \"\\\\e977\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx .path1:before {\n content: \"\\\\e978\";\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path2:before {\n content: \"\\\\e979\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path3:before {\n content: \"\\\\e97a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path4:before {\n content: \"\\\\e97b\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-xlsx .path5:before {\n content: \"\\\\e97c\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path6:before {\n content: \"\\\\e97d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path7:before {\n content: \"\\\\e97e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx .path8:before {\n content: \"\\\\e97f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-xlsx-light .path1:before {\n content: \"\\\\e980\";\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path2:before {\n content: \"\\\\e981\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path3:before {\n content: \"\\\\e982\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path4:before {\n content: \"\\\\e983\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-xlsx-light .path5:before {\n content: \"\\\\e984\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path6:before {\n content: \"\\\\e985\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path7:before {\n content: \"\\\\e986\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-xlsx-light .path8:before {\n content: \"\\\\e987\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip .path1:before {\n content: \"\\\\e988\";\n color: rgb(59, 65, 65);\n }\n .icon-zip .path2:before {\n content: \"\\\\e989\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path3:before {\n content: \"\\\\e98a\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path4:before {\n content: \"\\\\e98b\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-zip .path5:before {\n content: \"\\\\e98c\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path6:before {\n content: \"\\\\e98d\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path7:before {\n content: \"\\\\e98e\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path8:before {\n content: \"\\\\e98f\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path9:before {\n content: \"\\\\e990\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path10:before {\n content: \"\\\\e991\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path11:before {\n content: \"\\\\e992\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip .path12:before {\n content: \"\\\\e993\";\n margin-left: -0.7509765625em;\n color: rgb(59, 65, 65);\n }\n .icon-zip-light .path1:before {\n content: \"\\\\e994\";\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path2:before {\n content: \"\\\\e995\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path3:before {\n content: \"\\\\e996\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path4:before {\n content: \"\\\\e997\";\n margin-left: -0.7509765625em;\n color: rgb(254, 254, 254);\n }\n .icon-zip-light .path5:before {\n content: \"\\\\e998\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path6:before {\n content: \"\\\\e999\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path7:before {\n content: \"\\\\e99a\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path8:before {\n content: \"\\\\e99b\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path9:before {\n content: \"\\\\e99c\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path10:before {\n content: \"\\\\e99d\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path11:before {\n content: \"\\\\e99e\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n .icon-zip-light .path12:before {\n content: \"\\\\e99f\";\n margin-left: -0.7509765625em;\n color: rgb(210, 210, 210);\n }\n"])));var _default=exports.default=
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
FontStyle;
|