supernav-test 2.2.17 → 2.2.18
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/App.css +38 -0
- package/dist/App.test.js +8 -6
- package/dist/LsacContainer.js +25 -10
- package/dist/components/lsac-supernavbar/AuthWrapper.js +92 -44
- package/dist/components/lsac-supernavbar/LsacSidebar.js +40 -27
- package/dist/components/lsac-supernavbar/Store.js +20 -10
- package/dist/components/lsac-supernavbar/actions/AuthActions.js +23 -16
- package/dist/components/lsac-supernavbar/actions/SidebarActions.js +75 -61
- package/dist/components/lsac-supernavbar/components/Sidebar.js +308 -184
- package/dist/components/lsac-supernavbar/components/SidebarForm.js +18 -5
- package/dist/components/lsac-supernavbar/components/SidebarMainLink.js +118 -54
- package/dist/components/lsac-supernavbar/components/SidebarOption.js +19 -5
- package/dist/components/lsac-supernavbar/components/SidebarSubMenu.js +147 -61
- package/dist/components/lsac-supernavbar/components/SidebarTab.js +65 -46
- package/dist/components/lsac-supernavbar/components/Topnav.js +160 -63
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.js +100 -53
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.js +16 -4
- package/dist/components/lsac-supernavbar/constants/SidebarConstants.js +13 -8
- package/dist/components/lsac-supernavbar/constants/UtilityConstants.js +24 -13
- package/dist/components/lsac-supernavbar/interfaces/Models.js +13 -8
- package/dist/components/lsac-supernavbar/interfaces/Redux.js +4 -1
- package/dist/components/lsac-supernavbar/reducers/AuthReducer.js +37 -15
- package/dist/components/lsac-supernavbar/reducers/RootReducer.js +17 -8
- package/dist/components/lsac-supernavbar/reducers/SidebarReducer.js +92 -45
- package/dist/components/lsac-supernavbar/resources/icomoon-library.json +1 -1
- package/dist/components/lsac-supernavbar/static/images/close-hamburger-icon.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/hamburger-icon.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/icon-user.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/saama_logo.png +0 -0
- package/dist/components/lsac-supernavbar/static/images/saama_logo.svg +26 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_down.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_left.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_right.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/caret_up.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/glyph1_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/management_icon.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/marketplace_icon.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/my_apps.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/rbqm-triangle.svg +31 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/rightIcon.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/space_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/triangle-exclamation.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A32_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A36_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$A1_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$E$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$F0_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$B_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$D_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E002_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E070_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E086_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E092_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$A_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$F_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B5_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$C8_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$C_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$F_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D5_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D6_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D9_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F$E_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$C_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$D_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$E_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$F_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E101_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E110_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E115_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E123_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E138_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E14$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E150_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E185_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E186_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E187_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A7_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A9_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$B7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$C$F_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$C_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$D_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$F$F_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E20$B_comprehend.svg +10 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E201_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E204_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E23$A_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E250_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E279_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E28$E_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E29$C_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A8_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$B3_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D3_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D4_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D7_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E301_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$A_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$E_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E36$E_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E362_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E37$A_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E370_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E2_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E4_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E5_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E7_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E418_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$E_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$F_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$A_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E430_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E431_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E445_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E465_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E475_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E481_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$A_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$B_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$C_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$D_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$E_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$F_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E600_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E601_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E602_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E603_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E604_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E605_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E606_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E607_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E608_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E609_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$A_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$C_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$F_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E610_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E611_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E612_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E613_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E614_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E615_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E616_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E617_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E618_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E619_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E620_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E621_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E622_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E623_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E624_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E625_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E626_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$A_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$B_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$C_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$D_comprehend.svg +14 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$E_comprehend.svg +10 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$F_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E900_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E901_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E902_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E903_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E904_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E905_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E907_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E908_comprehend.svg +16 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E909_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$A_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$C_comprehend.svg +9 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$E_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$F_comprehend.svg +16 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E910_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E911_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E912_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E913_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E914_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E915_comprehend.svg +8 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E917_comprehend.svg +34 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E918_comprehend.svg +7 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E919_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E920_comprehend.svg +11 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E921_comprehend.svg +12 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E93$D_comprehend.svg +13 -0
- package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni0001_comprehend.svg +6 -0
- package/dist/components/lsac-supernavbar/stylesheets/LsacSidebar.css +73 -0
- package/dist/components/lsac-supernavbar/stylesheets/font-face.scss +12 -0
- package/dist/components/lsac-supernavbar/stylesheets/font-sizer.scss +4 -0
- package/dist/components/lsac-supernavbar/stylesheets/fontIcons.css +540 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.eot +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.svg +3521 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.ttf +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff2 +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.eot +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.svg +190 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.ttf +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/fonts/comprehend.woff +0 -0
- package/dist/components/lsac-supernavbar/stylesheets/form.scss +16 -0
- package/dist/components/lsac-supernavbar/stylesheets/sidebar-main-link.scss +72 -0
- package/dist/components/lsac-supernavbar/stylesheets/sidebar.scss +222 -0
- package/dist/components/lsac-supernavbar/stylesheets/study-filter.scss +358 -0
- package/dist/components/lsac-supernavbar/stylesheets/topnav.scss +371 -0
- package/dist/components/lsac-supernavbar/test/App.test.js +25 -19
- package/dist/components/lsac-supernavbar/util/SubmenuUtil.js +200 -104
- package/dist/components/lsac-supernavbar/util/Util.js +49 -22
- package/dist/index.css +13 -0
- package/dist/index.js +17 -12
- package/dist/logo.svg +1 -0
- package/dist/react-app-env.d.js +2 -0
- package/dist/reportWebVitals.js +31 -30
- package/dist/setupTests.js +2 -6
- package/package.json +3 -2
- package/dist/caf68d0a64d31f733320266312e3a2ca.svg +0 -1
- package/dist/index.html +0 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 736l-525 -544l-499 550l96 90l403 -461l435 455z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 20 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 960v0v0v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1285 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 0h171v171h-171v-171zM386 0h171v171h-171v-171v0zM771 0h172v171h-172v-171zM0 386h171v171h-171v-171v0zM386 386h171v171h-171v-171v0zM0 771h171v172h-171v-172zM386 771h171v172h-171v-172v0zM1265 665q0 -21 -14.5 -35.5t-34.5 -14.5h-6q-24 0 -42.5 -13
|
|
6
|
+
t-27.5 -33v0v-2v-1v-2v-2v0q-2 -6 -3.5 -12.5t-1.5 -13.5q0 -16 6 -29.5t16 -24.5v0q8 -7 12.5 -16.5t4.5 -20.5v0v0v0q0 -11 -4 -19.5t-11 -15.5v0q-6 -7 -15 -11t-20 -4v0q-10 0 -19 4t-16 11v0q-10 11 -24 17t-31 7v0v0v0q-31 0 -53.5 -22.5t-22.5 -53.5v0v-1.5v-0.5
|
|
7
|
+
q0 -21 -15 -36t-35 -15h-1v0v0v0v0q-21 0 -35.5 14.5t-14.5 35.5v0v0v0v6q0 23 -13.5 41t-33.5 27v0h-2h-1h-2h-2v0q-6 2 -12.5 3.5t-14.5 1.5q-15 0 -28.5 -6t-23.5 -16v0q-7 -8 -17 -12t-21 -5v0q-21 1 -35.5 15.5t-14.5 34.5v0q1 11 5 20t10 16v0l3 3q10 10 15.5 23
|
|
8
|
+
t5.5 29q0 8 -1.5 16t-5.5 15v-1q-8 22 -26.5 35t-42.5 14v0h-0.5h-1.5q-21 0 -36 14.5t-15 35.5v0q0 21 14.5 35.5t35.5 14.5v0v0h6q15 0 28.5 5.5t24.5 15.5v0q10 10 16.5 24t6.5 30v0v0v1q0 15 -6 29t-16 24v0q-8 7 -12.5 16.5t-4.5 20.5v0v0v1q0 10 4 19t11 16v0
|
|
9
|
+
q7 6 16 10t19 4v0v0v0q11 0 20 -3.5t16 -10.5v0q10 -11 24.5 -17.5t30.5 -6.5v0q32 1 54.5 22.5t24.5 52.5v0v1.5v1.5q0 21 14.5 35.5t34.5 14.5v0q21 0 35.5 -14.5t14.5 -34.5v0v-6q0 -15 6 -28.5t16 -24.5v0q10 -10 24.5 -16.5t30.5 -6.5q15 0 28.5 5.5t23.5 15.5v0
|
|
10
|
+
q7 8 16.5 12t20.5 4q20 0 35 -14.5t15 -35.5q0 -10 -4 -18.5t-10 -15.5v0q-11 -10 -17 -24t-6 -31v0v0v0q0 -31 22 -53.5t53 -22.5v0h1.5h1.5q20 0 34.5 -14t15.5 -33v0v0zM907 772q-42 0 -71.5 -30t-29.5 -72t29.5 -71.5t71.5 -29.5v0q43 0 72.5 29.5t29.5 71.5t-29.5 72
|
|
11
|
+
t-72.5 30v0z" />
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1007 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M878 969q22 0 38.5 -16t16.5 -39v0v-622q0 -23 -16.5 -39t-38.5 -16v0h-175l-14 -34q-14 -33 -34.5 -60.5t-47.5 -48.5v0q-23 -19 -52 -29.5t-61 -10.5q-33 0 -62 10.5t-52 29.5v0q-27 21 -47.5 48.5t-33.5 59.5l-1 1l-13 34h-175q-23 0 -39 16t-16 39v0v622q0 23 16 39
|
|
6
|
+
t39 16v0h768v0zM878 1024h-768q-46 0 -78 -32.5t-32 -77.5v0v-622q0 -45 32 -77.5t78 -32.5v0h138q14 -38 38 -71t56 -57t70 -38q39 -14 81 -16h1q40 0 77 13t69 37t57 58q26 33 42 74h139q45 0 77 32.5t32 77.5v0v622v0v0q0 46 -32 78t-77 32v0v0v0v0zM878 1024h-768
|
|
7
|
+
q-46 0 -78 -32t-32 -78v0v-621q0 -46 32 -78t78 -32v0h768q45 0 77 32t32 78v0v621q0 46 -32 78t-77 32v0v0zM110 238q-23 0 -39 16t-16 39v0v621q0 23 16 39t39 16v0h768q22 0 38.5 -16t16.5 -39v0v-621q0 -23 -16.5 -39t-38.5 -16v0h-768zM256 585h73v73h-73v-73zM457 585
|
|
8
|
+
h73v73h-73v-73v0zM256 768h73v73h-73v-73zM457 768h73v73h-73v-73v0zM256 402h73v73h-73v-73v0zM457 402h73v73h-73v-73v0zM658 402h73v73h-73v-73v0zM658 585h73v73h-73v-73zM658 768h73v73h-73v-73z" />
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1171 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 0h168v168h-168v-168zM377 0h167v168h-167v-168v0zM754 0h167v168h-167v-168zM0 377h168v167h-168v-167zM377 377h167v167h-167v-167v0zM0 754h168v167h-168v-167zM377 754h167v167h-167v-167v0zM859 264v0v0v0q52 0 88.5 36.5t36.5 88.5v2v2v0v68v1v2q0 52 -36.5 89
|
|
6
|
+
t-88.5 37v0v0v0v0v0q-53 0 -89.5 -37t-36.5 -89v-2v-1v0v-67v-2v-3q0 -52 36.5 -88.5t88.5 -36.5h1v0v0v0zM875 1024q-51 0 -100 -8q-49 -7 -87.5 -22.5t-62.5 -37.5t-25 -51v-16v-16q0 -4 -0.5 -9t-0.5 -10q0 -35 12 -67.5t34 -57.5v0q20 -29 52 -47t71 -18h1h1v0
|
|
7
|
+
q3 0 6 -0.5t7 -0.5q3 0 6 0.5t6 0.5v0h7l73 8l74 -8h7q3 0 6 -0.5t6 -0.5t6.5 0.5t6.5 0.5h-1h1.5h1.5q38 0 70 17.5t53 47.5v0q21 25 33 57t12 68v10t-1 10v-1v16v16q0 29 -24 51q-23 23 -60.5 38t-85.5 22q-48 8 -98 8h-7z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
|
5
|
+
width="1280.000000pt" height="1126.000000pt" viewBox="0 0 1280.000000 1126.000000"
|
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
|
7
|
+
<metadata>
|
|
8
|
+
Created by potrace 1.15, written by Peter Selinger 2001-2017
|
|
9
|
+
</metadata>
|
|
10
|
+
<g transform="translate(0.000000,1126.000000) scale(0.100000,-0.100000)"
|
|
11
|
+
fill="#000000" stroke="none">
|
|
12
|
+
<path d="M6201 11240 c-41 -10 -113 -37 -160 -61 -70 -35 -105 -62 -187 -144
|
|
13
|
+
-61 -60 -124 -134 -157 -185 -85 -132 -681 -1182 -2962 -5215 -793 -1402
|
|
14
|
+
-1714 -3032 -2047 -3620 -333 -589 -617 -1098 -631 -1131 -79 -187 -72 -394
|
|
15
|
+
19 -559 15 -28 64 -86 108 -130 91 -90 177 -139 306 -175 l76 -20 5879 2 5880
|
|
16
|
+
3 81 27 c363 124 494 499 304 878 -21 43 -899 1580 -1951 3417 -1052 1836
|
|
17
|
+
-2308 4029 -2791 4873 -484 844 -909 1580 -946 1635 -118 177 -268 311 -419
|
|
18
|
+
373 -125 52 -272 64 -402 32z m1607 -3410 c793 -1383 2019 -3523 2724 -4755
|
|
19
|
+
l1283 -2240 -2712 -3 c-1492 -1 -3934 -1 -5427 0 l-2715 3 1666 2945 c3188
|
|
20
|
+
5637 3725 6583 3734 6572 4 -4 655 -1139 1447 -2522z"/>
|
|
21
|
+
<path d="M6290 7874 c-14 -3 -61 -14 -104 -25 -390 -98 -706 -474 -706 -837 0
|
|
22
|
+
-46 22 -254 50 -461 27 -207 113 -857 190 -1446 201 -1535 199 -1517 216
|
|
23
|
+
-1581 42 -165 141 -297 271 -361 67 -33 86 -38 168 -41 152 -7 246 30 348 136
|
|
24
|
+
99 105 144 224 176 464 11 84 61 462 111 841 49 378 131 996 180 1375 50 378
|
|
25
|
+
100 756 111 840 24 182 25 305 4 387 -82 323 -360 599 -693 686 -75 20 -266
|
|
26
|
+
33 -322 23z"/>
|
|
27
|
+
<path d="M6322 2739 c-345 -44 -594 -371 -552 -726 20 -166 86 -301 204 -410
|
|
28
|
+
114 -107 237 -160 391 -170 187 -11 336 47 475 187 134 134 192 273 193 465 1
|
|
29
|
+
116 -13 183 -58 280 -120 261 -379 409 -653 374z"/>
|
|
30
|
+
</g>
|
|
31
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512" width="5px">
|
|
2
|
+
<defs>
|
|
3
|
+
</defs>
|
|
4
|
+
<title></title>
|
|
5
|
+
<g id="icomoon-ignore">
|
|
6
|
+
</g>
|
|
7
|
+
<path fill="#000" d="M57.224 502.964l262.024-252.988-265.036-240.941-42.164 42.164 219.859 198.776-216.847 210.823z"></path>
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 522 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 960v0v0v0z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1161 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1007 1024h-873v0v0q-56 0 -95 -39t-39 -95q0 -18 5 -35t13 -32v1l437 -757q17 -31 48 -49t67 -18q37 0 67.5 18t48.5 48v1l437 757q8 14 13 31t5 35q0 56 -39.5 95t-94.5 39v0v0v0v0zM559 708h-0.5h-0.5q-10 0 -19 4t-16 10v0l-6 8t-4 8l-1 1q-1 4 -2.5 9t-1.5 11
|
|
6
|
+
q0 5 1.5 10t3.5 10l-1 -1q2 5 5 9t6 7v0q3 4 7 6.5t9 4.5v0q4 2 9 3t10 1h0.5h0.5v0v0v0q11 0 20 -4t16 -11v0q4 -3 6.5 -7t4.5 -8v-1q2 -4 3 -9t1 -10q0 -6 -1 -11t-3 -10v1q-6 -14 -18.5 -22.5t-28.5 -8.5v0v0v0v0zM559 299q-6 1 -11.5 2.5t-10.5 3.5v0q-6 3 -11 7.5
|
|
7
|
+
t-8 9.5h-1q-4 5 -7.5 11.5t-5.5 13.5v1q-3 8 -4.5 16.5t-1.5 17.5v0.5v0.5v0q0 11 0.5 20.5t1.5 17.5l2 16t3 16q1 8 2.5 16.5t3.5 17.5q2 8 4 18.5t5 23.5q2 13 4.5 27.5t5.5 30.5q2 18 4.5 38.5t5.5 43.5h38q2 -25 5 -45t5 -37q3 -16 5.5 -31l4.5 -27t4 -22.5t4 -19.5
|
|
8
|
+
q2 -10 4 -18t3 -16q1 -9 2.5 -16.5t1.5 -15.5q1 -8 1.5 -17.5t0.5 -20.5v-0.5v-0.5q0 -9 -1.5 -18t-3.5 -17v1q-2 -7 -5.5 -14t-8.5 -12v0q-4 -5 -8.5 -9.5t-10.5 -7.5v0q-5 -2 -10.5 -3.5t-11.5 -2.5v0v0z" />
|
|
9
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 32l-480 480h288v512h384v-512h288z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 992l480 -480h-288v-512h-384v512h-288z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M448 128l128 128h448v704h-1024v-832h448z" />
|
|
6
|
+
</svg>
|
package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$E$B_comprehend.svg
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M960 128h-896q-26 0 -45 19t-19 45v640q0 26 19 45t45 19h896q26 0 45 -19t19 -45v-640q0 -26 -19 -45t-45 -19zM896 256v46l-384 226l-384 -226v-46h768zM128 768v-355l384 227l384 -227v355h-768z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M544 0l-96 96l96 96l-224 256h-224l176 176l-272 361v39h39l361 -272l176 176v-224l256 -224l96 96l96 -96zM448 544l-64 -64l224 -224l64 64z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M0 1024h512v-1024h-512v1024zM320 128h128v128h-128v-128zM320 384h128v128h-128v-128zM320 640h128v128h-128v-128zM64 128h128v128h-128v-128zM64 384h128v128h-128v-128zM64 640h128v128h-128v-128zM576 320h448v64h-448v-64zM576 1024h128v-256h192v256h128v-576
|
|
6
|
+
h-448v576z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M864 0q66 0 113 47t47 113q0 27 -8.5 51.5t-23.5 44.5l-64 64l-224 -224l64 -64q20 -15 44.5 -23.5t51.5 -8.5zM64 736l-64 288l288 -64l592 -592l-224 -224zM716 364l-448 448l-56 -56l448 -448z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 590l-512 -397l-512 397v-162l512 -397l512 397v162zM896 576v384h-256v-256h-256v256h-256v-384l384 -288z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M768 128q-74 0 -139.5 26t-116.5 72q-51 -46 -116.5 -72t-139.5 -26t-139.5 26t-116.5 72v572l1.5 1.5l0.5 0.5q12 11 25.5 20.5t27.5 18.5q14 -11 29.5 -21t31.5 -18q32 -15 67 -23.5t73 -8.5t73 8.5t67 23.5q16 8 31.5 18t29.5 21q3 2 5.5 4.5t5.5 4.5q12 11 23 23
|
|
6
|
+
t21 25q10 -13 21 -25t23 -23q3 -2 5.5 -4.5t5.5 -4.5q14 -11 29.5 -21t31.5 -18q32 -15 67 -23.5t73 -8.5t73 8.5t67 23.5q16 8 31.5 18t29.5 21q14 -9 27.5 -18.5t25.5 -20.5l0.5 -0.5l1.5 -1.5v-572q-51 -46 -116.5 -72t-139.5 -26zM256 704q-52 0 -101 13.5t-91 37.5
|
|
7
|
+
v-499q40 -30 89 -47t103 -17t103 17t89 47v499q-42 -24 -91 -37.5t-101 -13.5v0zM768 704q-52 0 -101 13.5t-91 37.5v-499q40 -30 89 -47t103 -17t103 17t89 47v499q-42 -24 -91 -37.5t-101 -13.5v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M704 0h-640v1024h896v-768zM896 960h-768v-896h576v192h192v704zM256 768h512v64h-512v-64zM256 640h512v64h-512v-64zM256 512h512v64h-512v-64z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 980 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M640 128h-128v-64q0 -26 -19 -45t-45 -19h-128q-26 0 -45 19t-19 45v64h-128v128h512v-128zM448 128h-128v-64v0v0h128v0v0v64v0zM768 320v-160q0 -13 -9.5 -22.5t-22.5 -9.5h-64v64h32v128h-384v448h-256v-576h32v-64h-64q-13 0 -22.5 9.5t-9.5 22.5v640q0 13 9.5 22.5
|
|
6
|
+
t22.5 9.5h288v192h448l192 -192v-512h-192zM768 933v-101h101zM896 768h-192v192h-320v-576h512v384z" />
|
|
7
|
+
</svg>
|
package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$A_comprehend.svg
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1045 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M992 871l-242 -206q-19 -17 -38.5 -25t-35.5 -7q43 -50 67.5 -114t24.5 -135q0 -80 -30 -149q-30 -70 -82.5 -122.5t-122.5 -82.5q-69 -30 -149 -30t-149 30q-70 30 -122.5 82.5t-82.5 122.5q-30 69 -30 149t30 149q30 70 82.5 122.5t122.5 82.5q69 30 149 30
|
|
6
|
+
q71 0 135 -24.5t114 -67.5q-1 16 7 35.5t25 38.5l206 242q27 30 64.5 32t64.5 -24q26 -27 24 -64.5t-32 -64.5zM384 640q-53 0 -100 -20q-46 -20 -81 -55t-55 -81q-20 -47 -20 -100t20 -100q20 -46 55 -81t81 -55q47 -20 100 -20t100 20q46 20 81 55t55 81q20 47 20 100
|
|
7
|
+
t-20 100q-20 46 -55 81t-81 55q-47 20 -100 20z" />
|
|
8
|
+
</svg>
|
package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$F_comprehend.svg
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 0v384l-138 -138l-212 212l-108 -108l212 -212l-138 -138h384zM246 138l212 212l-108 108l-212 -212l-138 138v-384h384zM886 778l138 -138v384h-384l138 -138l-212 -212l108 -108zM458 674l-212 212l138 138h-384v-384l138 138l212 -212z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M960 448h-64l-64 -320h-80l16 -128h-192l16 128h-160l16 -128h-192l16 128h-80l-64 320h-64l-64 512v64h384v-576h64v-64h128v64h64v576h384v-64z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 0v416l-160 -160l-192 192l-96 -96l192 -192l-160 -160h416zM448 672l-192 192l160 160h-416v-416l160 160l192 -192z" />
|
|
6
|
+
</svg>
|
package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$C_comprehend.svg
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M896 448h16q20 0 34 -14t14 -34v-160q0 -20 -14 -34t-34 -14h-16v-192h-128v192h-16q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h16v576h128v-576zM768 256h128v128h-128v-128zM592 832q20 0 34 -14t14 -34v-160q0 -20 -14 -34t-34 -14h-16v-576h-128v576h-16
|
|
6
|
+
q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h16v192h128v-192h16zM448 640h128v128h-128v-128zM272 448q20 0 34 -14t14 -34v-160q0 -20 -14 -34t-34 -14h-16v-192h-128v192h-16q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h16v576h128v-576h16zM128 256h128v128h-128v-128z
|
|
7
|
+
" />
|
|
8
|
+
</svg>
|
package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$F_comprehend.svg
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M934 610q-20 -35 -25 -73q-4 -38 5.5 -74.5t33.5 -67.5q23 -31 58 -51l-101 -175q-21 13 -46 20t-52 7q-40 0 -75 -15q-36 -16 -62.5 -42.5t-41.5 -62.5q-15 -35 -15 -76h-201q0 25 -6.5 50t-19.5 48q-21 35 -52 58t-67 32.5t-75 5.5q-38 -5 -73 -25l-101 174
|
|
6
|
+
q22 13 40.5 31t31.5 41q20 35 24 73q5 38 -5 74t-33 68q-23 31 -58 51l101 174q21 -12 46 -19t51 -7q40 0 76 15q35 16 61.5 42.5t41.5 61.5q16 36 16 76h201q0 -25 6.5 -49.5t19.5 -47.5q20 -35 51 -58t67.5 -32.5t74.5 -5.5q38 5 74 25l100 -175q-21 -12 -39.5 -30
|
|
7
|
+
t-31.5 -41v0zM512 719q-43 0 -81 -16q-37 -16 -65.5 -44.5t-44.5 -65.5q-16 -38 -16 -81t16 -81q16 -37 44.5 -65.5t65.5 -44.5q38 -16 81 -16t81 16q37 16 65.5 44.5t44.5 65.5q16 38 16 81t-16 81q-16 37 -44.5 65.5t-65.5 44.5q-38 16 -81 16z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M592 448h-16v-192q0 -79 -56.5 -135.5t-135.5 -56.5h-128q-79 0 -135.5 56.5t-56.5 135.5v192h-16q-20 0 -34 14t-14 34v480q0 20 14 34t34 14h544q20 0 34 -14t14 -34v-480q0 -20 -14 -34t-34 -14zM384 896h-128l28 -139q-13 -9 -20.5 -23t-7.5 -30q0 -27 18.5 -45.5
|
|
6
|
+
t45.5 -18.5t45.5 18.5t18.5 45.5q0 16 -7.5 30t-20.5 23zM448 448h-256v-192q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v192z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M768 64h-128q-79 0 -135.5 56.5t-56.5 135.5v192h-400q-20 0 -34 14t-14 34v480q0 20 14 34t34 14h544q20 0 34 -14t14 -34v-480q0 -20 -14 -34t-34 -14h-16v-192q0 -26 19 -45t45 -19h128q26 0 45 19t19 45v192h128v-192q0 -79 -56.5 -135.5t-135.5 -56.5zM384 896h-128
|
|
6
|
+
l28 -139q-13 -9 -20.5 -23t-7.5 -30q0 -27 18.5 -45.5t45.5 -18.5t45.5 18.5t18.5 45.5q0 16 -7.5 30t-20.5 23z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1045 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M962 732l-373 -305l-18 -14t-18 -12q11 -26 17 -54.5t6 -58.5q0 -60 -23 -112q-22 -53 -61 -92t-92 -61q-52 -23 -112 -23q-22 0 -43 3t-41 9l180 180v192h-192l-180 -180q-6 20 -9 41t-3 43q0 60 23 112q22 53 61 92t92 61q52 23 112 23q30 0 58.5 -6t54.5 -17
|
|
6
|
+
q5 9 12 18l14 18l305 373q47 58 118.5 62t124.5 -49t49 -124.5t-62 -118.5zM864 960l-96 -96l96 -96l96 96z" />
|
|
7
|
+
</svg>
|
package/dist/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F$E_comprehend.svg
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M128 896h896v128h-1024v-1024h128v896zM288 832q-40 0 -68 -28t-28 -68t28 -68t68 -28h4h4l104 -172q-8 -11 -12 -24t-4 -28q0 -40 28 -68t68 -28t68 28t28 68q0 15 -4 28t-12 24l104 172h4h4h3.5h2.5l171 -298q-8 -11 -12.5 -25t-4.5 -29q0 -40 28 -68t68 -28t68 28
|
|
6
|
+
t28 68t-28 68t-68 28h-3.5h-2.5l-171 298q8 11 12.5 25t4.5 29q0 40 -28 68t-68 28t-68 -28t-28 -68q0 -15 4 -28t12 -24l-104 -172h-4h-4h-4h-4l-104 172q8 11 12 24t4 28q0 40 -28 68t-68 28v0z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M448 576v-448q-93 0 -174 35q-82 35 -143 96t-96 143q-35 81 -35 174t35 174q35 82 96 143t143 96q81 35 174 35t174 -35q82 -35 143 -96t96 -143q35 -81 35 -174q0 -54 -12.5 -104.5t-34.5 -95.5zM913 248q-28 -55 -69 -101q-42 -46 -93.5 -78.5t-112.5 -50.5
|
|
6
|
+
q-60 -18 -126 -18v448z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 832q-80 0 -136 -56t-56 -136v-285q0 -53 -19 -100q-20 -48 -54.5 -85.5t-80.5 -63.5q-47 -26 -102 -36v-70h-128v70q-55 10 -102 36q-46 26 -80.5 63.5t-54.5 85.5q-19 47 -19 100v285q0 80 -56 136t-136 56v64h430q-4 9 -6.5 18t-2.5 19q0 38 27 64.5t64 26.5
|
|
6
|
+
t64 -26.5t27 -64.5q0 -10 -2.5 -19t-6.5 -18h430v-64z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 832q-80 0 -136 -56t-56 -136v-285q0 -53 -19 -100q-20 -48 -54.5 -85.5t-80.5 -63.5q-47 -26 -102 -36v-70h-128v70q-55 10 -102 36q-46 26 -80.5 63.5t-54.5 85.5q-19 47 -19 100v285q0 80 -56 136t-136 56v64h430q-4 9 -6.5 18t-2.5 19q0 38 27 64.5t64 26.5
|
|
6
|
+
t64 -26.5t27 -64.5q0 -10 -2.5 -19t-6.5 -18h430v-64zM704 576h-128v128h-128v-128h-128v-128h128v-128h128v128h128v128z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 832q-80 0 -136 -56t-56 -136v-285q0 -53 -19 -100q-20 -48 -54.5 -85.5t-80.5 -63.5q-47 -26 -102 -36v-70h-128v70q-55 10 -102 36q-46 26 -80.5 63.5t-54.5 85.5q-19 47 -19 100v285q0 80 -56 136t-136 56v64h430q-4 9 -6.5 18t-2.5 19q0 38 27 64.5t64 26.5
|
|
6
|
+
t64 -26.5t27 -64.5q0 -10 -2.5 -19t-6.5 -18h430v-64zM704 576h-384v-128h384v128z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 832q-80 0 -136 -56t-56 -136v-285q0 -53 -19 -100q-20 -48 -54.5 -85.5t-80.5 -63.5q-47 -26 -102 -36v-70h-128v70q-55 10 -102 36q-46 26 -80.5 63.5t-54.5 85.5q-19 47 -19 100v285q0 80 -56 136t-136 56v64h430q-4 9 -6.5 18t-2.5 19q0 38 27 64.5t64 26.5
|
|
6
|
+
t64 -26.5t27 -64.5q0 -10 -2.5 -19t-6.5 -18h430v-64zM448 740l-155 -205l48 -48l107 77l245 -217l50 50l-295 343v0z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M659 749l-211 -210v-283h128v229l173 174zM512 0q-106 0 -199 40q-94 40 -163.5 109.5t-109.5 163.5q-40 93 -40 199t40 199q40 94 109.5 163.5t163.5 109.5q93 40 199 40t199 -40q94 -40 163.5 -109.5t109.5 -163.5q40 -93 40 -199t-40 -199q-40 -94 -109.5 -163.5
|
|
6
|
+
t-163.5 -109.5q-93 -40 -199 -40zM512 896q-80 0 -149 -30q-70 -30 -122.5 -82.5t-82.5 -122.5q-30 -69 -30 -149t30 -149q30 -70 82.5 -122.5t122.5 -82.5q69 -30 149 -30t149 30q70 30 122.5 82.5t82.5 122.5q30 69 30 149t-30 149q-30 70 -82.5 122.5t-122.5 82.5
|
|
7
|
+
q-69 30 -149 30z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 832q-80 0 -136 -56t-56 -136v-285q0 -53 -19 -100q-20 -48 -54.5 -85.5t-80.5 -63.5q-47 -26 -102 -36v-70h-128v70q-55 10 -102 36q-46 26 -80.5 63.5t-54.5 85.5q-19 47 -19 100v285q0 80 -56 136t-136 56v64h430q-4 9 -6.5 18t-2.5 19q0 38 27 64.5t64 26.5
|
|
6
|
+
t64 -26.5t27 -64.5q0 -10 -2.5 -19t-6.5 -18h430v-64zM704 704h-78l-114 -114l-114 114h-78v-78l114 -114l-114 -114v-78h78l114 114l114 -114h78v78l-114 114l114 114v78z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M832 192h-64v128h-192v-128h-192v128h-192v-128h-64q-26 0 -45 19t-19 45v704q0 26 19 45t45 19h704q26 0 45 -19t19 -45v-704q0 -26 -19 -45t-45 -19zM256 960h-128v0v0v-128h128v128zM256 768h-128v-128h128v128zM256 576h-128v-128h128v128zM448 960h-128v-128h128
|
|
6
|
+
v128zM448 768h-128v-128h128v128zM448 576h-128v-128h128v128zM640 960h-128v-128h128v128zM640 768h-128v-128h128v128zM640 576h-128v-128h128v128zM832 960v0v0h-128v-128h128v128zM832 768h-128v-128h128v128zM832 576h-128v-128h128v128zM320 128q0 -13 -9.5 -22.5
|
|
7
|
+
t-22.5 -9.5t-22.5 9.5t-9.5 22.5v128h64v-128zM704 128q0 -13 -9.5 -22.5t-22.5 -9.5t-22.5 9.5t-9.5 22.5v128h64v-128z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M1024 832v-768h-1024v768h448v64h-192v64h512v-64h-192v-64h448zM128 192h768v512h-768v-512z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 0q-106 0 -199 13q-94 12 -163.5 34t-109.5 51t-40 62v128q0 33 40 62t109.5 51t163.5 34q93 13 199 13t199 -13q94 -12 163.5 -34t109.5 -51t40 -62v-128q0 -33 -40 -62t-109.5 -51t-163.5 -34q-93 -13 -199 -13zM510 512q-86 0 -163 -8q-78 -9 -142 -24t-111 -35
|
|
6
|
+
q-47 -21 -71 -45q-12 11 -17.5 23t-5.5 25v128q0 33 40 62t109.5 51t163.5 34q93 13 199 13t199 -13q94 -12 163.5 -34t109.5 -51t40 -62v-128q0 -13 -6.5 -25t-17.5 -23q-25 24 -72 45q-47 20 -111.5 35t-142.5 24q-78 8 -164 8v0zM510 800q-86 0 -163 -8q-78 -9 -142 -24
|
|
7
|
+
t-111 -35q-47 -21 -71 -45q-12 11 -17.5 23t-5.5 25v128q0 33 40 62t109.5 51t163.5 34q93 13 199 13t199 -13q94 -12 163.5 -34t109.5 -51t40 -62v-128q0 -13 -6.5 -25t-17.5 -23q-25 24 -72 45q-47 20 -111.5 35t-142.5 24q-78 8 -164 8v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M762 1024q43 -77 62 -168t-9 -168t-113 -128q-86 -50 -254 -46v254l-384 -384l384 -384v248q201 -5 314 73q114 78 149 196t-5 256q-39 137 -144 251z" />
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M512 64q106 0 199 33q94 32 163.5 88.5t109.5 132.5t40 162t-40 162t-109.5 132.5t-163.5 88.5q-93 33 -199 33q-20 0 -40 -1.5t-40 -3.5q-41 41 -86 67q-45 25 -91.5 39.5t-94.5 19.5t-96 7v-27q51 -26 89.5 -69.5t38.5 -95.5q0 -7 -0.5 -14.5t-1.5 -14.5
|
|
6
|
+
q-44 -28 -79 -64t-59.5 -77t-38.5 -87q-13 -46 -13 -95q0 -86 40 -162t109.5 -132.5t163.5 -88.5q93 -33 199 -33z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1034 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M623 703q-17 -3 -20 -34l-3 -31l34.5 -43t44.5 -107q29 0 40.5 -50t-16.5 -75q0 -12 4 -56q4 -43 -9 -90t-55 -84q-41 -37 -131 -37t-131 37q-42 37 -55 84t-9 90q4 44 4 56q-28 25 -16.5 75t40.5 50q10 64 44.5 107l34.5 43l-3 31t-20 34q-27 4 -83 27q-56 22 -112.5 57
|
|
6
|
+
t-98.5 80q-43 45 -43 93h896q0 -48 -43 -93q-42 -45 -98.5 -80t-112.5 -57q-56 -23 -83 -27z" />
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M735 805q-14 -2 -16.5 -28l-2.5 -26l29 -36.5t38 -91.5q25 0 35 -42.5t-14 -63.5q0 -11 4 -48q3 -37 -8.5 -76.5t-47.5 -71.5q-35 -31 -112 -31t-112 31q-36 32 -47.5 71.5t-8.5 76.5q4 37 4 48q-24 21 -14 63.5t35 42.5q9 55 38 91.5l29 36.5l-2.5 26t-16.5 28
|
|
6
|
+
q-23 4 -71 23t-96.5 49t-84.5 68q-37 38 -37 79h768q0 -41 -37 -79q-36 -38 -84.5 -68t-96.5 -49t-71 -23zM344 823q33 -21 71 -38.5t71 -29.5q-12 -16 -24 -39t-21 -50q-11 -9 -20.5 -22.5t-15.5 -29.5q-6 -17 -8 -35t0 -35q1 -12 4.5 -23.5t8.5 -21.5q-3 -35 2.5 -95
|
|
7
|
+
t50.5 -110q17 -19 39 -33t48 -22q-4 -49 -37.5 -95t-128.5 -46q-77 0 -112 31q-36 32 -47.5 71.5t-8.5 76.5q4 37 4 48q-24 21 -14 63.5t35 42.5q9 55 38 91.5l29 36.5l-2.5 26t-16.5 28q-23 4 -71 23t-96.5 49t-84.5 68q-37 38 -37 79h330q3 -2 6.5 -4.5t7.5 -4.5v0z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1108 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M436 736q0 43 9.5 83.5t27.5 76.5h-473v-115q31 -28 71 -53t78.5 -44t72.5 -31q33 -11 51 -14q17 -3 20 -34l3 -31l-34.5 -43t-44.5 -107q-29 0 -40.5 -50t16.5 -75q0 -12 -4 -56q-4 -43 9 -90t55 -84q41 -37 131 -37t131 37q42 37 55 84t9 90q-4 44 -4 56q28 25 16.5 75
|
|
6
|
+
t-40.5 50q-3 19 -9 37t-14 34q-15 17 -28.5 36t-23.5 40q-2 2 -3 2.5l-1 0.5v1v3q-17 36 -26.5 75.5t-9.5 82.5v0zM800 448q-60 0 -112 23q-53 22 -92 61t-61 92q-23 52 -23 112t23 112q22 53 61 92t92 61q52 23 112 23t112 -23q53 -22 92 -61t61 -92q23 -52 23 -112
|
|
7
|
+
t-23 -112q-22 -53 -61 -92t-92 -61q-52 -23 -112 -23zM960 768h-128v128h-64v-128h-128v-64h128v-128h64v128h128v64z" />
|
|
8
|
+
</svg>
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" viewBox="-10 0 1044 1024">
|
|
4
|
+
<path fill="currentColor"
|
|
5
|
+
d="M976 768h-16v-208q0 -46 -33 -79t-79 -33h-272v-128h16q20 0 34 -14t14 -34v-160q0 -20 -14 -34t-34 -14h-160q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h16v128h-272q-46 0 -79 33t-33 79v208h-16q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h160q20 0 34 -14t14 -34
|
|
6
|
+
v-160q0 -20 -14 -34t-34 -14h-16v-192h256v192h-16q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h160q20 0 34 -14t14 -34v-160q0 -20 -14 -34t-34 -14h-16v-192h256v192h-16q-20 0 -34 14t-14 34v160q0 20 14 34t34 14h160q20 0 34 -14t14 -34v-160q0 -20 -14 -34t-34 -14z
|
|
7
|
+
" />
|
|
8
|
+
</svg>
|