supernav-test 2.2.14 → 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.d.ts +1 -0
- package/dist/App.test.js +9 -0
- package/dist/LsacContainer.d.ts +4 -0
- package/dist/LsacContainer.js +29 -0
- package/dist/components/lsac-supernavbar/AuthWrapper.d.ts +4 -0
- package/dist/components/lsac-supernavbar/AuthWrapper.js +95 -0
- package/dist/components/lsac-supernavbar/LsacSidebar.d.ts +44 -0
- package/dist/components/lsac-supernavbar/LsacSidebar.js +48 -0
- package/dist/components/lsac-supernavbar/Store.d.ts +3 -0
- package/dist/components/lsac-supernavbar/Store.js +22 -0
- package/dist/components/lsac-supernavbar/actions/AuthActions.d.ts +8 -0
- package/dist/components/lsac-supernavbar/actions/AuthActions.js +29 -0
- package/dist/components/lsac-supernavbar/actions/SidebarActions.d.ts +23 -0
- package/dist/components/lsac-supernavbar/actions/SidebarActions.js +95 -0
- package/dist/components/lsac-supernavbar/components/Sidebar.d.ts +13 -0
- package/dist/components/lsac-supernavbar/components/Sidebar.js +317 -0
- package/dist/components/lsac-supernavbar/components/SidebarForm.d.ts +5 -0
- package/dist/components/lsac-supernavbar/components/SidebarForm.js +21 -0
- package/dist/components/lsac-supernavbar/components/SidebarMainLink.d.ts +14 -0
- package/dist/components/lsac-supernavbar/components/SidebarMainLink.js +124 -0
- package/dist/components/lsac-supernavbar/components/SidebarOption.d.ts +4 -0
- package/dist/components/lsac-supernavbar/components/SidebarOption.js +22 -0
- package/dist/components/lsac-supernavbar/components/SidebarSubMenu.d.ts +5 -0
- package/dist/components/lsac-supernavbar/components/SidebarSubMenu.js +154 -0
- package/dist/components/lsac-supernavbar/components/SidebarTab.d.ts +1 -0
- package/dist/components/lsac-supernavbar/components/SidebarTab.js +69 -0
- package/dist/components/lsac-supernavbar/components/Topnav.d.ts +14 -0
- package/dist/components/lsac-supernavbar/components/Topnav.js +173 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.d.ts +9 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.js +104 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.d.ts +5 -0
- package/dist/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.js +19 -0
- package/dist/components/lsac-supernavbar/constants/SidebarConstants.d.ts +8 -0
- package/dist/components/lsac-supernavbar/constants/SidebarConstants.js +17 -0
- package/dist/components/lsac-supernavbar/constants/UtilityConstants.d.ts +15 -0
- package/dist/components/lsac-supernavbar/constants/UtilityConstants.js +32 -0
- package/dist/components/lsac-supernavbar/interfaces/Models.d.ts +65 -0
- package/dist/components/lsac-supernavbar/interfaces/Models.js +17 -0
- package/dist/components/lsac-supernavbar/interfaces/Redux.d.ts +7 -0
- package/dist/components/lsac-supernavbar/interfaces/Redux.js +5 -0
- package/dist/components/lsac-supernavbar/reducers/AuthReducer.d.ts +7 -0
- package/dist/components/lsac-supernavbar/reducers/AuthReducer.js +41 -0
- package/dist/components/lsac-supernavbar/reducers/RootReducer.d.ts +5 -0
- package/dist/components/lsac-supernavbar/reducers/RootReducer.js +19 -0
- package/dist/components/lsac-supernavbar/reducers/SidebarReducer.d.ts +17 -0
- package/dist/components/lsac-supernavbar/reducers/SidebarReducer.js +96 -0
- package/dist/components/lsac-supernavbar/resources/icomoon-library.json +1 -0
- 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.d.ts +1 -0
- package/dist/components/lsac-supernavbar/test/App.test.js +28 -0
- package/dist/components/lsac-supernavbar/util/SubmenuUtil.d.ts +9 -0
- package/dist/components/lsac-supernavbar/util/SubmenuUtil.js +208 -0
- package/dist/components/lsac-supernavbar/util/Util.d.ts +4 -0
- package/dist/components/lsac-supernavbar/util/Util.js +51 -0
- package/dist/index.css +13 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +22 -67
- package/dist/logo.svg +1 -0
- package/dist/react-app-env.d.js +2 -0
- package/dist/reportWebVitals.d.ts +3 -0
- package/dist/reportWebVitals.js +34 -0
- package/dist/setupTests.d.ts +1 -0
- package/dist/setupTests.js +3 -0
- package/package.json +11 -4
- package/src/App.css +38 -0
- package/src/App.test.tsx +8 -0
- package/src/LsacContainer.tsx +17 -0
- package/src/components/lsac-supernavbar/AuthWrapper.tsx +63 -0
- package/src/components/lsac-supernavbar/LsacSidebar.tsx +60 -0
- package/src/components/lsac-supernavbar/Store.ts +8 -0
- package/src/components/lsac-supernavbar/actions/AuthActions.ts +21 -0
- package/src/components/lsac-supernavbar/actions/SidebarActions.ts +81 -0
- package/src/components/lsac-supernavbar/components/Sidebar.tsx +235 -0
- package/src/components/lsac-supernavbar/components/SidebarForm.tsx +15 -0
- package/src/components/lsac-supernavbar/components/SidebarMainLink.tsx +86 -0
- package/src/components/lsac-supernavbar/components/SidebarOption.tsx +13 -0
- package/src/components/lsac-supernavbar/components/SidebarSubMenu.tsx +82 -0
- package/src/components/lsac-supernavbar/components/SidebarTab.jsx +56 -0
- package/src/components/lsac-supernavbar/components/Topnav.tsx +140 -0
- package/src/components/lsac-supernavbar/components/sidebar_submenus/CategorizedSubmenu.tsx +69 -0
- package/src/components/lsac-supernavbar/components/sidebar_submenus/Marketplace.tsx +13 -0
- package/src/components/lsac-supernavbar/constants/SidebarConstants.ts +8 -0
- package/src/components/lsac-supernavbar/constants/UtilityConstants.ts +17 -0
- package/src/components/lsac-supernavbar/interfaces/Models.ts +71 -0
- package/src/components/lsac-supernavbar/interfaces/Redux.ts +9 -0
- package/src/components/lsac-supernavbar/reducers/AuthReducer.ts +24 -0
- package/src/components/lsac-supernavbar/reducers/RootReducer.ts +13 -0
- package/src/components/lsac-supernavbar/reducers/SidebarReducer.ts +73 -0
- package/src/components/lsac-supernavbar/resources/icomoon-library.json +1 -0
- package/src/components/lsac-supernavbar/static/images/close-hamburger-icon.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/hamburger-icon.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/icon-user.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/saama_logo.png +0 -0
- package/src/components/lsac-supernavbar/static/images/saama_logo.svg +26 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_down.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_left.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_right.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/caret_up.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/glyph1_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/management_icon.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/marketplace_icon.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/my_apps.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/rbqm-triangle.svg +31 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/rightIcon.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/space_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/triangle-exclamation.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A32_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E$A36_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$A1_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$E$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E0$F0_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$B_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E00$D_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E002_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E070_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E086_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E092_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$A_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B$F_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$B5_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$C8_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$C_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D$F_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D5_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D6_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$D9_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F$E_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E1$F7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$C_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$D_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$E_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E10$F_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E101_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E110_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E115_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E123_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E138_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E14$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E150_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E185_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E186_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E187_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A7_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$A9_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$B7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$C$F_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$C_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$D$D_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E2$F$F_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E20$B_comprehend.svg +10 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E201_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E204_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E23$A_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E250_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E279_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E28$E_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E29$C_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$A8_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$B3_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D3_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D4_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E3$D7_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E301_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$A_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E35$E_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E36$E_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E362_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E37$A_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E370_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E2_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E4_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E5_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E4$E7_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E418_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$E_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E42$F_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$A_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E43$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E430_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E431_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E445_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E465_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E475_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E481_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$A_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$B_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$C_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$D_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$E_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E60$F_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E600_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E601_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E602_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E603_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E604_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E605_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E606_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E607_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E608_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E609_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$A_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$C_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E61$F_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E610_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E611_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E612_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E613_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E614_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E615_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E616_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E617_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E618_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E619_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E620_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E621_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E622_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E623_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E624_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E625_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E626_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$A_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$B_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$C_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$D_comprehend.svg +14 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$E_comprehend.svg +10 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E90$F_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E900_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E901_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E902_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E903_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E904_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E905_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E907_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E908_comprehend.svg +16 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E909_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$A_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$C_comprehend.svg +9 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$E_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E91$F_comprehend.svg +16 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E910_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E911_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E912_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E913_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E914_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E915_comprehend.svg +8 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E917_comprehend.svg +34 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E918_comprehend.svg +7 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E919_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E920_comprehend.svg +11 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E921_comprehend.svg +12 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni$E93$D_comprehend.svg +13 -0
- package/src/components/lsac-supernavbar/static/images/sidebar-icons/uni0001_comprehend.svg +6 -0
- package/src/components/lsac-supernavbar/stylesheets/LsacSidebar.css +73 -0
- package/src/components/lsac-supernavbar/stylesheets/font-face.scss +12 -0
- package/src/components/lsac-supernavbar/stylesheets/font-sizer.scss +4 -0
- package/src/components/lsac-supernavbar/stylesheets/fontIcons.css +540 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.eot +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.svg +3521 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.ttf +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/ProximaNovaReg.woff2 +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.eot +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.svg +190 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.ttf +0 -0
- package/src/components/lsac-supernavbar/stylesheets/fonts/comprehend.woff +0 -0
- package/src/components/lsac-supernavbar/stylesheets/form.scss +16 -0
- package/src/components/lsac-supernavbar/stylesheets/sidebar-main-link.scss +72 -0
- package/src/components/lsac-supernavbar/stylesheets/sidebar.scss +222 -0
- package/src/components/lsac-supernavbar/stylesheets/study-filter.scss +358 -0
- package/src/components/lsac-supernavbar/stylesheets/topnav.scss +371 -0
- package/src/components/lsac-supernavbar/test/App.test.js +20 -0
- package/src/components/lsac-supernavbar/util/SubmenuUtil.tsx +153 -0
- package/src/components/lsac-supernavbar/util/Util.ts +24 -0
- package/src/index.css +13 -0
- package/src/index.tsx +18 -0
- package/src/logo.svg +1 -0
- package/src/react-app-env.d.ts +1 -0
- package/src/reportWebVitals.ts +15 -0
- package/src/setupTests.ts +5 -0
- package/dist/1.index.js +0 -1
- package/dist/caf68d0a64d31f733320266312e3a2ca.svg +0 -1
- package/dist/index.html +0 -1
|
@@ -0,0 +1,3521 @@
|
|
|
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">
|
|
4
|
+
<metadata>
|
|
5
|
+
Created by FontForge 20191125 at Fri Jun 8 21:55:06 2007
|
|
6
|
+
By convertio
|
|
7
|
+
Copyright (c) Mark Simonson, 2005. All rights reserved.
|
|
8
|
+
</metadata>
|
|
9
|
+
<defs>
|
|
10
|
+
<font id="ProximaNova-Regular" horiz-adv-x="388" >
|
|
11
|
+
<font-face
|
|
12
|
+
font-family="Proxima Nova Rg"
|
|
13
|
+
font-weight="400"
|
|
14
|
+
font-stretch="normal"
|
|
15
|
+
units-per-em="1000"
|
|
16
|
+
panose-1="2 0 5 6 3 0 0 2 0 4"
|
|
17
|
+
ascent="790"
|
|
18
|
+
descent="-210"
|
|
19
|
+
x-height="483"
|
|
20
|
+
cap-height="667"
|
|
21
|
+
bbox="-171 -272 1082 890"
|
|
22
|
+
underline-thickness="20"
|
|
23
|
+
underline-position="-133"
|
|
24
|
+
unicode-range="U+0020-FB04"
|
|
25
|
+
/>
|
|
26
|
+
<missing-glyph horiz-adv-x="507"
|
|
27
|
+
d="M429 -90h-351v842h351v-842zM397 -60v782h-288v-782h288z" />
|
|
28
|
+
<glyph glyph-name="f_f_j" unicode="ffj" horiz-adv-x="792"
|
|
29
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417zM455 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM680 552
|
|
30
|
+
q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM574 -196q-60 0 -105 36l26 56q30 -30 69 -30q36 0 57 21.5t21 65.5v530h75v-530q0 -72 -37 -110.5t-106 -38.5z" />
|
|
31
|
+
<glyph glyph-name="f_j" unicode="fj" horiz-adv-x="509"
|
|
32
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM397 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM291 -196q-60 0 -105 36l26 56
|
|
33
|
+
q30 -30 69 -30q36 0 57 21.5t21 65.5v530h75v-530q0 -72 -37 -110.5t-106 -38.5z" />
|
|
34
|
+
<glyph glyph-name="f_b" unicode="fb" horiz-adv-x="859"
|
|
35
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM434 131q20 -32 60.5 -54t84.5 -22q71 0 113 52t42 134t-42 134.5t-113 52.5q-44 0 -84.5 -22.5t-60.5 -55.5v-219zM434 0h-75v667h75
|
|
36
|
+
v-257q63 85 163 85q96 0 155.5 -69.5t59.5 -184.5q0 -116 -59.5 -184.5t-155.5 -68.5q-101 0 -163 84v-72z" />
|
|
37
|
+
<glyph glyph-name="f_h" unicode="fh" horiz-adv-x="836"
|
|
38
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM761 0h-75v318q0 61 -28 85.5t-81 24.5q-41 0 -80.5 -22t-61.5 -53v-353h-75v667h75v-254q27 34 74 58t98 24q154 0 154 -154v-341z" />
|
|
39
|
+
<glyph glyph-name="f_k" unicode="fk" horiz-adv-x="798"
|
|
40
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM784 0h-96l-173 217l-81 -79v-138h-75v667h75v-441l254 257h95l-214 -219z" />
|
|
41
|
+
<glyph glyph-name="fl.alt1" unicode="f" horiz-adv-x="552"
|
|
42
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM466 -12q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31z" />
|
|
43
|
+
<glyph glyph-name="f_f_l.alt1" unicode="ff" horiz-adv-x="836"
|
|
44
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417zM455 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM749 -12
|
|
45
|
+
q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31z" />
|
|
46
|
+
<glyph glyph-name="f_f" unicode="ff" horiz-adv-x="567"
|
|
47
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417zM455 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417z" />
|
|
48
|
+
<glyph glyph-name="fi" unicode="fi" horiz-adv-x="509"
|
|
49
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM397 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM434 0h-75v483h75v-483z" />
|
|
50
|
+
<glyph glyph-name="fl" unicode="fl" horiz-adv-x="509"
|
|
51
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM434 0h-75v667h75v-667z" />
|
|
52
|
+
<glyph glyph-name="f_f_i" unicode="ffi" horiz-adv-x="792"
|
|
53
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417zM455 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM680 552
|
|
54
|
+
q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM717 0h-75v483h75v-483z" />
|
|
55
|
+
<glyph glyph-name="f_f_l" unicode="ffl" horiz-adv-x="792"
|
|
56
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417zM455 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417zM717 0
|
|
57
|
+
h-75v667h75v-667z" />
|
|
58
|
+
<glyph glyph-name=".notdef" horiz-adv-x="507"
|
|
59
|
+
d="M429 -90h-351v842h351v-842zM397 -60v782h-288v-782h288z" />
|
|
60
|
+
<glyph glyph-name=".null" horiz-adv-x="0"
|
|
61
|
+
/>
|
|
62
|
+
<glyph glyph-name="nonmarkingreturn" horiz-adv-x="333"
|
|
63
|
+
/>
|
|
64
|
+
<glyph glyph-name="space" unicode=" " horiz-adv-x="259"
|
|
65
|
+
/>
|
|
66
|
+
<glyph glyph-name="exclam" unicode="!" horiz-adv-x="230"
|
|
67
|
+
d="M146 187h-62l-16 480h94zM115 -10q-22 0 -38.5 16.5t-16.5 38.5q0 23 16 39t39 16t39 -16t16 -39q0 -22 -16.5 -38.5t-38.5 -16.5z" />
|
|
68
|
+
<glyph glyph-name="quotedbl" unicode=""" horiz-adv-x="344"
|
|
69
|
+
d="M118 412h-37q-27 205 -27 219q0 19 13 32.5t32 13.5t32.5 -13.5t13.5 -32.5zM263 412h-37q-27 205 -27 219q0 19 13.5 32.5t32.5 13.5t32 -13.5t13 -32.5z" />
|
|
70
|
+
<glyph glyph-name="numbersign" unicode="#" horiz-adv-x="591"
|
|
71
|
+
d="M300 0h-61l61 181h-111l-60 -181h-62l61 181h-106l17 53h107l66 199h-108l16 52h110l60 182h62l-60 -182h110l60 182h61l-61 -182h107l-15 -52h-109l-67 -199h111l-16 -53h-113zM317 234l67 199h-110l-67 -199h110z" />
|
|
72
|
+
<glyph glyph-name="dollar" unicode="$" horiz-adv-x="593"
|
|
73
|
+
d="M271 -100v89q-143 9 -228 105l50 64q69 -82 178 -94v243q-48 13 -77 24t-63 32t-50.5 53t-16.5 76q0 76 58 127t149 58v91h61v-92q119 -10 198 -92l-50 -61q-58 64 -148 77v-218q38 -11 62.5 -19.5t56 -25t50 -35.5t31.5 -49.5t13 -68.5q0 -76 -52.5 -131.5t-160.5 -63.5
|
|
74
|
+
v-89h-61zM459 178q0 45 -33 70t-94 43v-228q66 7 96.5 40t30.5 75zM150 497q0 -38 31 -60t90 -39v204q-54 -4 -87.5 -33t-33.5 -72z" />
|
|
75
|
+
<glyph glyph-name="percent" unicode="%" horiz-adv-x="732"
|
|
76
|
+
d="M192 348q-71 0 -116 46.5t-45 116.5q0 72 45 119t116 47t116 -47t45 -119q0 -70 -45 -116.5t-116 -46.5zM183 0h-55l426 667h56zM540 -12q-71 0 -116 47t-45 117q0 71 45 118t116 47q70 0 115 -47t45 -118t-44.5 -117.5t-115.5 -46.5zM192 399q44 0 72.5 32t28.5 80
|
|
77
|
+
q0 50 -28 82.5t-73 32.5q-44 0 -72.5 -32.5t-28.5 -82.5q0 -48 28.5 -80t72.5 -32zM540 39q45 0 73 32t28 81t-28 81.5t-73 32.5t-73.5 -32.5t-28.5 -81.5t28.5 -81t73.5 -32z" />
|
|
78
|
+
<glyph glyph-name="ampersand" unicode="&" horiz-adv-x="642"
|
|
79
|
+
d="M613 0h-104q-20 17 -73 70q-82 -82 -192 -82q-90 0 -148.5 48.5t-58.5 137.5q0 71 39 116t108 83q-51 87 -51 150q0 66 48.5 110t119.5 44q66 0 108 -35t42 -96q0 -36 -13 -64.5t-42 -52t-51 -36.5t-64 -35q32 -43 78 -95q36 -43 79 -89q44 68 72 153l64 -29
|
|
80
|
+
q-44 -106 -91 -172q62 -64 130 -126zM252 50q75 0 139 66q-66 69 -92 101q-48 55 -83 106q-99 -60 -99 -144q0 -60 39.5 -94.5t95.5 -34.5zM210 521q0 -47 40 -115q65 32 98.5 62t33.5 75q0 36 -22 56t-57 20q-39 0 -66 -27.5t-27 -70.5z" />
|
|
81
|
+
<glyph glyph-name="quotesingle" unicode="'" horiz-adv-x="199"
|
|
82
|
+
d="M118 412h-37q-27 205 -27 219q0 19 13 32.5t32 13.5t32.5 -13.5t13.5 -32.5z" />
|
|
83
|
+
<glyph glyph-name="parenleft" unicode="(" horiz-adv-x="248"
|
|
84
|
+
d="M231 -164l-46 -35q-141 194 -141 442t141 442l46 -34q-53 -104 -79 -197t-26 -211q0 -117 26 -210.5t79 -196.5z" />
|
|
85
|
+
<glyph glyph-name="parenright" unicode=")" horiz-adv-x="248"
|
|
86
|
+
d="M63 -199l-46 35q53 103 79 196.5t26 210.5q0 118 -26 211t-79 197l46 34q141 -194 141 -442t-141 -442z" />
|
|
87
|
+
<glyph glyph-name="asterisk" unicode="*" horiz-adv-x="340"
|
|
88
|
+
d="M193 389h-46l6 115l-97 -62l-22 39l102 52l-102 52l22 40l97 -63l-6 115h46l-6 -115l96 63l23 -40l-102 -52l102 -52l-23 -39l-96 62z" />
|
|
89
|
+
<glyph glyph-name="plus" unicode="+" horiz-adv-x="499"
|
|
90
|
+
d="M470 311h-192v-213h-57v213h-192v52h192v207h57v-207h192v-52z" />
|
|
91
|
+
<glyph glyph-name="comma" unicode="," horiz-adv-x="230"
|
|
92
|
+
d="M176 24q0 -44 -22.5 -84.5t-58.5 -66.5l-38 31q25 16 43.5 42.5t21.5 50.5q-4 -2 -14 -2q-20 0 -34 14.5t-14 36.5t15.5 38t37.5 16q27 0 45 -20.5t18 -55.5z" />
|
|
93
|
+
<glyph glyph-name="hyphen" unicode="-" horiz-adv-x="300"
|
|
94
|
+
d="M270 209h-240v66h240v-66z" />
|
|
95
|
+
<glyph glyph-name="period" unicode="." horiz-adv-x="231"
|
|
96
|
+
d="M115 -10q-23 0 -39 16t-16 39t16 39t39 16t39 -16t16 -39t-16 -39t-39 -16z" />
|
|
97
|
+
<glyph glyph-name="slash" unicode="/" horiz-adv-x="296"
|
|
98
|
+
d="M59 -20h-59l237 707h59z" />
|
|
99
|
+
<glyph glyph-name="zero" unicode="0" horiz-adv-x="612"
|
|
100
|
+
d="M306 -12q-66 0 -116.5 30.5t-80 81.5t-44 110t-14.5 123t14.5 123t44 109.5t80 81t116.5 30.5q65 0 116 -30.5t80.5 -81t44 -109.5t14.5 -123t-14.5 -123t-44 -110t-80.5 -81.5t-116 -30.5zM306 62q60 0 100 41.5t55 99.5t15 130t-15 130t-55 99t-100 41t-100 -41
|
|
101
|
+
t-55 -99t-15 -130t15 -130t55 -99.5t100 -41.5z" />
|
|
102
|
+
<glyph glyph-name="one" unicode="1" horiz-adv-x="339"
|
|
103
|
+
d="M261 0h-83v558l-107 -114l-50 51l167 172h73v-667z" />
|
|
104
|
+
<glyph glyph-name="two" unicode="2" horiz-adv-x="588"
|
|
105
|
+
d="M512 0h-458v67q205 160 288 247t83 167q0 60 -41.5 91t-98.5 31q-115 0 -181 -84l-51 53q38 50 99.5 77.5t132.5 27.5q91 0 157.5 -51t66.5 -145q0 -93 -80 -185.5t-244 -221.5h327v-74z" />
|
|
106
|
+
<glyph glyph-name="three" unicode="3" horiz-adv-x="557"
|
|
107
|
+
d="M266 -12q-80 0 -142 31t-95 79l49 52q30 -40 79 -64t107 -24q72 0 114 34t42 91q0 60 -44.5 89t-121.5 29q-59 0 -69 -1v76q11 -1 69 -1q68 0 111.5 27.5t43.5 82.5q0 53 -42.5 83.5t-106.5 30.5q-101 0 -176 -81l-46 52q84 103 229 103q99 0 162 -47.5t63 -129.5
|
|
108
|
+
q0 -66 -44 -106t-99 -49q55 -6 104.5 -49t49.5 -116q0 -85 -64.5 -138.5t-172.5 -53.5z" />
|
|
109
|
+
<glyph glyph-name="four" unicode="4" horiz-adv-x="558"
|
|
110
|
+
d="M432 0h-83v169h-317v69l286 429h114v-425h94v-73h-94v-169zM349 242v348l-234 -348h234z" />
|
|
111
|
+
<glyph glyph-name="five" unicode="5" horiz-adv-x="590"
|
|
112
|
+
d="M301 -12q-154 0 -235 107l51 56q69 -89 184 -89q68 0 111 41t43 102q0 65 -42.5 104.5t-110.5 39.5q-89 0 -154 -62l-61 21v359h408v-74h-325v-232q62 60 156 60q89 0 151 -57t62 -156t-67.5 -159.5t-170.5 -60.5z" />
|
|
113
|
+
<glyph glyph-name="six" unicode="6" horiz-adv-x="591"
|
|
114
|
+
d="M309 -12q-68 0 -119 28t-80.5 77t-44 109t-14.5 131q0 146 69.5 245t202.5 99q116 0 184 -80l-42 -62q-58 68 -142 68q-62 0 -106 -39t-63 -96.5t-19 -126.5v-26q25 40 77.5 72t111.5 32q95 0 156.5 -55.5t61.5 -157.5q0 -90 -64 -154t-169 -64zM305 62q72 0 112.5 44
|
|
115
|
+
t40.5 97q0 70 -43 107t-110 37q-49 0 -94 -27.5t-73 -71.5q6 -74 47 -130t120 -56z" />
|
|
116
|
+
<glyph glyph-name="seven" unicode="7" horiz-adv-x="515"
|
|
117
|
+
d="M213 0h-92l269 593h-359v74h455v-57z" />
|
|
118
|
+
<glyph glyph-name="eight" unicode="8" horiz-adv-x="582"
|
|
119
|
+
d="M291 -12q-102 0 -170.5 49t-68.5 132q0 63 45.5 109t113.5 66q-64 18 -106 58.5t-42 101.5q0 84 68 128.5t160 44.5t160.5 -44.5t68.5 -128.5q0 -61 -42.5 -101.5t-106.5 -58.5q68 -20 113.5 -66t45.5 -109q0 -82 -68.5 -131.5t-170.5 -49.5zM291 378q20 3 40.5 10
|
|
120
|
+
t46.5 19.5t42 35t16 50.5q0 50 -41.5 80t-103.5 30t-103 -29.5t-41 -80.5q0 -28 16 -50.5t42 -35t46 -19.5t40 -10zM291 62q64 0 109.5 32t45.5 84q0 40 -31.5 70.5t-64 43t-59.5 15.5q-27 -3 -59.5 -15.5t-64 -43t-31.5 -70.5q0 -52 45 -84t110 -32z" />
|
|
121
|
+
<glyph glyph-name="nine" unicode="9" horiz-adv-x="591"
|
|
122
|
+
d="M269 -11q-114 0 -185 80l42 62q58 -68 143 -68q64 0 108 40t62 97t18 125q0 17 -1 26q-25 -40 -77 -72t-111 -32q-95 0 -157 55.5t-62 157.5q0 90 64 154t170 64q67 0 118 -28t81 -77t44.5 -109t14.5 -131q0 -94 -28 -169.5t-91 -125t-153 -49.5zM287 319q49 0 94.5 27.5
|
|
123
|
+
t72.5 72.5q-3 33 -13.5 64t-29.5 59t-51.5 45t-73.5 17q-71 0 -112 -43.5t-41 -97.5q0 -70 43 -107t111 -37z" />
|
|
124
|
+
<glyph glyph-name="colon" unicode=":" horiz-adv-x="225"
|
|
125
|
+
d="M115 380q-22 0 -38.5 16.5t-16.5 38.5q0 23 16 39t39 16t39 -16t16 -39q0 -22 -16.5 -38.5t-38.5 -16.5zM115 -10q-23 0 -39 16t-16 39t16 39t39 16t39 -16t16 -39t-16 -39t-39 -16z" />
|
|
126
|
+
<glyph glyph-name="semicolon" unicode=";" horiz-adv-x="230"
|
|
127
|
+
d="M115 380q-22 0 -38.5 16.5t-16.5 38.5q0 23 16 39t39 16t39 -16t16 -39q0 -22 -16.5 -38.5t-38.5 -16.5zM176 26q0 -45 -22.5 -85t-58.5 -66l-38 30q24 16 43 43t22 51q-4 -2 -14 -2q-20 0 -34 14.5t-14 36.5t15.5 38t37.5 16q27 0 45 -20.5t18 -55.5z" />
|
|
128
|
+
<glyph glyph-name="less" unicode="<" horiz-adv-x="499"
|
|
129
|
+
d="M470 90l-441 218v53l441 219v-63l-377 -183l377 -181v-63z" />
|
|
130
|
+
<glyph glyph-name="equal" unicode="=" horiz-adv-x="499"
|
|
131
|
+
d="M470 404h-441v53h441v-53zM470 211h-441v53h441v-53z" />
|
|
132
|
+
<glyph glyph-name="greater" unicode=">" horiz-adv-x="499"
|
|
133
|
+
d="M470 308l-441 -218v63l377 181l-377 183v63l441 -219v-53z" />
|
|
134
|
+
<glyph glyph-name="question" unicode="?" horiz-adv-x="462"
|
|
135
|
+
d="M203 185q-38 32 -38 82q0 35 18.5 63t45 47.5t53 37.5t45 42t18.5 53q0 40 -30.5 66.5t-86.5 26.5q-99 0 -160 -82l-50 54q78 102 217 102q89 0 142.5 -44.5t53.5 -110.5q0 -42 -20 -75.5t-48.5 -54.5t-56.5 -40t-48 -42t-20 -50q0 -30 26 -48zM224 -10q-22 0 -38.5 16
|
|
136
|
+
t-16.5 39t16.5 39t38.5 16t38.5 -16t16.5 -39t-16.5 -39t-38.5 -16z" />
|
|
137
|
+
<glyph glyph-name="at" unicode="@" horiz-adv-x="783"
|
|
138
|
+
d="M352 -70q-136 0 -226.5 90.5t-90.5 223.5q0 160 119.5 277t277.5 117q139 0 227 -91.5t88 -225.5q0 -110 -52 -173t-121 -63q-40 0 -64.5 23.5t-26.5 57.5v7q-27 -39 -70 -63.5t-89 -24.5q-69 0 -111 45t-42 118q0 102 72 176.5t163 74.5q46 0 79.5 -22t48.5 -56l13 62
|
|
139
|
+
h68l-57 -271q-2 -12 -2 -21q0 -24 13.5 -38t33.5 -14q38 0 73.5 45t35.5 137q0 124 -78.5 203.5t-204.5 79.5q-144 0 -251.5 -108.5t-107.5 -249.5q0 -121 81 -202t205 -81q97 0 186 56l18 -26q-98 -63 -208 -63zM345 141q86 0 148 90l29 139q-10 28 -36.5 50.5t-66.5 22.5
|
|
140
|
+
q-73 0 -124.5 -58t-51.5 -133q0 -49 27 -80t75 -31z" />
|
|
141
|
+
<glyph glyph-name="A" unicode="A" horiz-adv-x="658"
|
|
142
|
+
d="M649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360l-141 -360h283z" />
|
|
143
|
+
<glyph glyph-name="B" unicode="B" horiz-adv-x="629"
|
|
144
|
+
d="M382 0h-304v667h297q86 0 136.5 -47t50.5 -123q0 -60 -34 -101.5t-83 -51.5q53 -8 91.5 -56t38.5 -108q0 -81 -51.5 -130.5t-141.5 -49.5zM361 378q55 0 85 30t30 77t-30.5 77.5t-84.5 30.5h-200v-215h200zM366 74q58 0 90.5 31t32.5 84q0 48 -32.5 81.5t-90.5 33.5h-205
|
|
145
|
+
v-230h205z" />
|
|
146
|
+
<glyph glyph-name="C" unicode="C" horiz-adv-x="676"
|
|
147
|
+
d="M394 -12q-146 0 -244.5 96.5t-98.5 248.5t98.5 248.5t244.5 96.5q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q56 0 105.5 27t78.5 70l70 -38q-97 -133 -254 -133z" />
|
|
148
|
+
<glyph glyph-name="D" unicode="D" horiz-adv-x="700"
|
|
149
|
+
d="M306 0h-228v667h228q153 0 247.5 -95t94.5 -239q0 -145 -94 -239t-248 -94zM306 74q118 0 187 74t69 185q0 112 -68 186t-188 74h-145v-519h145z" />
|
|
150
|
+
<glyph glyph-name="E" unicode="E" horiz-adv-x="569"
|
|
151
|
+
d="M515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74z" />
|
|
152
|
+
<glyph glyph-name="F" unicode="F" horiz-adv-x="551"
|
|
153
|
+
d="M161 0h-83v667h437v-74h-354v-215h347v-74h-347v-304z" />
|
|
154
|
+
<glyph glyph-name="G" unicode="G" horiz-adv-x="713"
|
|
155
|
+
d="M394 -13q-145 0 -244 96.5t-99 249.5t98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q55 0 103 21.5t77 50.5v135h-230v74h312v-240q-103 -116 -262 -116z" />
|
|
156
|
+
<glyph glyph-name="H" unicode="H" horiz-adv-x="712"
|
|
157
|
+
d="M634 0h-83v306h-390v-306h-83v667h83v-287h390v287h83v-667z" />
|
|
158
|
+
<glyph glyph-name="I" unicode="I" horiz-adv-x="239"
|
|
159
|
+
d="M161 0h-83v667h83v-667z" />
|
|
160
|
+
<glyph glyph-name="J" unicode="J" horiz-adv-x="475"
|
|
161
|
+
d="M185 -12q-108 0 -174 77l44 63q53 -66 125 -66q61 0 97.5 38.5t36.5 101.5v465h83v-466q0 -104 -59 -158.5t-153 -54.5z" />
|
|
162
|
+
<glyph glyph-name="K" unicode="K" horiz-adv-x="601"
|
|
163
|
+
d="M585 0h-104l-253 300l-67 -76v-224h-83v667h83v-344l295 344h104l-278 -316z" />
|
|
164
|
+
<glyph glyph-name="L" unicode="L" horiz-adv-x="493"
|
|
165
|
+
d="M460 0h-393v667h83v-593h310v-74z" />
|
|
166
|
+
<glyph glyph-name="M" unicode="M" horiz-adv-x="809"
|
|
167
|
+
d="M731 0h-83v561l-226 -561h-34l-227 561v-561h-83v667h119l208 -514l207 514h119v-667z" />
|
|
168
|
+
<glyph glyph-name="N" unicode="N" horiz-adv-x="708"
|
|
169
|
+
d="M630 0h-80l-389 532v-532h-83v667h85l384 -521v521h83v-667z" />
|
|
170
|
+
<glyph glyph-name="O" unicode="O" horiz-adv-x="765"
|
|
171
|
+
d="M382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z" />
|
|
172
|
+
<glyph glyph-name="P" unicode="P" horiz-adv-x="587"
|
|
173
|
+
d="M161 0h-83v667h268q97 0 153 -58t56 -143t-56.5 -143t-152.5 -58h-185v-265zM336 339q59 0 96 35.5t37 91.5t-37 91.5t-96 35.5h-175v-254h175z" />
|
|
174
|
+
<glyph glyph-name="Q" unicode="Q" horiz-adv-x="765"
|
|
175
|
+
d="M382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-92 -247l63 -67l-57 -50l-65 69q-78 -50 -181 -50zM382 62q71 0 127 34l-95 103l58 49l94 -102q62 76 62 187q0 118 -68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z
|
|
176
|
+
" />
|
|
177
|
+
<glyph glyph-name="R" unicode="R" horiz-adv-x="609"
|
|
178
|
+
d="M562 0h-98l-169 265h-134v-265h-83v667h268q93 0 151.5 -55t58.5 -146q0 -86 -50.5 -137t-123.5 -57zM336 338q59 0 96.5 36t37.5 92q0 57 -37.5 92t-96.5 35h-175v-255h175z" />
|
|
179
|
+
<glyph glyph-name="S" unicode="S" horiz-adv-x="586"
|
|
180
|
+
d="M294 -12q-162 0 -256 106l50 64q83 -96 209 -96q81 0 119 35t38 81q0 47 -40.5 75t-99 42.5t-116.5 32t-98.5 58t-40.5 106.5q0 82 65 134t165 52q147 0 236 -94l-50 -61q-71 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5q0 -35 29.5 -58t73 -34t95 -27.5t95 -35t73 -59.5
|
|
181
|
+
t29.5 -99q0 -81 -60.5 -138.5t-185.5 -57.5z" />
|
|
182
|
+
<glyph glyph-name="T" unicode="T" horiz-adv-x="570"
|
|
183
|
+
d="M326 0h-83v593h-211v74h506v-74h-212v-593z" />
|
|
184
|
+
<glyph glyph-name="U" unicode="U" horiz-adv-x="701"
|
|
185
|
+
d="M350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5z" />
|
|
186
|
+
<glyph glyph-name="V" unicode="V" horiz-adv-x="658"
|
|
187
|
+
d="M381 0h-103l-269 667h95l225 -576l225 576h95z" />
|
|
188
|
+
<glyph glyph-name="W" unicode="W" horiz-adv-x="883"
|
|
189
|
+
d="M678 0h-90l-147 538l-147 -538h-90l-190 667h92l148 -556l153 556h69l153 -556l147 556h93z" />
|
|
190
|
+
<glyph glyph-name="X" unicode="X" horiz-adv-x="652"
|
|
191
|
+
d="M640 0h-101l-213 284l-213 -284h-101l260 342l-245 325h101l198 -266l197 266h102l-245 -324z" />
|
|
192
|
+
<glyph glyph-name="Y" unicode="Y" horiz-adv-x="626"
|
|
193
|
+
d="M355 0h-83v282l-263 385h97l207 -310l207 310h97l-262 -385v-282z" />
|
|
194
|
+
<glyph glyph-name="Z" unicode="Z" horiz-adv-x="585"
|
|
195
|
+
d="M537 0h-489v69l375 524h-375v74h482v-69l-376 -524h383v-74z" />
|
|
196
|
+
<glyph glyph-name="bracketleft" unicode="[" horiz-adv-x="243"
|
|
197
|
+
d="M226 -190h-186v868h186v-55h-127v-758h127v-55z" />
|
|
198
|
+
<glyph glyph-name="backslash" unicode="\" horiz-adv-x="296"
|
|
199
|
+
d="M237 -20l-237 707h59l237 -707h-59z" />
|
|
200
|
+
<glyph glyph-name="bracketright" unicode="]" horiz-adv-x="243"
|
|
201
|
+
d="M204 -190h-187v55h128v758h-128v55h187v-868z" />
|
|
202
|
+
<glyph glyph-name="asciicircum" unicode="^" horiz-adv-x="432"
|
|
203
|
+
d="M413 333h-62l-135 279l-135 -279h-62l169 334h57z" />
|
|
204
|
+
<glyph glyph-name="underscore" unicode="_" horiz-adv-x="564"
|
|
205
|
+
d="M567 -95h-570v55h570v-55z" />
|
|
206
|
+
<glyph glyph-name="grave" unicode="`" horiz-adv-x="226"
|
|
207
|
+
d="M226 556h-57l-169 144h78z" />
|
|
208
|
+
<glyph glyph-name="grave" unicode="ˋ" horiz-adv-x="226"
|
|
209
|
+
d="M226 556h-57l-169 144h78z" />
|
|
210
|
+
<glyph glyph-name="a" unicode="a" horiz-adv-x="528"
|
|
211
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
212
|
+
q0 -47 33.5 -76.5t86.5 -29.5z" />
|
|
213
|
+
<glyph glyph-name="b" unicode="b" horiz-adv-x="575"
|
|
214
|
+
d="M150 131q20 -32 60.5 -54t84.5 -22q71 0 113 52t42 134t-42 134.5t-113 52.5q-44 0 -84.5 -22.5t-60.5 -55.5v-219zM150 0h-75v667h75v-257q63 85 163 85q96 0 155.5 -69.5t59.5 -184.5q0 -116 -59.5 -184.5t-155.5 -68.5q-101 0 -163 84v-72z" />
|
|
215
|
+
<glyph glyph-name="c" unicode="c" horiz-adv-x="496"
|
|
216
|
+
d="M288 -12q-107 0 -174 72.5t-67 181.5t67 181t174 72q112 0 177 -84l-50 -45q-45 62 -123 62q-75 0 -121 -52.5t-46 -133.5q0 -82 46 -134.5t121 -52.5q76 0 123 63l50 -46q-65 -84 -177 -84z" />
|
|
217
|
+
<glyph glyph-name="d" unicode="d" horiz-adv-x="575"
|
|
218
|
+
d="M500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v257h75v-667zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
219
|
+
<glyph glyph-name="e" unicode="e" horiz-adv-x="563"
|
|
220
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317z" />
|
|
221
|
+
<glyph glyph-name="f" unicode="f" horiz-adv-x="284"
|
|
222
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-37h98v-66h-98v-417z" />
|
|
223
|
+
<glyph glyph-name="g" unicode="g" horiz-adv-x="575"
|
|
224
|
+
d="M269 -196q-63 0 -108 16t-87 57l38 54q55 -65 157 -65q66 0 111 34.5t45 106.5v73q-28 -39 -71 -62.5t-92 -23.5q-96 0 -155.5 67.5t-59.5 182.5t59.5 183t155.5 68q100 0 163 -85v73h75v-476q0 -106 -65.5 -154.5t-165.5 -48.5zM281 61q43 0 83 22.5t61 55.5v212
|
|
225
|
+
q-21 32 -61 54.5t-83 22.5q-72 0 -114 -51t-42 -133q0 -81 42 -132t114 -51z" />
|
|
226
|
+
<glyph glyph-name="h" unicode="h" horiz-adv-x="552"
|
|
227
|
+
d="M477 0h-75v318q0 61 -28 85.5t-81 24.5q-41 0 -80.5 -22t-61.5 -53v-353h-75v667h75v-254q27 34 74 58t98 24q154 0 154 -154v-341z" />
|
|
228
|
+
<glyph glyph-name="i" unicode="i" horiz-adv-x="225"
|
|
229
|
+
d="M113 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM150 0h-75v483h75v-483z" />
|
|
230
|
+
<glyph glyph-name="j" unicode="j" horiz-adv-x="225"
|
|
231
|
+
d="M113 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM7 -196q-60 0 -105 36l26 56q30 -30 69 -30q36 0 57 21.5t21 65.5v530h75v-530q0 -72 -37 -110.5t-106 -38.5z" />
|
|
232
|
+
<glyph glyph-name="k" unicode="k" horiz-adv-x="514"
|
|
233
|
+
d="M500 0h-96l-173 217l-81 -79v-138h-75v667h75v-441l254 257h95l-214 -219z" />
|
|
234
|
+
<glyph glyph-name="l" unicode="l" horiz-adv-x="225"
|
|
235
|
+
d="M150 0h-75v667h75v-667z" />
|
|
236
|
+
<glyph glyph-name="m" unicode="m" horiz-adv-x="808"
|
|
237
|
+
d="M733 0h-75v328q0 100 -89 100q-36 0 -72 -21.5t-56 -52.5v-354h-75v328q0 100 -89 100q-35 0 -70.5 -22t-56.5 -53v-353h-75v483h75v-70q19 29 63.5 55.5t93.5 26.5q52 0 85 -25t44 -65q22 36 67 63t95 27q135 0 135 -146v-349z" />
|
|
238
|
+
<glyph glyph-name="n" unicode="n" horiz-adv-x="552"
|
|
239
|
+
d="M476 0h-74v316q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-339z" />
|
|
240
|
+
<glyph glyph-name="o" unicode="o" horiz-adv-x="572"
|
|
241
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5z" />
|
|
242
|
+
<glyph glyph-name="p" unicode="p" horiz-adv-x="572"
|
|
243
|
+
d="M313 -12q-99 0 -163 85v-257h-75v667h75v-72q27 38 70 61t93 23q96 0 155.5 -68.5t59.5 -184.5t-59.5 -185t-155.5 -69zM294 55q71 0 113 52.5t42 134.5t-42 134t-113 52q-43 0 -83.5 -22.5t-60.5 -54.5v-218q20 -33 60.5 -55.5t83.5 -22.5z" />
|
|
244
|
+
<glyph glyph-name="q" unicode="q" horiz-adv-x="572"
|
|
245
|
+
d="M278 55q43 0 83.5 22.5t60.5 55.5v218q-20 32 -60.5 54.5t-83.5 22.5q-71 0 -113 -52t-42 -134t42 -134.5t113 -52.5zM259 -12q-96 0 -155.5 69t-59.5 185t59.5 184.5t155.5 68.5q50 0 93 -23t70 -61v72h75v-667h-75v257q-64 -85 -163 -85z" />
|
|
246
|
+
<glyph glyph-name="r" unicode="r" horiz-adv-x="330"
|
|
247
|
+
d="M150 0h-75v483h75v-77q69 88 161 88v-77q-18 2 -29 2q-35 0 -75 -23.5t-57 -53.5v-342z" />
|
|
248
|
+
<glyph glyph-name="s" unicode="s" horiz-adv-x="465"
|
|
249
|
+
d="M229 -12q-122 0 -195 76l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44
|
|
250
|
+
t22 -74.5q0 -64 -49.5 -105t-139.5 -41z" />
|
|
251
|
+
<glyph glyph-name="t" unicode="t" horiz-adv-x="294"
|
|
252
|
+
d="M198 -12q-108 0 -108 113v316h-80v66h80v132h76v-132h98v-66h-98v-300q0 -28 12.5 -45t35.5 -17q32 0 51 21l22 -57q-33 -31 -89 -31z" />
|
|
253
|
+
<glyph glyph-name="u" unicode="u" horiz-adv-x="551"
|
|
254
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483z" />
|
|
255
|
+
<glyph glyph-name="v" unicode="v" horiz-adv-x="490"
|
|
256
|
+
d="M286 0h-82l-201 483h82l160 -396l161 396h81z" />
|
|
257
|
+
<glyph glyph-name="w" unicode="w" horiz-adv-x="734"
|
|
258
|
+
d="M569 0h-76l-126 388l-126 -388h-75l-154 483h78l118 -385l127 385h65l126 -385l118 385h79z" />
|
|
259
|
+
<glyph glyph-name="x" unicode="x" horiz-adv-x="487"
|
|
260
|
+
d="M475 0h-86l-146 198l-145 -198h-86l185 248l-175 235h87l134 -184l135 184h86l-175 -235z" />
|
|
261
|
+
<glyph glyph-name="y" unicode="y" horiz-adv-x="490"
|
|
262
|
+
d="M49 -189l11 68q18 -8 41 -8q26 0 43 11t29 40l32 73l-202 488h82l160 -396l161 396h81l-242 -581q-40 -96 -142 -98q-31 0 -54 7z" />
|
|
263
|
+
<glyph glyph-name="z" unicode="z" horiz-adv-x="472"
|
|
264
|
+
d="M420 0h-368v59l266 358h-266v66h364v-57l-268 -360h272v-66z" />
|
|
265
|
+
<glyph glyph-name="braceleft" unicode="{" horiz-adv-x="261"
|
|
266
|
+
d="M244 -190h-62q-50 0 -87 37.5t-37 96.5v206q0 30 -13.5 49.5t-39.5 19.5v50q26 0 39.5 19.5t13.5 49.5v205q0 60 37 97.5t87 37.5h62v-55h-62q-27 0 -46.5 -22.5t-19.5 -56.5v-212q0 -69 -45 -88q45 -19 45 -88v-211q0 -34 19.5 -57t46.5 -23h62v-55z" />
|
|
267
|
+
<glyph glyph-name="bar" unicode="|" horiz-adv-x="211"
|
|
268
|
+
d="M133 -20h-55v707h55v-707z" />
|
|
269
|
+
<glyph glyph-name="braceright" unicode="}" horiz-adv-x="261"
|
|
270
|
+
d="M17 -190v55h61q27 0 47 23t20 57v211q0 69 45 88q-45 19 -45 88v212q0 34 -19.5 56.5t-47.5 22.5h-61v55h61q50 0 87.5 -37.5t37.5 -97.5v-205q0 -30 13.5 -49.5t38.5 -19.5v-50q-25 0 -38.5 -19.5t-13.5 -49.5v-206q0 -59 -37.5 -96.5t-87.5 -37.5h-61z" />
|
|
271
|
+
<glyph glyph-name="asciitilde" unicode="~" horiz-adv-x="503"
|
|
272
|
+
d="M420 667l55 -6q-5 -51 -12.5 -89t-22.5 -74.5t-40.5 -55.5t-61.5 -19q-35 0 -58.5 19.5t-35 47.5t-21 56t-23.5 47.5t-35 19.5q-63 0 -82 -191l-56 7q5 50 13 88.5t23 74.5t41 55t61 19t58.5 -19.5t35 -48t21 -56.5t23.5 -47.5t35 -19.5q63 0 82 192z" />
|
|
273
|
+
<glyph glyph-name="nbspace" unicode=" " horiz-adv-x="259"
|
|
274
|
+
/>
|
|
275
|
+
<glyph glyph-name="exclamdown" unicode="¡" horiz-adv-x="230"
|
|
276
|
+
d="M68 -184l15 480h63l16 -480h-94zM60 438q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39q0 -22 -16 -38t-38 -16t-38.5 16t-16.5 38z" />
|
|
277
|
+
<glyph glyph-name="cent" unicode="¢" horiz-adv-x="496"
|
|
278
|
+
d="M252 -100v91q-92 12 -148.5 82t-56.5 169q0 98 56.5 167.5t148.5 82.5v73h59v-71q94 -8 154 -83l-50 -45q-40 55 -104 61v-371q63 6 104 62l50 -46q-58 -75 -154 -83v-89h-59zM125 242q0 -70 34 -120t93 -63v365q-59 -13 -93 -62.5t-34 -119.5z" />
|
|
279
|
+
<glyph glyph-name="sterling" unicode="£" horiz-adv-x="518"
|
|
280
|
+
d="M20 268v54h105q-28 32 -38.5 45.5t-24.5 46t-14 66.5q0 82 66 139.5t158 57.5q68 0 121 -29.5t81 -82.5l-67 -40q-13 34 -48 58t-79 24q-59 0 -100.5 -35t-41.5 -93q0 -26 9 -50.5t17 -37t28 -37t26 -32.5h150v-54h-122q7 -23 7 -43q0 -78 -76 -132q27 9 52 9
|
|
281
|
+
q33 0 77 -20.5t71 -20.5q31 0 57.5 12.5t37.5 27.5l36 -67q-49 -47 -135 -47q-47 0 -95 23t-84 23q-42 0 -118 -40l-29 63q64 28 98 67.5t34 84.5q0 30 -15 60h-144z" />
|
|
282
|
+
<glyph glyph-name="currency" unicode="¤" horiz-adv-x="522"
|
|
283
|
+
d="M486 137l-29 -29l-56 57q-60 -51 -140 -51t-140 51l-57 -57l-28 29l56 56q-50 63 -50 140q0 79 50 140l-56 57l28 28l57 -56q59 50 140 50q79 0 140 -50l56 56l29 -28l-56 -57q50 -61 50 -140q0 -77 -50 -140zM432 333q0 71 -50 121t-121 50t-121 -50t-50 -121t50 -121
|
|
284
|
+
t121 -50t121 50t50 121z" />
|
|
285
|
+
<glyph glyph-name="yen" unicode="¥" horiz-adv-x="626"
|
|
286
|
+
d="M355 0h-83v122h-250v53h250v107h-250v52h214l-227 333h97l207 -310l207 310h97l-227 -333h215v-52h-250v-107h250v-53h-250v-122z" />
|
|
287
|
+
<glyph glyph-name="brokenbar" unicode="¦" horiz-adv-x="211"
|
|
288
|
+
d="M133 -20h-55v316h55v-316zM133 371h-55v316h55v-316z" />
|
|
289
|
+
<glyph glyph-name="section" unicode="§" horiz-adv-x="468"
|
|
290
|
+
d="M418 315q0 -88 -92 -127q92 -36 92 -122q0 -69 -52 -108t-137 -39q-115 0 -195 78l38 49q59 -71 157 -71q52 0 84.5 23t32.5 63q0 34 -31 53.5t-75 30t-87.5 23.5t-74.5 43.5t-31 79.5t32.5 81.5t81.5 45.5q-114 36 -114 124q0 57 48.5 96t130.5 39q116 0 179 -71
|
|
291
|
+
l-35 -45q-50 60 -141 60q-49 0 -79.5 -22t-30.5 -58q0 -26 22 -42.5t55.5 -24t72 -18.5t72 -24t55.5 -43t22 -74zM344 306q0 38 -30.5 58t-82.5 33q-62 -16 -87 -40t-25 -59q0 -47 67 -70q18 -7 75 -21q83 36 83 99z" />
|
|
292
|
+
<glyph glyph-name="dieresis" unicode="¨" horiz-adv-x="272"
|
|
293
|
+
d="M286 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM79 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
294
|
+
<glyph glyph-name="copyright" unicode="©" horiz-adv-x="778"
|
|
295
|
+
d="M734 334q0 -143 -101 -244t-244 -101t-244 101.5t-101 243.5q0 143 101 244t244 101t244 -101t101 -244zM703 334q0 130 -92 222t-222 92q-129 0 -221.5 -92t-92.5 -222q0 -129 92.5 -221.5t221.5 -92.5q130 0 222 92.5t92 221.5zM512 212l26 -25q-57 -66 -147 -66
|
|
296
|
+
q-87 0 -147.5 62t-60.5 153t60.5 151.5t147.5 60.5q91 0 146 -65l-25 -25q-19 26 -52.5 41.5t-68.5 15.5q-70 0 -120.5 -50.5t-50.5 -129.5q0 -77 51 -129t120 -52q36 0 68.5 16t52.5 42z" />
|
|
297
|
+
<glyph glyph-name="ordfeminine" unicode="ª" horiz-adv-x="378"
|
|
298
|
+
d="M318 326h-57v35q-41 -43 -108 -43q-44 0 -78 28t-34 76q0 49 33.5 76t78.5 27q68 0 108 -42v55q0 30 -23 47.5t-57 17.5q-59 0 -98 -46l-26 38q52 53 131 53q57 0 93.5 -27t36.5 -84v-211zM175 356q56 0 86 38v56q-30 38 -86 38q-33 0 -54.5 -18.5t-21.5 -47.5
|
|
299
|
+
q0 -30 21.5 -48t54.5 -18z" />
|
|
300
|
+
<glyph glyph-name="guillemotleft" unicode="«" horiz-adv-x="439"
|
|
301
|
+
d="M409 63h-75l-160 180l160 177h75l-160 -177zM265 63h-75l-160 180l160 177h75l-160 -177z" />
|
|
302
|
+
<glyph glyph-name="logicalnot" unicode="¬" horiz-adv-x="504"
|
|
303
|
+
d="M470 457v-246h-55v193h-386v53h441z" />
|
|
304
|
+
<glyph glyph-name="registered" unicode="®" horiz-adv-x="494"
|
|
305
|
+
d="M459 465q0 -88 -62 -150t-150 -62t-150 62t-62 150t62 150t150 62q89 0 150.5 -61.5t61.5 -150.5zM430 465q0 77 -53.5 130t-129.5 53t-129.5 -53t-53.5 -130q0 -75 53.5 -129t129.5 -54t129.5 54t53.5 129zM345 343h-40l-63 96h-44v-96h-32v243h99q32 0 54.5 -20.5
|
|
306
|
+
t22.5 -53.5q0 -35 -22.5 -53.5t-39.5 -18.5zM309 512q0 19 -13.5 32.5t-30.5 13.5h-67v-90h67q16 0 30 13t14 31z" />
|
|
307
|
+
<glyph glyph-name="macron" unicode="¯" horiz-adv-x="363"
|
|
308
|
+
d="M363 591h-363v48h363v-48z" />
|
|
309
|
+
<glyph glyph-name="macron" unicode="‾" horiz-adv-x="363"
|
|
310
|
+
d="M363 591h-363v48h363v-48z" />
|
|
311
|
+
<glyph glyph-name="degree" unicode="°" horiz-adv-x="290"
|
|
312
|
+
d="M267 555q0 -51 -36 -86.5t-86 -35.5q-51 0 -86.5 35.5t-35.5 86.5q0 50 35.5 86t86.5 36q50 0 86 -36t36 -86zM219 555q0 30 -22 52t-52 22t-51.5 -22t-21.5 -52q0 -31 21 -52t52 -21q30 0 52 21.5t22 51.5z" />
|
|
313
|
+
<glyph glyph-name="plusminus" unicode="±" horiz-adv-x="499"
|
|
314
|
+
d="M470 324h-192v-213h-57v213h-192v52h192v207h57v-207h192v-52zM470 0h-441v53h441v-53z" />
|
|
315
|
+
<glyph glyph-name="twosuperior" unicode="²"
|
|
316
|
+
d="M341 421h-291v45q125 90 177 141.5t52 97.5q0 36 -25 54.5t-60 18.5t-65 -15t-47 -37l-33 38q50 63 147 63q60 0 101.5 -30t41.5 -88q0 -55 -50 -110.5t-151 -128.5h203v-49z" />
|
|
317
|
+
<glyph glyph-name="threesuperior" unicode="³"
|
|
318
|
+
d="M343 530q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29t39.5 -78q0 -40 -27 -63.5t-62 -28.5
|
|
319
|
+
q35 -4 65.5 -29.5t30.5 -68.5z" />
|
|
320
|
+
<glyph glyph-name="acute" unicode="´" horiz-adv-x="226"
|
|
321
|
+
d="M226 700l-169 -144h-57l148 144h78z" />
|
|
322
|
+
<glyph glyph-name="mu" unicode="µ" horiz-adv-x="551"
|
|
323
|
+
d="M150 -184h-75v667h75v-318q0 -61 28 -86.5t81 -25.5q41 0 80.5 22t61.5 53v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-46 0 -79 14v-186z" />
|
|
324
|
+
<glyph glyph-name="mu" unicode="μ" horiz-adv-x="551"
|
|
325
|
+
d="M150 -184h-75v667h75v-318q0 -61 28 -86.5t81 -25.5q41 0 80.5 22t61.5 53v355h75v-483h-75v68q-30 -34 -75.5 -57t-96.5 -23q-46 0 -79 14v-186z" />
|
|
326
|
+
<glyph glyph-name="paragraph" unicode="¶" horiz-adv-x="449"
|
|
327
|
+
d="M378 -100h-45v722h-89v-722h-45v423q-71 0 -121.5 50.5t-50.5 121.5t50.5 121.5t121.5 50.5h179v-767z" />
|
|
328
|
+
<glyph glyph-name="periodcentered" unicode="·" horiz-adv-x="231"
|
|
329
|
+
d="M170 245q0 -23 -16 -39t-39 -16t-39 16t-16 39q0 22 16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
330
|
+
<glyph glyph-name="periodcentered" unicode="∙" horiz-adv-x="231"
|
|
331
|
+
d="M170 245q0 -23 -16 -39t-39 -16t-39 16t-16 39q0 22 16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
332
|
+
<glyph glyph-name="cedilla" unicode="¸" horiz-adv-x="205"
|
|
333
|
+
d="M101 -191q-63 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l31 84h45l-26 -66q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
334
|
+
<glyph glyph-name="onesuperior" unicode="¹" horiz-adv-x="235"
|
|
335
|
+
d="M175 421h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
336
|
+
<glyph glyph-name="ordmasculine" unicode="º" horiz-adv-x="405"
|
|
337
|
+
d="M202 318q-72 0 -117 48t-45 117q0 70 44.5 117.5t117.5 47.5q74 0 118.5 -47.5t44.5 -117.5t-44.5 -117.5t-118.5 -47.5zM202 366q48 0 76 33.5t28 83.5t-28 83t-76 33q-47 0 -74.5 -33t-27.5 -83q0 -51 27.5 -84t74.5 -33z" />
|
|
338
|
+
<glyph glyph-name="guillemotright" unicode="»" horiz-adv-x="439"
|
|
339
|
+
d="M265 243l-160 -180h-75l160 180l-160 177h75zM409 243l-160 -180h-75l160 180l-160 177h75z" />
|
|
340
|
+
<glyph glyph-name="onequarter" unicode="¼" horiz-adv-x="770"
|
|
341
|
+
d="M590 667l-427 -667h-54l426 667h55zM733 100h-57v-100h-60v100h-196v45l173 255h83v-251h57v-49zM616 149v198l-136 -198h136zM175 267h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
342
|
+
<glyph glyph-name="onehalf" unicode="½" horiz-adv-x="807"
|
|
343
|
+
d="M590 667l-427 -667h-54l426 667h55zM760 0h-291v45q125 90 177 141.5t52 97.5q0 36 -25 54.5t-60 18.5t-65 -15t-47 -37l-33 38q50 63 147 63q60 0 101.5 -30t41.5 -88q0 -55 -50 -110.5t-151 -128.5h203v-49zM175 267h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
344
|
+
<glyph glyph-name="threequarters" unicode="¾" horiz-adv-x="878"
|
|
345
|
+
d="M698 667l-427 -667h-54l426 667h55zM842 100h-57v-100h-60v100h-196v45l173 255h83v-251h57v-49zM725 149v198l-136 -198h136zM343 376q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1
|
|
346
|
+
q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29t39.5 -78q0 -40 -27 -63.5t-62 -28.5q35 -4 65.5 -29.5t30.5 -68.5z" />
|
|
347
|
+
<glyph glyph-name="questiondown" unicode="¿" horiz-adv-x="394"
|
|
348
|
+
d="M259 296q38 -32 38 -82q0 -35 -18.5 -63t-45 -47.5t-53 -37.5t-45 -42t-18.5 -53q0 -40 30.5 -66.5t86.5 -26.5q99 0 160 81l50 -53q-78 -102 -217 -102q-89 0 -142.5 44.5t-53.5 110.5q0 42 20 75.5t48.5 54.5t56.5 40t48 42t20 50q0 30 -26 48zM238 493
|
|
349
|
+
q22 0 38.5 -16.5t16.5 -38.5t-16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5t16.5 38.5t38.5 16.5z" />
|
|
350
|
+
<glyph glyph-name="Agrave" unicode="À" horiz-adv-x="658"
|
|
351
|
+
d="M396 728h-57l-169 144h78zM649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360l-141 -360h283z" />
|
|
352
|
+
<glyph glyph-name="Aacute" unicode="Á" horiz-adv-x="658"
|
|
353
|
+
d="M490 872l-169 -144h-57l148 144h78zM649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360l-141 -360h283z" />
|
|
354
|
+
<glyph glyph-name="Acircumflex" unicode="Â" horiz-adv-x="658"
|
|
355
|
+
d="M463 728h-51l-83 106l-80 -106h-51l95 144h72zM649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360l-141 -360h283z" />
|
|
356
|
+
<glyph glyph-name="Atilde" unicode="Ã" horiz-adv-x="658"
|
|
357
|
+
d="M389 726q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37zM649 0h-95l-59 149h-332l-59 -149h-95
|
|
358
|
+
l269 667h103zM471 222l-142 360l-141 -360h283z" />
|
|
359
|
+
<glyph glyph-name="Adieresis" unicode="Ä" horiz-adv-x="658"
|
|
360
|
+
d="M480 773q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM273 773q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM649 0h-95l-59 149h-332l-59 -149h-95
|
|
361
|
+
l269 667h103zM471 222l-142 360l-141 -360h283z" />
|
|
362
|
+
<glyph glyph-name="Aring" unicode="Å" horiz-adv-x="658"
|
|
363
|
+
d="M330 692q-40 0 -69.5 29t-29.5 70t29.5 70t69.5 29t68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM330 732q24 0 41 17.5t17 41.5t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5zM649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360
|
|
364
|
+
l-141 -360h283z" />
|
|
365
|
+
<glyph glyph-name="AE" unicode="Æ" horiz-adv-x="948"
|
|
366
|
+
d="M893 0h-437v149h-262l-92 -149h-95l416 667h470v-74h-354v-215h347v-74h-347v-230h354v-74zM456 222v360l-222 -360h222z" />
|
|
367
|
+
<glyph glyph-name="Ccedilla" unicode="Ç" horiz-adv-x="676"
|
|
368
|
+
d="M388 -187q-64 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l21 59q-134 11 -221.5 105.5t-87.5 237.5q0 152 98.5 248.5t244.5 96.5q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-111 0 -184 -76t-73 -195
|
|
369
|
+
q0 -118 73.5 -194.5t183.5 -76.5q56 0 105.5 27t78.5 70l70 -38q-95 -129 -244 -133l-15 -39q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
370
|
+
<glyph glyph-name="Egrave" unicode="È" horiz-adv-x="569"
|
|
371
|
+
d="M363 728h-57l-169 144h78zM515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74z" />
|
|
372
|
+
<glyph glyph-name="Eacute" unicode="É" horiz-adv-x="569"
|
|
373
|
+
d="M456 872l-169 -144h-57l148 144h78zM515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74z" />
|
|
374
|
+
<glyph glyph-name="Ecircumflex" unicode="Ê" horiz-adv-x="569"
|
|
375
|
+
d="M428 728h-51l-83 106l-80 -106h-51l95 144h72zM515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74z" />
|
|
376
|
+
<glyph glyph-name="Edieresis" unicode="Ë" horiz-adv-x="569"
|
|
377
|
+
d="M446 773q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM239 773q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM515 0h-437v667h437v-74h-354v-215h347v-74
|
|
378
|
+
h-347v-230h354v-74z" />
|
|
379
|
+
<glyph glyph-name="Igrave" unicode="Ì" horiz-adv-x="239"
|
|
380
|
+
d="M185 728h-57l-169 144h78zM161 0h-83v667h83v-667z" />
|
|
381
|
+
<glyph glyph-name="Iacute" unicode="Í" horiz-adv-x="239"
|
|
382
|
+
d="M281 872l-169 -144h-57l148 144h78zM161 0h-83v667h83v-667z" />
|
|
383
|
+
<glyph glyph-name="Icircumflex" unicode="Î" horiz-adv-x="239"
|
|
384
|
+
d="M252 728h-51l-83 106l-80 -106h-51l95 144h72zM161 0h-83v667h83v-667z" />
|
|
385
|
+
<glyph glyph-name="Idieresis" unicode="Ï" horiz-adv-x="239"
|
|
386
|
+
d="M269 773q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM62 773q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM161 0h-83v667h83v-667z" />
|
|
387
|
+
<glyph glyph-name="Eth" unicode="Ð" horiz-adv-x="728"
|
|
388
|
+
d="M334 0h-228v299h-96v61h96v307h228q153 0 247.5 -95t94.5 -239q0 -145 -94 -239t-248 -94zM358 299h-169v-225h145q118 0 187 74t69 185q0 112 -68 186t-188 74h-145v-233h169v-61z" />
|
|
389
|
+
<glyph glyph-name="Ntilde" unicode="Ñ" horiz-adv-x="708"
|
|
390
|
+
d="M412 726q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37zM630 0h-80l-389 532v-532h-83v667h85
|
|
391
|
+
l384 -521v521h83v-667z" />
|
|
392
|
+
<glyph glyph-name="Ograve" unicode="Ò" horiz-adv-x="765"
|
|
393
|
+
d="M452 728h-57l-169 144h78zM382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z" />
|
|
394
|
+
<glyph glyph-name="Oacute" unicode="Ó" horiz-adv-x="765"
|
|
395
|
+
d="M544 872l-169 -144h-57l148 144h78zM382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z" />
|
|
396
|
+
<glyph glyph-name="Ocircumflex" unicode="Ô" horiz-adv-x="765"
|
|
397
|
+
d="M517 728h-51l-83 106l-80 -106h-51l95 144h72zM382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z" />
|
|
398
|
+
<glyph glyph-name="Otilde" unicode="Õ" horiz-adv-x="765"
|
|
399
|
+
d="M442 726q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37zM382 -12q-146 0 -238.5 98t-92.5 247
|
|
400
|
+
t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z" />
|
|
401
|
+
<glyph glyph-name="Odieresis" unicode="Ö" horiz-adv-x="765"
|
|
402
|
+
d="M532 773q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM325 773q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM382 -12q-146 0 -238.5 98t-92.5 247
|
|
403
|
+
t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5z" />
|
|
404
|
+
<glyph glyph-name="multiply" unicode="×" horiz-adv-x="499"
|
|
405
|
+
d="M398 148l-149 149l-148 -149l-37 37l149 149l-149 149l37 37l148 -149l149 149l37 -37l-148 -149l148 -149z" />
|
|
406
|
+
<glyph glyph-name="Oslash" unicode="Ø" horiz-adv-x="765"
|
|
407
|
+
d="M382 -12q-96 0 -172 45l-22 -33h-67l44 65q-114 98 -114 268q0 149 92.5 247t238.5 98q92 0 167 -42l21 31h67l-42 -63q56 -47 87.5 -117.5t31.5 -153.5q0 -149 -93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5q0 129 -78 205l-297 -441q55 -35 129 -35zM137 333
|
|
408
|
+
q0 -125 73 -201l296 440q-56 32 -124 32q-111 0 -178 -76t-67 -195z" />
|
|
409
|
+
<glyph glyph-name="Ugrave" unicode="Ù" horiz-adv-x="701"
|
|
410
|
+
d="M418 728h-57l-169 144h78zM350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5z" />
|
|
411
|
+
<glyph glyph-name="Uacute" unicode="Ú" horiz-adv-x="701"
|
|
412
|
+
d="M510 872l-169 -144h-57l148 144h78zM350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5z" />
|
|
413
|
+
<glyph glyph-name="Ucircumflex" unicode="Û" horiz-adv-x="701"
|
|
414
|
+
d="M488 728h-51l-83 106l-80 -106h-51l95 144h72zM350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5z" />
|
|
415
|
+
<glyph glyph-name="Udieresis" unicode="Ü" horiz-adv-x="701"
|
|
416
|
+
d="M501 773q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM294 773q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM350 -12q-132 0 -202 72.5t-70 198.5v408h84
|
|
417
|
+
v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5z" />
|
|
418
|
+
<glyph glyph-name="Yacute" unicode="Ý" horiz-adv-x="626"
|
|
419
|
+
d="M477 872l-169 -144h-57l148 144h78zM355 0h-83v282l-263 385h97l207 -310l207 310h97l-262 -385v-282z" />
|
|
420
|
+
<glyph glyph-name="Thorn" unicode="Þ" horiz-adv-x="587"
|
|
421
|
+
d="M161 0h-83v667h83v-119h185q97 0 153 -58t56 -144q0 -85 -56.5 -142.5t-152.5 -57.5h-185v-146zM336 220q59 0 96 35t37 91t-37 92t-96 36h-175v-254h175z" />
|
|
422
|
+
<glyph glyph-name="germandbls" unicode="ß" horiz-adv-x="597"
|
|
423
|
+
d="M578 135q0 -62 -48.5 -104.5t-137.5 -42.5q-66 0 -107 20t-79 58l38 52q22 -30 61 -49t87 -19q55 0 84 24t29 59q0 32 -29.5 50.5t-71.5 28.5t-84.5 23t-72 43t-29.5 79q0 36 23 65t50 44t50 35.5t23 41.5q0 31 -30 49t-69 18q-49 0 -81.5 -30.5t-32.5 -80.5v-499h-75
|
|
424
|
+
v499q0 76 52 127t138 51q72 0 123.5 -34.5t51.5 -91.5q0 -30 -15.5 -53.5t-37.5 -38.5t-44 -29t-37.5 -32.5t-15.5 -40.5q0 -28 29.5 -44t72 -25.5t84.5 -22.5t71.5 -45.5t29.5 -84.5z" />
|
|
425
|
+
<glyph glyph-name="agrave" unicode="à" horiz-adv-x="528"
|
|
426
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
427
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM332 556h-57l-169 144h78z" />
|
|
428
|
+
<glyph glyph-name="aacute" unicode="á" horiz-adv-x="528"
|
|
429
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
430
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM427 700l-169 -144h-57l148 144h78z" />
|
|
431
|
+
<glyph glyph-name="acircumflex" unicode="â" horiz-adv-x="528"
|
|
432
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
433
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM401 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
434
|
+
<glyph glyph-name="atilde" unicode="ã" horiz-adv-x="528"
|
|
435
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
436
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM325 554q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
437
|
+
<glyph glyph-name="adieresis" unicode="ä" horiz-adv-x="528"
|
|
438
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
439
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM414 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM207 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
440
|
+
<glyph glyph-name="aring" unicode="å" horiz-adv-x="528"
|
|
441
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
442
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM266 547q-40 0 -69.5 29.5t-29.5 69.5t29.5 69.5t69.5 29.5t68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM266 587q24 0 41 17.5t17 41.5t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5z" />
|
|
443
|
+
<glyph glyph-name="ae" unicode="æ" horiz-adv-x="889"
|
|
444
|
+
d="M843 217h-390q5 -71 51.5 -118t121.5 -47q91 0 150 61l36 -50q-77 -75 -192 -75q-128 0 -200 100q-71 -100 -199 -100q-69 0 -120.5 43t-51.5 117q0 75 49 117t119 42q102 0 160 -64v86q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q140 0 164 -106
|
|
445
|
+
q60 106 185 106q105 0 167 -73.5t62 -185.5v-19zM452 273h317q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111zM392 127q-15 35 -15 65q-44 61 -132 61q-53 0 -86.5 -29.5t-33.5 -75.5q0 -47 33.5 -76.5t86.5 -29.5q100 0 147 85z" />
|
|
446
|
+
<glyph glyph-name="ccedilla" unicode="ç" horiz-adv-x="496"
|
|
447
|
+
d="M290 -189q-64 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l22 61q-97 8 -156.5 79t-59.5 173q0 109 67 181t174 72q112 0 177 -84l-50 -45q-45 62 -123 62q-75 0 -121 -52.5t-46 -133.5q0 -82 46 -134.5t121 -52.5
|
|
448
|
+
q76 0 123 63l50 -46q-58 -76 -158 -83l-16 -42q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
449
|
+
<glyph glyph-name="egrave" unicode="è" horiz-adv-x="563"
|
|
450
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM352 556h-57l-169 144
|
|
451
|
+
h78z" />
|
|
452
|
+
<glyph glyph-name="eacute" unicode="é" horiz-adv-x="563"
|
|
453
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM446 700l-169 -144h-57
|
|
454
|
+
l148 144h78z" />
|
|
455
|
+
<glyph glyph-name="ecircumflex" unicode="ê" horiz-adv-x="563"
|
|
456
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM419 556h-51l-83 106
|
|
457
|
+
l-80 -106h-51l95 144h72z" />
|
|
458
|
+
<glyph glyph-name="edieresis" unicode="ë" horiz-adv-x="563"
|
|
459
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM436 604
|
|
460
|
+
q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM229 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
461
|
+
<glyph glyph-name="igrave" unicode="ì" horiz-adv-x="225"
|
|
462
|
+
d="M178 556h-57l-169 144h78zM150 0h-75v483h75v-483z" />
|
|
463
|
+
<glyph glyph-name="iacute" unicode="í" horiz-adv-x="225"
|
|
464
|
+
d="M273 700l-169 -144h-57l148 144h78zM150 0h-75v483h75v-483z" />
|
|
465
|
+
<glyph glyph-name="icircumflex" unicode="î" horiz-adv-x="225"
|
|
466
|
+
d="M246 556h-51l-83 106l-80 -106h-51l95 144h72zM150 0h-75v483h75v-483z" />
|
|
467
|
+
<glyph glyph-name="idieresis" unicode="ï" horiz-adv-x="225"
|
|
468
|
+
d="M263 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM56 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM150 0h-75v483h75v-483z" />
|
|
469
|
+
<glyph glyph-name="eth" unicode="ð" horiz-adv-x="572"
|
|
470
|
+
d="M122 497l-18 42l118 52l-75 48l41 62q67 -41 112 -76l108 48l17 -41l-86 -38q186 -158 186 -347q0 -114 -65 -186.5t-174 -72.5q-107 0 -173 70t-66 176t62 175.5t158 69.5q98 0 158 -88q-50 90 -160 170zM286 55q74 0 117 52t43 127q0 74 -43 126t-117 52t-117 -52
|
|
471
|
+
t-43 -126q0 -75 43 -127t117 -52z" />
|
|
472
|
+
<glyph glyph-name="ntilde" unicode="ñ" horiz-adv-x="552"
|
|
473
|
+
d="M479 0h-74v316q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-339zM336 554q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5
|
|
474
|
+
t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
475
|
+
<glyph glyph-name="ograve" unicode="ò" horiz-adv-x="572"
|
|
476
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM352 556h-57l-169 144h78z" />
|
|
477
|
+
<glyph glyph-name="oacute" unicode="ó" horiz-adv-x="572"
|
|
478
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM446 700l-169 -144h-57l148 144h78z" />
|
|
479
|
+
<glyph glyph-name="ocircumflex" unicode="ô" horiz-adv-x="572"
|
|
480
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM420 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
481
|
+
<glyph glyph-name="otilde" unicode="õ" horiz-adv-x="572"
|
|
482
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM346 554q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5
|
|
483
|
+
q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
484
|
+
<glyph glyph-name="odieresis" unicode="ö" horiz-adv-x="572"
|
|
485
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM436 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5
|
|
486
|
+
t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM229 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
487
|
+
<glyph glyph-name="divide" unicode="÷" horiz-adv-x="511"
|
|
488
|
+
d="M302 527q0 -19 -13.5 -33t-32.5 -14t-32.5 14t-13.5 33t13.5 32t32.5 13t32.5 -13t13.5 -32zM482 311h-453v52h453v-52zM302 144q0 -19 -13.5 -32.5t-32.5 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5t32.5 -13.5t13.5 -32.5z" />
|
|
489
|
+
<glyph glyph-name="oslash" unicode="ø" horiz-adv-x="572"
|
|
490
|
+
d="M118 0h-54l48 61q-65 71 -65 181q0 108 65.5 180.5t173.5 72.5q79 0 137 -41l23 29h55l-45 -57q69 -72 69 -184q0 -108 -65.5 -181t-173.5 -73q-83 0 -142 45zM286 55q74 0 117 54.5t43 132.5q0 74 -38 124l-220 -277q40 -34 98 -34zM126 242q0 -72 34 -121l218 277
|
|
491
|
+
q-38 30 -92 30q-74 0 -117 -54t-43 -132z" />
|
|
492
|
+
<glyph glyph-name="ugrave" unicode="ù" horiz-adv-x="551"
|
|
493
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM344 556h-57l-169 144h78z" />
|
|
494
|
+
<glyph glyph-name="uacute" unicode="ú" horiz-adv-x="551"
|
|
495
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM437 700l-169 -144h-57l148 144h78z" />
|
|
496
|
+
<glyph glyph-name="ucircumflex" unicode="û" horiz-adv-x="551"
|
|
497
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM409 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
498
|
+
<glyph glyph-name="udieresis" unicode="ü" horiz-adv-x="551"
|
|
499
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM429 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM222 604q0 -19 -13.5 -32.5
|
|
500
|
+
t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
501
|
+
<glyph glyph-name="yacute" unicode="ý" horiz-adv-x="490"
|
|
502
|
+
d="M49 -189l11 68q18 -8 41 -8q26 0 43 11t29 40l32 73l-202 488h82l160 -396l161 396h81l-242 -581q-40 -96 -142 -98q-31 0 -54 7zM406 700l-169 -144h-57l148 144h78z" />
|
|
503
|
+
<glyph glyph-name="thorn" unicode="þ" horiz-adv-x="572"
|
|
504
|
+
d="M313 -12q-99 0 -163 85v-257h-75v851h75v-256q27 38 70 61t93 23q96 0 155.5 -68.5t59.5 -184.5t-59.5 -185t-155.5 -69zM294 55q71 0 113 52.5t42 134.5t-42 134t-113 52q-43 0 -83.5 -22.5t-60.5 -54.5v-218q20 -33 60.5 -55.5t83.5 -22.5z" />
|
|
505
|
+
<glyph glyph-name="ydieresis" unicode="ÿ" horiz-adv-x="490"
|
|
506
|
+
d="M49 -189l11 68q18 -8 41 -8q26 0 43 11t29 40l32 73l-202 488h82l160 -396l161 396h81l-242 -581q-40 -96 -142 -98q-31 0 -54 7zM395 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM188 604q0 -19 -13.5 -32.5
|
|
507
|
+
t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
508
|
+
<glyph glyph-name="Amacron" unicode="Ā" horiz-adv-x="658"
|
|
509
|
+
d="M649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360l-141 -360h283zM510 749h-363v48h363v-48z" />
|
|
510
|
+
<glyph glyph-name="amacron" unicode="ā" horiz-adv-x="528"
|
|
511
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
512
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM444 578h-363v48h363v-48z" />
|
|
513
|
+
<glyph glyph-name="Abreve" unicode="Ă" horiz-adv-x="658"
|
|
514
|
+
d="M649 0h-95l-59 149h-332l-59 -149h-95l269 667h103zM471 222l-142 360l-141 -360h283zM504 810q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
515
|
+
<glyph glyph-name="abreve" unicode="ă" horiz-adv-x="528"
|
|
516
|
+
d="M452 0h-75v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5
|
|
517
|
+
q0 -47 33.5 -76.5t86.5 -29.5zM438 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
518
|
+
<glyph glyph-name="Aogonek" unicode="Ą" horiz-adv-x="658"
|
|
519
|
+
d="M668 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-26l-59 149h-332l-59 -149h-95l269 667h103l268 -667h-1q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42zM471 222l-142 360l-141 -360h283z" />
|
|
520
|
+
<glyph glyph-name="aogonek" unicode="ą" horiz-adv-x="528"
|
|
521
|
+
d="M472 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-7v55q-59 -67 -160 -67q-66 0 -117 43t-51 117q0 77 50 118t118 41q102 0 160 -65v87q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q83 0 135 -40t52 -123v-332q-76 -38 -76 -97
|
|
522
|
+
q0 -50 45 -50q37 0 51 42zM245 42q89 0 132 60v92q-44 59 -132 59q-53 0 -86.5 -29.5t-33.5 -75.5q0 -47 33.5 -76.5t86.5 -29.5z" />
|
|
523
|
+
<glyph glyph-name="Cacute" unicode="Ć" horiz-adv-x="676"
|
|
524
|
+
d="M394 -12q-146 0 -244.5 96.5t-98.5 248.5t98.5 248.5t244.5 96.5q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q56 0 105.5 27t78.5 70l70 -38q-97 -133 -254 -133zM554 872l-169 -144h-57l148 144
|
|
525
|
+
h78z" />
|
|
526
|
+
<glyph glyph-name="cacute" unicode="ć" horiz-adv-x="496"
|
|
527
|
+
d="M288 -12q-107 0 -174 72.5t-67 181.5t67 181t174 72q112 0 177 -84l-50 -45q-45 62 -123 62q-75 0 -121 -52.5t-46 -133.5q0 -82 46 -134.5t121 -52.5q76 0 123 63l50 -46q-65 -84 -177 -84zM453 700l-169 -144h-57l148 144h78z" />
|
|
528
|
+
<glyph glyph-name="Ccircumflex" unicode="Ĉ" horiz-adv-x="676"
|
|
529
|
+
d="M394 -12q-146 0 -244.5 96.5t-98.5 248.5t98.5 248.5t244.5 96.5q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q56 0 105.5 27t78.5 70l70 -38q-97 -133 -254 -133zM527 728h-51l-83 106l-80 -106
|
|
530
|
+
h-51l95 144h72z" />
|
|
531
|
+
<glyph glyph-name="ccircumflex" unicode="ĉ" horiz-adv-x="496"
|
|
532
|
+
d="M288 -12q-107 0 -174 72.5t-67 181.5t67 181t174 72q112 0 177 -84l-50 -45q-45 62 -123 62q-75 0 -121 -52.5t-46 -133.5q0 -82 46 -134.5t121 -52.5q76 0 123 63l50 -46q-65 -84 -177 -84zM425 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
533
|
+
<glyph glyph-name="Cdotaccent" unicode="Ċ" horiz-adv-x="676"
|
|
534
|
+
d="M394 -12q-146 0 -244.5 96.5t-98.5 248.5t98.5 248.5t244.5 96.5q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q56 0 105.5 27t78.5 70l70 -38q-97 -133 -254 -133zM396 727q-19 0 -33 14t-14 33
|
|
535
|
+
t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
536
|
+
<glyph glyph-name="cdotaccent" unicode="ċ" horiz-adv-x="496"
|
|
537
|
+
d="M288 -12q-107 0 -174 72.5t-67 181.5t67 181t174 72q112 0 177 -84l-50 -45q-45 62 -123 62q-75 0 -121 -52.5t-46 -133.5q0 -82 46 -134.5t121 -52.5q76 0 123 63l50 -46q-65 -84 -177 -84zM290 573q-19 0 -33 14t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5
|
|
538
|
+
t-13.5 -33.5t-33.5 -13.5z" />
|
|
539
|
+
<glyph glyph-name="Ccaron" unicode="Č" horiz-adv-x="676"
|
|
540
|
+
d="M394 -12q-146 0 -244.5 96.5t-98.5 248.5t98.5 248.5t244.5 96.5q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q56 0 105.5 27t78.5 70l70 -38q-97 -133 -254 -133zM432 728h-72l-98 144h51l83 -106
|
|
541
|
+
l80 106h51z" />
|
|
542
|
+
<glyph glyph-name="ccaron" unicode="č" horiz-adv-x="496"
|
|
543
|
+
d="M288 -12q-107 0 -174 72.5t-67 181.5t67 181t174 72q112 0 177 -84l-50 -45q-45 62 -123 62q-75 0 -121 -52.5t-46 -133.5q0 -82 46 -134.5t121 -52.5q76 0 123 63l50 -46q-65 -84 -177 -84zM330 556h-72l-98 144h51l83 -106l80 106h51z" />
|
|
544
|
+
<glyph glyph-name="Dcaron" unicode="Ď" horiz-adv-x="700"
|
|
545
|
+
d="M306 0h-228v667h228q153 0 247.5 -95t94.5 -239q0 -145 -94 -239t-248 -94zM306 74q118 0 187 74t69 185q0 112 -68 186t-188 74h-145v-519h145zM389 728h-72l-98 144h51l83 -106l80 106h51z" />
|
|
546
|
+
<glyph glyph-name="dcaron" unicode="ď" horiz-adv-x="644"
|
|
547
|
+
d="M500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v257h75v-667zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52zM648 613q0 -39 -20 -75t-51 -59
|
|
548
|
+
l-32 26q22 15 38.5 39.5t18.5 46.5l-4 -1h-7q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
549
|
+
<glyph glyph-name="Dcroat" unicode="Đ" horiz-adv-x="728"
|
|
550
|
+
d="M334 0h-228v299h-96v61h96v307h228q153 0 247.5 -95t94.5 -239q0 -145 -94 -239t-248 -94zM358 299h-169v-225h145q118 0 187 74t69 185q0 112 -68 186t-188 74h-145v-233h169v-61z" />
|
|
551
|
+
<glyph glyph-name="dcroat" unicode="đ" horiz-adv-x="579"
|
|
552
|
+
d="M500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v125h-157v48h157v84h75v-84h68v-48h-68v-535zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z
|
|
553
|
+
" />
|
|
554
|
+
<glyph glyph-name="Emacron" unicode="Ē" horiz-adv-x="569"
|
|
555
|
+
d="M515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74zM475 749h-363v48h363v-48z" />
|
|
556
|
+
<glyph glyph-name="emacron" unicode="ē" horiz-adv-x="563"
|
|
557
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM463 578h-363v48h363
|
|
558
|
+
v-48z" />
|
|
559
|
+
<glyph glyph-name="Ebreve" unicode="Ĕ" horiz-adv-x="569"
|
|
560
|
+
d="M515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74zM469 810q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
561
|
+
<glyph glyph-name="ebreve" unicode="ĕ" horiz-adv-x="563"
|
|
562
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM463 651
|
|
563
|
+
q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
564
|
+
<glyph glyph-name="Edotaccent" unicode="Ė" horiz-adv-x="569"
|
|
565
|
+
d="M515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74zM301 727q-19 0 -33 14t-14 33t14 33t33 14t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5z" />
|
|
566
|
+
<glyph glyph-name="edotaccent" unicode="ė" horiz-adv-x="563"
|
|
567
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM286 573q-19 0 -33 14
|
|
568
|
+
t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
569
|
+
<glyph glyph-name="Eogonek" unicode="Ę" horiz-adv-x="569"
|
|
570
|
+
d="M535 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-369v667h437v-74h-354v-215h347v-74h-347v-230h354v-74q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
571
|
+
<glyph glyph-name="eogonek" unicode="ę" horiz-adv-x="563"
|
|
572
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-45 -45 -107 -63q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65
|
|
573
|
+
q0 48 39 87h-3zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317z" />
|
|
574
|
+
<glyph glyph-name="Ecaron" unicode="Ě" horiz-adv-x="569"
|
|
575
|
+
d="M515 0h-437v667h437v-74h-354v-215h347v-74h-347v-230h354v-74zM335 728h-72l-98 144h51l83 -106l80 106h51z" />
|
|
576
|
+
<glyph glyph-name="ecaron" unicode="ě" horiz-adv-x="563"
|
|
577
|
+
d="M294 -12q-109 0 -178 70.5t-69 183.5q0 106 68 179.5t170 73.5q107 0 169.5 -73.5t62.5 -185.5v-19h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75zM443 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM323 556h-72l-98 144h51
|
|
578
|
+
l83 -106l80 106h51z" />
|
|
579
|
+
<glyph glyph-name="Gcircumflex" unicode="Ĝ" horiz-adv-x="713"
|
|
580
|
+
d="M394 -13q-145 0 -244 96.5t-99 249.5t98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q55 0 103 21.5t77 50.5v135h-230v74h312v-240q-103 -116 -262 -116zM531 728h-51l-83 106l-80 -106
|
|
581
|
+
h-51l95 144h72z" />
|
|
582
|
+
<glyph glyph-name="gcircumflex" unicode="ĝ" horiz-adv-x="575"
|
|
583
|
+
d="M269 -196q-63 0 -108 16t-87 57l38 54q55 -65 157 -65q66 0 111 34.5t45 106.5v73q-28 -39 -71 -62.5t-92 -23.5q-96 0 -155.5 67.5t-59.5 182.5t59.5 183t155.5 68q100 0 163 -85v73h75v-476q0 -106 -65.5 -154.5t-165.5 -48.5zM281 61q43 0 83 22.5t61 55.5v212
|
|
584
|
+
q-21 32 -61 54.5t-83 22.5q-72 0 -114 -51t-42 -133q0 -81 42 -132t114 -51zM423 549h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
585
|
+
<glyph glyph-name="Gbreve" unicode="Ğ" horiz-adv-x="713"
|
|
586
|
+
d="M394 -13q-145 0 -244 96.5t-99 249.5t98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q55 0 103 21.5t77 50.5v135h-230v74h312v-240q-103 -116 -262 -116zM572 810q-65 -88 -175 -88
|
|
587
|
+
q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
588
|
+
<glyph glyph-name="gbreve" unicode="ğ" horiz-adv-x="575"
|
|
589
|
+
d="M269 -196q-63 0 -108 16t-87 57l38 54q55 -65 157 -65q66 0 111 34.5t45 106.5v73q-28 -39 -71 -62.5t-92 -23.5q-96 0 -155.5 67.5t-59.5 182.5t59.5 183t155.5 68q100 0 163 -85v73h75v-476q0 -106 -65.5 -154.5t-165.5 -48.5zM281 61q43 0 83 22.5t61 55.5v212
|
|
590
|
+
q-21 32 -61 54.5t-83 22.5q-72 0 -114 -51t-42 -133q0 -81 42 -132t114 -51zM461 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
591
|
+
<glyph glyph-name="Gdotaccent" unicode="Ġ" horiz-adv-x="713"
|
|
592
|
+
d="M394 -13q-145 0 -244 96.5t-99 249.5t98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q55 0 103 21.5t77 50.5v135h-230v74h312v-240q-103 -116 -262 -116zM396 727q-19 0 -33 14t-14 33
|
|
593
|
+
t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
594
|
+
<glyph glyph-name="gdotaccent" unicode="ġ" horiz-adv-x="575"
|
|
595
|
+
d="M269 -196q-63 0 -108 16t-87 57l38 54q55 -65 157 -65q66 0 111 34.5t45 106.5v73q-28 -39 -71 -62.5t-92 -23.5q-96 0 -155.5 67.5t-59.5 182.5t59.5 183t155.5 68q100 0 163 -85v73h75v-476q0 -106 -65.5 -154.5t-165.5 -48.5zM281 61q43 0 83 22.5t61 55.5v212
|
|
596
|
+
q-21 32 -61 54.5t-83 22.5q-72 0 -114 -51t-42 -133q0 -81 42 -132t114 -51zM289 573q-19 0 -33 14t-14 33t14 33t33 14t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5z" />
|
|
597
|
+
<glyph glyph-name="Gcommaaccent" unicode="Ģ" horiz-adv-x="713"
|
|
598
|
+
d="M394 -13q-145 0 -244 96.5t-99 249.5t98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q55 0 103 21.5t77 50.5v135h-230v74h312v-240q-103 -116 -262 -116zM449 -138q0 -39 -20 -75
|
|
599
|
+
t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
600
|
+
<glyph glyph-name="gcommaaccent" unicode="ģ" horiz-adv-x="575"
|
|
601
|
+
d="M233 620q0 43 19.5 81.5t49.5 59.5l33 -27q-22 -14 -39 -38t-18 -45q2 1 5 1q17 0 31 -13.5t14 -32.5q0 -18 -13.5 -32t-33.5 -14q-19 0 -33.5 15.5t-14.5 44.5zM269 -196q-63 0 -108 16t-87 57l38 54q55 -65 157 -65q66 0 111 34.5t45 106.5v73q-28 -39 -71 -62.5
|
|
602
|
+
t-92 -23.5q-96 0 -155.5 67.5t-59.5 182.5t59.5 183t155.5 68q100 0 163 -85v73h75v-476q0 -106 -65.5 -154.5t-165.5 -48.5zM281 61q43 0 83 22.5t61 55.5v212q-21 32 -61 54.5t-83 22.5q-72 0 -114 -51t-42 -133q0 -81 42 -132t114 -51z" />
|
|
603
|
+
<glyph glyph-name="Hcircumflex" unicode="Ĥ" horiz-adv-x="712"
|
|
604
|
+
d="M634 0h-83v306h-390v-306h-83v667h83v-287h390v287h83v-667zM486 728h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
605
|
+
<glyph glyph-name="hcircumflex" unicode="ĥ" horiz-adv-x="552"
|
|
606
|
+
d="M477 0h-75v318q0 61 -28 85.5t-81 24.5q-41 0 -80.5 -22t-61.5 -53v-353h-75v667h75v-254q27 34 74 58t98 24q154 0 154 -154v-341zM247 728h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
607
|
+
<glyph glyph-name="Hbar" unicode="Ħ" horiz-adv-x="731"
|
|
608
|
+
d="M644 0h-83v306h-390v-306h-83v501h-78v48h78v118h83v-118h390v118h83v-118h77v-48h-77v-501zM171 380h390v121h-390v-121z" />
|
|
609
|
+
<glyph glyph-name="hbar" unicode="ħ" horiz-adv-x="555"
|
|
610
|
+
d="M309 535h-155v-122q27 34 74 58t98 24q154 0 154 -154v-341h-75v318q0 61 -28 85.5t-81 24.5q-41 0 -80.5 -22t-61.5 -53v-353h-75v535h-69v48h69v84h75v-84h155v-48z" />
|
|
611
|
+
<glyph glyph-name="Itilde" unicode="Ĩ" horiz-adv-x="239"
|
|
612
|
+
d="M161 0h-83v667h83v-667zM179 726q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
613
|
+
<glyph glyph-name="itilde" unicode="ĩ" horiz-adv-x="225"
|
|
614
|
+
d="M150 0h-75v483h75v-483zM172 541q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
615
|
+
<glyph glyph-name="Imacron" unicode="Ī" horiz-adv-x="239"
|
|
616
|
+
d="M161 0h-83v667h83v-667zM301 749h-363v48h363v-48z" />
|
|
617
|
+
<glyph glyph-name="imacron" unicode="ī" horiz-adv-x="225"
|
|
618
|
+
d="M150 0h-75v483h75v-483zM295 578h-363v48h363v-48z" />
|
|
619
|
+
<glyph glyph-name="Ibreve" unicode="Ĭ" horiz-adv-x="239"
|
|
620
|
+
d="M161 0h-83v667h83v-667zM297 810q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
621
|
+
<glyph glyph-name="ibreve" unicode="ĭ" horiz-adv-x="225"
|
|
622
|
+
d="M150 0h-75v483h75v-483zM289 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
623
|
+
<glyph glyph-name="Iogonek" unicode="Į" horiz-adv-x="239"
|
|
624
|
+
d="M181 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-15v667h83v-667q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
625
|
+
<glyph glyph-name="iogonek" unicode="į" horiz-adv-x="225"
|
|
626
|
+
d="M170 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-7v483h75v-483q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42zM113 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5z" />
|
|
627
|
+
<glyph glyph-name="Idotaccent" unicode="İ" horiz-adv-x="239"
|
|
628
|
+
d="M161 0h-83v667h83v-667zM120 727q-19 0 -33 14t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
629
|
+
<glyph glyph-name="dotlessi" unicode="ı" horiz-adv-x="225"
|
|
630
|
+
d="M150 0h-75v483h75v-483z" />
|
|
631
|
+
<glyph glyph-name="IJ" unicode="IJ" horiz-adv-x="714"
|
|
632
|
+
d="M161 0h-83v667h83v-667zM424 -12q-108 0 -174 77l44 63q53 -66 125 -66q61 0 97.5 38.5t36.5 101.5v465h83v-466q0 -104 -59 -158.5t-153 -54.5z" />
|
|
633
|
+
<glyph glyph-name="ij" unicode="ij" horiz-adv-x="451"
|
|
634
|
+
d="M113 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM150 0h-75v483h75v-483zM338 552q-21 0 -36 14.5t-15 35.5t15 36t36 15t35.5 -15t14.5 -36t-14.5 -35.5t-35.5 -14.5zM232 -196q-60 0 -105 36l26 56q30 -30 69 -30
|
|
635
|
+
q36 0 57 21.5t21 65.5v530h75v-530q0 -72 -37 -110.5t-106 -38.5z" />
|
|
636
|
+
<glyph glyph-name="Jcircumflex" unicode="Ĵ" horiz-adv-x="475"
|
|
637
|
+
d="M185 -12q-108 0 -174 77l44 63q53 -66 125 -66q61 0 97.5 38.5t36.5 101.5v465h83v-466q0 -104 -59 -158.5t-153 -54.5zM488 728h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
638
|
+
<glyph glyph-name="jcircumflex" unicode="ĵ" horiz-adv-x="225"
|
|
639
|
+
d="M7 -196q-60 0 -105 36l26 61q30 -30 69 -30q35 0 56.5 21t21.5 61v530h75v-530q0 -72 -37 -110.5t-106 -38.5zM247 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
640
|
+
<glyph glyph-name="Kcommaaccent" unicode="Ķ" horiz-adv-x="606"
|
|
641
|
+
d="M585 0h-104l-253 300l-67 -76v-224h-83v667h83v-344l295 344h104l-278 -316zM360 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
642
|
+
<glyph glyph-name="kcommaaccent" unicode="ķ" horiz-adv-x="514"
|
|
643
|
+
d="M500 0h-96l-173 217l-81 -79v-138h-75v667h75v-441l254 257h95l-214 -219zM314 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
644
|
+
<glyph glyph-name="kgreenlandic" unicode="ĸ" horiz-adv-x="514"
|
|
645
|
+
d="M500 0h-96l-173 217l-81 -79v-138h-75v483h75v-257l254 257h95l-214 -219z" />
|
|
646
|
+
<glyph glyph-name="Lacute" unicode="Ĺ" horiz-adv-x="493"
|
|
647
|
+
d="M460 0h-393v667h83v-593h310v-74zM423 872l-169 -144h-57l148 144h78z" />
|
|
648
|
+
<glyph glyph-name="lacute" unicode="ĺ" horiz-adv-x="225"
|
|
649
|
+
d="M150 0h-75v667h75v-667zM273 872l-169 -144h-57l148 144h78z" />
|
|
650
|
+
<glyph glyph-name="Lcommaaccent" unicode="Ļ" horiz-adv-x="493"
|
|
651
|
+
d="M460 0h-393v667h83v-593h310v-74zM302 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
652
|
+
<glyph glyph-name="lcommaaccent" unicode="ļ" horiz-adv-x="225"
|
|
653
|
+
d="M150 0h-75v667h75v-667zM170 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
654
|
+
<glyph glyph-name="Lcaron" unicode="Ľ" horiz-adv-x="493"
|
|
655
|
+
d="M460 0h-393v667h83v-593h310v-74zM343 613q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5l-5 -1h-6q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
656
|
+
<glyph glyph-name="lcaron" unicode="ľ" horiz-adv-x="291"
|
|
657
|
+
d="M150 0h-75v667h75v-667zM311 613q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5l-5 -1h-6q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
658
|
+
<glyph glyph-name="Ldot" unicode="Ŀ" horiz-adv-x="512"
|
|
659
|
+
d="M460 0h-393v667h83v-593h310v-74zM422 342q0 -22 -16 -38.5t-39 -16.5t-39 16.5t-16 38.5t16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
660
|
+
<glyph glyph-name="ldot" unicode="ŀ" horiz-adv-x="307"
|
|
661
|
+
d="M150 0h-75v667h75v-667zM321 245q0 -23 -16.5 -39t-38.5 -16t-38.5 16t-16.5 39q0 22 16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
662
|
+
<glyph glyph-name="Lslash" unicode="Ł" horiz-adv-x="524"
|
|
663
|
+
d="M10 221v72l88 51v323h83v-275l96 55v-72l-96 -55v-246h310v-74h-393v272z" />
|
|
664
|
+
<glyph glyph-name="lslash" unicode="ł" horiz-adv-x="287"
|
|
665
|
+
d="M10 228v60l96 55v324h75v-281l95 54v-60l-95 -54v-326h-75v283z" />
|
|
666
|
+
<glyph glyph-name="Nacute" unicode="Ń" horiz-adv-x="708"
|
|
667
|
+
d="M630 0h-80l-389 532v-532h-83v667h85l384 -521v521h83v-667zM514 872l-169 -144h-57l148 144h78z" />
|
|
668
|
+
<glyph glyph-name="nacute" unicode="ń" horiz-adv-x="552"
|
|
669
|
+
d="M479 0h-74v316q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-339zM436 700l-169 -144h-57l148 144h78z" />
|
|
670
|
+
<glyph glyph-name="Ncommaaccent" unicode="Ņ" horiz-adv-x="708"
|
|
671
|
+
d="M630 0h-80l-389 532v-532h-83v667h85l384 -521v521h83v-667zM411 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
672
|
+
<glyph glyph-name="ncommaaccent" unicode="ņ" horiz-adv-x="552"
|
|
673
|
+
d="M479 0h-74v316q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-339zM333 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5
|
|
674
|
+
q22 0 37.5 -18t15.5 -49z" />
|
|
675
|
+
<glyph glyph-name="Ncaron" unicode="Ň" horiz-adv-x="708"
|
|
676
|
+
d="M630 0h-80l-389 532v-532h-83v667h85l384 -521v521h83v-667zM391 728h-72l-98 144h51l83 -106l80 106h51z" />
|
|
677
|
+
<glyph glyph-name="ncaron" unicode="ň" horiz-adv-x="552"
|
|
678
|
+
d="M479 0h-74v316q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-339zM313 556h-72l-98 144h51l83 -106l80 106h51z" />
|
|
679
|
+
<glyph glyph-name="napostrophe" unicode="ʼn" horiz-adv-x="552"
|
|
680
|
+
d="M479 0h-74v316q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-339zM161 676q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5
|
|
681
|
+
q22 0 37.5 -18t15.5 -49z" />
|
|
682
|
+
<glyph glyph-name="Eng" unicode="Ŋ" horiz-adv-x="708"
|
|
683
|
+
d="M418 -196q-108 0 -174 77l44 63q53 -66 125 -66q58 0 94 34.5t39 91.5l-385 528v-532h-83v667h85l384 -521v521h83v-652q0 -104 -59 -157.5t-153 -53.5z" />
|
|
684
|
+
<glyph glyph-name="eng" unicode="ŋ" horiz-adv-x="552"
|
|
685
|
+
d="M333 -196q-59 0 -105 36l26 61q30 -30 69 -30q35 0 57 21t22 61v363q0 61 -28 86.5t-81 25.5q-42 0 -81 -22t-62 -53v-353h-75v483h75v-70q28 34 75 58t98 24q153 0 153 -156v-386q0 -72 -37 -110.5t-106 -38.5z" />
|
|
686
|
+
<glyph glyph-name="Omacron" unicode="Ō" horiz-adv-x="765"
|
|
687
|
+
d="M382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5zM563 749h-363v48h363v-48z" />
|
|
688
|
+
<glyph glyph-name="omacron" unicode="ō" horiz-adv-x="572"
|
|
689
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM467 578h-363v48h363v-48z" />
|
|
690
|
+
<glyph glyph-name="Obreve" unicode="Ŏ" horiz-adv-x="765"
|
|
691
|
+
d="M382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5zM557 810q-65 -88 -175 -88q-109 0 -176 88l38 32
|
|
692
|
+
q51 -72 138 -72q88 0 139 72z" />
|
|
693
|
+
<glyph glyph-name="obreve" unicode="ŏ" horiz-adv-x="572"
|
|
694
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM462 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72
|
|
695
|
+
q88 0 139 72z" />
|
|
696
|
+
<glyph glyph-name="Ohungarumlaut" unicode="Ő" horiz-adv-x="765"
|
|
697
|
+
d="M382 -12q-146 0 -238.5 98t-92.5 247t92.5 247t238.5 98t239 -98t93 -247t-93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5t-68 194.5t-178 76.5q-111 0 -178 -76t-67 -195q0 -118 67 -194.5t178 -76.5zM435 872l-115 -144h-48l94 144h69zM577 872l-115 -144h-48
|
|
698
|
+
l94 144h69z" />
|
|
699
|
+
<glyph glyph-name="ohungarumlaut" unicode="ő" horiz-adv-x="572"
|
|
700
|
+
d="M286 -12q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5t173.5 -72.5t65.5 -180.5t-65.5 -181t-173.5 -73zM286 55q74 0 117 54.5t43 132.5t-43 132t-117 54t-117 -54t-43 -132t43 -132.5t117 -54.5zM339 700l-115 -144h-48l94 144h69zM481 700l-115 -144h-48l94 144
|
|
701
|
+
h69z" />
|
|
702
|
+
<glyph glyph-name="OE" unicode="Œ" horiz-adv-x="1105"
|
|
703
|
+
d="M1051 0h-437v121q-36 -64 -101 -98.5t-138 -34.5q-144 0 -234 98t-90 247t90 246.5t234 97.5q73 0 138 -34t101 -97v121h437v-74h-354v-215h347v-74h-347v-230h354v-74zM614 224v219q-29 78 -89.5 119t-139.5 41q-113 0 -180.5 -75.5t-67.5 -194.5q0 -118 67.5 -194.5
|
|
704
|
+
t180.5 -76.5q78 0 139 41.5t90 120.5z" />
|
|
705
|
+
<glyph glyph-name="oe" unicode="œ" horiz-adv-x="962"
|
|
706
|
+
d="M916 217h-390q5 -71 51.5 -119t121.5 -48q90 0 150 62l36 -49q-77 -75 -192 -75q-83 0 -133 41.5t-75 96.5q-62 -138 -199 -138q-108 0 -173.5 73t-65.5 181t65.5 180.5t173.5 72.5q42 0 78 -14t59.5 -36.5t38 -43.5t24.5 -44q22 52 71.5 95t126.5 43q107 0 169.5 -73.5
|
|
707
|
+
t62.5 -185.5v-19zM525 273h318q-2 61 -43 110.5t-116 49.5q-72 0 -114 -49t-45 -111zM446 242q0 79 -43.5 132.5t-116.5 53.5t-116.5 -53.5t-43.5 -132.5q0 -80 43.5 -134t116.5 -54t116.5 54t43.5 134z" />
|
|
708
|
+
<glyph glyph-name="Racute" unicode="Ŕ" horiz-adv-x="609"
|
|
709
|
+
d="M562 0h-98l-169 265h-134v-265h-83v667h268q93 0 151.5 -55t58.5 -146q0 -86 -50.5 -137t-123.5 -57zM336 338q59 0 96.5 36t37.5 92q0 57 -37.5 92t-96.5 35h-175v-255h175zM465 872l-169 -144h-57l148 144h78z" />
|
|
710
|
+
<glyph glyph-name="racute" unicode="ŕ" horiz-adv-x="330"
|
|
711
|
+
d="M150 0h-75v483h75v-77q69 88 161 88v-77q-18 2 -29 2q-35 0 -75 -23.5t-57 -53.5v-342zM352 700l-169 -144h-57l148 144h78z" />
|
|
712
|
+
<glyph glyph-name="Rcommaaccent" unicode="Ŗ" horiz-adv-x="609"
|
|
713
|
+
d="M562 0h-98l-169 265h-134v-265h-83v667h268q93 0 151.5 -55t58.5 -146q0 -86 -50.5 -137t-123.5 -57zM336 338q59 0 96.5 36t37.5 92q0 57 -37.5 92t-96.5 35h-175v-255h175zM362 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1
|
|
714
|
+
q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
715
|
+
<glyph glyph-name="rcommaaccent" unicode="ŗ" horiz-adv-x="330"
|
|
716
|
+
d="M150 0h-75v483h75v-77q69 88 161 88v-77q-18 2 -29 2q-35 0 -75 -23.5t-57 -53.5v-342zM222 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
717
|
+
<glyph glyph-name="Rcaron" unicode="Ř" horiz-adv-x="609"
|
|
718
|
+
d="M562 0h-98l-169 265h-134v-265h-83v667h268q93 0 151.5 -55t58.5 -146q0 -86 -50.5 -137t-123.5 -57zM336 338q59 0 96.5 36t37.5 92q0 57 -37.5 92t-96.5 35h-175v-255h175zM343 728h-72l-98 144h51l83 -106l80 106h51z" />
|
|
719
|
+
<glyph glyph-name="rcaron" unicode="ř" horiz-adv-x="330"
|
|
720
|
+
d="M150 0h-75v483h75v-77q69 88 161 88v-77q-18 2 -29 2q-35 0 -75 -23.5t-57 -53.5v-342zM229 556h-72l-98 144h51l83 -106l80 106h51z" />
|
|
721
|
+
<glyph glyph-name="Sacute" unicode="Ś" horiz-adv-x="586"
|
|
722
|
+
d="M294 -12q-162 0 -256 106l50 64q83 -96 209 -96q81 0 119 35t38 81q0 47 -40.5 75t-99 42.5t-116.5 32t-98.5 58t-40.5 106.5q0 82 65 134t165 52q147 0 236 -94l-50 -61q-71 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5q0 -35 29.5 -58t73 -34t95 -27.5t95 -35t73 -59.5
|
|
723
|
+
t29.5 -99q0 -81 -60.5 -138.5t-185.5 -57.5zM452 872l-169 -144h-57l148 144h78z" />
|
|
724
|
+
<glyph glyph-name="sacute" unicode="ś" horiz-adv-x="465"
|
|
725
|
+
d="M229 -12q-122 0 -195 76l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44
|
|
726
|
+
t22 -74.5q0 -64 -49.5 -105t-139.5 -41zM393 700l-169 -144h-57l148 144h78z" />
|
|
727
|
+
<glyph glyph-name="Scircumflex" unicode="Ŝ" horiz-adv-x="586"
|
|
728
|
+
d="M418 728h-51l-83 106l-80 -106h-51l95 144h72zM294 -12q-162 0 -256 106l50 64q83 -96 209 -96q81 0 119 35t38 81q0 47 -40.5 75t-99 42.5t-116.5 32t-98.5 58t-40.5 106.5q0 82 65 134t165 52q147 0 236 -94l-50 -61q-71 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5
|
|
729
|
+
q0 -35 29.5 -58t73 -34t95 -27.5t95 -35t73 -59.5t29.5 -99q0 -81 -60.5 -138.5t-185.5 -57.5z" />
|
|
730
|
+
<glyph glyph-name="scircumflex" unicode="ŝ" horiz-adv-x="465"
|
|
731
|
+
d="M229 -12q-122 0 -195 76l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44
|
|
732
|
+
t22 -74.5q0 -64 -49.5 -105t-139.5 -41zM361 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
733
|
+
<glyph glyph-name="Scedilla" unicode="Ş" horiz-adv-x="586"
|
|
734
|
+
d="M288 -191q-64 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l23 62q-140 11 -224 105l50 64q83 -96 209 -96q81 0 119 35t38 81q0 47 -40.5 75t-99 42.5t-116.5 32t-98.5 58t-40.5 106.5q0 82 65 134t165 52q147 0 236 -94
|
|
735
|
+
l-50 -61q-71 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5q0 -35 29.5 -58t73 -34t95 -27.5t95 -35t73 -59.5t29.5 -99q0 -79 -57.5 -136t-176.5 -60l-17 -43q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
736
|
+
<glyph glyph-name="scedilla" unicode="ş" horiz-adv-x="465"
|
|
737
|
+
d="M228 -191q-64 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l23 62q-104 8 -168 75l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70
|
|
738
|
+
l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44t22 -74.5q0 -60 -45 -100.5t-127 -44.5l-17 -44q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
739
|
+
<glyph glyph-name="Scaron" unicode="Š" horiz-adv-x="586"
|
|
740
|
+
d="M323 728h-72l-98 144h51l83 -106l80 106h51zM294 -12q-162 0 -256 106l50 64q83 -96 209 -96q81 0 119 35t38 81q0 47 -40.5 75t-99 42.5t-116.5 32t-98.5 58t-40.5 106.5q0 82 65 134t165 52q147 0 236 -94l-50 -61q-71 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5
|
|
741
|
+
q0 -35 29.5 -58t73 -34t95 -27.5t95 -35t73 -59.5t29.5 -99q0 -81 -60.5 -138.5t-185.5 -57.5z" />
|
|
742
|
+
<glyph glyph-name="scaron" unicode="š" horiz-adv-x="465"
|
|
743
|
+
d="M229 -12q-122 0 -195 76l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44
|
|
744
|
+
t22 -74.5q0 -64 -49.5 -105t-139.5 -41zM266 556h-72l-98 144h51l83 -106l80 106h51z" />
|
|
745
|
+
<glyph glyph-name="Tcommaaccent" unicode="Ţ" horiz-adv-x="570"
|
|
746
|
+
d="M326 0h-83v593h-211v74h506v-74h-212v-593zM342 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
747
|
+
<glyph glyph-name="Tcommaaccent" unicode="Ț" horiz-adv-x="570"
|
|
748
|
+
d="M326 0h-83v593h-211v74h506v-74h-212v-593zM342 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
749
|
+
<glyph glyph-name="tcommaaccent" unicode="ţ" horiz-adv-x="294"
|
|
750
|
+
d="M198 -12q-108 0 -108 113v316h-80v66h80v132h76v-132h98v-66h-98v-300q0 -28 12.5 -45t35.5 -17q32 0 51 21l22 -57q-33 -31 -89 -31zM204 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5
|
|
751
|
+
q22 0 37.5 -18t15.5 -49z" />
|
|
752
|
+
<glyph glyph-name="tcommaaccent" unicode="ț" horiz-adv-x="294"
|
|
753
|
+
d="M198 -12q-108 0 -108 113v316h-80v66h80v132h76v-132h98v-66h-98v-300q0 -28 12.5 -45t35.5 -17q32 0 51 21l22 -57q-33 -31 -89 -31zM204 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5
|
|
754
|
+
q22 0 37.5 -18t15.5 -49z" />
|
|
755
|
+
<glyph glyph-name="Tcaron" unicode="Ť" horiz-adv-x="570"
|
|
756
|
+
d="M326 0h-83v593h-211v74h506v-74h-212v-593zM322 728h-72l-98 144h51l83 -106l80 106h51z" />
|
|
757
|
+
<glyph glyph-name="tcaron" unicode="ť" horiz-adv-x="313"
|
|
758
|
+
d="M198 -12q-108 0 -108 113v316h-80v66h80v132h76v-132h98v-66h-98v-300q0 -28 12.5 -45t35.5 -17q32 0 51 21l22 -57q-33 -31 -89 -31zM325 676q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5
|
|
759
|
+
q22 0 37.5 -18t15.5 -49z" />
|
|
760
|
+
<glyph glyph-name="Tbar" unicode="Ŧ" horiz-adv-x="570"
|
|
761
|
+
d="M326 0h-83v294h-150v48h150v251h-211v74h506v-74h-212v-251h152v-48h-152v-294z" />
|
|
762
|
+
<glyph glyph-name="tbar" unicode="ŧ" horiz-adv-x="294"
|
|
763
|
+
d="M235 227h-69v-110q0 -28 12.5 -45t35.5 -17q32 0 51 21l22 -57q-33 -31 -89 -31q-108 0 -108 113v126h-80v48h80v142h-80v66h80v132h76v-132h98v-66h-98v-142h69v-48z" />
|
|
764
|
+
<glyph glyph-name="Utilde" unicode="Ũ" horiz-adv-x="701"
|
|
765
|
+
d="M350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5zM412 726q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37
|
|
766
|
+
q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
767
|
+
<glyph glyph-name="utilde" unicode="ũ" horiz-adv-x="551"
|
|
768
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM335 554q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5
|
|
769
|
+
t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
770
|
+
<glyph glyph-name="Umacron" unicode="Ū" horiz-adv-x="701"
|
|
771
|
+
d="M350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5zM532 749h-363v48h363v-48z" />
|
|
772
|
+
<glyph glyph-name="umacron" unicode="ū" horiz-adv-x="551"
|
|
773
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM457 578h-363v48h363v-48z" />
|
|
774
|
+
<glyph glyph-name="Ubreve" unicode="Ŭ" horiz-adv-x="701"
|
|
775
|
+
d="M350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5zM529 810q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
776
|
+
<glyph glyph-name="ubreve" unicode="ŭ" horiz-adv-x="551"
|
|
777
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM453 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
778
|
+
<glyph glyph-name="Uring" unicode="Ů" horiz-adv-x="701"
|
|
779
|
+
d="M350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5zM352 692q-40 0 -69.5 29t-29.5 70t29.5 70t69.5 29t68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM352 732q24 0 41 17.5t17 41.5
|
|
780
|
+
t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5z" />
|
|
781
|
+
<glyph glyph-name="uring" unicode="ů" horiz-adv-x="551"
|
|
782
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM276 552q-40 0 -69.5 29t-29.5 70t29.5 70t69.5 29t68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM276 592q24 0 41 17.5t17 41.5t-17 41.5
|
|
783
|
+
t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5z" />
|
|
784
|
+
<glyph glyph-name="Uhungarumlaut" unicode="Ű" horiz-adv-x="701"
|
|
785
|
+
d="M350 -12q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -127 -70 -199.5t-203 -72.5zM404 872l-115 -144h-48l94 144h69zM546 872l-115 -144h-48l94 144h69z" />
|
|
786
|
+
<glyph glyph-name="uhungarumlaut" unicode="ű" horiz-adv-x="551"
|
|
787
|
+
d="M476 0h-75v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483zM329 700l-115 -144h-48l94 144h69zM471 700l-115 -144h-48l94 144h69z" />
|
|
788
|
+
<glyph glyph-name="Uogonek" unicode="Ų" horiz-adv-x="701"
|
|
789
|
+
d="M466 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 48 39 87h-14q-132 0 -202 72.5t-70 198.5v408h84v-406q0 -93 48.5 -146t139.5 -53t140 53t49 146v406h84v-407q0 -102 -45 -169t-132 -91q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
790
|
+
<glyph glyph-name="uogonek" unicode="ų" horiz-adv-x="551"
|
|
791
|
+
d="M496 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-7v68q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v341h75v-318q0 -60 28 -85t81 -25q42 0 81 21t61 52v355h75v-483q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
792
|
+
<glyph glyph-name="Wcircumflex" unicode="Ŵ" horiz-adv-x="883"
|
|
793
|
+
d="M678 0h-90l-147 538l-147 -538h-90l-190 667h92l148 -556l153 556h69l153 -556l147 556h93zM574 728h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
794
|
+
<glyph glyph-name="wcircumflex" unicode="ŵ" horiz-adv-x="734"
|
|
795
|
+
d="M569 0h-76l-126 388l-126 -388h-75l-154 483h78l118 -385l127 385h65l126 -385l118 385h79zM500 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
796
|
+
<glyph glyph-name="Ycircumflex" unicode="Ŷ" horiz-adv-x="626"
|
|
797
|
+
d="M447 728h-51l-83 106l-80 -106h-51l95 144h72zM355 0h-83v282l-263 385h97l207 -310l207 310h97l-262 -385v-282z" />
|
|
798
|
+
<glyph glyph-name="ycircumflex" unicode="ŷ" horiz-adv-x="490"
|
|
799
|
+
d="M49 -189l11 68q18 -8 41 -8q26 0 43 11t29 40l32 73l-202 488h82l160 -396l161 396h81l-242 -581q-40 -96 -142 -98q-31 0 -54 7zM378 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
800
|
+
<glyph glyph-name="Ydieresis" unicode="Ÿ" horiz-adv-x="626"
|
|
801
|
+
d="M466 773q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM259 773q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM355 0h-83v282l-263 385h97l207 -310l207 310
|
|
802
|
+
h97l-262 -385v-282z" />
|
|
803
|
+
<glyph glyph-name="Zacute" unicode="Ź" horiz-adv-x="585"
|
|
804
|
+
d="M537 0h-489v69l375 524h-375v74h482v-69l-376 -524h383v-74zM452 872l-169 -144h-57l148 144h78z" />
|
|
805
|
+
<glyph glyph-name="zacute" unicode="ź" horiz-adv-x="472"
|
|
806
|
+
d="M420 0h-368v59l266 358h-266v66h364v-57l-268 -360h272v-66zM395 700l-169 -144h-57l148 144h78z" />
|
|
807
|
+
<glyph glyph-name="Zdotaccent" unicode="Ż" horiz-adv-x="585"
|
|
808
|
+
d="M537 0h-489v69l375 524h-375v74h482v-69l-376 -524h383v-74zM290 727q-19 0 -33 14t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
809
|
+
<glyph glyph-name="zdotaccent" unicode="ż" horiz-adv-x="472"
|
|
810
|
+
d="M420 0h-368v59l266 358h-266v66h364v-57l-268 -360h272v-66zM235 573q-19 0 -33 14t-14 33t14 33t33 14t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5z" />
|
|
811
|
+
<glyph glyph-name="Zcaron" unicode="Ž" horiz-adv-x="585"
|
|
812
|
+
d="M330 728h-72l-98 144h51l83 -106l80 106h51zM537 0h-489v69l375 524h-375v74h482v-69l-376 -524h383v-74z" />
|
|
813
|
+
<glyph glyph-name="zcaron" unicode="ž" horiz-adv-x="472"
|
|
814
|
+
d="M420 0h-368v59l266 358h-266v66h364v-57l-268 -360h272v-66zM267 556h-72l-98 144h51l83 -106l80 106h51z" />
|
|
815
|
+
<glyph glyph-name="longs" unicode="ſ" horiz-adv-x="284"
|
|
816
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38 115.5t102 41.5q62 0 102 -37l-31 -48q-26 23 -59 23q-77 0 -77 -95v-520z" />
|
|
817
|
+
<glyph glyph-name="florin" unicode="ƒ" horiz-adv-x="432"
|
|
818
|
+
d="M109 -161h-84l92 415h-68v68h82l46 204q15 70 62 110.5t112 40.5q61 0 94 -36l-37 -61q-17 23 -49 23q-37 0 -64 -24.5t-37 -67.5l-42 -189h139v-68h-153z" />
|
|
819
|
+
<glyph glyph-name="AEacute" unicode="Ǽ" horiz-adv-x="948"
|
|
820
|
+
d="M893 0h-437v149h-262l-92 -149h-95l416 667h470v-74h-354v-215h347v-74h-347v-230h354v-74zM456 222v360l-222 -360h222zM655 872l-169 -144h-57l148 144h78z" />
|
|
821
|
+
<glyph glyph-name="aeacute" unicode="ǽ" horiz-adv-x="889"
|
|
822
|
+
d="M843 217h-390q5 -71 51.5 -118t121.5 -47q91 0 150 61l36 -50q-77 -75 -192 -75q-128 0 -200 100q-71 -100 -199 -100q-69 0 -120.5 43t-51.5 117q0 75 49 117t119 42q102 0 160 -64v86q0 47 -34 74t-88 27q-87 0 -148 -67l-35 52q77 80 193 80q140 0 164 -106
|
|
823
|
+
q60 106 185 106q105 0 167 -73.5t62 -185.5v-19zM452 273h317q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111zM392 127q-15 35 -15 65q-44 61 -132 61q-53 0 -86.5 -29.5t-33.5 -75.5q0 -47 33.5 -76.5t86.5 -29.5q100 0 147 85zM588 700l-169 -144h-57l148 144
|
|
824
|
+
h78z" />
|
|
825
|
+
<glyph glyph-name="Oslashacute" unicode="Ǿ" horiz-adv-x="765"
|
|
826
|
+
d="M544 872l-169 -144h-57l148 144h78zM382 -12q-96 0 -172 45l-22 -33h-67l44 65q-114 98 -114 268q0 149 92.5 247t238.5 98q92 0 167 -42l21 31h67l-42 -63q56 -47 87.5 -117.5t31.5 -153.5q0 -149 -93 -247t-239 -98zM382 62q110 0 178 76.5t68 194.5q0 129 -78 205
|
|
827
|
+
l-297 -441q55 -35 129 -35zM137 333q0 -125 73 -201l296 440q-56 32 -124 32q-111 0 -178 -76t-67 -195z" />
|
|
828
|
+
<glyph glyph-name="oslashacute" unicode="ǿ" horiz-adv-x="572"
|
|
829
|
+
d="M446 700l-169 -144h-57l148 144h78zM118 0h-54l48 61q-65 71 -65 181q0 108 65.5 180.5t173.5 72.5q79 0 137 -41l23 29h55l-45 -57q69 -72 69 -184q0 -108 -65.5 -181t-173.5 -73q-83 0 -142 45zM286 55q74 0 117 54.5t43 132.5q0 74 -38 124l-220 -277q40 -34 98 -34z
|
|
830
|
+
M126 242q0 -72 34 -121l218 277q-38 30 -92 30q-74 0 -117 -54t-43 -132z" />
|
|
831
|
+
<glyph glyph-name="Scommaaccent" unicode="Ș" horiz-adv-x="593"
|
|
832
|
+
d="M299 -12q-162 0 -256 106l50 64q83 -96 209 -96q81 0 119 35t38 81q0 47 -40.5 75t-99 42.5t-116.5 32t-98.5 58t-40.5 106.5q0 82 65 134t165 52q147 0 236 -94l-50 -61q-71 80 -193 80q-60 0 -98.5 -29.5t-38.5 -76.5q0 -35 29.5 -58t73 -34t95 -27.5t95 -35t73 -59.5
|
|
833
|
+
t29.5 -99q0 -81 -60.5 -138.5t-185.5 -57.5zM350 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
834
|
+
<glyph glyph-name="scommaaccent" unicode="ș" horiz-adv-x="468"
|
|
835
|
+
d="M229 -12q-122 0 -195 76l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44
|
|
836
|
+
t22 -74.5q0 -64 -49.5 -105t-139.5 -41zM291 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
837
|
+
<glyph glyph-name="hsuperior" unicode="ʰ" horiz-adv-x="398"
|
|
838
|
+
d="M338 326h-58v202q0 40 -18 56t-53 16q-55 0 -91 -46v-228h-58v434h58v-164q46 52 115 52q105 0 105 -106v-216z" />
|
|
839
|
+
<glyph glyph-name="hsuperior" unicode="" horiz-adv-x="398"
|
|
840
|
+
d="M338 326h-58v202q0 40 -18 56t-53 16q-55 0 -91 -46v-228h-58v434h58v-164q46 52 115 52q105 0 105 -106v-216z" />
|
|
841
|
+
<glyph glyph-name="circumflex" unicode="ˆ" horiz-adv-x="265"
|
|
842
|
+
d="M265 556h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
843
|
+
<glyph glyph-name="caron" unicode="ˇ" horiz-adv-x="265"
|
|
844
|
+
d="M170 556h-72l-98 144h51l83 -106l80 106h51z" />
|
|
845
|
+
<glyph glyph-name="breve" unicode="˘" horiz-adv-x="351"
|
|
846
|
+
d="M351 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
847
|
+
<glyph glyph-name="dotaccent" unicode="˙" horiz-adv-x="112"
|
|
848
|
+
d="M56 573q-19 0 -33 14t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
849
|
+
<glyph glyph-name="ring" unicode="˚" horiz-adv-x="196"
|
|
850
|
+
d="M99 554q-41 0 -70 29t-29 70t29 70t70 29q40 0 68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM99 594q24 0 41 17.5t17 41.5t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5z" />
|
|
851
|
+
<glyph glyph-name="ogonek" unicode="˛" horiz-adv-x="178"
|
|
852
|
+
d="M141 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 37 24 69t64 53l33 -23q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
853
|
+
<glyph glyph-name="tilde" unicode="˜" horiz-adv-x="313"
|
|
854
|
+
d="M216 554q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
855
|
+
<glyph glyph-name="hungarumlaut" unicode="˝" horiz-adv-x="305"
|
|
856
|
+
d="M163 700l-115 -144h-48l94 144h69zM305 700l-115 -144h-48l94 144h69z" />
|
|
857
|
+
<glyph glyph-name="Delta" unicode="Δ" horiz-adv-x="658"
|
|
858
|
+
d="M649 0h-640l269 667h103zM530 74l-201 508l-201 -508h402z" />
|
|
859
|
+
<glyph glyph-name="Delta" unicode="∆" horiz-adv-x="658"
|
|
860
|
+
d="M649 0h-640l269 667h103zM530 74l-201 508l-201 -508h402z" />
|
|
861
|
+
<glyph glyph-name="Omega" unicode="Ω" horiz-adv-x="765"
|
|
862
|
+
d="M69 0v74h135q-153 100 -153 274q0 145 92 237.5t239 92.5q148 0 240 -92.5t92 -237.5q0 -92 -42.5 -161t-110.5 -113h135v-74h-240v74q71 18 121.5 87.5t50.5 172.5q0 115 -65.5 192t-180.5 77q-114 0 -179.5 -77t-65.5 -192q0 -103 50.5 -172.5t121.5 -87.5v-74h-240z
|
|
863
|
+
" />
|
|
864
|
+
<glyph glyph-name="Omega" unicode="Ω" horiz-adv-x="765"
|
|
865
|
+
d="M69 0v74h135q-153 100 -153 274q0 145 92 237.5t239 92.5q148 0 240 -92.5t92 -237.5q0 -92 -42.5 -161t-110.5 -113h135v-74h-240v74q71 18 121.5 87.5t50.5 172.5q0 115 -65.5 192t-180.5 77q-114 0 -179.5 -77t-65.5 -192q0 -103 50.5 -172.5t121.5 -87.5v-74h-240z
|
|
866
|
+
" />
|
|
867
|
+
<glyph glyph-name="pi" unicode="π" horiz-adv-x="561"
|
|
868
|
+
d="M452 0h-76v433h-191v-433h-76v433h-77v67h497v-67h-77v-433z" />
|
|
869
|
+
<glyph glyph-name="endash" unicode="–" horiz-adv-x="593"
|
|
870
|
+
d="M563 209h-533v66h533v-66z" />
|
|
871
|
+
<glyph glyph-name="emdash" unicode="—" horiz-adv-x="833"
|
|
872
|
+
d="M803 209h-773v66h773v-66z" />
|
|
873
|
+
<glyph glyph-name="quoteleft" unicode="‘" horiz-adv-x="230"
|
|
874
|
+
d="M48 527q0 44 22.5 84.5t57.5 65.5l38 -30q-24 -16 -43 -42.5t-22 -50.5q1 0 6 1t8 1q20 0 34 -14.5t14 -36.5q0 -23 -15.5 -38.5t-37.5 -15.5q-26 0 -44 20.5t-18 55.5z" />
|
|
875
|
+
<glyph glyph-name="quoteright" unicode="’" horiz-adv-x="230"
|
|
876
|
+
d="M176 601q0 -44 -22.5 -84.5t-58.5 -66.5l-38 31q24 16 43 42.5t22 50.5q-4 -2 -14 -2q-20 0 -34 14.5t-14 36.5t15.5 38t37.5 16q27 0 45 -20.5t18 -55.5z" />
|
|
877
|
+
<glyph glyph-name="quotesinglbase" unicode="‚" horiz-adv-x="230"
|
|
878
|
+
d="M176 24q0 -44 -22.5 -84.5t-58.5 -66.5l-38 31q25 16 43.5 42.5t21.5 50.5q-4 -2 -14 -2q-20 0 -34 14.5t-14 36.5t15.5 38t37.5 16q27 0 45 -20.5t18 -55.5z" />
|
|
879
|
+
<glyph glyph-name="quotedblleft" unicode="“" horiz-adv-x="390"
|
|
880
|
+
d="M54 527q0 44 22.5 84.5t58.5 65.5l37 -30q-24 -16 -42.5 -42.5t-21.5 -50.5l5 1q5 1 8 1q21 0 35 -14.5t14 -36.5q0 -23 -16 -38.5t-38 -15.5q-26 0 -44 20.5t-18 55.5zM214 527q0 44 22.5 84.5t58.5 65.5l37 -30q-24 -16 -42.5 -42.5t-21.5 -50.5q1 0 6 1t7 1
|
|
881
|
+
q21 0 35 -14.5t14 -36.5q0 -23 -16 -38.5t-38 -15.5q-26 0 -44 20.5t-18 55.5z" />
|
|
882
|
+
<glyph glyph-name="quotedblright" unicode="”" horiz-adv-x="390"
|
|
883
|
+
d="M336 601q0 -44 -22.5 -84.5t-58.5 -66.5l-37 31q24 16 42.5 42.5t21.5 50.5q-2 -2 -13 -2q-21 0 -35 14.5t-14 36.5t16 38t38 16q26 0 44 -20.5t18 -55.5zM176 601q0 -44 -22.5 -84.5t-58.5 -66.5l-38 31q24 16 43 42.5t22 50.5q-4 -2 -14 -2q-20 0 -34 14.5t-14 36.5
|
|
884
|
+
t15.5 38t37.5 16q27 0 45 -20.5t18 -55.5z" />
|
|
885
|
+
<glyph glyph-name="quotedblbase" unicode="„" horiz-adv-x="390"
|
|
886
|
+
d="M176 24q0 -44 -22.5 -84.5t-58.5 -66.5l-38 31q25 16 43.5 42.5t21.5 50.5q-4 -2 -14 -2q-20 0 -34 14.5t-14 36.5t15.5 38t37.5 16q27 0 45 -20.5t18 -55.5zM336 24q0 -44 -22.5 -84.5t-58.5 -66.5l-37 31q24 16 42.5 42.5t21.5 50.5q-2 -2 -13 -2q-21 0 -35 14.5
|
|
887
|
+
t-14 36.5t16 38t38 16q26 0 44 -20.5t18 -55.5z" />
|
|
888
|
+
<glyph glyph-name="dagger" unicode="†" horiz-adv-x="263"
|
|
889
|
+
d="M240 531l-89 4l4 -208h-48l5 208l-89 -4v43l89 -3l-5 106h48l-4 -106l89 3v-43z" />
|
|
890
|
+
<glyph glyph-name="daggerdbl" unicode="‡" horiz-adv-x="263"
|
|
891
|
+
d="M240 574v-43l-89 4v-213l89 4v-43l-89 3l4 -106h-48l4 106l-88 -3v43l88 -4v213l-88 -4v43l88 -3l-4 106h48l-4 -106z" />
|
|
892
|
+
<glyph glyph-name="bullet" unicode="•" horiz-adv-x="358"
|
|
893
|
+
d="M288 242q0 -44 -32 -75.5t-76 -31.5t-76 31.5t-32 75.5t32 76t76 32t76 -32t32 -76z" />
|
|
894
|
+
<glyph glyph-name="ellipsis" unicode="…" horiz-adv-x="691"
|
|
895
|
+
d="M170 45q0 -22 -16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5q0 23 16 39t39 16t39 -16t16 -39zM400 45q0 -22 -16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5q0 23 16 39t39 16t39 -16t16 -39zM630 45q0 -22 -16 -38.5t-38 -16.5t-38.5 16.5t-16.5 38.5q0 23 16.5 39
|
|
896
|
+
t38.5 16t38 -16t16 -39z" />
|
|
897
|
+
<glyph glyph-name="perthousand" unicode="‰" horiz-adv-x="1084"
|
|
898
|
+
d="M353 511q0 -70 -45 -116.5t-116 -46.5t-116 46.5t-45 116.5q0 72 45 119t116 47t116 -47t45 -119zM610 667l-427 -667h-55l426 667h56zM700 152q0 -71 -44.5 -117.5t-115.5 -46.5t-116 47t-45 117q0 71 45 118t116 47q70 0 115 -47t45 -118zM293 511q0 52 -28 85.5
|
|
899
|
+
t-73 33.5q-44 0 -72.5 -33.5t-28.5 -85.5q0 -49 28.5 -82.5t72.5 -33.5t72.5 33.5t28.5 82.5zM641 152q0 51 -28 84.5t-73 33.5t-73.5 -33.5t-28.5 -84.5q0 -50 28.5 -83.5t73.5 -33.5q44 0 72.5 33.5t28.5 83.5zM1053 152q0 -70 -45 -117t-116 -47t-116 47t-45 117
|
|
900
|
+
q0 71 45 118t116 47t116 -47t45 -118zM993 152q0 51 -28 84.5t-73 33.5t-73 -33.5t-28 -84.5q0 -50 28.5 -83.5t72.5 -33.5t72.5 33.5t28.5 83.5z" />
|
|
901
|
+
<glyph glyph-name="guilsinglleft" unicode="‹" horiz-adv-x="295"
|
|
902
|
+
d="M265 63h-75l-160 180l160 177h75l-160 -177z" />
|
|
903
|
+
<glyph glyph-name="guilsinglright" unicode="›" horiz-adv-x="295"
|
|
904
|
+
d="M265 243l-160 -180h-75l160 180l-160 177h75z" />
|
|
905
|
+
<glyph glyph-name="fraction" unicode="⁄" horiz-adv-x="139"
|
|
906
|
+
d="M310 667l-427 -667h-54l426 667h55z" />
|
|
907
|
+
<glyph glyph-name="fraction" unicode="∕" horiz-adv-x="139"
|
|
908
|
+
d="M310 667l-427 -667h-54l426 667h55z" />
|
|
909
|
+
<glyph glyph-name="zerosuperior" unicode="⁰"
|
|
910
|
+
d="M356 621q0 -83 -41 -145t-121 -62t-120.5 61.5t-40.5 145.5t40.5 145t120.5 61t121 -61.5t41 -144.5zM294 621q0 68 -24.5 112.5t-75.5 44.5q-52 0 -76 -44.5t-24 -112.5t24.5 -113t75.5 -45t75.5 45t24.5 113z" />
|
|
911
|
+
<glyph glyph-name="foursuperior" unicode="⁴"
|
|
912
|
+
d="M352 521h-57v-100h-60v100h-196v45l173 255h83v-251h57v-49zM235 570v198l-136 -198h136z" />
|
|
913
|
+
<glyph glyph-name="fivesuperior" unicode="⁵"
|
|
914
|
+
d="M344 547q0 -60 -43 -96.5t-109 -36.5q-99 0 -148 65l35 39q42 -55 113 -55q41 0 67 23.5t26 58.5q0 37 -25 60t-66 23q-55 0 -95 -39l-43 16v216h261v-49h-200v-134q36 36 95 36q55 0 93.5 -33.5t38.5 -93.5z" />
|
|
915
|
+
<glyph glyph-name="sixsuperior" unicode="⁶"
|
|
916
|
+
d="M351 546q0 -55 -41 -93.5t-107 -38.5q-83 0 -124 58.5t-41 148.5q0 89 45 147.5t129 58.5q71 0 117 -46l-29 -42q-36 39 -88 39q-55 0 -84 -42.5t-30 -103.5q0 -11 1 -17q16 24 47.5 42.5t66.5 18.5q59 0 98.5 -34t39.5 -96zM290 544q0 41 -26 62.5t-66 21.5
|
|
917
|
+
q-28 0 -54.5 -15t-43.5 -40q3 -45 28 -77.5t73 -32.5q41 0 65 25t24 56z" />
|
|
918
|
+
<glyph glyph-name="sevensuperior" unicode="⁷" horiz-adv-x="362"
|
|
919
|
+
d="M323 780l-166 -359h-67l166 351h-223v49h290v-41z" />
|
|
920
|
+
<glyph glyph-name="eightsuperior" unicode="⁸"
|
|
921
|
+
d="M347 523q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM280 715q0 31 -24 47.5t-62 16.5t-62.5 -17
|
|
922
|
+
t-24.5 -47q0 -46 87 -68q86 20 86 68zM287 528q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5z" />
|
|
923
|
+
<glyph glyph-name="ninesuperior" unicode="⁹"
|
|
924
|
+
d="M38 695q0 56 41 94t107 38q83 0 124 -58.5t41 -148.5q0 -89 -45.5 -147.5t-129.5 -58.5q-72 0 -116 46l29 42q34 -39 87 -39q55 0 84 42.5t30 104.5v16q-17 -24 -48 -42.5t-66 -18.5q-59 0 -98.5 34t-39.5 96zM98 697q0 -41 26 -62.5t66 -21.5q61 0 99 56q-4 45 -28.5 77
|
|
925
|
+
t-71.5 32q-42 0 -66.5 -25t-24.5 -56z" />
|
|
926
|
+
<glyph glyph-name="parenleftsuperior" unicode="⁽" horiz-adv-x="161"
|
|
927
|
+
d="M151 372l-35 -16q-90 111 -90 265q0 153 90 265l35 -16q-63 -123 -63 -249t63 -249z" />
|
|
928
|
+
<glyph glyph-name="parenrightsuperior" unicode="⁾" horiz-adv-x="161"
|
|
929
|
+
d="M148 621q0 -152 -91 -265l-34 16q63 123 63 249t-63 249l34 16q43 -53 67 -123t24 -142z" />
|
|
930
|
+
<glyph glyph-name="nsuperior" unicode="ⁿ" horiz-adv-x="398"
|
|
931
|
+
d="M338 326h-58v201q0 73 -70 73q-27 0 -52 -13.5t-40 -32.5v-228h-58v314h58v-44q48 52 115 52q58 0 81.5 -27.5t23.5 -79.5v-215z" />
|
|
932
|
+
<glyph glyph-name="zeroinferior" unicode="₀"
|
|
933
|
+
d="M356 54q0 -83 -41 -145t-121 -62t-120.5 61.5t-40.5 145.5t40.5 145t120.5 61t121 -61.5t41 -144.5zM294 54q0 68 -24.5 112.5t-75.5 44.5q-52 0 -76 -44.5t-24 -112.5t24.5 -113t75.5 -45t75.5 45t24.5 113z" />
|
|
934
|
+
<glyph glyph-name="oneinferior" unicode="₁" horiz-adv-x="235"
|
|
935
|
+
d="M175 -146h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
936
|
+
<glyph glyph-name="twoinferior" unicode="₂"
|
|
937
|
+
d="M341 -146h-291v45q125 90 177 141.5t52 97.5q0 36 -25 54.5t-60 18.5t-65 -15t-47 -37l-33 38q24 30 63.5 46.5t83.5 16.5q60 0 101.5 -30t41.5 -88q0 -55 -50 -110.5t-151 -128.5h203v-49z" />
|
|
938
|
+
<glyph glyph-name="threeinferior" unicode="₃"
|
|
939
|
+
d="M343 -37q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29t39.5 -78q0 -40 -27 -63.5t-62 -28.5
|
|
940
|
+
q35 -4 65.5 -29.5t30.5 -68.5z" />
|
|
941
|
+
<glyph glyph-name="fourinferior" unicode="₄"
|
|
942
|
+
d="M352 -46h-57v-100h-60v100h-196v45l173 255h83v-251h57v-49zM235 3v198l-136 -198h136z" />
|
|
943
|
+
<glyph glyph-name="fiveinferior" unicode="₅"
|
|
944
|
+
d="M344 -20q0 -60 -43 -96.5t-109 -36.5q-99 0 -148 65l35 39q42 -55 113 -55q41 0 67 23.5t26 58.5q0 37 -25 60t-66 23q-55 0 -95 -39l-43 16v216h261v-49h-200v-134q36 36 95 36q55 0 93.5 -33.5t38.5 -93.5z" />
|
|
945
|
+
<glyph glyph-name="sixinferior" unicode="₆"
|
|
946
|
+
d="M351 -21q0 -55 -41 -93.5t-107 -38.5q-83 0 -124 58.5t-41 148.5q0 89 45 147.5t129 58.5q71 0 117 -46l-29 -42q-36 39 -88 39q-55 0 -84 -42.5t-30 -103.5q0 -11 1 -17q16 24 47.5 42.5t66.5 18.5q59 0 98.5 -34t39.5 -96zM290 -23q0 41 -26 62.5t-66 21.5
|
|
947
|
+
q-28 0 -54.5 -15t-43.5 -40q3 -45 28 -77.5t73 -32.5q41 0 65 25t24 56z" />
|
|
948
|
+
<glyph glyph-name="seveninferior" unicode="₇" horiz-adv-x="362"
|
|
949
|
+
d="M323 213l-166 -359h-67l166 351h-223v49h290v-41z" />
|
|
950
|
+
<glyph glyph-name="eightinferior" unicode="₈"
|
|
951
|
+
d="M347 -44q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM280 148q0 31 -24 47.5t-62 16.5t-62.5 -17
|
|
952
|
+
t-24.5 -47q0 -46 87 -68q86 20 86 68zM287 -39q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5z" />
|
|
953
|
+
<glyph glyph-name="nineinferior" unicode="₉"
|
|
954
|
+
d="M38 128q0 56 41 94t107 38q83 0 124 -58.5t41 -148.5q0 -89 -45.5 -147.5t-129.5 -58.5q-72 0 -116 46l29 42q34 -39 87 -39q55 0 84 42.5t30 104.5v16q-17 -24 -48 -42.5t-66 -18.5q-59 0 -98.5 34t-39.5 96zM98 130q0 -41 26 -62.5t66 -21.5q61 0 99 56q-4 45 -28.5 77
|
|
955
|
+
t-71.5 32q-42 0 -66.5 -25t-24.5 -56z" />
|
|
956
|
+
<glyph glyph-name="parenleftinferior" unicode="₍" horiz-adv-x="161"
|
|
957
|
+
d="M151 -195l-35 -16q-90 111 -90 265q0 153 90 265l35 -16q-63 -123 -63 -249t63 -249z" />
|
|
958
|
+
<glyph glyph-name="parenrightinferior" unicode="₎" horiz-adv-x="161"
|
|
959
|
+
d="M148 54q0 -152 -91 -265l-34 16q63 123 63 249t-63 249l34 16q43 -53 67 -123t24 -142z" />
|
|
960
|
+
<glyph glyph-name="colonmonetary" unicode="₡" horiz-adv-x="681"
|
|
961
|
+
d="M398 -12q-15 0 -22 1l-29 -89h-51l31 95q-44 8 -78 23l-39 -118h-50l47 141q-71 45 -111.5 121t-40.5 171q0 152 98.5 248.5t244.5 96.5q4 0 11 -0.5t11 -0.5l30 91h50l-33 -97q40 -8 77 -28l42 125h50l-51 -152q34 -26 66 -70l-69 -39q-12 17 -24 29l-157 -474
|
|
962
|
+
q55 1 103.5 27.5t77.5 69.5l70 -38q-97 -133 -254 -133zM141 333q0 -134 93 -213l161 484q-110 -2 -182 -77.5t-72 -193.5zM274 92q33 -18 77 -26l168 502q-37 23 -76 31z" />
|
|
963
|
+
<glyph glyph-name="frenchfranc" unicode="₣" horiz-adv-x="561"
|
|
964
|
+
d="M171 0h-83v137h-78v48h78v482h437v-74h-354v-215h347v-74h-347v-119h202v-48h-202v-137z" />
|
|
965
|
+
<glyph glyph-name="lira" unicode="₤" horiz-adv-x="518"
|
|
966
|
+
d="M20 328v46h63q-35 49 -35 106q0 82 66 139.5t158 57.5q68 0 121 -29.5t81 -82.5l-67 -40q-13 34 -48 58t-79 24q-59 0 -100.5 -35t-41.5 -93q0 -55 39 -105h191v-46h-154q28 -40 35 -70h119v-46h-116q-5 -69 -75 -119q27 9 52 9q33 0 77 -20.5t71 -20.5q31 0 57.5 12.5
|
|
967
|
+
t37.5 27.5l36 -67q-49 -47 -135 -47q-47 0 -95 23t-84 23q-42 0 -118 -40l-29 63q64 28 98 67.5t34 84.5v4h-159v46h149q-9 22 -49 70h-100z" />
|
|
968
|
+
<glyph glyph-name="uni20A6" unicode="₦" horiz-adv-x="729"
|
|
969
|
+
d="M640 0h-80l-177 242h-212v-242h-83v242h-78v48h78v94h-78v48h78v235h85l173 -235h211v235h83v-235h78v-48h-78v-94h78v-48h-78v-242zM171 384v-94h177l-69 94h-108zM381 384l70 -94h106v94h-176zM171 532v-100h73zM486 242l71 -96v96h-71z" />
|
|
970
|
+
<glyph glyph-name="peseta" unicode="₧" horiz-adv-x="640"
|
|
971
|
+
d="M635 441h-72q-9 -77 -64 -126.5t-143 -49.5h-185v-265h-83v441h-78v52h78v174h268q88 0 143 -49.5t64 -124.5h72v-52zM346 339q52 0 87.5 27.5t43.5 74.5h-306v-102h175zM171 593v-100h305q-8 45 -43.5 72.5t-86.5 27.5h-175z" />
|
|
972
|
+
<glyph glyph-name="rupee" unicode="₨" horiz-adv-x="1019"
|
|
973
|
+
d="M562 0h-98l-169 265h-134v-265h-83v667h268q93 0 151.5 -55t58.5 -146q0 -86 -50.5 -137t-123.5 -57zM336 338q59 0 96.5 36t37.5 92q0 57 -37.5 92t-96.5 35h-175v-255h175zM783 -12q-122 0 -195 76l38 54q25 -29 68.5 -49t90.5 -20q54 0 84.5 23t30.5 60q0 32 -31 50.5
|
|
974
|
+
t-75 28t-87.5 22t-74.5 43t-31 80.5q0 59 48 99t131 40q111 0 179 -70l-35 -52q-51 61 -144 61q-49 0 -78 -21.5t-29 -54.5q0 -24 22 -40t55.5 -23t72 -18t72 -24.5t55.5 -44t22 -74.5q0 -64 -49.5 -105t-139.5 -41z" />
|
|
975
|
+
<glyph glyph-name="uni20A9" unicode="₩" horiz-adv-x="883"
|
|
976
|
+
d="M678 0h-90l-67 242h-161l-66 -242h-90l-69 242h-115v48h101l-27 94h-74v48h61l-67 235h92l62 -235h174l65 235h69l64 -235h173l63 235h93l-68 -235h61v-48h-74l-27 -94h101v-48h-115zM181 384l25 -94h97l26 94h-148zM553 384l26 -94h97l25 94h-148zM399 384l-26 -94h135
|
|
977
|
+
l-25 94h-84zM219 242l35 -131l36 131h-71zM593 242l36 -131l34 131h-70zM441 538l-29 -106h58z" />
|
|
978
|
+
<glyph glyph-name="afii57636" unicode="₪" horiz-adv-x="821"
|
|
979
|
+
d="M323 550q225 0 225 -212v-176h-73v171q0 151 -152 151h-175v-484h-73v550h248zM521 0h-248v387h73v-321h175q152 0 152 151v333h73v-338q0 -212 -225 -212z" />
|
|
980
|
+
<glyph glyph-name="Euro" unicode="€" horiz-adv-x="695"
|
|
981
|
+
d="M416 -12q-121 0 -211.5 67.5t-119.5 181.5h-54v52h44q-2 28 -2 44t2 46h-44v53h55q30 112 120 179t210 67q161 0 253 -132l-69 -39q-29 44 -78.5 70.5t-105.5 26.5q-85 0 -150 -46.5t-92 -125.5h302v-53h-314q-3 -22 -3 -46q0 -23 3 -44h314v-52h-302q26 -80 91.5 -127.5
|
|
982
|
+
t150.5 -47.5q56 0 105.5 27t78.5 70l70 -38q-97 -133 -254 -133z" />
|
|
983
|
+
<glyph glyph-name="afii61289" unicode="ℓ" horiz-adv-x="475"
|
|
984
|
+
d="M76 101v404q0 73 53 122.5t137 49.5q75 0 125.5 -36t50.5 -90q0 -45 -31.5 -81t-89.5 -75l-170 -114v-169q0 -63 48 -63q28 0 51 21l22 -51q-31 -31 -89 -31q-107 0 -107 113zM151 356l142 95q41 28 59 49t18 48q0 32 -31.5 52.5t-73.5 20.5q-49 0 -81.5 -32t-32.5 -85
|
|
985
|
+
v-148z" />
|
|
986
|
+
<glyph glyph-name="afii61352" unicode="№" horiz-adv-x="1113"
|
|
987
|
+
d="M630 0h-80l-389 532v-532h-83v667h85l384 -521v521h83v-667zM910 350q-72 0 -117 48t-45 117q0 70 44.5 117.5t117.5 47.5q74 0 118.5 -47.5t44.5 -117.5t-44.5 -117.5t-118.5 -47.5zM910 398q48 0 76 33.5t28 83.5t-28 83t-76 33q-47 0 -74.5 -33t-27.5 -83
|
|
988
|
+
q0 -51 27.5 -84t74.5 -33z" />
|
|
989
|
+
<glyph glyph-name="published" unicode="℗" horiz-adv-x="778"
|
|
990
|
+
d="M734 334q0 -142 -101 -243.5t-244 -101.5t-244 101.5t-101 243.5t101 243.5t244 101.5t244 -101.5t101 -243.5zM703 334q0 129 -92.5 221.5t-221.5 92.5t-221.5 -92.5t-92.5 -221.5t92.5 -221.5t221.5 -92.5t221.5 92.5t92.5 221.5zM550 419q0 -52 -36.5 -83t-89.5 -31
|
|
991
|
+
h-112v-174h-37v405h149q53 0 89.5 -32t36.5 -85zM512 419q0 38 -24.5 60t-63.5 22h-112v-162h112q39 0 63.5 22t24.5 58z" />
|
|
992
|
+
<glyph glyph-name="servicemark" unicode="℠" horiz-adv-x="476"
|
|
993
|
+
d="M439 447h-28v182l-75 -182h-8l-75 182v-182h-28v220h43l64 -160l64 160h43v-220zM188 506q0 -31 -22.5 -49t-64.5 -18q-55 0 -86 36l18 21q28 -32 67 -32q55 0 55 39q0 19 -21.5 30t-46.5 15t-46.5 19.5t-21.5 42.5q0 28 22.5 45.5t57.5 17.5q55 0 82 -32l-18 -19
|
|
994
|
+
q-23 27 -63 27q-21 0 -34.5 -10t-13.5 -26q0 -17 21 -27t47 -14.5t47 -20.5t21 -45z" />
|
|
995
|
+
<glyph glyph-name="trademark" unicode="™" horiz-adv-x="454"
|
|
996
|
+
d="M419 447h-28v182l-75 -182h-8l-75 182v-182h-28v220h43l64 -160l64 160h43v-220zM169 641h-62v-194h-28v194h-62v26h152v-26z" />
|
|
997
|
+
<glyph glyph-name="estimated" unicode="℮" horiz-adv-x="842"
|
|
998
|
+
d="M811 324h-632q-5 0 -5 -5v-190q0 -14 9 -23q98 -103 240 -103q151 0 250 115h57q-54 -63 -135 -99.5t-174 -36.5q-161 0 -275.5 103t-114.5 248t114.5 248t275.5 103t275.5 -103t114.5 -248v-9zM668 349v191q0 14 -10 24q-97 99 -235 99q-140 0 -239 -102
|
|
999
|
+
q-10 -10 -10 -24v-188q0 -6 5 -6h485q4 0 4 6z" />
|
|
1000
|
+
<glyph glyph-name="onethird" unicode="⅓" horiz-adv-x="807"
|
|
1001
|
+
d="M590 667l-427 -667h-54l426 667h55zM762 109q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29
|
|
1002
|
+
t39.5 -78q0 -40 -27 -63.5t-62 -28.5q35 -4 65.5 -29.5t30.5 -68.5zM175 267h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
1003
|
+
<glyph glyph-name="twothirds" unicode="⅔" horiz-adv-x="915"
|
|
1004
|
+
d="M698 667l-427 -667h-54l426 667h55zM870 109q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29
|
|
1005
|
+
t39.5 -78q0 -40 -27 -63.5t-62 -28.5q35 -4 65.5 -29.5t30.5 -68.5zM341 267h-291v45q125 90 177 141.5t52 97.5q0 36 -25 54.5t-60 18.5t-65 -15t-47 -37l-33 38q50 63 147 63q60 0 101.5 -30t41.5 -88q0 -55 -50 -110.5t-151 -128.5h203v-49z" />
|
|
1006
|
+
<glyph glyph-name="oneeighth" unicode="⅛" horiz-adv-x="807"
|
|
1007
|
+
d="M590 667l-427 -667h-54l426 667h55zM766 102q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM699 294
|
|
1008
|
+
q0 31 -24 47.5t-62 16.5t-62.5 -17t-24.5 -47q0 -46 87 -68q86 20 86 68zM706 107q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5zM175 267h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
1009
|
+
<glyph glyph-name="threeeighths" unicode="⅜" horiz-adv-x="915"
|
|
1010
|
+
d="M698 667l-427 -667h-54l426 667h55zM874 102q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM807 294
|
|
1011
|
+
q0 31 -24 47.5t-62 16.5t-62.5 -17t-24.5 -47q0 -46 87 -68q86 20 86 68zM814 107q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5zM343 376q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19
|
|
1012
|
+
t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29t39.5 -78q0 -40 -27 -63.5t-62 -28.5q35 -4 65.5 -29.5t30.5 -68.5z" />
|
|
1013
|
+
<glyph glyph-name="fiveeighths" unicode="⅝" horiz-adv-x="912"
|
|
1014
|
+
d="M695 667l-427 -667h-54l426 667h55zM871 102q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM804 294
|
|
1015
|
+
q0 31 -24 47.5t-62 16.5t-62.5 -17t-24.5 -47q0 -46 87 -68q86 20 86 68zM811 107q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5zM344 393q0 -60 -43 -96.5t-109 -36.5q-99 0 -148 65l35 39q42 -55 113 -55q41 0 67 23.5
|
|
1016
|
+
t26 58.5q0 37 -25 60t-66 23q-55 0 -95 -39l-43 16v216h261v-49h-200v-134q36 36 95 36q55 0 93.5 -33.5t38.5 -93.5z" />
|
|
1017
|
+
<glyph glyph-name="seveneighths" unicode="⅞" horiz-adv-x="830"
|
|
1018
|
+
d="M613 667l-427 -667h-54l426 667h55zM789 102q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM722 294
|
|
1019
|
+
q0 31 -24 47.5t-62 16.5t-62.5 -17t-24.5 -47q0 -46 87 -68q86 20 86 68zM729 107q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5zM323 626l-166 -359h-67l166 351h-223v49h290v-41z" />
|
|
1020
|
+
<glyph glyph-name="arrowleft" unicode="←" horiz-adv-x="582"
|
|
1021
|
+
d="M538 211h-269l12 -130l-281 205l281 204l-12 -129h269v-150z" />
|
|
1022
|
+
<glyph glyph-name="arrowup" unicode="↑" horiz-adv-x="582"
|
|
1023
|
+
d="M216 17v269l-130 -12l205 281l204 -281l-129 12v-269h-150z" />
|
|
1024
|
+
<glyph glyph-name="arrowright" unicode="→" horiz-adv-x="582"
|
|
1025
|
+
d="M584 286l-281 -205l12 130h-268v150h268l-12 129z" />
|
|
1026
|
+
<glyph glyph-name="arrowdown" unicode="↓" horiz-adv-x="582"
|
|
1027
|
+
d="M366 555v-269l130 12l-205 -281l-204 281l129 -12v269h150z" />
|
|
1028
|
+
<glyph glyph-name="partialdiff" unicode="∂" horiz-adv-x="572"
|
|
1029
|
+
d="M286 -12q-108 0 -173.5 70.5t-65.5 175.5q0 104 62 174.5t158 70.5q99 0 155 -82q-30 68 -94.5 130.5t-154.5 106.5l56 47q123 -65 209.5 -179t86.5 -253q0 -115 -65 -188t-174 -73zM286 55q74 0 117 51.5t43 127.5q0 75 -43 126.5t-117 51.5t-117 -51.5t-43 -126.5
|
|
1030
|
+
q0 -76 43 -127.5t117 -51.5z" />
|
|
1031
|
+
<glyph glyph-name="product" unicode="∏" horiz-adv-x="708"
|
|
1032
|
+
d="M566 -90h-83v683h-259v-683h-83v683h-109v74h644v-74h-110v-683z" />
|
|
1033
|
+
<glyph glyph-name="summation" unicode="∑" horiz-adv-x="576"
|
|
1034
|
+
d="M158 593l228 -294l-232 -315h368v-74h-468v74l231 314l-230 296v73h467v-74h-364z" />
|
|
1035
|
+
<glyph glyph-name="minus" unicode="−" horiz-adv-x="499"
|
|
1036
|
+
d="M470 308h-441v52h441v-52z" />
|
|
1037
|
+
<glyph glyph-name="radical" unicode="√" horiz-adv-x="725"
|
|
1038
|
+
d="M427 0h-58l-130 327l-155 -61l-18 50l206 79l127 -317l235 589h59z" />
|
|
1039
|
+
<glyph glyph-name="infinity" unicode="∞" horiz-adv-x="656"
|
|
1040
|
+
d="M184 170q-75 0 -115 49.5t-40 115.5q0 67 39.5 116.5t115.5 49.5q47 0 84.5 -31t59.5 -79q22 48 59.5 79t85.5 31q76 0 115 -49t39 -117q0 -66 -39.5 -115.5t-114.5 -49.5q-48 0 -85.5 31t-59.5 79q-22 -48 -59.5 -79t-84.5 -31zM468 223q48 0 75.5 31.5t27.5 80.5
|
|
1041
|
+
q0 50 -27.5 81.5t-75.5 31.5q-72 0 -115 -113q43 -112 115 -112zM189 223q72 0 115 112q-18 48 -47 80.5t-68 32.5q-48 0 -76 -31.5t-28 -81.5q0 -49 28 -80.5t76 -31.5z" />
|
|
1042
|
+
<glyph glyph-name="integral" unicode="∫" horiz-adv-x="348"
|
|
1043
|
+
d="M78 -100h-61v55h61q27 0 47 23t20 57v598q0 60 37.5 97.5t87.5 37.5h61v-55h-61q-28 0 -47.5 -22.5t-19.5 -56.5v-600q0 -59 -37.5 -96.5t-87.5 -37.5z" />
|
|
1044
|
+
<glyph glyph-name="approxequal" unicode="≈" horiz-adv-x="499"
|
|
1045
|
+
d="M29 211v59q47 -33 110 -33q47 0 105 29t115 29q60 0 111 -27v-59q-49 34 -111 34q-47 0 -105 -29.5t-115 -29.5q-61 0 -110 27zM29 400v59q47 -33 110 -33q47 0 105 29t115 29q60 0 111 -27v-59q-47 33 -111 33q-47 0 -105 -29t-115 -29q-61 0 -110 27z" />
|
|
1046
|
+
<glyph glyph-name="notequal" unicode="≠" horiz-adv-x="499"
|
|
1047
|
+
d="M123 93h-54l75 118h-115v53h148l89 140h-237v53h271l75 117h55l-75 -117h115v-53h-149l-89 -140h238v-53h-272z" />
|
|
1048
|
+
<glyph glyph-name="lessequal" unicode="≤" horiz-adv-x="499"
|
|
1049
|
+
d="M470 99l-441 218v53l441 219v-63l-377 -183l377 -181v-63zM470 0h-441v53h441v-53z" />
|
|
1050
|
+
<glyph glyph-name="greaterequal" unicode="≥" horiz-adv-x="499"
|
|
1051
|
+
d="M470 317l-441 -218v63l376 181l-376 183v63l441 -219v-53zM469 0h-441v53h441v-53z" />
|
|
1052
|
+
<glyph glyph-name="triangleright" unicode="⊲" horiz-adv-x="587"
|
|
1053
|
+
d="M589 286l-535 -309v618z" />
|
|
1054
|
+
<glyph glyph-name="triangleleft" unicode="⊳" horiz-adv-x="587"
|
|
1055
|
+
d="M535 595v-618l-535 309z" />
|
|
1056
|
+
<glyph glyph-name="uni2318" unicode="⌘" horiz-adv-x="667"
|
|
1057
|
+
d="M226 154v74h-74q-31 0 -51.5 -21.5t-20.5 -52.5t21 -53t52 -22t52 22t21 53zM226 439v75q0 31 -20.5 52.5t-51.5 21.5t-52.5 -21.5t-21.5 -52.5t21.5 -53t52.5 -22h72zM265 265h137v137h-137v-137zM587 154q0 31 -20.5 52.5t-51.5 21.5h-74v-74q0 -31 21 -53t52 -22
|
|
1058
|
+
t52 22t21 53zM587 514q0 31 -21 52.5t-52 21.5t-52 -21.5t-21 -52.5v-75h74q30 0 51 22t21 53zM625 154q0 -46 -32.5 -79t-78.5 -33t-79 33t-33 79v74h-137v-74q0 -46 -33 -79t-79 -33t-78.5 33t-32.5 79t32.5 78.5t78.5 32.5h73v137h-72q-46 0 -79 33t-33 79t33 78.5
|
|
1059
|
+
t79 32.5t78.5 -32.5t32.5 -78.5v-75h137v75q0 46 33 78.5t79 32.5t78.5 -32.5t32.5 -78.5t-32.5 -79t-78.5 -33h-73v-137h73q46 0 78.5 -32.5t32.5 -78.5z" />
|
|
1060
|
+
<glyph glyph-name="uni2318" unicode="" horiz-adv-x="667"
|
|
1061
|
+
d="M226 154v74h-74q-31 0 -51.5 -21.5t-20.5 -52.5t21 -53t52 -22t52 22t21 53zM226 439v75q0 31 -20.5 52.5t-51.5 21.5t-52.5 -21.5t-21.5 -52.5t21.5 -53t52.5 -22h72zM265 265h137v137h-137v-137zM587 154q0 31 -20.5 52.5t-51.5 21.5h-74v-74q0 -31 21 -53t52 -22
|
|
1062
|
+
t52 22t21 53zM587 514q0 31 -21 52.5t-52 21.5t-52 -21.5t-21 -52.5v-75h74q30 0 51 22t21 53zM625 154q0 -46 -32.5 -79t-78.5 -33t-79 33t-33 79v74h-137v-74q0 -46 -33 -79t-79 -33t-78.5 33t-32.5 79t32.5 78.5t78.5 32.5h73v137h-72q-46 0 -79 33t-33 79t33 78.5
|
|
1063
|
+
t79 32.5t78.5 -32.5t32.5 -78.5v-75h137v75q0 46 33 78.5t79 32.5t78.5 -32.5t32.5 -78.5t-32.5 -79t-78.5 -33h-73v-137h73q46 0 78.5 -32.5t32.5 -78.5z" />
|
|
1064
|
+
<glyph glyph-name="blacksquare" unicode="■" horiz-adv-x="661"
|
|
1065
|
+
d="M618 0h-571v572h571v-572z" />
|
|
1066
|
+
<glyph glyph-name="triagup" unicode="▲" horiz-adv-x="616"
|
|
1067
|
+
d="M617 29l-619 1l309 535z" />
|
|
1068
|
+
<glyph glyph-name="triagdn" unicode="▼" horiz-adv-x="616"
|
|
1069
|
+
d="M617 510l-310 -535l-309 535h619z" />
|
|
1070
|
+
<glyph glyph-name="lozenge" unicode="◊" horiz-adv-x="375"
|
|
1071
|
+
d="M198 0h-21l-158 334l158 333h21l158 -333zM188 41l132 293l-133 292l-132 -292z" />
|
|
1072
|
+
<glyph glyph-name="circlesolid" unicode="●" horiz-adv-x="695"
|
|
1073
|
+
d="M644 285q0 -123 -87 -210t-210 -87t-210 87t-87 210t87 210t210 87t210 -87t87 -210z" />
|
|
1074
|
+
<glyph glyph-name="blackstar" unicode="★" horiz-adv-x="759"
|
|
1075
|
+
d="M759 421l-235 -171l90 -275l-235 170l-234 -170l89 275l-234 171h290l89 276l90 -276h290z" />
|
|
1076
|
+
<glyph glyph-name="ballotbox" unicode="☐" horiz-adv-x="661"
|
|
1077
|
+
d="M616 0h-571v572h571v-572zM559 53v467h-457v-467h457z" />
|
|
1078
|
+
<glyph glyph-name="boxchecked" unicode="☑" horiz-adv-x="661"
|
|
1079
|
+
d="M677 698l-69 -126h8v-572h-571v572h502l84 156zM559 53v427l-211 -389l-202 246l42 39l152 -188l179 332h-417v-467h457z" />
|
|
1080
|
+
<glyph glyph-name="diamond" unicode="♦" horiz-adv-x="501"
|
|
1081
|
+
d="M501 285l-251 -250l-250 250l250 251z" />
|
|
1082
|
+
<glyph glyph-name="checkmark" unicode="✓" horiz-adv-x="531"
|
|
1083
|
+
d="M531 698l-329 -607l-202 246l42 39l152 -188l291 540z" />
|
|
1084
|
+
<glyph glyph-name="a.alt1" unicode="" horiz-adv-x="575"
|
|
1085
|
+
d="M500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1086
|
+
<glyph glyph-name="f.alt1" unicode="" horiz-adv-x="284"
|
|
1087
|
+
d="M171 0h-75v417h-80v66h80v37q0 74 38.5 115.5t101.5 41.5q45 0 74 -16l-19 -57q-19 11 -43 11q-77 0 -77 -95v-37h98v-66h-98v-417z" />
|
|
1088
|
+
<glyph glyph-name="l.alt1" unicode="" horiz-adv-x="269"
|
|
1089
|
+
d="M182 -12q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31z" />
|
|
1090
|
+
<glyph glyph-name="y.alt1" unicode="" horiz-adv-x="551"
|
|
1091
|
+
d="M255 -196q-112 0 -185 73l38 54q52 -65 147 -65q68 0 107 37t39 103v72q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v331h75v-308q0 -61 28 -86t81 -25q41 0 80.5 21.5t61.5 51.5v346h75v-477q0 -98 -63 -150t-158 -52z" />
|
|
1092
|
+
<glyph glyph-name="G.alt1" unicode="" horiz-adv-x="713"
|
|
1093
|
+
d="M388 -13q-141 0 -239 97t-98 249q0 153 98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q97 0 154 58.5t70 148.5h-274v74h364q0 -160 -84.5 -258t-235.5 -98z" />
|
|
1094
|
+
<glyph glyph-name="G.smcp.alt1" unicode="" horiz-adv-x="643"
|
|
1095
|
+
d="M338 -12q-123 0 -207 80.5t-84 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-61 73 -160 73q-91 0 -152 -61.5t-61 -156.5q0 -94 61 -156t152 -62q72 0 123 44t61 120h-207v66h291q0 -136 -74 -217.5t-197 -81.5z" />
|
|
1096
|
+
<glyph glyph-name="aacute.alt1" unicode="" horiz-adv-x="575"
|
|
1097
|
+
d="M454 700l-169 -144h-57l148 144h78zM500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134
|
|
1098
|
+
t114 -52z" />
|
|
1099
|
+
<glyph glyph-name="agrave.alt1" unicode="" horiz-adv-x="575"
|
|
1100
|
+
d="M361 556h-57l-169 144h78zM500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1101
|
+
<glyph glyph-name="acircumflex.alt1" unicode="" horiz-adv-x="575"
|
|
1102
|
+
d="M426 556h-51l-83 106l-80 -106h-51l95 144h72zM500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5
|
|
1103
|
+
t42 -134t114 -52z" />
|
|
1104
|
+
<glyph glyph-name="adieresis.alt1" unicode="" horiz-adv-x="575"
|
|
1105
|
+
d="M443 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM236 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM500 0h-75v72q-62 -84 -163 -84
|
|
1106
|
+
q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1107
|
+
<glyph glyph-name="atilde.alt1" unicode="" horiz-adv-x="575"
|
|
1108
|
+
d="M353 554q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37zM500 0h-75v72q-62 -84 -163 -84
|
|
1109
|
+
q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1110
|
+
<glyph glyph-name="aring.alt1" unicode="" horiz-adv-x="575"
|
|
1111
|
+
d="M291 554q-41 0 -70 29t-29 70t29 70t70 29q40 0 68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM291 594q24 0 41 17.5t17 41.5t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5zM500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5
|
|
1112
|
+
t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1113
|
+
<glyph glyph-name="amacron.alt1" unicode="" horiz-adv-x="575"
|
|
1114
|
+
d="M476 591h-363v48h363v-48zM500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1115
|
+
<glyph glyph-name="abreve.alt1" unicode="" horiz-adv-x="575"
|
|
1116
|
+
d="M468 651q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72zM500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-483zM281 55q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5
|
|
1117
|
+
q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1118
|
+
<glyph glyph-name="aogonek.alt1" unicode="" horiz-adv-x="575"
|
|
1119
|
+
d="M522 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-9v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-482l2 -1q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42zM281 55q43 0 83.5 22.5t60.5 54.5v218
|
|
1120
|
+
q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52z" />
|
|
1121
|
+
<glyph glyph-name="ae.alt1" unicode="" horiz-adv-x="936"
|
|
1122
|
+
d="M500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-94q58 106 176 106q99 0 157 -73.5t58 -185.5v-19h-391q5 -71 51.5 -118t121.5 -47q91 0 150 61l36 -50q-72 -75 -175 -75q-127 0 -184 105v-93zM281 55
|
|
1123
|
+
q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52zM817 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317z" />
|
|
1124
|
+
<glyph glyph-name="aeacute.alt1" unicode="" horiz-adv-x="889"
|
|
1125
|
+
d="M500 0h-75v72q-62 -84 -163 -84q-96 0 -155.5 68.5t-59.5 184.5q0 115 60 184.5t155 69.5q100 0 163 -85v73h75v-94q58 106 176 106q99 0 157 -73.5t58 -185.5v-19h-391q5 -71 51.5 -118t121.5 -47q91 0 150 61l36 -50q-72 -75 -175 -75q-127 0 -184 105v-93zM281 55
|
|
1126
|
+
q43 0 83.5 22.5t60.5 54.5v218q-20 33 -60.5 55.5t-83.5 22.5q-72 0 -114 -52.5t-42 -134.5t42 -134t114 -52zM817 273q-1 61 -42 110.5t-117 49.5q-72 0 -113.5 -49t-44.5 -111h317zM619 700l-169 -144h-57l148 144h78z" />
|
|
1127
|
+
<glyph glyph-name="lslash.alt1" unicode="" horiz-adv-x="299"
|
|
1128
|
+
d="M10 228v60l95 54v325h75v-282l96 55v-60l-96 -55v-208q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31q-53 0 -80 29t-27 84v181z" />
|
|
1129
|
+
<glyph glyph-name="lacute.alt1" unicode="" horiz-adv-x="269"
|
|
1130
|
+
d="M273 872l-169 -144h-57l148 144h78zM182 -12q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31z" />
|
|
1131
|
+
<glyph glyph-name="lcommaaccent.alt1" unicode="" horiz-adv-x="269"
|
|
1132
|
+
d="M184 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49zM182 -12q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31z" />
|
|
1133
|
+
<glyph glyph-name="lcaron.alt1" unicode="" horiz-adv-x="296"
|
|
1134
|
+
d="M314 613q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5l-4 -1h-7q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49zM182 -12q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31z" />
|
|
1135
|
+
<glyph glyph-name="ldot.alt1" unicode="" horiz-adv-x="307"
|
|
1136
|
+
d="M182 -12q-53 0 -80 29t-27 84v566h75v-550q0 -28 12.5 -45t36.5 -17q33 0 50 21l23 -57q-34 -31 -90 -31zM321 245q0 -23 -16.5 -39t-38.5 -16t-38.5 16t-16.5 39q0 22 16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
1137
|
+
<glyph glyph-name="yacute.alt1" unicode="" horiz-adv-x="551"
|
|
1138
|
+
d="M435 700l-169 -144h-57l148 144h78zM255 -196q-112 0 -185 73l38 54q52 -65 147 -65q68 0 107 37t39 103v72q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v331h75v-308q0 -61 28 -86t81 -25q41 0 80.5 21.5t61.5 51.5v346h75v-477q0 -98 -63 -150t-158 -52z" />
|
|
1139
|
+
<glyph glyph-name="ydieresis.alt1" unicode="" horiz-adv-x="551"
|
|
1140
|
+
d="M422 604q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM215 604q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5zM255 -196q-112 0 -185 73l38 54
|
|
1141
|
+
q52 -65 147 -65q68 0 107 37t39 103v72q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v331h75v-308q0 -61 28 -86t81 -25q41 0 80.5 21.5t61.5 51.5v346h75v-477q0 -98 -63 -150t-158 -52z" />
|
|
1142
|
+
<glyph glyph-name="ycircumflex.alt1" unicode="" horiz-adv-x="551"
|
|
1143
|
+
d="M410 556h-51l-83 106l-80 -106h-51l95 144h72zM255 -196q-112 0 -185 73l38 54q52 -65 147 -65q68 0 107 37t39 103v72q-30 -34 -75.5 -57t-96.5 -23q-154 0 -154 154v331h75v-308q0 -61 28 -86t81 -25q41 0 80.5 21.5t61.5 51.5v346h75v-477q0 -98 -63 -150t-158 -52z
|
|
1144
|
+
" />
|
|
1145
|
+
<glyph glyph-name="Gbreve.alt1" unicode="" horiz-adv-x="742"
|
|
1146
|
+
d="M572 810q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72zM388 -13q-141 0 -239 97t-98 249q0 153 98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q97 0 154 58.5
|
|
1147
|
+
t70 148.5h-274v74h364q0 -160 -84.5 -258t-235.5 -98z" />
|
|
1148
|
+
<glyph glyph-name="Gcommaaccent.alt1" unicode="" horiz-adv-x="742"
|
|
1149
|
+
d="M449 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49zM388 -13q-141 0 -239 97t-98 249q0 153 98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25
|
|
1150
|
+
q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q97 0 154 58.5t70 148.5h-274v74h364q0 -160 -84.5 -258t-235.5 -98z" />
|
|
1151
|
+
<glyph glyph-name="Gcircumflex.alt1" unicode="" horiz-adv-x="742"
|
|
1152
|
+
d="M526 728h-51l-83 106l-80 -106h-51l95 144h72zM388 -13q-141 0 -239 97t-98 249q0 153 98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5q97 0 154 58.5t70 148.5h-274v74h364
|
|
1153
|
+
q0 -160 -84.5 -258t-235.5 -98z" />
|
|
1154
|
+
<glyph glyph-name="Gdotaccent.alt1" unicode="" horiz-adv-x="742"
|
|
1155
|
+
d="M391 727q-19 0 -33 14t-14 33t14 33t33 14t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5zM388 -13q-141 0 -239 97t-98 249q0 153 98.5 249t244.5 96q159 0 259 -124l-66 -42q-32 42 -83.5 67t-109.5 25q-111 0 -184 -76t-73 -195q0 -118 73.5 -194.5t183.5 -76.5
|
|
1156
|
+
q97 0 154 58.5t70 148.5h-274v74h364q0 -160 -84.5 -258t-235.5 -98z" />
|
|
1157
|
+
<glyph glyph-name="Gbreve.smcp.alt1" unicode="" horiz-adv-x="640"
|
|
1158
|
+
d="M518 691q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72zM338 -12q-123 0 -207 80.5t-84 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-61 73 -160 73q-91 0 -152 -61.5t-61 -156.5q0 -94 61 -156t152 -62q72 0 123 44t61 120h-207v66h291
|
|
1159
|
+
q0 -136 -74 -217.5t-197 -81.5z" />
|
|
1160
|
+
<glyph glyph-name="Gcommaaccent.smcp.alt1" unicode="" horiz-adv-x="643"
|
|
1161
|
+
d="M397 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49zM338 -12q-123 0 -207 80.5t-84 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-61 73 -160 73
|
|
1162
|
+
q-91 0 -152 -61.5t-61 -156.5q0 -94 61 -156t152 -62q72 0 123 44t61 120h-207v66h291q0 -136 -74 -217.5t-197 -81.5z" />
|
|
1163
|
+
<glyph glyph-name="Gcircumflex.smcp.alt1" unicode="" horiz-adv-x="626"
|
|
1164
|
+
d="M338 -12q-123 0 -207 80.5t-84 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-61 73 -160 73q-91 0 -152 -61.5t-61 -156.5q0 -94 61 -156t152 -62q72 0 123 44t61 120h-207v66h291q0 -136 -74 -217.5t-197 -81.5zM473 606h-51l-83 106l-80 -106h-51l95 144h72z
|
|
1165
|
+
" />
|
|
1166
|
+
<glyph glyph-name="Gdotaccent.smcp.alt1" unicode="" horiz-adv-x="626"
|
|
1167
|
+
d="M338 -12q-123 0 -207 80.5t-84 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-61 73 -160 73q-91 0 -152 -61.5t-61 -156.5q0 -94 61 -156t152 -62q72 0 123 44t61 120h-207v66h291q0 -136 -74 -217.5t-197 -81.5zM343 629q-19 0 -33 14t-14 33t14 33t33 14
|
|
1168
|
+
t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5z" />
|
|
1169
|
+
<glyph glyph-name="zero.pzero" unicode="" horiz-adv-x="612"
|
|
1170
|
+
d="M306 -12q-88 0 -149 55l-27 -43h-65l54 86q-68 95 -68 247q0 64 14.5 123t44 109.5t80 81t116.5 30.5q85 0 147 -54l28 44h65l-54 -87q69 -96 69 -247q0 -64 -14.5 -123t-44 -110t-80.5 -81.5t-116 -30.5zM306 62q60 0 100 41.5t55 99.5t15 130q0 102 -31 171l-246 -394
|
|
1171
|
+
q42 -48 107 -48zM136 333q0 -101 30 -171l246 394q-42 47 -106 47q-60 0 -100 -41t-55 -99t-15 -130z" />
|
|
1172
|
+
<glyph glyph-name="perthousand.onum" unicode="" horiz-adv-x="878"
|
|
1173
|
+
d="M288 425q0 -59 -36.5 -97.5t-95.5 -38.5q-57 0 -93.5 39t-36.5 97t36.5 97.5t93.5 39.5q58 0 95 -39t37 -98zM566 125q0 -58 -37 -97t-94 -39t-94 39t-37 97q0 59 37 98t94 39t94 -39t37 -98zM514 550l-384 -550h-52l382 550h54zM236 425q0 40 -22.5 66.5t-57.5 26.5
|
|
1174
|
+
q-34 0 -56.5 -27t-22.5 -66t22.5 -65.5t56.5 -26.5q36 0 58 26t22 66zM515 125q0 40 -22 66.5t-58 26.5t-58 -26.5t-22 -66.5q0 -39 22.5 -65.5t57.5 -26.5t57.5 26.5t22.5 65.5zM852 125q0 -58 -36.5 -97t-94.5 -39q-57 0 -93.5 40t-36.5 96q0 59 36.5 98t93.5 39
|
|
1175
|
+
q58 0 94.5 -39t36.5 -98zM801 125q0 40 -22 66.5t-58 26.5q-35 0 -57 -26.5t-22 -66.5q0 -39 22 -65.5t57 -26.5t57.5 26.5t22.5 65.5z" />
|
|
1176
|
+
<glyph glyph-name="zero.tzero" unicode="" horiz-adv-x="612"
|
|
1177
|
+
d="M306 -12q-88 0 -149 55l-27 -43h-65l54 86q-68 95 -68 247q0 64 14.5 123t44 109.5t80 81t116.5 30.5q85 0 147 -54l28 44h65l-54 -87q69 -96 69 -247q0 -64 -14.5 -123t-44 -110t-80.5 -81.5t-116 -30.5zM306 62q60 0 100 41.5t55 99.5t15 130q0 102 -31 171l-246 -394
|
|
1178
|
+
q42 -48 107 -48zM136 333q0 -101 30 -171l246 394q-42 47 -106 47q-60 0 -100 -41t-55 -99t-15 -130z" />
|
|
1179
|
+
<glyph glyph-name="zero.tnum" unicode="" horiz-adv-x="598"
|
|
1180
|
+
d="M299 -12q-66 0 -116.5 30.5t-80 81.5t-44 110t-14.5 123t14.5 123t44 109.5t80 81t116.5 30.5q65 0 116 -30.5t80.5 -81t44 -109.5t14.5 -123t-14.5 -123t-44 -110t-80.5 -81.5t-116 -30.5zM299 62q60 0 100 41.5t55 99.5t15 130t-15 130t-55 99t-100 41t-100 -41
|
|
1181
|
+
t-55 -99t-15 -130t15 -130t55 -99.5t100 -41.5z" />
|
|
1182
|
+
<glyph glyph-name="two.tnum" unicode="" horiz-adv-x="598"
|
|
1183
|
+
d="M527 0h-458v67q205 160 288 247t83 167q0 60 -41.5 91t-98.5 31q-115 0 -181 -84l-51 53q38 50 99.5 77.5t132.5 27.5q91 0 157.5 -51t66.5 -145q0 -93 -80 -185.5t-244 -221.5h327v-74z" />
|
|
1184
|
+
<glyph glyph-name="three.tnum" unicode="" horiz-adv-x="598"
|
|
1185
|
+
d="M298 -12q-80 0 -142 31t-95 79l49 52q30 -40 79 -64t107 -24q72 0 114 34t42 91q0 60 -44.5 89t-121.5 29q-59 0 -69 -1v76q11 -1 69 -1q68 0 111.5 27.5t43.5 82.5q0 53 -42.5 83.5t-106.5 30.5q-101 0 -176 -81l-46 52q84 103 229 103q99 0 162 -47.5t63 -129.5
|
|
1186
|
+
q0 -66 -44 -106t-99 -49q55 -6 104.5 -49t49.5 -116q0 -85 -64.5 -138.5t-172.5 -53.5z" />
|
|
1187
|
+
<glyph glyph-name="four.tnum" unicode="" horiz-adv-x="598"
|
|
1188
|
+
d="M451 0h-83v169h-317v69l286 429h114v-425h94v-73h-94v-169zM368 242v348l-234 -348h234z" />
|
|
1189
|
+
<glyph glyph-name="five.tnum" unicode="" horiz-adv-x="598"
|
|
1190
|
+
d="M305 -12q-154 0 -235 107l51 56q69 -89 184 -89q68 0 111 41t43 102q0 65 -42.5 104.5t-110.5 39.5q-89 0 -154 -62l-61 21v359h408v-74h-325v-232q62 60 156 60q89 0 151 -57t62 -156t-67.5 -159.5t-170.5 -60.5z" />
|
|
1191
|
+
<glyph glyph-name="six.tnum" unicode="" horiz-adv-x="598"
|
|
1192
|
+
d="M316 -12q-68 0 -119 28t-80.5 77t-44 109t-14.5 131q0 146 69.5 245t202.5 99q116 0 184 -80l-42 -62q-58 68 -142 68q-62 0 -106 -39t-63 -96.5t-19 -126.5v-26q25 40 77.5 72t111.5 32q95 0 156.5 -55.5t61.5 -157.5q0 -90 -64 -154t-169 -64zM312 62q72 0 112.5 44
|
|
1193
|
+
t40.5 97q0 70 -43 107t-110 37q-49 0 -94 -27.5t-73 -71.5q6 -74 47 -130t120 -56z" />
|
|
1194
|
+
<glyph glyph-name="seven.tnum" unicode="" horiz-adv-x="598"
|
|
1195
|
+
d="M254 0h-92l269 593h-359v74h455v-57z" />
|
|
1196
|
+
<glyph glyph-name="eight.tnum" unicode="" horiz-adv-x="598"
|
|
1197
|
+
d="M299 -12q-102 0 -170.5 49t-68.5 132q0 63 45.5 109t113.5 66q-64 18 -106 58.5t-42 101.5q0 84 68 128.5t160 44.5t160.5 -44.5t68.5 -128.5q0 -61 -42.5 -101.5t-106.5 -58.5q68 -20 113.5 -66t45.5 -109q0 -82 -68.5 -131.5t-170.5 -49.5zM299 378q20 3 40.5 10
|
|
1198
|
+
t46.5 19.5t42 35t16 50.5q0 50 -41.5 80t-103.5 30t-103 -29.5t-41 -80.5q0 -28 16 -50.5t42 -35t46 -19.5t40 -10zM299 62q64 0 109.5 32t45.5 84q0 40 -31.5 70.5t-64 43t-59.5 15.5q-27 -3 -59.5 -15.5t-64 -43t-31.5 -70.5q0 -52 45 -84t110 -32z" />
|
|
1199
|
+
<glyph glyph-name="nine.tnum" unicode="" horiz-adv-x="598"
|
|
1200
|
+
d="M270 -11q-114 0 -185 80l42 62q58 -68 143 -68q64 0 108 40t62 97t18 125q0 17 -1 26q-25 -40 -77 -72t-111 -32q-95 0 -157 55.5t-62 157.5q0 90 64 154t170 64q67 0 118 -28t81 -77t44.5 -109t14.5 -131q0 -94 -28 -169.5t-91 -125t-153 -49.5zM288 319q49 0 94.5 27.5
|
|
1201
|
+
t72.5 72.5q-3 33 -13.5 64t-29.5 59t-51.5 45t-73.5 17q-71 0 -112 -43.5t-41 -97.5q0 -70 43 -107t111 -37z" />
|
|
1202
|
+
<glyph glyph-name="percent.onum" unicode="" horiz-adv-x="592"
|
|
1203
|
+
d="M288 425q0 -59 -36.5 -97.5t-95.5 -38.5q-57 0 -93.5 39t-36.5 97t36.5 97.5t93.5 39.5q58 0 95 -39t37 -98zM566 125q0 -58 -37 -97t-94 -39t-94 39t-37 97q0 59 37 98t94 39t94 -39t37 -98zM514 550l-384 -550h-52l382 550h54zM236 425q0 40 -22.5 66.5t-57.5 26.5
|
|
1204
|
+
q-34 0 -56.5 -27t-22.5 -66t22.5 -65.5t56.5 -26.5q36 0 58 26t22 66zM515 125q0 40 -22 66.5t-58 26.5t-58 -26.5t-22 -66.5t22 -66t58 -26q35 0 57.5 26.5t22.5 65.5z" />
|
|
1205
|
+
<glyph glyph-name="zero.tonum" unicode="" horiz-adv-x="598"
|
|
1206
|
+
d="M554 275q0 -75 -25.5 -138t-85 -106t-144.5 -43t-144.5 43t-85 106t-25.5 138q0 56 15 106t45 91t80.5 65.5t114.5 24.5t114.5 -24.5t80.5 -65.5t45 -91t15 -106zM469 275q0 89 -42.5 151t-127.5 62q-84 0 -127 -62t-43 -151t43 -151t127 -62t127 62t43 151z" />
|
|
1207
|
+
<glyph glyph-name="one.tonum" unicode="" horiz-adv-x="598"
|
|
1208
|
+
d="M396 0h-83v441l-107 -114l-50 51l167 172h73v-550z" />
|
|
1209
|
+
<glyph glyph-name="two.tonum" unicode="" horiz-adv-x="598"
|
|
1210
|
+
d="M510 0h-431v67q180 74 269 151.5t89 152.5q0 51 -39.5 84t-96.5 33q-121 0 -186 -84l-51 53q38 50 102.5 77.5t136.5 27.5q95 0 156.5 -49.5t61.5 -130.5q0 -88 -81 -170.5t-208 -137.5h278v-74z" />
|
|
1211
|
+
<glyph glyph-name="three.tonum" unicode="" horiz-adv-x="598"
|
|
1212
|
+
d="M298 -134q-80 0 -142 31t-95 79l49 52q30 -40 79 -64t107 -24q72 0 114 34t42 91q0 60 -44.5 89t-121.5 29q-59 0 -69 -1v76q11 -1 69 -1q68 0 111.5 27.5t43.5 82.5q0 53 -42.5 83.5t-106.5 30.5q-101 0 -176 -81l-46 52q84 103 229 103q99 0 162 -47.5t63 -129.5
|
|
1213
|
+
q0 -66 -44 -106t-99 -49q55 -6 104.5 -49t49.5 -116q0 -85 -64.5 -138.5t-172.5 -53.5z" />
|
|
1214
|
+
<glyph glyph-name="four.tonum" unicode="" horiz-adv-x="598"
|
|
1215
|
+
d="M545 55h-94v-172h-83v172h-317v69l286 426h114v-422h94v-73zM368 128v345l-234 -345h234z" />
|
|
1216
|
+
<glyph glyph-name="five.tonum" unicode="" horiz-adv-x="598"
|
|
1217
|
+
d="M305 -129q-154 0 -235 107l51 56q69 -89 184 -89q68 0 111 41t43 102q0 65 -42.5 104.5t-110.5 39.5q-89 0 -154 -62l-61 21v359h408v-74h-325v-232q62 60 156 60q89 0 151 -57t62 -156t-67.5 -159.5t-170.5 -60.5z" />
|
|
1218
|
+
<glyph glyph-name="six.tonum" unicode="" horiz-adv-x="598"
|
|
1219
|
+
d="M316 -12q-68 0 -119 28t-80.5 77t-44 109t-14.5 131q0 146 69.5 245t202.5 99q116 0 184 -80l-42 -62q-58 68 -142 68q-62 0 -106 -39t-63 -96.5t-19 -126.5v-26q25 40 77.5 72t111.5 32q95 0 156.5 -55.5t61.5 -157.5q0 -90 -64 -154t-169 -64zM312 62q72 0 112.5 44
|
|
1220
|
+
t40.5 97q0 70 -43 107t-110 37q-49 0 -94 -27.5t-73 -71.5q6 -74 47 -130t120 -56z" />
|
|
1221
|
+
<glyph glyph-name="seven.tonum" unicode="" horiz-adv-x="598"
|
|
1222
|
+
d="M254 -117h-92l269 593h-359v74h455v-57z" />
|
|
1223
|
+
<glyph glyph-name="eight.tonum" unicode="" horiz-adv-x="598"
|
|
1224
|
+
d="M299 -12q-102 0 -170.5 49t-68.5 132q0 63 45.5 109t113.5 66q-64 18 -106 58.5t-42 101.5q0 84 68 128.5t160 44.5t160.5 -44.5t68.5 -128.5q0 -61 -42.5 -101.5t-106.5 -58.5q68 -20 113.5 -66t45.5 -109q0 -82 -68.5 -131.5t-170.5 -49.5zM299 378q20 3 40.5 10
|
|
1225
|
+
t46.5 19.5t42 35t16 50.5q0 50 -41.5 80t-103.5 30t-103 -29.5t-41 -80.5q0 -28 16 -50.5t42 -35t46 -19.5t40 -10zM299 62q64 0 109.5 32t45.5 84q0 40 -31.5 70.5t-64 43t-59.5 15.5q-27 -3 -59.5 -15.5t-64 -43t-31.5 -70.5q0 -52 45 -84t110 -32z" />
|
|
1226
|
+
<glyph glyph-name="nine.tonum" unicode="" horiz-adv-x="598"
|
|
1227
|
+
d="M270 -127q-114 0 -185 80l42 62q58 -68 143 -68q64 0 108 40t62 97t18 125q0 17 -1 26q-25 -40 -77 -72t-111 -32q-95 0 -157 55.5t-62 157.5q0 90 64 154t170 64q67 0 118 -28t81 -77t44.5 -109t14.5 -131q0 -94 -28 -169.5t-91 -125t-153 -49.5zM288 203
|
|
1228
|
+
q49 0 94.5 27.5t72.5 72.5q-3 33 -13.5 64t-29.5 59t-51.5 45t-73.5 17q-71 0 -112 -43.5t-41 -97.5q0 -70 43 -107t111 -37z" />
|
|
1229
|
+
<glyph glyph-name="colonmonetary.onum" unicode="" horiz-adv-x="582"
|
|
1230
|
+
d="M245 -53l17 51q-26 5 -57 19l-24 -70h-43l31 91q-57 38 -89.5 99.5t-32.5 138.5q0 126 84 206t210 80h4l13 37h43l-14 -41q27 -4 58 -16l20 57h43l-26 -76q43 -27 77 -74l-63 -35q-15 22 -38 39l-133 -396h16q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113
|
|
1231
|
+
q-13 0 -39 2l-14 -43h-43zM127 276q0 -101 67 -163l128 379q-85 -7 -140 -67t-55 -149zM228 87q27 -16 56 -23l139 411q-30 13 -59 16z" />
|
|
1232
|
+
<glyph glyph-name="Euro.onum" unicode="" horiz-adv-x="610"
|
|
1233
|
+
d="M410 311h-253q-2 -24 -2 -35q0 -26 2 -38h253v-48h-239q23 -61 76 -97t122 -36q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113q-103 0 -180 55t-103 147h-55v48h46q-2 12 -2 38q0 11 2 35h-46v48h55q26 92 103 147.5t180 55.5q139 0 218 -113l-63 -35
|
|
1234
|
+
q-25 36 -66.5 57.5t-88.5 21.5q-69 0 -122.5 -36.5t-76.5 -97.5h240v-48z" />
|
|
1235
|
+
<glyph glyph-name="florin.onum" unicode="" horiz-adv-x="367"
|
|
1236
|
+
d="M106 -119h-83l74 334h-50v57h62l30 135q34 154 152 154q53 0 86 -32l-33 -60q-14 18 -42 18q-59 0 -80 -90l-28 -125h106v-57h-119z" />
|
|
1237
|
+
<glyph glyph-name="numbersign.onum" unicode="" horiz-adv-x="496"
|
|
1238
|
+
d="M475 394l-14 -47h-88l-47 -141h89l-15 -47h-90l-53 -159h-57l53 159h-90l-53 -159h-57l53 159h-84l15 47h86l47 141h-87l14 47h88l53 156h57l-53 -156h89l54 156h57l-54 -156h87zM315 347h-88l-48 -141h90z" />
|
|
1239
|
+
<glyph glyph-name="sterling.onum" unicode="" horiz-adv-x="425"
|
|
1240
|
+
d="M14 224v48h71q-48 67 -48 125q0 70 53.5 117t130.5 47q55 0 100 -24t67 -66l-59 -32q-30 64 -102 64q-47 0 -80 -29.5t-33 -76.5q0 -23 9.5 -48t17.5 -37t27 -40h135v-48h-107q12 -27 12 -51q0 -61 -53 -95q9 3 22 3q28 0 67.5 -14t60.5 -14q54 0 78 31l34 -56
|
|
1241
|
+
q-41 -39 -116 -39q-37 0 -75 17t-70 17t-94 -31l-27 54q106 46 106 113q0 29 -22 65h-105z" />
|
|
1242
|
+
<glyph glyph-name="yen.onum" unicode="" horiz-adv-x="547"
|
|
1243
|
+
d="M314 0h-78v113h-212v48h212v71h-212v47h179l-196 271h91l178 -250l174 250h90l-193 -271h175v-47h-208v-71h208v-48h-208v-113z" />
|
|
1244
|
+
<glyph glyph-name="cent.onum" unicode="" horiz-adv-x="582"
|
|
1245
|
+
d="M309 -92v82q-115 10 -188.5 89t-73.5 197q0 117 73.5 195t188.5 89v59h59v-59q119 -10 191 -111l-63 -35q-46 65 -128 77v-432q85 11 128 77l64 -35q-75 -101 -192 -111v-82h-59zM127 276q0 -86 51 -146t131 -71v432q-80 -11 -131 -70.5t-51 -144.5z" />
|
|
1246
|
+
<glyph glyph-name="zero.dnom" unicode=""
|
|
1247
|
+
d="M356 200q0 -83 -41 -145t-121 -62t-120.5 61.5t-40.5 145.5t40.5 145t120.5 61t121 -61.5t41 -144.5zM294 200q0 68 -24.5 112.5t-75.5 44.5q-52 0 -76 -44.5t-24 -112.5t24.5 -113t75.5 -45t75.5 45t24.5 113z" />
|
|
1248
|
+
<glyph glyph-name="one.dnom" unicode="" horiz-adv-x="235"
|
|
1249
|
+
d="M175 0h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
1250
|
+
<glyph glyph-name="two.dnom" unicode=""
|
|
1251
|
+
d="M341 0h-291v45q125 90 177 141.5t52 97.5q0 36 -25 54.5t-60 18.5t-65 -15t-47 -37l-33 38q50 63 147 63q60 0 101.5 -30t41.5 -88q0 -55 -50 -110.5t-151 -128.5h203v-49z" />
|
|
1252
|
+
<glyph glyph-name="three.dnom" unicode=""
|
|
1253
|
+
d="M343 109q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29t39.5 -78q0 -40 -27 -63.5t-62 -28.5
|
|
1254
|
+
q35 -4 65.5 -29.5t30.5 -68.5z" />
|
|
1255
|
+
<glyph glyph-name="four.dnom" unicode=""
|
|
1256
|
+
d="M352 100h-57v-100h-60v100h-196v45l173 255h83v-251h57v-49zM235 149v198l-136 -198h136z" />
|
|
1257
|
+
<glyph glyph-name="five.dnom" unicode=""
|
|
1258
|
+
d="M344 126q0 -60 -43 -96.5t-109 -36.5q-99 0 -148 65l35 39q42 -55 113 -55q41 0 67 23.5t26 58.5q0 37 -25 60t-66 23q-55 0 -95 -39l-43 16v216h261v-49h-200v-134q36 36 95 36q55 0 93.5 -33.5t38.5 -93.5z" />
|
|
1259
|
+
<glyph glyph-name="six.dnom" unicode=""
|
|
1260
|
+
d="M351 125q0 -55 -41 -93.5t-107 -38.5q-83 0 -124 58.5t-41 148.5q0 89 45 147.5t129 58.5q71 0 117 -46l-29 -42q-36 39 -88 39q-55 0 -84 -42.5t-30 -103.5q0 -11 1 -17q16 24 47.5 42.5t66.5 18.5q59 0 98.5 -34t39.5 -96zM290 123q0 41 -26 62.5t-66 21.5
|
|
1261
|
+
q-28 0 -54.5 -15t-43.5 -40q3 -45 28 -77.5t73 -32.5q41 0 65 25t24 56z" />
|
|
1262
|
+
<glyph glyph-name="seven.dnom" unicode="" horiz-adv-x="362"
|
|
1263
|
+
d="M323 359l-166 -359h-67l166 351h-223v49h290v-41z" />
|
|
1264
|
+
<glyph glyph-name="eight.dnom" unicode=""
|
|
1265
|
+
d="M347 102q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM280 294q0 31 -24 47.5t-62 16.5t-62.5 -17
|
|
1266
|
+
t-24.5 -47q0 -46 87 -68q86 20 86 68zM287 107q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5z" />
|
|
1267
|
+
<glyph glyph-name="nine.dnom" unicode=""
|
|
1268
|
+
d="M38 274q0 56 41 94t107 38q83 0 124 -58.5t41 -148.5q0 -89 -45.5 -147.5t-129.5 -58.5q-72 0 -116 46l29 42q34 -39 87 -39q55 0 84 42.5t30 104.5v16q-17 -24 -48 -42.5t-66 -18.5q-59 0 -98.5 34t-39.5 96zM98 276q0 -41 26 -62.5t66 -21.5q61 0 99 56q-4 45 -28.5 77
|
|
1269
|
+
t-71.5 32q-42 0 -66.5 -25t-24.5 -56z" />
|
|
1270
|
+
<glyph glyph-name="zero.numr" unicode=""
|
|
1271
|
+
d="M356 467q0 -83 -41 -145t-121 -62t-120.5 61.5t-40.5 145.5t40.5 145t120.5 61t121 -61.5t41 -144.5zM294 467q0 68 -24.5 112.5t-75.5 44.5q-52 0 -76 -44.5t-24 -112.5t24.5 -113t75.5 -45t75.5 45t24.5 113z" />
|
|
1272
|
+
<glyph glyph-name="one.numr" unicode="" horiz-adv-x="235"
|
|
1273
|
+
d="M175 267h-60v322l-66 -69l-35 37l108 110h53v-400z" />
|
|
1274
|
+
<glyph glyph-name="two.numr" unicode=""
|
|
1275
|
+
d="M341 267h-291v45q125 90 177 141.5t52 97.5q0 36 -25 54.5t-60 18.5t-65 -15t-47 -37l-33 38q50 63 147 63q60 0 101.5 -30t41.5 -88q0 -55 -50 -110.5t-151 -128.5h203v-49z" />
|
|
1276
|
+
<glyph glyph-name="three.numr" unicode=""
|
|
1277
|
+
d="M343 376q0 -52 -40.5 -84t-110.5 -32q-103 0 -150 65l33 38q43 -54 116 -54q43 0 67.5 19t24.5 51q0 69 -104 69q-34 0 -40 -1v50q7 -1 40 -1q98 0 98 64q0 30 -25.5 47t-64.5 17q-64 0 -109 -48l-31 35q55 62 146 62q64 0 103.5 -29t39.5 -78q0 -40 -27 -63.5t-62 -28.5
|
|
1278
|
+
q35 -4 65.5 -29.5t30.5 -68.5z" />
|
|
1279
|
+
<glyph glyph-name="four.numr" unicode=""
|
|
1280
|
+
d="M352 367h-57v-100h-60v100h-196v45l173 255h83v-251h57v-49zM235 416v198l-136 -198h136z" />
|
|
1281
|
+
<glyph glyph-name="five.numr" unicode=""
|
|
1282
|
+
d="M344 393q0 -60 -43 -96.5t-109 -36.5q-99 0 -148 65l35 39q42 -55 113 -55q41 0 67 23.5t26 58.5q0 37 -25 60t-66 23q-55 0 -95 -39l-43 16v216h261v-49h-200v-134q36 36 95 36q55 0 93.5 -33.5t38.5 -93.5z" />
|
|
1283
|
+
<glyph glyph-name="six.numr" unicode=""
|
|
1284
|
+
d="M351 392q0 -55 -41 -93.5t-107 -38.5q-83 0 -124 58.5t-41 148.5q0 89 45 147.5t129 58.5q71 0 117 -46l-29 -42q-36 39 -88 39q-55 0 -84 -42.5t-30 -103.5q0 -11 1 -17q16 24 47.5 42.5t66.5 18.5q59 0 98.5 -34t39.5 -96zM290 390q0 41 -26 62.5t-66 21.5
|
|
1285
|
+
q-28 0 -54.5 -15t-43.5 -40q3 -45 28 -77.5t73 -32.5q41 0 65 25t24 56z" />
|
|
1286
|
+
<glyph glyph-name="seven.numr" unicode="" horiz-adv-x="362"
|
|
1287
|
+
d="M323 626l-166 -359h-67l166 351h-223v49h290v-41z" />
|
|
1288
|
+
<glyph glyph-name="eight.numr" unicode=""
|
|
1289
|
+
d="M347 369q0 -52 -44 -80.5t-109 -28.5t-109 28.5t-44 80.5q0 38 29 66t72 38q-41 10 -67.5 34.5t-26.5 60.5q0 52 43.5 78.5t102.5 26.5t102.5 -26.5t43.5 -78.5q0 -36 -26.5 -60.5t-67.5 -34.5q43 -10 72 -38t29 -66zM280 561q0 31 -24 47.5t-62 16.5t-62.5 -17
|
|
1290
|
+
t-24.5 -47q0 -46 87 -68q86 20 86 68zM287 374q0 35 -32 54t-61 23q-29 -4 -61.5 -23t-32.5 -54q0 -30 27.5 -48.5t66.5 -18.5t66 18.5t27 48.5z" />
|
|
1291
|
+
<glyph glyph-name="nine.numr" unicode=""
|
|
1292
|
+
d="M38 541q0 56 41 94t107 38q83 0 124 -58.5t41 -148.5q0 -89 -45.5 -147.5t-129.5 -58.5q-72 0 -116 46l29 42q34 -39 87 -39q55 0 84 42.5t30 104.5v16q-17 -24 -48 -42.5t-66 -18.5q-59 0 -98.5 34t-39.5 96zM98 543q0 -41 26 -62.5t66 -21.5q61 0 99 56q-4 45 -28.5 77
|
|
1293
|
+
t-71.5 32q-42 0 -66.5 -25t-24.5 -56z" />
|
|
1294
|
+
<glyph glyph-name="Abreve.smcp" unicode="" horiz-adv-x="572"
|
|
1295
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM462 691q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
1296
|
+
<glyph glyph-name="Amacron.smcp" unicode="" horiz-adv-x="572"
|
|
1297
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM469 628h-363v48h363v-48z" />
|
|
1298
|
+
<glyph glyph-name="Aogonek.smcp" unicode="" horiz-adv-x="572"
|
|
1299
|
+
d="M240 550h93l232 -550q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-19l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233z" />
|
|
1300
|
+
<glyph glyph-name="AEacute.smcp" unicode="" horiz-adv-x="821"
|
|
1301
|
+
d="M582 750l-169 -144h-57l148 144h78zM770 0h-383v120h-216l-76 -120h-89l352 550h412v-69h-305v-165h299v-69h-299v-178h305v-69zM387 189v279l-178 -279h178z" />
|
|
1302
|
+
<glyph glyph-name="Cacute.smcp" unicode="" horiz-adv-x="582"
|
|
1303
|
+
d="M341 -12q-126 0 -210 81t-84 207t84 206t210 80q139 0 218 -113l-63 -35q-25 36 -66.5 57.5t-88.5 21.5q-91 0 -152.5 -61.5t-61.5 -155.5q0 -95 61.5 -157t152.5 -62q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113zM502 750l-169 -144h-57l148 144h78z" />
|
|
1304
|
+
<glyph glyph-name="Ccaron.smcp" unicode="" horiz-adv-x="582"
|
|
1305
|
+
d="M341 -12q-126 0 -210 81t-84 207t84 206t210 80q139 0 218 -113l-63 -35q-25 36 -66.5 57.5t-88.5 21.5q-91 0 -152.5 -61.5t-61.5 -155.5q0 -95 61.5 -157t152.5 -62q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113zM380 606h-72l-98 144h51l83 -106l80 106h51z
|
|
1306
|
+
" />
|
|
1307
|
+
<glyph glyph-name="Ccircumflex.smcp" unicode="" horiz-adv-x="582"
|
|
1308
|
+
d="M341 -12q-126 0 -210 81t-84 207t84 206t210 80q139 0 218 -113l-63 -35q-25 36 -66.5 57.5t-88.5 21.5q-91 0 -152.5 -61.5t-61.5 -155.5q0 -95 61.5 -157t152.5 -62q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113zM475 606h-51l-83 106l-80 -106h-51l95 144h72z
|
|
1309
|
+
" />
|
|
1310
|
+
<glyph glyph-name="Cdotaccent.smcp" unicode="" horiz-adv-x="582"
|
|
1311
|
+
d="M341 -12q-126 0 -210 81t-84 207t84 206t210 80q139 0 218 -113l-63 -35q-25 36 -66.5 57.5t-88.5 21.5q-91 0 -152.5 -61.5t-61.5 -155.5q0 -95 61.5 -157t152.5 -62q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113zM343 629q-19 0 -33 14t-14 33t14 33t33 14
|
|
1312
|
+
t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5z" />
|
|
1313
|
+
<glyph glyph-name="Dcaron.smcp" unicode="" horiz-adv-x="615"
|
|
1314
|
+
d="M263 0h-200v550h200q132 0 212.5 -78.5t80.5 -197.5t-80 -196.5t-213 -77.5zM263 69q99 0 155.5 58.5t56.5 146.5q0 90 -55.5 148.5t-156.5 58.5h-121v-412h121zM334 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1315
|
+
<glyph glyph-name="Dcroat.smcp" unicode="" horiz-adv-x="626"
|
|
1316
|
+
d="M273 0h-200v251h-63v52h63v247h200q132 0 212.5 -78.5t80.5 -197.5t-80 -196.5t-213 -77.5zM285 251h-133v-182h121q99 0 155.5 58.5t56.5 146.5q0 90 -55.5 148.5t-156.5 58.5h-121v-178h133v-52z" />
|
|
1317
|
+
<glyph glyph-name="Ebreve.smcp" unicode="" horiz-adv-x="509"
|
|
1318
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM440 691q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
1319
|
+
<glyph glyph-name="Ecaron.smcp" unicode="" horiz-adv-x="509"
|
|
1320
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM305 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1321
|
+
<glyph glyph-name="Edotaccent.smcp" unicode="" horiz-adv-x="509"
|
|
1322
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM272 629q-19 0 -33 14t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
1323
|
+
<glyph glyph-name="Emacron.smcp" unicode="" horiz-adv-x="509"
|
|
1324
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM446 628h-363v48h363v-48z" />
|
|
1325
|
+
<glyph glyph-name="Eng.smcp" unicode="" horiz-adv-x="632"
|
|
1326
|
+
d="M368 -196q-93 0 -149 68l37 57q45 -56 107 -56q53 0 84 31t31 82v14l-325 428v-428h-78v550h82l322 -420v420h78v-570q0 -87 -52 -131.5t-137 -44.5z" />
|
|
1327
|
+
<glyph glyph-name="Eogonek.smcp" unicode="" horiz-adv-x="509"
|
|
1328
|
+
d="M477 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-314v550h382v-69h-303v-165h298v-69h-298v-178h303v-69q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
1329
|
+
<glyph glyph-name="Gbreve.smcp" unicode="" horiz-adv-x="626"
|
|
1330
|
+
d="M341 -12q-125 0 -209.5 80.5t-84.5 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-60 72 -160 72q-91 0 -152 -61t-61 -156q0 -94 61 -156t152 -62q88 0 147 57v107h-170v66h248v-203q-89 -96 -225 -96zM518 691q-65 -88 -175 -88q-109 0 -176 88l38 32
|
|
1331
|
+
q51 -72 138 -72q88 0 139 72z" />
|
|
1332
|
+
<glyph glyph-name="Gcircumflex.smcp" unicode="" horiz-adv-x="626"
|
|
1333
|
+
d="M341 -12q-125 0 -209.5 80.5t-84.5 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-60 72 -160 72q-91 0 -152 -61t-61 -156q0 -94 61 -156t152 -62q88 0 147 57v107h-170v66h248v-203q-89 -96 -225 -96zM474 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1334
|
+
<glyph glyph-name="Gcommaaccent.smcp" unicode="" horiz-adv-x="626"
|
|
1335
|
+
d="M341 -12q-125 0 -209.5 80.5t-84.5 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-60 72 -160 72q-91 0 -152 -61t-61 -156q0 -94 61 -156t152 -62q88 0 147 57v107h-170v66h248v-203q-89 -96 -225 -96zM397 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5
|
|
1336
|
+
t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1337
|
+
<glyph glyph-name="Gdotaccent.smcp" unicode="" horiz-adv-x="626"
|
|
1338
|
+
d="M341 -12q-125 0 -209.5 80.5t-84.5 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-60 72 -160 72q-91 0 -152 -61t-61 -156q0 -94 61 -156t152 -62q88 0 147 57v107h-170v66h248v-203q-89 -96 -225 -96zM342 629q-19 0 -33 14t-14 33t14 33t33 14
|
|
1339
|
+
q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
1340
|
+
<glyph glyph-name="Hcircumflex.smcp" unicode="" horiz-adv-x="635"
|
|
1341
|
+
d="M560 0h-77v248h-329v-248h-79v550h79v-233h329v233h77v-550zM448 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1342
|
+
<glyph glyph-name="Hbar.smcp" unicode="" horiz-adv-x="655"
|
|
1343
|
+
d="M570 0h-77v248h-329v-248h-79v411h-75v48h75v91h79v-91h329v91h77v-91h74v-48h-74v-411zM164 317h329v94h-329v-94z" />
|
|
1344
|
+
<glyph glyph-name="Ibreve.smcp" unicode="" horiz-adv-x="227"
|
|
1345
|
+
d="M153 0h-79v550h79v-550zM286 691q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
1346
|
+
<glyph glyph-name="IJ.smcp" unicode="" horiz-adv-x="651"
|
|
1347
|
+
d="M154 0h-79v550h79v-550zM387 -12q-94 0 -150 68l38 57q43 -56 107 -56q53 0 84 31t31 82v380h78v-386q0 -87 -52 -131.5t-136 -44.5z" />
|
|
1348
|
+
<glyph glyph-name="Imacron.smcp" unicode="" horiz-adv-x="227"
|
|
1349
|
+
d="M153 0h-79v550h79v-550zM296 628h-363v48h363v-48z" />
|
|
1350
|
+
<glyph glyph-name="Iogonek.smcp" unicode="" horiz-adv-x="227"
|
|
1351
|
+
d="M173 -105l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 57 53 99h-11v550h79v-550q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42z" />
|
|
1352
|
+
<glyph glyph-name="Itilde.smcp" unicode="" horiz-adv-x="227"
|
|
1353
|
+
d="M153 0h-79v550h79v-550zM174 591q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
1354
|
+
<glyph glyph-name="Jcircumflex.smcp" unicode="" horiz-adv-x="422"
|
|
1355
|
+
d="M158 -12q-94 0 -150 68l38 57q43 -56 107 -56q53 0 84 31t31 82v380h78v-386q0 -87 -52 -131.5t-136 -44.5zM439 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1356
|
+
<glyph glyph-name="Kcommaaccent.smcp" unicode="" horiz-adv-x="534"
|
|
1357
|
+
d="M520 0h-97l-216 243l-53 -58v-185h-79v550h79v-275l248 275h98l-242 -261zM324 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1358
|
+
<glyph glyph-name="Lacute.smcp" unicode="" horiz-adv-x="458"
|
|
1359
|
+
d="M420 0h-345v550h79v-481h266v-69zM412 750l-169 -144h-57l148 144h78z" />
|
|
1360
|
+
<glyph glyph-name="Lcaron.smcp" unicode="" horiz-adv-x="458"
|
|
1361
|
+
d="M420 0h-345v550h79v-481h266v-69zM333 493q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5l-5 -1h-6q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1362
|
+
<glyph glyph-name="Lcommaaccent.smcp" unicode="" horiz-adv-x="458"
|
|
1363
|
+
d="M420 0h-345v550h79v-481h266v-69zM299 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1364
|
+
<glyph glyph-name="Ldot.smcp" unicode="" horiz-adv-x="472"
|
|
1365
|
+
d="M420 0h-345v550h79v-481h266v-69zM410 294q0 -22 -16 -38.5t-39 -16.5t-39 16.5t-16 38.5t16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
1366
|
+
<glyph glyph-name="Nacute.smcp" unicode="" horiz-adv-x="632"
|
|
1367
|
+
d="M557 0h-79l-325 428v-428h-78v550h82l322 -420v420h78v-550zM475 750l-169 -144h-57l148 144h78z" />
|
|
1368
|
+
<glyph glyph-name="Ncaron.smcp" unicode="" horiz-adv-x="632"
|
|
1369
|
+
d="M557 0h-79l-325 428v-428h-78v550h82l322 -420v420h78v-550zM353 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1370
|
+
<glyph glyph-name="Ncommaaccent.smcp" unicode="" horiz-adv-x="632"
|
|
1371
|
+
d="M557 0h-79l-325 428v-428h-78v550h82l322 -420v420h78v-550zM367 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1372
|
+
<glyph glyph-name="Obreve.smcp" unicode="" horiz-adv-x="662"
|
|
1373
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM508 691q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
1374
|
+
<glyph glyph-name="Ohungarumlaut.smcp" unicode="" horiz-adv-x="662"
|
|
1375
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM387 750l-115 -144h-48l94 144h69zM529 750l-115 -144h-48l94 144h69z" />
|
|
1376
|
+
<glyph glyph-name="Omacron.smcp" unicode="" horiz-adv-x="662"
|
|
1377
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM513 635h-363v48h363v-48z" />
|
|
1378
|
+
<glyph glyph-name="Oslashacute.smcp" unicode="" horiz-adv-x="662"
|
|
1379
|
+
d="M331 -12q-85 0 -151 39l-20 -27h-67l43 59q-89 81 -89 216q0 123 79 205t205 82q81 0 148 -38l19 26h67l-42 -58q92 -82 92 -217q0 -123 -79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-57 157l-255 -346q46 -29 108 -29zM127 275q0 -95 54 -155l255 346
|
|
1380
|
+
q-48 27 -105 27q-92 0 -148 -61.5t-56 -156.5zM493 750l-169 -144h-57l148 144h78z" />
|
|
1381
|
+
<glyph glyph-name="Racute.smcp" unicode="" horiz-adv-x="545"
|
|
1382
|
+
d="M500 0h-92l-144 214h-110v-214h-79v550h236q85 0 133.5 -47.5t48.5 -120.5q0 -70 -41.5 -113.5t-107.5 -48.5zM304 282q52 0 80 27.5t28 72.5t-28.5 72t-79.5 27h-150v-199h150zM425 750l-169 -144h-57l148 144h78z" />
|
|
1383
|
+
<glyph glyph-name="Rcaron.smcp" unicode="" horiz-adv-x="545"
|
|
1384
|
+
d="M500 0h-92l-144 214h-110v-214h-79v550h236q85 0 133.5 -47.5t48.5 -120.5q0 -70 -41.5 -113.5t-107.5 -48.5zM304 282q52 0 80 27.5t28 72.5t-28.5 72t-79.5 27h-150v-199h150zM302 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1385
|
+
<glyph glyph-name="Rcommaaccent.smcp" unicode="" horiz-adv-x="545"
|
|
1386
|
+
d="M500 0h-92l-144 214h-110v-214h-79v550h236q85 0 133.5 -47.5t48.5 -120.5q0 -70 -41.5 -113.5t-107.5 -48.5zM304 282q52 0 80 27.5t28 72.5t-28.5 72t-79.5 27h-150v-199h150zM322 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1
|
|
1387
|
+
q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1388
|
+
<glyph glyph-name="Sacute.smcp" unicode="" horiz-adv-x="504"
|
|
1389
|
+
d="M252 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46
|
|
1390
|
+
t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46zM413 750l-169 -144h-57l148 144h78z" />
|
|
1391
|
+
<glyph glyph-name="Scedilla.smcp" unicode="" horiz-adv-x="504"
|
|
1392
|
+
d="M249 -191q-64 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l23 62q-123 10 -191 85l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44
|
|
1393
|
+
q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -71 -51.5 -116t-149.5 -49l-17 -43q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
1394
|
+
<glyph glyph-name="Scircumflex.smcp" unicode="" horiz-adv-x="504"
|
|
1395
|
+
d="M252 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46
|
|
1396
|
+
t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46zM386 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1397
|
+
<glyph glyph-name="Scommaaccent.smcp" unicode="" horiz-adv-x="504"
|
|
1398
|
+
d="M252 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46
|
|
1399
|
+
t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46zM308 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1400
|
+
<glyph glyph-name="Tbar.smcp" unicode="" horiz-adv-x="472"
|
|
1401
|
+
d="M275 0h-78v241h-117v48h117v192h-171v69h419v-69h-170v-192h117v-48h-117v-241z" />
|
|
1402
|
+
<glyph glyph-name="Tcaron.smcp" unicode="" horiz-adv-x="472"
|
|
1403
|
+
d="M275 0h-78v481h-171v69h419v-69h-170v-481zM274 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1404
|
+
<glyph glyph-name="Tcommaaccent.smcp" unicode="" horiz-adv-x="472"
|
|
1405
|
+
d="M275 0h-78v481h-171v69h419v-69h-170v-481zM288 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-4q-5 -1 -7 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1406
|
+
<glyph glyph-name="Ubreve.smcp" unicode="" horiz-adv-x="623"
|
|
1407
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM486 691q-65 -88 -175 -88q-109 0 -176 88l38 32q51 -72 138 -72q88 0 139 72z" />
|
|
1408
|
+
<glyph glyph-name="Uhungarumlaut.smcp" unicode="" horiz-adv-x="623"
|
|
1409
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM365 750l-115 -144h-48l94 144h69zM507 750l-115 -144h-48l94 144h69z" />
|
|
1410
|
+
<glyph glyph-name="Umacron.smcp" unicode="" horiz-adv-x="623"
|
|
1411
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM494 628h-363v48h363v-48z" />
|
|
1412
|
+
<glyph glyph-name="Uogonek.smcp" unicode="" horiz-adv-x="623"
|
|
1413
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -81 -37 -136t-109 -76q-76 -38 -76 -97q0 -50 45 -50q37 0 51 42l37 -21q-26 -60 -88 -60q-38 0 -64 22t-26 65q0 48 39 87h-9z" />
|
|
1414
|
+
<glyph glyph-name="Uring.smcp" unicode="" horiz-adv-x="623"
|
|
1415
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM314 604q-40 0 -69.5 29t-29.5 70t29.5 70t69.5 29t68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM314 644q24 0 41 17.5t17 41.5
|
|
1416
|
+
t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5t17 -41.5t42 -17.5z" />
|
|
1417
|
+
<glyph glyph-name="Utilde.smcp" unicode="" horiz-adv-x="623"
|
|
1418
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM371 604q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37
|
|
1419
|
+
q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
1420
|
+
<glyph glyph-name="Wcircumflex.smcp" unicode="" horiz-adv-x="764"
|
|
1421
|
+
d="M515 606h-51l-83 106l-80 -106h-51l95 144h72zM588 0h-82l-125 431l-123 -431h-83l-165 550h87l123 -443l129 443h66l128 -444l124 444h86z" />
|
|
1422
|
+
<glyph glyph-name="Ycircumflex.smcp" unicode="" horiz-adv-x="547"
|
|
1423
|
+
d="M314 0h-78v233l-229 317h91l178 -250l174 250h90l-226 -317v-233zM409 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1424
|
+
<glyph glyph-name="Zacute.smcp" unicode="" horiz-adv-x="516"
|
|
1425
|
+
d="M477 0h-437v59l325 422h-325v69h430v-59l-325 -422h332v-69zM417 750l-169 -144h-57l148 144h78z" />
|
|
1426
|
+
<glyph glyph-name="Zdotaccent.smcp" unicode="" horiz-adv-x="516"
|
|
1427
|
+
d="M477 0h-437v59l325 422h-325v69h430v-59l-325 -422h332v-69zM265 629q-19 0 -33 14t-14 33t14 33t33 14t33 -13.5t14 -33.5t-14 -33.5t-33 -13.5z" />
|
|
1428
|
+
<glyph glyph-name="Idotaccent.smcp" unicode="" horiz-adv-x="202"
|
|
1429
|
+
d="M142 0h-79v550h79v-550zM102 629q-19 0 -33 14t-14 33t14 33t33 14q20 0 33.5 -13.5t13.5 -33.5t-13.5 -33.5t-33.5 -13.5z" />
|
|
1430
|
+
<glyph glyph-name="parenleft.case" unicode="" horiz-adv-x="248"
|
|
1431
|
+
d="M231 -74l-46 -35q-141 194 -141 442t141 442l46 -34q-53 -104 -79 -197t-26 -211q0 -117 26 -210.5t79 -196.5z" />
|
|
1432
|
+
<glyph glyph-name="parenright.case" unicode="" horiz-adv-x="248"
|
|
1433
|
+
d="M63 -109l-46 35q53 103 79 196.5t26 210.5q0 118 -26 211t-79 197l46 34q141 -194 141 -442t-141 -442z" />
|
|
1434
|
+
<glyph glyph-name="bracketleft.case" unicode="" horiz-adv-x="243"
|
|
1435
|
+
d="M226 -100h-186v868h186v-55h-127v-758h127v-55z" />
|
|
1436
|
+
<glyph glyph-name="bracketright.case" unicode="" horiz-adv-x="243"
|
|
1437
|
+
d="M204 -100h-187v55h128v758h-128v55h187v-868z" />
|
|
1438
|
+
<glyph glyph-name="braceleft.case" unicode="" horiz-adv-x="261"
|
|
1439
|
+
d="M244 -100h-62q-50 0 -87 37.5t-37 96.5v206q0 30 -13.5 49.5t-39.5 19.5v50q26 0 39.5 19.5t13.5 49.5v205q0 60 37 97.5t87 37.5h62v-55h-62q-27 0 -46.5 -22.5t-19.5 -56.5v-212q0 -69 -45 -88q45 -19 45 -88v-211q0 -34 19.5 -57t46.5 -23h62v-55z" />
|
|
1440
|
+
<glyph glyph-name="braceright.case" unicode="" horiz-adv-x="261"
|
|
1441
|
+
d="M17 -100v55h61q27 0 47 23t20 57v211q0 69 45 88q-45 19 -45 88v212q0 34 -19.5 56.5t-47.5 22.5h-61v55h61q50 0 87.5 -37.5t37.5 -97.5v-205q0 -30 13.5 -49.5t38.5 -19.5v-50q-25 0 -38.5 -19.5t-13.5 -49.5v-206q0 -59 -37.5 -96.5t-87.5 -37.5h-61z" />
|
|
1442
|
+
<glyph glyph-name="exclamdown.case" unicode="" horiz-adv-x="230"
|
|
1443
|
+
d="M68 0l15 480h63l16 -480h-94zM60 622q0 22 16 38.5t39 16.5q22 0 38 -16t16 -39q0 -22 -16 -38t-38 -16t-38.5 16t-16.5 38z" />
|
|
1444
|
+
<glyph glyph-name="questiondown.case" unicode="" horiz-adv-x="462"
|
|
1445
|
+
d="M259 480q38 -32 38 -82q0 -35 -18.5 -63t-45 -47.5t-53 -37.5t-45 -42t-18.5 -53q0 -40 30.5 -66.5t86.5 -26.5q99 0 160 81l50 -53q-78 -102 -217 -102q-89 0 -142.5 44.5t-53.5 110.5q0 42 20 75.5t48.5 54.5t56.5 40t48 42t20 50q0 30 -26 48zM238 677
|
|
1446
|
+
q22 0 38.5 -16.5t16.5 -38.5t-16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5t16.5 38.5t38.5 16.5z" />
|
|
1447
|
+
<glyph glyph-name="guillemotleft.case" unicode="" horiz-adv-x="439"
|
|
1448
|
+
d="M409 162h-75l-160 180l160 177h75l-160 -177zM265 162h-75l-160 180l160 177h75l-160 -177z" />
|
|
1449
|
+
<glyph glyph-name="guillemotright.case" unicode="" horiz-adv-x="439"
|
|
1450
|
+
d="M265 342l-160 -180h-75l160 180l-160 177h75zM409 342l-160 -180h-75l160 180l-160 177h75z" />
|
|
1451
|
+
<glyph glyph-name="guilsinglleft.case" unicode="" horiz-adv-x="295"
|
|
1452
|
+
d="M265 162h-75l-160 180l160 177h75l-160 -177z" />
|
|
1453
|
+
<glyph glyph-name="guilsinglright.case" unicode="" horiz-adv-x="295"
|
|
1454
|
+
d="M265 342l-160 -180h-75l160 180l-160 177h75z" />
|
|
1455
|
+
<glyph glyph-name="hyphen.case" unicode="" horiz-adv-x="300"
|
|
1456
|
+
d="M270 308h-240v66h240v-66z" />
|
|
1457
|
+
<glyph glyph-name="endash.case" unicode="" horiz-adv-x="593"
|
|
1458
|
+
d="M563 308h-533v66h533v-66z" />
|
|
1459
|
+
<glyph glyph-name="emdash.case" unicode="" horiz-adv-x="833"
|
|
1460
|
+
d="M803 308h-773v66h773v-66z" />
|
|
1461
|
+
<glyph glyph-name="periodcentered.case" unicode="" horiz-adv-x="231"
|
|
1462
|
+
d="M170 343q0 -23 -16 -39t-39 -16t-39 16t-16 39q0 22 16.5 38t38.5 16t38.5 -16t16.5 -38z" />
|
|
1463
|
+
<glyph glyph-name="bullet.case" unicode="" horiz-adv-x="358"
|
|
1464
|
+
d="M288 341q0 -44 -32 -75.5t-76 -31.5t-76 31.5t-32 75.5t32 76t76 32t76 -32t32 -76z" />
|
|
1465
|
+
<glyph glyph-name="cent.case" unicode="" horiz-adv-x="496"
|
|
1466
|
+
d="M252 -9v90q-92 13 -148.5 83t-56.5 169q0 98 56.5 167.5t148.5 82.5v73h59v-71q94 -8 154 -83l-50 -45q-40 55 -104 61v-371q63 6 104 62l50 -46q-59 -77 -154 -83v-89h-59zM125 333q0 -70 34 -120t93 -63v365q-59 -13 -93 -62.5t-34 -119.5z" />
|
|
1467
|
+
<glyph glyph-name="commaaccent" unicode="" horiz-adv-x="230"
|
|
1468
|
+
d="M167 -138q0 -39 -20 -75t-51 -59l-32 26q22 15 38.5 39.5t18.5 46.5h-5q-4 -1 -6 -1q-18 0 -30 12.5t-12 31.5t13.5 32.5t32.5 13.5q22 0 37.5 -18t15.5 -49z" />
|
|
1469
|
+
<glyph glyph-name="one.tnum" unicode="" horiz-adv-x="598"
|
|
1470
|
+
d="M396 0h-83v558l-107 -114l-50 51l167 172h73v-667z" />
|
|
1471
|
+
<glyph glyph-name="rupiah" unicode="" horiz-adv-x="1126"
|
|
1472
|
+
d="M562 0h-98l-169 265h-134v-265h-83v667h268q93 0 151.5 -55t58.5 -146q0 -86 -50.5 -137t-123.5 -57zM336 338q59 0 96.5 36t37.5 92q0 57 -37.5 92t-96.5 35h-175v-255h175zM867 -12q-99 0 -163 85v-257h-75v667h75v-72q27 38 70 61t93 23q96 0 155.5 -68.5t59.5 -184.5
|
|
1473
|
+
t-59.5 -185t-155.5 -69zM848 55q71 0 113 52.5t42 134.5t-42 134t-113 52q-43 0 -83.5 -22.5t-60.5 -54.5v-218q20 -33 60.5 -55.5t83.5 -22.5z" />
|
|
1474
|
+
<glyph glyph-name="centinferior" unicode="" horiz-adv-x="307"
|
|
1475
|
+
d="M157 -151v55q-58 7 -93.5 49t-35.5 101t35.5 101t93.5 49v44h41v-43q58 -5 95 -53l-38 -29q-23 32 -57 38v-214q34 6 57 38l38 -30q-36 -47 -95 -52v-54h-41zM85 54q0 -40 19.5 -68.5t52.5 -36.5v210q-33 -8 -52.5 -36.5t-19.5 -68.5z" />
|
|
1476
|
+
<glyph glyph-name="centsuperior" unicode="" horiz-adv-x="307"
|
|
1477
|
+
d="M157 416v54q-58 7 -93.5 49t-35.5 102q0 59 35.5 101t93.5 49v44h41v-43q58 -5 95 -53l-38 -29q-23 32 -57 38v-214q35 6 57 38l38 -30q-36 -47 -95 -53v-53h-41zM85 621q0 -40 19.5 -68.5t52.5 -36.5v210q-33 -8 -52.5 -36.5t-19.5 -68.5z" />
|
|
1478
|
+
<glyph glyph-name="commainferior" unicode="" horiz-adv-x="139"
|
|
1479
|
+
d="M105 -122q0 -65 -51 -101q-7 6 -26 21q14 9 27 24.5t14 29.5q-1 0 -2 -0.5t-2 -0.5q-14 0 -25 10.5t-11 25.5t11 26t27 11q17 0 27.5 -13t10.5 -33z" />
|
|
1480
|
+
<glyph glyph-name="commasuperior" unicode="" horiz-adv-x="139"
|
|
1481
|
+
d="M105 445q0 -65 -51 -101q-7 6 -26 21q14 9 27 24.5t14 29.5q-1 0 -2 -0.5t-2 -0.5q-14 0 -25 10.5t-11 25.5t11 26t27 11q17 0 27.5 -13t10.5 -33z" />
|
|
1482
|
+
<glyph glyph-name="dollarinferior" unicode="" horiz-adv-x="370"
|
|
1483
|
+
d="M169 -206v54q-95 6 -144 65l35 39q47 -49 109 -57v139q-25 6 -40 10.5t-35.5 14t-31.5 20t-19.5 28.5t-8.5 41q0 46 37.5 77t97.5 34v56h42v-57q77 -7 122 -57l-35 -35q-34 37 -87 45v-126q30 -7 49.5 -14t41 -20.5t32.5 -34t11 -49.5q0 -51 -34.5 -82.5t-99.5 -36.5v-54
|
|
1484
|
+
h-42zM284 -39q0 26 -19 40t-54 23v-128q35 4 54 22t19 43zM95 153q0 -39 74 -58v118q-33 -3 -53.5 -19.5t-20.5 -40.5z" />
|
|
1485
|
+
<glyph glyph-name="dollarsuperior" unicode="" horiz-adv-x="370"
|
|
1486
|
+
d="M169 361v53q-94 6 -144 66l35 39q45 -49 109 -57v139q-25 6 -40 10.5t-35.5 14t-31.5 20t-19.5 28.5t-8.5 41q0 46 37.5 77t97.5 34v56h42v-57q77 -7 122 -57l-35 -35q-34 37 -87 45v-126q30 -7 49.5 -14t41 -20.5t32.5 -34t11 -49.5q0 -51 -34.5 -82.5t-99.5 -36.5v-54
|
|
1487
|
+
h-42zM284 528q0 26 -19 40t-54 23v-129q36 5 54.5 23t18.5 43zM95 720q0 -39 74 -58v118q-33 -3 -53.5 -19.5t-20.5 -40.5z" />
|
|
1488
|
+
<glyph glyph-name="hypheninferior" unicode="" horiz-adv-x="184"
|
|
1489
|
+
d="M166 30h-148v47h148v-47z" />
|
|
1490
|
+
<glyph glyph-name="hyphensuperior" unicode="" horiz-adv-x="184"
|
|
1491
|
+
d="M166 598h-148v47h148v-47z" />
|
|
1492
|
+
<glyph glyph-name="periodinferior" unicode="" horiz-adv-x="143"
|
|
1493
|
+
d="M109 -113q0 -15 -11 -26t-26 -11q-16 0 -27 11t-11 26t11 26t27 11q15 0 26 -11t11 -26z" />
|
|
1494
|
+
<glyph glyph-name="periodsuperior" unicode="" horiz-adv-x="143"
|
|
1495
|
+
d="M109 454q0 -15 -11 -26t-26 -11q-16 0 -27 11t-11 26t11 26t27 11q15 0 26 -11t11 -26z" />
|
|
1496
|
+
<glyph glyph-name="asuperior" unicode="" horiz-adv-x="378"
|
|
1497
|
+
d="M318 326h-57v35q-41 -43 -108 -43q-44 0 -78 28t-34 76q0 49 33.5 76t78.5 27q68 0 108 -42v55q0 30 -23 47.5t-57 17.5q-59 0 -98 -46l-26 38q52 53 131 53q57 0 93.5 -27t36.5 -84v-211zM175 356q56 0 86 38v56q-30 38 -86 38q-33 0 -54.5 -18.5t-21.5 -47.5
|
|
1498
|
+
q0 -30 21.5 -48t54.5 -18z" />
|
|
1499
|
+
<glyph glyph-name="bsuperior" unicode="" horiz-adv-x="410"
|
|
1500
|
+
d="M211 365q45 0 72.5 32.5t27.5 85.5q0 52 -27.5 85t-72.5 33q-28 0 -54 -13t-39 -32v-147q13 -19 39 -31.5t54 -12.5zM118 326h-58v434h58v-166q41 54 108 54q64 0 104 -45t40 -120q0 -76 -40 -120.5t-104 -44.5q-68 0 -108 54v-46z" />
|
|
1501
|
+
<glyph glyph-name="dsuperior" unicode="" horiz-adv-x="410"
|
|
1502
|
+
d="M350 326h-57v46q-42 -54 -109 -54q-64 0 -104 44.5t-40 120.5q0 75 40.5 120t103.5 45q67 0 108 -54v166h58v-434zM199 365q62 0 94 44v147q-14 19 -40 32t-54 13q-45 0 -72 -33t-27 -85q0 -53 27 -85.5t72 -32.5z" />
|
|
1503
|
+
<glyph glyph-name="esuperior" unicode="" horiz-adv-x="398"
|
|
1504
|
+
d="M207 318q-73 0 -120 46t-47 119q0 69 46 117t116 48q71 0 113.5 -48t42.5 -122v-14h-258q4 -43 34 -72.5t78 -29.5q60 0 98 38l26 -34q-50 -48 -129 -48zM303 506q-2 38 -28 68.5t-74 30.5q-45 0 -71.5 -30t-29.5 -69h203z" />
|
|
1505
|
+
<glyph glyph-name="isuperior" unicode="" horiz-adv-x="162"
|
|
1506
|
+
d="M81 685q-15 0 -26 11t-11 26t11 26t26 11t26 -11t11 -26t-11 -26t-26 -11zM110 326h-58v314h58v-314z" />
|
|
1507
|
+
<glyph glyph-name="lsuperior" unicode="" horiz-adv-x="178"
|
|
1508
|
+
d="M118 326h-58v434h58v-434z" />
|
|
1509
|
+
<glyph glyph-name="msuperior" unicode="" horiz-adv-x="571"
|
|
1510
|
+
d="M511 326h-57v209q0 65 -58 65q-23 0 -46 -14t-36 -32v-228h-57v209q0 65 -58 65q-23 0 -45.5 -13.5t-35.5 -32.5v-228h-58v314h58v-44q12 18 42 35t63 17q34 0 56.5 -16t30.5 -42q15 23 45.5 40.5t64.5 17.5q91 0 91 -100v-222z" />
|
|
1511
|
+
<glyph glyph-name="osuperior" unicode="" horiz-adv-x="405"
|
|
1512
|
+
d="M202 318q-72 0 -117 48t-45 117q0 70 44.5 117.5t117.5 47.5q74 0 118.5 -47.5t44.5 -117.5t-44.5 -117.5t-118.5 -47.5zM202 366q48 0 76 33.5t28 83.5t-28 83t-76 33q-47 0 -74.5 -33t-27.5 -83q0 -51 27.5 -84t74.5 -33z" />
|
|
1513
|
+
<glyph glyph-name="rsuperior" unicode="" horiz-adv-x="240"
|
|
1514
|
+
d="M118 326h-58v314h58v-48q46 55 106 55v-53l-20 1q-23 0 -49 -14t-37 -32v-223z" />
|
|
1515
|
+
<glyph glyph-name="ssuperior" unicode="" horiz-adv-x="330"
|
|
1516
|
+
d="M160 318q-81 0 -132 53l26 36q41 -47 107 -47q35 0 54.5 14t19.5 38q0 25 -31.5 38.5t-68.5 18.5t-68.5 27t-31.5 62q0 37 33 63.5t90 26.5q80 0 122 -46l-25 -35q-32 39 -95 39q-32 0 -50.5 -13.5t-18.5 -34.5q0 -19 20.5 -29.5t50 -16t59 -13t50 -28.5t20.5 -55
|
|
1517
|
+
q0 -42 -34.5 -70t-96.5 -28z" />
|
|
1518
|
+
<glyph glyph-name="tsuperior" unicode="" horiz-adv-x="206"
|
|
1519
|
+
d="M139 318q-77 0 -77 78v202h-53v42h53v86h58v-86h65v-42h-65v-194q0 -39 31 -39q24 0 33 13q3 -8 16 -39q-23 -21 -61 -21z" />
|
|
1520
|
+
<glyph glyph-name="Lslash.smcp" unicode="" horiz-adv-x="481"
|
|
1521
|
+
d="M10 171v72l88 51v256h79v-211l94 55v-72l-94 -55v-198h266v-69h-345v222z" />
|
|
1522
|
+
<glyph glyph-name="OE.smcp" unicode="" horiz-adv-x="953"
|
|
1523
|
+
d="M902 0h-383v99q-64 -111 -199 -111q-122 0 -197.5 81.5t-75.5 205.5t75.5 205.5t197.5 81.5q135 0 199 -110v98h383v-69h-305v-165h299v-69h-299v-178h305v-69zM519 194v164q-23 68 -73 101.5t-114 33.5q-92 0 -148.5 -61.5t-56.5 -156.5t56.5 -156.5t148.5 -61.5
|
|
1524
|
+
q65 0 114.5 34t72.5 103z" />
|
|
1525
|
+
<glyph glyph-name="Scaron.smcp" unicode="" horiz-adv-x="504"
|
|
1526
|
+
d="M252 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46
|
|
1527
|
+
t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46zM291 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1528
|
+
<glyph glyph-name="Zcaron.smcp" unicode="" horiz-adv-x="516"
|
|
1529
|
+
d="M477 0h-437v59l325 422h-325v69h430v-59l-325 -422h332v-69zM293 606h-72l-98 144h51l83 -106l80 106h51z" />
|
|
1530
|
+
<glyph glyph-name="exclam.smcp" unicode="" horiz-adv-x="184"
|
|
1531
|
+
d="M135 550l-14 -384h-58l-14 384h86zM147 45q0 -23 -16.5 -39t-38.5 -16t-38.5 16t-16.5 39q0 22 16.5 38.5t38.5 16.5t38.5 -16.5t16.5 -38.5z" />
|
|
1532
|
+
<glyph glyph-name="dollar.onum" unicode="" horiz-adv-x="504"
|
|
1533
|
+
d="M225 -74v63q-125 9 -193 85l42 59q59 -65 151 -76v197q-40 10 -65 19t-53.5 26t-42.5 44t-14 63q0 62 49 105t126 50v67h59v-68q104 -10 171 -77l-41 -55q-50 53 -130 63v-174q41 -11 67.5 -20.5t56.5 -28t45 -47.5t15 -68q0 -67 -47 -112t-137 -52v-63h-59zM388 150
|
|
1534
|
+
q0 35 -26.5 54.5t-77.5 34.5v-182q53 6 78.5 31.5t25.5 61.5zM131 407q0 -29 24 -45.5t70 -29.5v160q-42 -5 -68 -28t-26 -57z" />
|
|
1535
|
+
<glyph glyph-name="ampersand.smcp" unicode="" horiz-adv-x="556"
|
|
1536
|
+
d="M536 0h-95q-3 3 -64 58q-74 -69 -168 -69q-80 0 -131 42t-51 114q0 59 33.5 96.5t92.5 67.5q-43 68 -43 122q0 57 42.5 94t105.5 37q57 0 95 -29t38 -82q0 -30 -11.5 -54t-36 -43.5t-44.5 -30.5t-55 -28q25 -31 66 -74q32 -36 68 -72q40 60 60 125l59 -24
|
|
1537
|
+
q-36 -87 -77 -143zM216 44q63 0 119 54q-52 52 -77 81q-43 46 -74 86q-84 -48 -84 -115q0 -46 32.5 -76t83.5 -30zM179 430q0 -39 35 -92q56 26 84.5 49.5t28.5 60.5q0 29 -18.5 45t-48.5 16q-36 0 -58.5 -22.5t-22.5 -56.5z" />
|
|
1538
|
+
<glyph glyph-name="zero.onum" unicode="" horiz-adv-x="612"
|
|
1539
|
+
d="M561 275q0 -75 -25.5 -138t-85 -106t-144.5 -43t-144.5 43t-85 106t-25.5 138q0 56 15 106t45 91t80.5 65.5t114.5 24.5t114.5 -24.5t80.5 -65.5t45 -91t15 -106zM476 275q0 89 -42.5 151t-127.5 62q-84 0 -127 -62t-43 -151t43 -151t127 -62t127 62t43 151z" />
|
|
1540
|
+
<glyph glyph-name="one.onum" unicode="" horiz-adv-x="339"
|
|
1541
|
+
d="M261 0h-83v441l-107 -114l-50 51l167 172h73v-550z" />
|
|
1542
|
+
<glyph glyph-name="two.onum" unicode="" horiz-adv-x="578"
|
|
1543
|
+
d="M491 0h-431v67q180 74 269 151.5t89 152.5q0 51 -39.5 84t-96.5 33q-121 0 -186 -84l-51 53q38 50 102.5 77.5t136.5 27.5q95 0 156.5 -49.5t61.5 -130.5q0 -88 -81 -170.5t-208 -137.5h278v-74z" />
|
|
1544
|
+
<glyph glyph-name="three.onum" unicode="" horiz-adv-x="553"
|
|
1545
|
+
d="M262 -129q-80 0 -142 31t-95 79l49 52q30 -40 79 -64t107 -24q72 0 114 34t42 91q0 60 -44.5 89t-121.5 29q-59 0 -69 -1v76q11 -1 69 -1q68 0 111.5 27.5t43.5 82.5q0 53 -42.5 83.5t-106.5 30.5q-101 0 -176 -81l-46 52q84 103 229 103q99 0 162 -47.5t63 -129.5
|
|
1546
|
+
q0 -66 -44 -106t-99 -49q55 -6 104.5 -49t49.5 -116q0 -85 -64.5 -138.5t-172.5 -53.5z" />
|
|
1547
|
+
<glyph glyph-name="four.onum" unicode="" horiz-adv-x="558"
|
|
1548
|
+
d="M526 55h-94v-172h-83v172h-317v69l286 426h114v-422h94v-73zM349 128v345l-234 -345h234z" />
|
|
1549
|
+
<glyph glyph-name="five.onum" unicode="" horiz-adv-x="590"
|
|
1550
|
+
d="M301 -129q-154 0 -235 107l51 56q69 -89 184 -89q68 0 111 41t43 102q0 65 -42.5 104.5t-110.5 39.5q-89 0 -154 -62l-61 21v359h408v-74h-325v-232q62 60 156 60q89 0 151 -57t62 -156t-67.5 -159.5t-170.5 -60.5z" />
|
|
1551
|
+
<glyph glyph-name="six.onum" unicode="" horiz-adv-x="591"
|
|
1552
|
+
d="M309 -12q-68 0 -119 28t-80.5 77t-44 109t-14.5 131q0 146 69.5 245t202.5 99q116 0 184 -80l-42 -62q-58 68 -142 68q-62 0 -106 -39t-63 -96.5t-19 -126.5v-26q25 40 77.5 72t111.5 32q95 0 156.5 -55.5t61.5 -157.5q0 -90 -64 -154t-169 -64zM305 62q72 0 112.5 44
|
|
1553
|
+
t40.5 97q0 70 -43 107t-110 37q-49 0 -94 -27.5t-73 -71.5q6 -74 47 -130t120 -56z" />
|
|
1554
|
+
<glyph glyph-name="seven.onum" unicode="" horiz-adv-x="515"
|
|
1555
|
+
d="M213 -117h-92l269 593h-359v74h455v-57z" />
|
|
1556
|
+
<glyph glyph-name="eight.onum" unicode="" horiz-adv-x="582"
|
|
1557
|
+
d="M291 -12q-102 0 -170.5 49t-68.5 132q0 63 45.5 109t113.5 66q-64 18 -106 58.5t-42 101.5q0 84 68 128.5t160 44.5t160.5 -44.5t68.5 -128.5q0 -61 -42.5 -101.5t-106.5 -58.5q68 -20 113.5 -66t45.5 -109q0 -82 -68.5 -131.5t-170.5 -49.5zM291 378q20 3 40.5 10
|
|
1558
|
+
t46.5 19.5t42 35t16 50.5q0 50 -41.5 80t-103.5 30t-103 -29.5t-41 -80.5q0 -28 16 -50.5t42 -35t46 -19.5t40 -10zM291 62q64 0 109.5 32t45.5 84q0 40 -31.5 70.5t-64 43t-59.5 15.5q-27 -3 -59.5 -15.5t-64 -43t-31.5 -70.5q0 -52 45 -84t110 -32z" />
|
|
1559
|
+
<glyph glyph-name="nine.onum" unicode="" horiz-adv-x="591"
|
|
1560
|
+
d="M269 -128q-114 0 -185 80l42 62q58 -68 143 -68q64 0 108 40t62 97t18 125q0 17 -1 26q-25 -40 -77 -72t-111 -32q-95 0 -157 55.5t-62 157.5q0 90 64 154t170 64q67 0 118 -28t81 -77t44.5 -109t14.5 -131q0 -94 -28 -169.5t-91 -125t-153 -49.5zM287 202
|
|
1561
|
+
q49 0 94.5 27.5t72.5 72.5q-3 33 -13.5 64t-29.5 59t-51.5 45t-73.5 17q-71 0 -112 -43.5t-41 -97.5q0 -70 43 -107t111 -37z" />
|
|
1562
|
+
<glyph glyph-name="question.smcp" unicode="" horiz-adv-x="396"
|
|
1563
|
+
d="M373 434q0 -41 -26.5 -73.5t-57.5 -49t-57.5 -39.5t-26.5 -47q0 -22 26 -40l-57 -24q-36 28 -36 66q0 28 16.5 50.5t39.5 38t46 30t39.5 33.5t16.5 42q0 33 -27 53.5t-75 20.5q-88 0 -144 -69l-40 47q70 88 190 88q79 0 126 -36.5t47 -90.5zM246 45q0 -23 -16 -39
|
|
1564
|
+
t-39 -16t-39 16t-16 39t16 39t39 16t39 -16t16 -39z" />
|
|
1565
|
+
<glyph glyph-name="A.smcp" unicode="" horiz-adv-x="572"
|
|
1566
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233z" />
|
|
1567
|
+
<glyph glyph-name="B.smcp" unicode="" horiz-adv-x="554"
|
|
1568
|
+
d="M340 0h-265v550h259q76 0 120 -39t44 -102q0 -47 -27 -80.5t-67 -44.5q45 -11 75.5 -49t30.5 -86q0 -68 -45.5 -108.5t-124.5 -40.5zM329 69q46 0 72.5 23.5t26.5 64.5q0 37 -26 63.5t-73 26.5h-175v-178h175zM325 316q44 0 68 23t24 59q0 38 -24 60.5t-68 22.5h-171
|
|
1569
|
+
v-165h171z" />
|
|
1570
|
+
<glyph glyph-name="C.smcp" unicode="" horiz-adv-x="582"
|
|
1571
|
+
d="M341 -12q-126 0 -210 81t-84 207t84 206t210 80q139 0 218 -113l-63 -35q-25 36 -66.5 57.5t-88.5 21.5q-91 0 -152.5 -61.5t-61.5 -155.5q0 -95 61.5 -157t152.5 -62q48 0 89.5 21.5t65.5 57.5l64 -35q-83 -113 -219 -113z" />
|
|
1572
|
+
<glyph glyph-name="D.smcp" unicode="" horiz-adv-x="615"
|
|
1573
|
+
d="M275 0h-200v550h200q132 0 212.5 -78.5t80.5 -197.5t-80 -196.5t-213 -77.5zM275 69q99 0 155.5 58.5t56.5 146.5q0 90 -55.5 148.5t-156.5 58.5h-121v-412h121z" />
|
|
1574
|
+
<glyph glyph-name="E.smcp" unicode="" horiz-adv-x="509"
|
|
1575
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69z" />
|
|
1576
|
+
<glyph glyph-name="F.smcp" unicode="" horiz-adv-x="491"
|
|
1577
|
+
d="M154 0h-79v550h382v-69h-303v-165h298v-69h-298v-247z" />
|
|
1578
|
+
<glyph glyph-name="G.smcp" unicode="" horiz-adv-x="626"
|
|
1579
|
+
d="M341 -12q-125 0 -209.5 80.5t-84.5 206.5t84.5 206.5t209.5 80.5q134 0 221 -101l-61 -41q-60 72 -160 72q-91 0 -152 -61t-61 -156q0 -94 61 -156t152 -62q88 0 147 57v107h-170v66h248v-203q-89 -96 -225 -96z" />
|
|
1580
|
+
<glyph glyph-name="H.smcp" unicode="" horiz-adv-x="635"
|
|
1581
|
+
d="M560 0h-77v248h-329v-248h-79v550h79v-233h329v233h77v-550z" />
|
|
1582
|
+
<glyph glyph-name="I.smcp" unicode="" horiz-adv-x="229"
|
|
1583
|
+
d="M154 0h-79v550h79v-550z" />
|
|
1584
|
+
<glyph glyph-name="J.smcp" unicode="" horiz-adv-x="422"
|
|
1585
|
+
d="M158 -12q-94 0 -150 68l38 57q43 -56 107 -56q53 0 84 31t31 82v380h78v-386q0 -87 -52 -131.5t-136 -44.5z" />
|
|
1586
|
+
<glyph glyph-name="K.smcp" unicode="" horiz-adv-x="534"
|
|
1587
|
+
d="M520 0h-97l-216 243l-53 -58v-185h-79v550h79v-275l248 275h98l-242 -261z" />
|
|
1588
|
+
<glyph glyph-name="L.smcp" unicode="" horiz-adv-x="458"
|
|
1589
|
+
d="M420 0h-345v550h79v-481h266v-69z" />
|
|
1590
|
+
<glyph glyph-name="M.smcp" unicode="" horiz-adv-x="719"
|
|
1591
|
+
d="M644 0h-78v444l-189 -444h-34l-189 444v-444h-79v550h107l177 -419l178 419h107v-550z" />
|
|
1592
|
+
<glyph glyph-name="N.smcp" unicode="" horiz-adv-x="632"
|
|
1593
|
+
d="M557 0h-79l-325 428v-428h-78v550h82l322 -420v420h78v-550z" />
|
|
1594
|
+
<glyph glyph-name="O.smcp" unicode="" horiz-adv-x="662"
|
|
1595
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5z" />
|
|
1596
|
+
<glyph glyph-name="P.smcp" unicode="" horiz-adv-x="523"
|
|
1597
|
+
d="M154 0h-79v550h236q85 0 133 -48.5t48 -119.5q0 -72 -47 -120t-134 -48h-157v-214zM304 282q52 0 80 27.5t28 72.5t-28.5 72t-79.5 27h-150v-199h150z" />
|
|
1598
|
+
<glyph glyph-name="Q.smcp" unicode="" horiz-adv-x="662"
|
|
1599
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205q0 -125 -80 -207l51 -56l-49 -41l-53 57q-66 -40 -153 -40zM331 57q58 0 104 26l-76 84l49 42l76 -84q51 61 51 150q0 95 -56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5z" />
|
|
1600
|
+
<glyph glyph-name="R.smcp" unicode="" horiz-adv-x="545"
|
|
1601
|
+
d="M500 0h-92l-144 214h-110v-214h-79v550h236q85 0 133.5 -47.5t48.5 -120.5q0 -70 -41.5 -113.5t-107.5 -48.5zM304 282q52 0 80 27.5t28 72.5t-28.5 72t-79.5 27h-150v-199h150z" />
|
|
1602
|
+
<glyph glyph-name="S.smcp" unicode="" horiz-adv-x="504"
|
|
1603
|
+
d="M252 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46
|
|
1604
|
+
t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46z" />
|
|
1605
|
+
<glyph glyph-name="T.smcp" unicode="" horiz-adv-x="472"
|
|
1606
|
+
d="M275 0h-78v481h-171v69h419v-69h-170v-481z" />
|
|
1607
|
+
<glyph glyph-name="U.smcp" unicode="" horiz-adv-x="623"
|
|
1608
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60z" />
|
|
1609
|
+
<glyph glyph-name="V.smcp" unicode="" horiz-adv-x="572"
|
|
1610
|
+
d="M333 0h-93l-233 550h89l191 -463l191 463h87z" />
|
|
1611
|
+
<glyph glyph-name="W.smcp" unicode="" horiz-adv-x="764"
|
|
1612
|
+
d="M588 0h-82l-125 431l-123 -431h-83l-165 550h87l123 -443l129 443h66l128 -444l124 444h86z" />
|
|
1613
|
+
<glyph glyph-name="X.smcp" unicode="" horiz-adv-x="567"
|
|
1614
|
+
d="M559 0h-94l-182 229l-180 -229h-94l225 282l-212 268h94l167 -215l168 215h94l-211 -267z" />
|
|
1615
|
+
<glyph glyph-name="Y.smcp" unicode="" horiz-adv-x="547"
|
|
1616
|
+
d="M314 0h-78v233l-229 317h91l178 -250l174 250h90l-226 -317v-233z" />
|
|
1617
|
+
<glyph glyph-name="Z.smcp" unicode="" horiz-adv-x="516"
|
|
1618
|
+
d="M477 0h-437v59l325 422h-325v69h430v-59l-325 -422h332v-69z" />
|
|
1619
|
+
<glyph glyph-name="exclamdown.smcp" unicode="" horiz-adv-x="184"
|
|
1620
|
+
d="M49 0l14 384h58l14 -384h-86zM37 505q0 23 16.5 39t38.5 16t38.5 -16t16.5 -39q0 -22 -16.5 -38.5t-38.5 -16.5t-38.5 16.5t-16.5 38.5z" />
|
|
1621
|
+
<glyph glyph-name="questiondown.smcp" unicode="" horiz-adv-x="396"
|
|
1622
|
+
d="M23 116q0 41 26.5 73.5t57.5 49t57.5 39.5t26.5 47q0 22 -26 40l57 24q36 -28 36 -66q0 -28 -16.5 -50.5t-39.5 -38t-46 -30t-39.5 -33.5t-16.5 -42q0 -33 27 -53.5t75 -20.5q88 0 144 69l40 -47q-70 -88 -190 -88q-79 0 -126 36.5t-47 90.5zM150 505q0 23 16 39t39 16
|
|
1623
|
+
t39 -16t16 -39t-16 -39t-39 -16t-39 16t-16 39z" />
|
|
1624
|
+
<glyph glyph-name="Agrave.smcp" unicode="" horiz-adv-x="572"
|
|
1625
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM353 606h-57l-169 144h78z" />
|
|
1626
|
+
<glyph glyph-name="Aacute.smcp" unicode="" horiz-adv-x="572"
|
|
1627
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM448 750l-169 -144h-57l148 144h78z" />
|
|
1628
|
+
<glyph glyph-name="Acircumflex.smcp" unicode="" horiz-adv-x="572"
|
|
1629
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM420 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1630
|
+
<glyph glyph-name="Atilde.smcp" unicode="" horiz-adv-x="572"
|
|
1631
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM347 604q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5
|
|
1632
|
+
q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
1633
|
+
<glyph glyph-name="Adieresis.smcp" unicode="" horiz-adv-x="572"
|
|
1634
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM437 660q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM230 660q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5
|
|
1635
|
+
t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
1636
|
+
<glyph glyph-name="Aring.smcp" unicode="" horiz-adv-x="572"
|
|
1637
|
+
d="M240 550h93l232 -550h-87l-51 120h-281l-51 -120h-88zM403 189l-116 279l-117 -279h233zM288 604q-40 0 -69.5 29t-29.5 70t29.5 70t69.5 29t68.5 -29t28.5 -70t-28.5 -70t-68.5 -29zM288 644q24 0 41 17.5t17 41.5t-17 41.5t-41 17.5q-25 0 -42 -17.5t-17 -41.5
|
|
1638
|
+
t17 -41.5t42 -17.5z" />
|
|
1639
|
+
<glyph glyph-name="AE.smcp" unicode="" horiz-adv-x="821"
|
|
1640
|
+
d="M770 0h-383v120h-216l-76 -120h-89l352 550h412v-69h-305v-165h299v-69h-299v-178h305v-69zM387 189v279l-178 -279h178z" />
|
|
1641
|
+
<glyph glyph-name="Ccedilla.smcp" unicode="" horiz-adv-x="582"
|
|
1642
|
+
d="M340 -191q-64 0 -101 30l19 38q36 -29 80 -29q26 0 43.5 11t17.5 31q0 35 -37 35q-24 0 -38 -17l-33 19l23 62q-117 9 -192 88.5t-75 198.5q0 126 84 206t210 80q139 0 218 -113l-63 -35q-25 36 -66.5 57.5t-88.5 21.5q-91 0 -152.5 -61.5t-61.5 -155.5q0 -95 61.5 -157
|
|
1643
|
+
t152.5 -62q48 0 89.5 21.5t65.5 57.5l64 -35q-77 -105 -202 -112l-17 -44q14 11 37 11q29 0 47.5 -18.5t18.5 -48.5q0 -36 -29.5 -58t-74.5 -22z" />
|
|
1644
|
+
<glyph glyph-name="Egrave.smcp" unicode="" horiz-adv-x="509"
|
|
1645
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM336 606h-57l-169 144h78z" />
|
|
1646
|
+
<glyph glyph-name="Eacute.smcp" unicode="" horiz-adv-x="509"
|
|
1647
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM430 750l-169 -144h-57l148 144h78z" />
|
|
1648
|
+
<glyph glyph-name="Ecircumflex.smcp" unicode="" horiz-adv-x="509"
|
|
1649
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM403 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1650
|
+
<glyph glyph-name="Edieresis.smcp" unicode="" horiz-adv-x="509"
|
|
1651
|
+
d="M457 0h-382v550h382v-69h-303v-165h298v-69h-298v-178h303v-69zM416 660q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM209 660q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5
|
|
1652
|
+
q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
1653
|
+
<glyph glyph-name="Igrave.smcp" unicode="" horiz-adv-x="227"
|
|
1654
|
+
d="M154 0h-79v550h79v-550zM180 606h-57l-169 144h78z" />
|
|
1655
|
+
<glyph glyph-name="Iacute.smcp" unicode="" horiz-adv-x="227"
|
|
1656
|
+
d="M154 0h-79v550h79v-550zM275 750l-169 -144h-57l148 144h78z" />
|
|
1657
|
+
<glyph glyph-name="Icircumflex.smcp" unicode="" horiz-adv-x="227"
|
|
1658
|
+
d="M154 0h-79v550h79v-550zM247 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1659
|
+
<glyph glyph-name="Idieresis.smcp" unicode="" horiz-adv-x="227"
|
|
1660
|
+
d="M154 0h-79v550h79v-550zM265 660q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM58 660q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
1661
|
+
<glyph glyph-name="Eth.smcp" unicode="" horiz-adv-x="626"
|
|
1662
|
+
d="M273 0h-200v251h-63v52h63v247h200q132 0 212.5 -78.5t80.5 -197.5t-80 -196.5t-213 -77.5zM285 251h-133v-182h121q99 0 155.5 58.5t56.5 146.5q0 90 -55.5 148.5t-156.5 58.5h-121v-178h133v-52z" />
|
|
1663
|
+
<glyph glyph-name="Ntilde.smcp" unicode="" horiz-adv-x="632"
|
|
1664
|
+
d="M557 0h-79l-325 428v-428h-78v550h82l322 -420v420h78v-550zM375 604q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45
|
|
1665
|
+
q0 -60 -25.5 -97t-71.5 -37z" />
|
|
1666
|
+
<glyph glyph-name="Ograve.smcp" unicode="" horiz-adv-x="662"
|
|
1667
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM397 606h-57l-169 144h78z" />
|
|
1668
|
+
<glyph glyph-name="Oacute.smcp" unicode="" horiz-adv-x="662"
|
|
1669
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM493 750l-169 -144h-57l148 144h78z" />
|
|
1670
|
+
<glyph glyph-name="Ocircumflex.smcp" unicode="" horiz-adv-x="662"
|
|
1671
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM466 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1672
|
+
<glyph glyph-name="Otilde.smcp" unicode="" horiz-adv-x="662"
|
|
1673
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM394 604q-24 0 -42.5 14.5t-28 31.5t-23 31.5t-29.5 14.5q-21 0 -34.5 -21.5
|
|
1674
|
+
t-13.5 -64.5h-45q0 60 25.5 97t71.5 37q24 0 42.5 -14.5t28 -31.5t23 -31.5t29.5 -14.5q21 0 34.5 21.5t13.5 64.5h45q0 -60 -25.5 -97t-71.5 -37z" />
|
|
1675
|
+
<glyph glyph-name="Odieresis.smcp" unicode="" horiz-adv-x="662"
|
|
1676
|
+
d="M331 -12q-126 0 -205 82t-79 205t79 205t205 82t205 -82t79 -205t-79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-56 156.5t-148 61.5t-148 -61.5t-56 -156.5t56 -156.5t148 -61.5zM483 660q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5
|
|
1677
|
+
q20 0 33.5 -13.5t13.5 -32.5zM276 660q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
1678
|
+
<glyph glyph-name="Oslash.smcp" unicode="" horiz-adv-x="662"
|
|
1679
|
+
d="M331 -12q-85 0 -151 39l-20 -27h-67l43 59q-89 81 -89 216q0 123 79 205t205 82q81 0 148 -38l19 26h67l-42 -58q92 -82 92 -217q0 -123 -79 -205t-205 -82zM331 57q92 0 148 61.5t56 156.5t-57 157l-255 -346q46 -29 108 -29zM127 275q0 -95 54 -155l255 346
|
|
1680
|
+
q-48 27 -105 27q-92 0 -148 -61.5t-56 -156.5z" />
|
|
1681
|
+
<glyph glyph-name="Ugrave.smcp" unicode="" horiz-adv-x="623"
|
|
1682
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM377 606h-57l-169 144h78z" />
|
|
1683
|
+
<glyph glyph-name="Uacute.smcp" unicode="" horiz-adv-x="623"
|
|
1684
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM474 750l-169 -144h-57l148 144h78z" />
|
|
1685
|
+
<glyph glyph-name="Ucircumflex.smcp" unicode="" horiz-adv-x="623"
|
|
1686
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM444 606h-51l-83 106l-80 -106h-51l95 144h72z" />
|
|
1687
|
+
<glyph glyph-name="Udieresis.smcp" unicode="" horiz-adv-x="623"
|
|
1688
|
+
d="M311 -12q-115 0 -175.5 60t-60.5 164v338h79v-333q0 -75 41 -117.5t116 -42.5q76 0 117 43t41 117v333h79v-338q0 -104 -61 -164t-176 -60zM462 660q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM255 660
|
|
1689
|
+
q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
1690
|
+
<glyph glyph-name="Yacute.smcp" unicode="" horiz-adv-x="547"
|
|
1691
|
+
d="M314 0h-78v233l-229 317h91l178 -250l174 250h90l-226 -317v-233zM436 750l-169 -144h-57l148 144h78z" />
|
|
1692
|
+
<glyph glyph-name="Thorn.smcp" unicode="" horiz-adv-x="523"
|
|
1693
|
+
d="M154 0h-79v550h79v-92h157q85 0 133 -48.5t48 -119.5q0 -72 -47 -120.5t-134 -48.5h-157v-121zM304 190q52 0 80 27.5t28 72.5q0 44 -28 71.5t-80 27.5h-150v-199h150z" />
|
|
1694
|
+
<glyph glyph-name="Ydieresis.smcp" unicode="" horiz-adv-x="547"
|
|
1695
|
+
d="M314 0h-78v233l-229 317h91l178 -250l174 250h90l-226 -317v-233zM426 660q0 -19 -14 -32.5t-33 -13.5t-32.5 13.5t-13.5 32.5t13.5 32.5t32.5 13.5q20 0 33.5 -13.5t13.5 -32.5zM219 660q0 -19 -13.5 -32.5t-32.5 -13.5t-33 13.5t-14 32.5t13.5 32.5t33.5 13.5
|
|
1696
|
+
q19 0 32.5 -13.5t13.5 -32.5z" />
|
|
1697
|
+
<glyph glyph-name="FI.smcp" unicode="" horiz-adv-x="720"
|
|
1698
|
+
d="M154 0h-79v550h382v-69h-303v-165h298v-69h-298v-247zM645 0h-79v550h79v-550z" />
|
|
1699
|
+
<glyph glyph-name="FL.smcp" unicode="" horiz-adv-x="949"
|
|
1700
|
+
d="M154 0h-79v550h382v-69h-303v-165h298v-69h-298v-247zM911 0h-345v550h79v-481h266v-69z" />
|
|
1701
|
+
<glyph glyph-name="SS.smcp" unicode="" horiz-adv-x="1008"
|
|
1702
|
+
d="M252 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46
|
|
1703
|
+
t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46zM756 -12q-70 0 -127 23.5t-93 62.5l42 59q30 -33 77.5 -55t102.5 -22q68 0 101 27t33 67q0 33 -25 54t-62.5 30t-81.5 21.5t-81.5 26.5t-62.5 45.5t-25 78.5q0 68 57 112t142 44q129 0 206 -79
|
|
1704
|
+
l-41 -55q-62 66 -165 66q-52 0 -85 -24.5t-33 -62.5q0 -28 25 -46t62.5 -26.5t81 -21.5t81 -28t62.5 -49t25 -83q0 -73 -55 -119t-161 -46z" />
|
|
1705
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1706
|
+
g2="J,Jcircumflex"
|
|
1707
|
+
k="-9" />
|
|
1708
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1709
|
+
g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
1710
|
+
k="14" />
|
|
1711
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1712
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1713
|
+
k="67" />
|
|
1714
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1715
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
1716
|
+
k="37" />
|
|
1717
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1718
|
+
g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
1719
|
+
k="26" />
|
|
1720
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1721
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
1722
|
+
k="37" />
|
|
1723
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1724
|
+
g2="V"
|
|
1725
|
+
k="54" />
|
|
1726
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1727
|
+
g2="W,Wcircumflex"
|
|
1728
|
+
k="47" />
|
|
1729
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1730
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1731
|
+
k="63" />
|
|
1732
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1733
|
+
g2="question"
|
|
1734
|
+
k="77" />
|
|
1735
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1736
|
+
g2="asterisk"
|
|
1737
|
+
k="101" />
|
|
1738
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1739
|
+
g2="bullet.case"
|
|
1740
|
+
k="37" />
|
|
1741
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1742
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
1743
|
+
k="47" />
|
|
1744
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1745
|
+
g2="dagger"
|
|
1746
|
+
k="97" />
|
|
1747
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1748
|
+
g2="daggerdbl"
|
|
1749
|
+
k="37" />
|
|
1750
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1751
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
1752
|
+
k="97" />
|
|
1753
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1754
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
1755
|
+
k="9" />
|
|
1756
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1757
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
1758
|
+
k="11" />
|
|
1759
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1760
|
+
g2="u,uogonek,y.alt1"
|
|
1761
|
+
k="12" />
|
|
1762
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1763
|
+
g2="v"
|
|
1764
|
+
k="20" />
|
|
1765
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1766
|
+
g2="w"
|
|
1767
|
+
k="17" />
|
|
1768
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1769
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
1770
|
+
k="20" />
|
|
1771
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1772
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
1773
|
+
k="17" />
|
|
1774
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1775
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
1776
|
+
k="10" />
|
|
1777
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1778
|
+
g2="V.smcp"
|
|
1779
|
+
k="20" />
|
|
1780
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1781
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
1782
|
+
k="20" />
|
|
1783
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,Delta"
|
|
1784
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
1785
|
+
k="50" />
|
|
1786
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1787
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1788
|
+
k="100" />
|
|
1789
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1790
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
1791
|
+
k="43" />
|
|
1792
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1793
|
+
g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
1794
|
+
k="9" />
|
|
1795
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1796
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
1797
|
+
k="30" />
|
|
1798
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1799
|
+
g2="V"
|
|
1800
|
+
k="54" />
|
|
1801
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1802
|
+
g2="W,Wcircumflex"
|
|
1803
|
+
k="50" />
|
|
1804
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1805
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1806
|
+
k="69" />
|
|
1807
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1808
|
+
g2="question"
|
|
1809
|
+
k="43" />
|
|
1810
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1811
|
+
g2="asterisk"
|
|
1812
|
+
k="64" />
|
|
1813
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1814
|
+
g2="dagger"
|
|
1815
|
+
k="77" />
|
|
1816
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1817
|
+
g2="daggerdbl"
|
|
1818
|
+
k="20" />
|
|
1819
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1820
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
1821
|
+
k="80" />
|
|
1822
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1823
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
1824
|
+
k="17" />
|
|
1825
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1826
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
1827
|
+
k="10" />
|
|
1828
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1829
|
+
g2="V.smcp"
|
|
1830
|
+
k="30" />
|
|
1831
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1832
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
1833
|
+
k="20" />
|
|
1834
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1835
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
1836
|
+
k="40" />
|
|
1837
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1838
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
1839
|
+
k="-6" />
|
|
1840
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1841
|
+
g2="bullet"
|
|
1842
|
+
k="10" />
|
|
1843
|
+
<hkern g1="Abreve.smcp,Amacron.smcp,Aogonek.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp"
|
|
1844
|
+
g2="question.smcp"
|
|
1845
|
+
k="43" />
|
|
1846
|
+
<hkern g1="B"
|
|
1847
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1848
|
+
k="17" />
|
|
1849
|
+
<hkern g1="B"
|
|
1850
|
+
g2="V"
|
|
1851
|
+
k="13" />
|
|
1852
|
+
<hkern g1="B"
|
|
1853
|
+
g2="W,Wcircumflex"
|
|
1854
|
+
k="10" />
|
|
1855
|
+
<hkern g1="B"
|
|
1856
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1857
|
+
k="30" />
|
|
1858
|
+
<hkern g1="B"
|
|
1859
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
1860
|
+
k="10" />
|
|
1861
|
+
<hkern g1="B"
|
|
1862
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
1863
|
+
k="17" />
|
|
1864
|
+
<hkern g1="B"
|
|
1865
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
1866
|
+
k="10" />
|
|
1867
|
+
<hkern g1="B.smcp"
|
|
1868
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1869
|
+
k="56" />
|
|
1870
|
+
<hkern g1="B.smcp"
|
|
1871
|
+
g2="V"
|
|
1872
|
+
k="20" />
|
|
1873
|
+
<hkern g1="B.smcp"
|
|
1874
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1875
|
+
k="40" />
|
|
1876
|
+
<hkern g1="B.smcp"
|
|
1877
|
+
g2="question"
|
|
1878
|
+
k="43" />
|
|
1879
|
+
<hkern g1="B.smcp"
|
|
1880
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
1881
|
+
k="23" />
|
|
1882
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1883
|
+
g2="V"
|
|
1884
|
+
k="2" />
|
|
1885
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1886
|
+
g2="W,Wcircumflex"
|
|
1887
|
+
k="3" />
|
|
1888
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1889
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1890
|
+
k="16" />
|
|
1891
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1892
|
+
g2="question"
|
|
1893
|
+
k="3" />
|
|
1894
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1895
|
+
g2="bullet.case"
|
|
1896
|
+
k="3" />
|
|
1897
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1898
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
1899
|
+
k="6" />
|
|
1900
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1901
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
1902
|
+
k="3" />
|
|
1903
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron"
|
|
1904
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
1905
|
+
k="3" />
|
|
1906
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1907
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1908
|
+
k="75" />
|
|
1909
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1910
|
+
g2="V"
|
|
1911
|
+
k="9" />
|
|
1912
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1913
|
+
g2="W,Wcircumflex"
|
|
1914
|
+
k="13" />
|
|
1915
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1916
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1917
|
+
k="39" />
|
|
1918
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1919
|
+
g2="question"
|
|
1920
|
+
k="9" />
|
|
1921
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1922
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
1923
|
+
k="6" />
|
|
1924
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1925
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
1926
|
+
k="3" />
|
|
1927
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1928
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
1929
|
+
k="3" />
|
|
1930
|
+
<hkern g1="Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,C.smcp,Ccedilla.smcp"
|
|
1931
|
+
g2="X.smcp"
|
|
1932
|
+
k="3" />
|
|
1933
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1934
|
+
g2="J,Jcircumflex"
|
|
1935
|
+
k="20" />
|
|
1936
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1937
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1938
|
+
k="27" />
|
|
1939
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1940
|
+
g2="V"
|
|
1941
|
+
k="20" />
|
|
1942
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1943
|
+
g2="W,Wcircumflex"
|
|
1944
|
+
k="20" />
|
|
1945
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1946
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1947
|
+
k="40" />
|
|
1948
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1949
|
+
g2="question"
|
|
1950
|
+
k="16" />
|
|
1951
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1952
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
1953
|
+
k="10" />
|
|
1954
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1955
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
1956
|
+
k="16" />
|
|
1957
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1958
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
1959
|
+
k="30" />
|
|
1960
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1961
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
1962
|
+
k="37" />
|
|
1963
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1964
|
+
g2="X"
|
|
1965
|
+
k="30" />
|
|
1966
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1967
|
+
g2="Z,Zacute,Zdotaccent,Zcaron"
|
|
1968
|
+
k="17" />
|
|
1969
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Thorn,Dcaron,Dcroat,Omacron,Obreve,Ohungarumlaut,Oslashacute"
|
|
1970
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
1971
|
+
k="27" />
|
|
1972
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1973
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
1974
|
+
k="81" />
|
|
1975
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1976
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
1977
|
+
k="30" />
|
|
1978
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1979
|
+
g2="V"
|
|
1980
|
+
k="50" />
|
|
1981
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1982
|
+
g2="W,Wcircumflex"
|
|
1983
|
+
k="30" />
|
|
1984
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1985
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
1986
|
+
k="76" />
|
|
1987
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1988
|
+
g2="question"
|
|
1989
|
+
k="32" />
|
|
1990
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1991
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
1992
|
+
k="20" />
|
|
1993
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1994
|
+
g2="V.smcp"
|
|
1995
|
+
k="20" />
|
|
1996
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
1997
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
1998
|
+
k="27" />
|
|
1999
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2000
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2001
|
+
k="30" />
|
|
2002
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2003
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2004
|
+
k="13" />
|
|
2005
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2006
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2007
|
+
k="17" />
|
|
2008
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2009
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2010
|
+
k="17" />
|
|
2011
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2012
|
+
g2="X.smcp"
|
|
2013
|
+
k="23" />
|
|
2014
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2015
|
+
g2="X"
|
|
2016
|
+
k="54" />
|
|
2017
|
+
<hkern g1="Dcaron.smcp,Dcroat.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,D.smcp,O.smcp,Q.smcp,Eth.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp,Thorn.smcp"
|
|
2018
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2019
|
+
k="21" />
|
|
2020
|
+
<hkern g1="Ecaron.smcp,Edotaccent.smcp,Emacron.smcp,Eogonek.smcp,OE.smcp,E.smcp,AE.smcp,Egrave.smcp,Eacute.smcp,Ecircumflex.smcp,Edieresis.smcp"
|
|
2021
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2022
|
+
k="14" />
|
|
2023
|
+
<hkern g1="F"
|
|
2024
|
+
g2="J,Jcircumflex"
|
|
2025
|
+
k="59" />
|
|
2026
|
+
<hkern g1="F"
|
|
2027
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2028
|
+
k="56" />
|
|
2029
|
+
<hkern g1="F"
|
|
2030
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2031
|
+
k="39" />
|
|
2032
|
+
<hkern g1="F"
|
|
2033
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2034
|
+
k="36" />
|
|
2035
|
+
<hkern g1="F"
|
|
2036
|
+
g2="X.smcp"
|
|
2037
|
+
k="14" />
|
|
2038
|
+
<hkern g1="F"
|
|
2039
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2040
|
+
k="50" />
|
|
2041
|
+
<hkern g1="F"
|
|
2042
|
+
g2="ampersand"
|
|
2043
|
+
k="6" />
|
|
2044
|
+
<hkern g1="F"
|
|
2045
|
+
g2="ampersand.smcp"
|
|
2046
|
+
k="23" />
|
|
2047
|
+
<hkern g1="F.smcp"
|
|
2048
|
+
g2="J,Jcircumflex"
|
|
2049
|
+
k="36" />
|
|
2050
|
+
<hkern g1="F.smcp"
|
|
2051
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2052
|
+
k="14" />
|
|
2053
|
+
<hkern g1="F.smcp"
|
|
2054
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2055
|
+
k="46" />
|
|
2056
|
+
<hkern g1="F.smcp"
|
|
2057
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2058
|
+
k="23" />
|
|
2059
|
+
<hkern g1="F.smcp"
|
|
2060
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2061
|
+
k="23" />
|
|
2062
|
+
<hkern g1="F.smcp"
|
|
2063
|
+
g2="X"
|
|
2064
|
+
k="23" />
|
|
2065
|
+
<hkern g1="F.smcp"
|
|
2066
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2067
|
+
k="13" />
|
|
2068
|
+
<hkern g1="F.smcp"
|
|
2069
|
+
g2="ampersand.smcp"
|
|
2070
|
+
k="3" />
|
|
2071
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2072
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2073
|
+
k="3" />
|
|
2074
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2075
|
+
g2="V"
|
|
2076
|
+
k="6" />
|
|
2077
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2078
|
+
g2="W,Wcircumflex"
|
|
2079
|
+
k="3" />
|
|
2080
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2081
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2082
|
+
k="9" />
|
|
2083
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2084
|
+
g2="question"
|
|
2085
|
+
k="6" />
|
|
2086
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2087
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2088
|
+
k="3" />
|
|
2089
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2090
|
+
g2="X"
|
|
2091
|
+
k="3" />
|
|
2092
|
+
<hkern g1="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gbreve.smcp,Gcommaaccent.smcp,G.smcp"
|
|
2093
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2094
|
+
k="44" />
|
|
2095
|
+
<hkern g1="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gbreve.smcp,Gcommaaccent.smcp,G.smcp"
|
|
2096
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2097
|
+
k="14" />
|
|
2098
|
+
<hkern g1="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gbreve.smcp,Gcommaaccent.smcp,G.smcp"
|
|
2099
|
+
g2="question"
|
|
2100
|
+
k="19" />
|
|
2101
|
+
<hkern g1="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gbreve.smcp,Gcommaaccent.smcp,G.smcp"
|
|
2102
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
2103
|
+
k="3" />
|
|
2104
|
+
<hkern g1="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gbreve.smcp,Gcommaaccent.smcp,G.smcp"
|
|
2105
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2106
|
+
k="3" />
|
|
2107
|
+
<hkern g1="Hbar.smcp,Imacron.smcp,Iogonek.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Idotaccent.smcp,H.smcp,I.smcp,M.smcp,N.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Ntilde.smcp"
|
|
2108
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2109
|
+
k="63" />
|
|
2110
|
+
<hkern g1="Hbar.smcp,Imacron.smcp,Iogonek.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Idotaccent.smcp,H.smcp,I.smcp,M.smcp,N.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Ntilde.smcp"
|
|
2111
|
+
g2="V"
|
|
2112
|
+
k="20" />
|
|
2113
|
+
<hkern g1="Hbar.smcp,Imacron.smcp,Iogonek.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Idotaccent.smcp,H.smcp,I.smcp,M.smcp,N.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Ntilde.smcp"
|
|
2114
|
+
g2="W,Wcircumflex"
|
|
2115
|
+
k="3" />
|
|
2116
|
+
<hkern g1="Hbar.smcp,Imacron.smcp,Iogonek.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Idotaccent.smcp,H.smcp,I.smcp,M.smcp,N.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Ntilde.smcp"
|
|
2117
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2118
|
+
k="33" />
|
|
2119
|
+
<hkern g1="Hbar.smcp,Imacron.smcp,Iogonek.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Idotaccent.smcp,H.smcp,I.smcp,M.smcp,N.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Ntilde.smcp"
|
|
2120
|
+
g2="question"
|
|
2121
|
+
k="3" />
|
|
2122
|
+
<hkern g1="K,Kcommaaccent"
|
|
2123
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2124
|
+
k="53" />
|
|
2125
|
+
<hkern g1="K,Kcommaaccent"
|
|
2126
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2127
|
+
k="54" />
|
|
2128
|
+
<hkern g1="K,Kcommaaccent"
|
|
2129
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2130
|
+
k="21" />
|
|
2131
|
+
<hkern g1="K,Kcommaaccent"
|
|
2132
|
+
g2="bullet.case"
|
|
2133
|
+
k="74" />
|
|
2134
|
+
<hkern g1="K,Kcommaaccent"
|
|
2135
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2136
|
+
k="70" />
|
|
2137
|
+
<hkern g1="K,Kcommaaccent"
|
|
2138
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
2139
|
+
k="26" />
|
|
2140
|
+
<hkern g1="K,Kcommaaccent"
|
|
2141
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
2142
|
+
k="39" />
|
|
2143
|
+
<hkern g1="K,Kcommaaccent"
|
|
2144
|
+
g2="u,uogonek,y.alt1"
|
|
2145
|
+
k="20" />
|
|
2146
|
+
<hkern g1="K,Kcommaaccent"
|
|
2147
|
+
g2="v"
|
|
2148
|
+
k="60" />
|
|
2149
|
+
<hkern g1="K,Kcommaaccent"
|
|
2150
|
+
g2="w"
|
|
2151
|
+
k="40" />
|
|
2152
|
+
<hkern g1="K,Kcommaaccent"
|
|
2153
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2154
|
+
k="60" />
|
|
2155
|
+
<hkern g1="K,Kcommaaccent"
|
|
2156
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2157
|
+
k="57" />
|
|
2158
|
+
<hkern g1="K,Kcommaaccent"
|
|
2159
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2160
|
+
k="50" />
|
|
2161
|
+
<hkern g1="K,Kcommaaccent"
|
|
2162
|
+
g2="V.smcp"
|
|
2163
|
+
k="43" />
|
|
2164
|
+
<hkern g1="K,Kcommaaccent"
|
|
2165
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
2166
|
+
k="40" />
|
|
2167
|
+
<hkern g1="K,Kcommaaccent"
|
|
2168
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2169
|
+
k="60" />
|
|
2170
|
+
<hkern g1="K,Kcommaaccent"
|
|
2171
|
+
g2="X.smcp"
|
|
2172
|
+
k="16" />
|
|
2173
|
+
<hkern g1="K,Kcommaaccent"
|
|
2174
|
+
g2="ampersand.smcp"
|
|
2175
|
+
k="3" />
|
|
2176
|
+
<hkern g1="K,Kcommaaccent"
|
|
2177
|
+
g2="a,ae,aogonek,aeacute"
|
|
2178
|
+
k="17" />
|
|
2179
|
+
<hkern g1="K,Kcommaaccent"
|
|
2180
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2181
|
+
k="34" />
|
|
2182
|
+
<hkern g1="K,Kcommaaccent"
|
|
2183
|
+
g2="x"
|
|
2184
|
+
k="26" />
|
|
2185
|
+
<hkern g1="K,Kcommaaccent"
|
|
2186
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2187
|
+
k="50" />
|
|
2188
|
+
<hkern g1="K,Kcommaaccent"
|
|
2189
|
+
g2="Sacute.smcp,Scedilla.smcp,Scircumflex.smcp,Scommaaccent.smcp,Scaron.smcp,S.smcp"
|
|
2190
|
+
k="20" />
|
|
2191
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2192
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2193
|
+
k="35" />
|
|
2194
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2195
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2196
|
+
k="17" />
|
|
2197
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2198
|
+
g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2199
|
+
k="20" />
|
|
2200
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2201
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2202
|
+
k="20" />
|
|
2203
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2204
|
+
g2="V"
|
|
2205
|
+
k="20" />
|
|
2206
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2207
|
+
g2="W,Wcircumflex"
|
|
2208
|
+
k="17" />
|
|
2209
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2210
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2211
|
+
k="16" />
|
|
2212
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2213
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2214
|
+
k="43" />
|
|
2215
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2216
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2217
|
+
k="39" />
|
|
2218
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2219
|
+
g2="bullet"
|
|
2220
|
+
k="47" />
|
|
2221
|
+
<hkern g1="Kcommaaccent.smcp,K.smcp"
|
|
2222
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2223
|
+
k="37" />
|
|
2224
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2225
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2226
|
+
k="100" />
|
|
2227
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2228
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2229
|
+
k="77" />
|
|
2230
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2231
|
+
g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2232
|
+
k="27" />
|
|
2233
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2234
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2235
|
+
k="34" />
|
|
2236
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2237
|
+
g2="V"
|
|
2238
|
+
k="90" />
|
|
2239
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2240
|
+
g2="W,Wcircumflex"
|
|
2241
|
+
k="66" />
|
|
2242
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2243
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2244
|
+
k="123" />
|
|
2245
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2246
|
+
g2="question"
|
|
2247
|
+
k="114" />
|
|
2248
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2249
|
+
g2="asterisk"
|
|
2250
|
+
k="174" />
|
|
2251
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2252
|
+
g2="bullet.case"
|
|
2253
|
+
k="118" />
|
|
2254
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2255
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2256
|
+
k="77" />
|
|
2257
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2258
|
+
g2="dagger"
|
|
2259
|
+
k="130" />
|
|
2260
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2261
|
+
g2="daggerdbl"
|
|
2262
|
+
k="101" />
|
|
2263
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2264
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
2265
|
+
k="122" />
|
|
2266
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2267
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
2268
|
+
k="33" />
|
|
2269
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2270
|
+
g2="u,uogonek,y.alt1"
|
|
2271
|
+
k="14" />
|
|
2272
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2273
|
+
g2="v"
|
|
2274
|
+
k="57" />
|
|
2275
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2276
|
+
g2="w"
|
|
2277
|
+
k="37" />
|
|
2278
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2279
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2280
|
+
k="57" />
|
|
2281
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2282
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2283
|
+
k="41" />
|
|
2284
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2285
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2286
|
+
k="24" />
|
|
2287
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2288
|
+
g2="V.smcp"
|
|
2289
|
+
k="53" />
|
|
2290
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2291
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
2292
|
+
k="47" />
|
|
2293
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2294
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2295
|
+
k="86" />
|
|
2296
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2297
|
+
g2="ampersand"
|
|
2298
|
+
k="7" />
|
|
2299
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2300
|
+
g2="a,ae,aogonek,aeacute"
|
|
2301
|
+
k="14" />
|
|
2302
|
+
<hkern g1="L,Lacute,Lcommaaccent,Lslash"
|
|
2303
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2304
|
+
k="21" />
|
|
2305
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2306
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2307
|
+
k="107" />
|
|
2308
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2309
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2310
|
+
k="87" />
|
|
2311
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2312
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2313
|
+
k="34" />
|
|
2314
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2315
|
+
g2="V"
|
|
2316
|
+
k="97" />
|
|
2317
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2318
|
+
g2="W,Wcircumflex"
|
|
2319
|
+
k="46" />
|
|
2320
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2321
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2322
|
+
k="116" />
|
|
2323
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2324
|
+
g2="asterisk"
|
|
2325
|
+
k="117" />
|
|
2326
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2327
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
2328
|
+
k="110" />
|
|
2329
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2330
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2331
|
+
k="21" />
|
|
2332
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2333
|
+
g2="V.smcp"
|
|
2334
|
+
k="74" />
|
|
2335
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2336
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
2337
|
+
k="60" />
|
|
2338
|
+
<hkern g1="Lacute.smcp,Lcommaaccent.smcp,Lslash.smcp,L.smcp,FL.smcp"
|
|
2339
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2340
|
+
k="100" />
|
|
2341
|
+
<hkern g1="P"
|
|
2342
|
+
g2="J,Jcircumflex"
|
|
2343
|
+
k="109" />
|
|
2344
|
+
<hkern g1="P"
|
|
2345
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2346
|
+
k="3" />
|
|
2347
|
+
<hkern g1="P"
|
|
2348
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2349
|
+
k="96" />
|
|
2350
|
+
<hkern g1="P"
|
|
2351
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2352
|
+
k="80" />
|
|
2353
|
+
<hkern g1="P"
|
|
2354
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2355
|
+
k="77" />
|
|
2356
|
+
<hkern g1="P"
|
|
2357
|
+
g2="X"
|
|
2358
|
+
k="9" />
|
|
2359
|
+
<hkern g1="P"
|
|
2360
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2361
|
+
k="94" />
|
|
2362
|
+
<hkern g1="P"
|
|
2363
|
+
g2="ampersand"
|
|
2364
|
+
k="26" />
|
|
2365
|
+
<hkern g1="P"
|
|
2366
|
+
g2="ampersand.smcp"
|
|
2367
|
+
k="36" />
|
|
2368
|
+
<hkern g1="P"
|
|
2369
|
+
g2="a,ae,aogonek,aeacute"
|
|
2370
|
+
k="20" />
|
|
2371
|
+
<hkern g1="P"
|
|
2372
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2373
|
+
k="13" />
|
|
2374
|
+
<hkern g1="P"
|
|
2375
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2376
|
+
k="34" />
|
|
2377
|
+
<hkern g1="P.smcp"
|
|
2378
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2379
|
+
k="77" />
|
|
2380
|
+
<hkern g1="P.smcp"
|
|
2381
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2382
|
+
k="47" />
|
|
2383
|
+
<hkern g1="P.smcp"
|
|
2384
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2385
|
+
k="58" />
|
|
2386
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2387
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2388
|
+
k="10" />
|
|
2389
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2390
|
+
g2="V"
|
|
2391
|
+
k="10" />
|
|
2392
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2393
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2394
|
+
k="16" />
|
|
2395
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2396
|
+
g2="bullet.case"
|
|
2397
|
+
k="10" />
|
|
2398
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2399
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
2400
|
+
k="3" />
|
|
2401
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2402
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2403
|
+
k="17" />
|
|
2404
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2405
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2406
|
+
k="3" />
|
|
2407
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2408
|
+
g2="ampersand"
|
|
2409
|
+
k="3" />
|
|
2410
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2411
|
+
g2="ampersand.smcp"
|
|
2412
|
+
k="13" />
|
|
2413
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2414
|
+
g2="a,ae,aogonek,aeacute"
|
|
2415
|
+
k="20" />
|
|
2416
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2417
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2418
|
+
k="30" />
|
|
2419
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron"
|
|
2420
|
+
g2="s,scedilla,scommaaccent"
|
|
2421
|
+
k="6" />
|
|
2422
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2423
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2424
|
+
k="6" />
|
|
2425
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2426
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2427
|
+
k="6" />
|
|
2428
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2429
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2430
|
+
k="10" />
|
|
2431
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2432
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
2433
|
+
k="17" />
|
|
2434
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2435
|
+
g2="v"
|
|
2436
|
+
k="6" />
|
|
2437
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2438
|
+
g2="w"
|
|
2439
|
+
k="3" />
|
|
2440
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2441
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2442
|
+
k="6" />
|
|
2443
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2444
|
+
g2="V.smcp"
|
|
2445
|
+
k="3" />
|
|
2446
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2447
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
2448
|
+
k="3" />
|
|
2449
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2450
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2451
|
+
k="16" />
|
|
2452
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2453
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2454
|
+
k="10" />
|
|
2455
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2456
|
+
g2="x"
|
|
2457
|
+
k="13" />
|
|
2458
|
+
<hkern g1="Sacute.smcp,Scedilla.smcp,Scircumflex.smcp,Scommaaccent.smcp,Scaron.smcp,S.smcp"
|
|
2459
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2460
|
+
k="69" />
|
|
2461
|
+
<hkern g1="Sacute.smcp,Scedilla.smcp,Scircumflex.smcp,Scommaaccent.smcp,Scaron.smcp,S.smcp"
|
|
2462
|
+
g2="V"
|
|
2463
|
+
k="16" />
|
|
2464
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2465
|
+
g2="J,Jcircumflex"
|
|
2466
|
+
k="83" />
|
|
2467
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2468
|
+
g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2469
|
+
k="3" />
|
|
2470
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2471
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2472
|
+
k="28" />
|
|
2473
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2474
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2475
|
+
k="27" />
|
|
2476
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2477
|
+
g2="bullet.case"
|
|
2478
|
+
k="82" />
|
|
2479
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2480
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2481
|
+
k="50" />
|
|
2482
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2483
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
2484
|
+
k="31" />
|
|
2485
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2486
|
+
g2="u,uogonek,y.alt1"
|
|
2487
|
+
k="85" />
|
|
2488
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2489
|
+
g2="v"
|
|
2490
|
+
k="56" />
|
|
2491
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2492
|
+
g2="w"
|
|
2493
|
+
k="56" />
|
|
2494
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2495
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2496
|
+
k="56" />
|
|
2497
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2498
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2499
|
+
k="81" />
|
|
2500
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2501
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2502
|
+
k="56" />
|
|
2503
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2504
|
+
g2="V.smcp"
|
|
2505
|
+
k="35" />
|
|
2506
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2507
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
2508
|
+
k="35" />
|
|
2509
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2510
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2511
|
+
k="35" />
|
|
2512
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2513
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2514
|
+
k="107" />
|
|
2515
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2516
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2517
|
+
k="100" />
|
|
2518
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2519
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2520
|
+
k="67" />
|
|
2521
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2522
|
+
g2="X.smcp"
|
|
2523
|
+
k="35" />
|
|
2524
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2525
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2526
|
+
k="93" />
|
|
2527
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2528
|
+
g2="ampersand"
|
|
2529
|
+
k="57" />
|
|
2530
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2531
|
+
g2="ampersand.smcp"
|
|
2532
|
+
k="97" />
|
|
2533
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2534
|
+
g2="a,ae,aogonek,aeacute"
|
|
2535
|
+
k="95" />
|
|
2536
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2537
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2538
|
+
k="115" />
|
|
2539
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2540
|
+
g2="x"
|
|
2541
|
+
k="66" />
|
|
2542
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2543
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2544
|
+
k="60" />
|
|
2545
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2546
|
+
g2="Sacute.smcp,Scedilla.smcp,Scircumflex.smcp,Scommaaccent.smcp,Scaron.smcp,S.smcp"
|
|
2547
|
+
k="65" />
|
|
2548
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2549
|
+
g2="s,scedilla,scommaaccent"
|
|
2550
|
+
k="91" />
|
|
2551
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2552
|
+
g2="colon,semicolon"
|
|
2553
|
+
k="50" />
|
|
2554
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2555
|
+
g2="m,n,p,r,z,ncommaaccent,eng,rcommaaccent"
|
|
2556
|
+
k="85" />
|
|
2557
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2558
|
+
g2="Dcaron.smcp,Dcroat.smcp,Ecaron.smcp,Edotaccent.smcp,Emacron.smcp,Eogonek.smcp,Hcircumflex.smcp,Hbar.smcp,Imacron.smcp,Iogonek.smcp,Kcommaaccent.smcp,Lacute.smcp,Lcaron.smcp,Lcommaaccent.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Racute.smcp,Rcaron.smcp,Rcommaaccent.smcp,Idotaccent.smcp,Lslash.smcp,B.smcp,D.smcp,E.smcp,F.smcp,H.smcp,I.smcp,K.smcp,L.smcp,M.smcp,N.smcp,P.smcp,R.smcp,Egrave.smcp,Eacute.smcp,Ecircumflex.smcp,Edieresis.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Eth.smcp,Ntilde.smcp"
|
|
2559
|
+
k="59" />
|
|
2560
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar"
|
|
2561
|
+
g2="Zacute.smcp,Zdotaccent.smcp,Zcaron.smcp,Z.smcp"
|
|
2562
|
+
k="42" />
|
|
2563
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2564
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2565
|
+
k="28" />
|
|
2566
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2567
|
+
g2="V"
|
|
2568
|
+
k="3" />
|
|
2569
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2570
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2571
|
+
k="30" />
|
|
2572
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2573
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2574
|
+
k="73" />
|
|
2575
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2576
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2577
|
+
k="43" />
|
|
2578
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2579
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2580
|
+
k="37" />
|
|
2581
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2582
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2583
|
+
k="60" />
|
|
2584
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2585
|
+
g2="ampersand"
|
|
2586
|
+
k="44" />
|
|
2587
|
+
<hkern g1="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2588
|
+
g2="ampersand.smcp"
|
|
2589
|
+
k="47" />
|
|
2590
|
+
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2591
|
+
g2="J,Jcircumflex"
|
|
2592
|
+
k="12" />
|
|
2593
|
+
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2594
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2595
|
+
k="12" />
|
|
2596
|
+
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2597
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2598
|
+
k="9" />
|
|
2599
|
+
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2600
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2601
|
+
k="26" />
|
|
2602
|
+
<hkern g1="J,U,Ugrave,Uacute,Ucircumflex,Udieresis,IJ,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
2603
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2604
|
+
k="30" />
|
|
2605
|
+
<hkern g1="IJ.smcp,Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,J.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2606
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2607
|
+
k="56" />
|
|
2608
|
+
<hkern g1="IJ.smcp,Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,J.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2609
|
+
g2="V"
|
|
2610
|
+
k="20" />
|
|
2611
|
+
<hkern g1="IJ.smcp,Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,J.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2612
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2613
|
+
k="10" />
|
|
2614
|
+
<hkern g1="IJ.smcp,Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,J.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2615
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2616
|
+
k="10" />
|
|
2617
|
+
<hkern g1="IJ.smcp,Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,J.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2618
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2619
|
+
k="14" />
|
|
2620
|
+
<hkern g1="V"
|
|
2621
|
+
g2="J,Jcircumflex"
|
|
2622
|
+
k="93" />
|
|
2623
|
+
<hkern g1="V"
|
|
2624
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2625
|
+
k="3" />
|
|
2626
|
+
<hkern g1="V"
|
|
2627
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2628
|
+
k="20" />
|
|
2629
|
+
<hkern g1="V"
|
|
2630
|
+
g2="bullet.case"
|
|
2631
|
+
k="47" />
|
|
2632
|
+
<hkern g1="V"
|
|
2633
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2634
|
+
k="30" />
|
|
2635
|
+
<hkern g1="V"
|
|
2636
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
2637
|
+
k="23" />
|
|
2638
|
+
<hkern g1="V"
|
|
2639
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
2640
|
+
k="13" />
|
|
2641
|
+
<hkern g1="V"
|
|
2642
|
+
g2="u,uogonek,y.alt1"
|
|
2643
|
+
k="42" />
|
|
2644
|
+
<hkern g1="V"
|
|
2645
|
+
g2="v"
|
|
2646
|
+
k="13" />
|
|
2647
|
+
<hkern g1="V"
|
|
2648
|
+
g2="w"
|
|
2649
|
+
k="6" />
|
|
2650
|
+
<hkern g1="V"
|
|
2651
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2652
|
+
k="6" />
|
|
2653
|
+
<hkern g1="V"
|
|
2654
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2655
|
+
k="50" />
|
|
2656
|
+
<hkern g1="V"
|
|
2657
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
2658
|
+
k="20" />
|
|
2659
|
+
<hkern g1="V"
|
|
2660
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2661
|
+
k="97" />
|
|
2662
|
+
<hkern g1="V"
|
|
2663
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2664
|
+
k="54" />
|
|
2665
|
+
<hkern g1="V"
|
|
2666
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2667
|
+
k="54" />
|
|
2668
|
+
<hkern g1="V"
|
|
2669
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2670
|
+
k="90" />
|
|
2671
|
+
<hkern g1="V"
|
|
2672
|
+
g2="ampersand"
|
|
2673
|
+
k="29" />
|
|
2674
|
+
<hkern g1="V"
|
|
2675
|
+
g2="ampersand.smcp"
|
|
2676
|
+
k="53" />
|
|
2677
|
+
<hkern g1="V"
|
|
2678
|
+
g2="a,ae,aogonek,aeacute"
|
|
2679
|
+
k="63" />
|
|
2680
|
+
<hkern g1="V"
|
|
2681
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2682
|
+
k="60" />
|
|
2683
|
+
<hkern g1="V"
|
|
2684
|
+
g2="x"
|
|
2685
|
+
k="23" />
|
|
2686
|
+
<hkern g1="V"
|
|
2687
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2688
|
+
k="53" />
|
|
2689
|
+
<hkern g1="V"
|
|
2690
|
+
g2="Sacute.smcp,Scedilla.smcp,Scircumflex.smcp,Scommaaccent.smcp,Scaron.smcp,S.smcp"
|
|
2691
|
+
k="23" />
|
|
2692
|
+
<hkern g1="V"
|
|
2693
|
+
g2="s,scedilla,scommaaccent"
|
|
2694
|
+
k="39" />
|
|
2695
|
+
<hkern g1="V"
|
|
2696
|
+
g2="m,n,p,r,z,ncommaaccent,eng,rcommaaccent"
|
|
2697
|
+
k="42" />
|
|
2698
|
+
<hkern g1="V"
|
|
2699
|
+
g2="Dcaron.smcp,Dcroat.smcp,Ecaron.smcp,Edotaccent.smcp,Emacron.smcp,Eogonek.smcp,Hcircumflex.smcp,Hbar.smcp,Imacron.smcp,Iogonek.smcp,Kcommaaccent.smcp,Lacute.smcp,Lcaron.smcp,Lcommaaccent.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Racute.smcp,Rcaron.smcp,Rcommaaccent.smcp,Idotaccent.smcp,Lslash.smcp,B.smcp,D.smcp,E.smcp,F.smcp,H.smcp,I.smcp,K.smcp,L.smcp,M.smcp,N.smcp,P.smcp,R.smcp,Egrave.smcp,Eacute.smcp,Ecircumflex.smcp,Edieresis.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Eth.smcp,Ntilde.smcp"
|
|
2700
|
+
k="20" />
|
|
2701
|
+
<hkern g1="V.smcp"
|
|
2702
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2703
|
+
k="35" />
|
|
2704
|
+
<hkern g1="V.smcp"
|
|
2705
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2706
|
+
k="20" />
|
|
2707
|
+
<hkern g1="V.smcp"
|
|
2708
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2709
|
+
k="73" />
|
|
2710
|
+
<hkern g1="V.smcp"
|
|
2711
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2712
|
+
k="30" />
|
|
2713
|
+
<hkern g1="V.smcp"
|
|
2714
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2715
|
+
k="20" />
|
|
2716
|
+
<hkern g1="V.smcp"
|
|
2717
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2718
|
+
k="42" />
|
|
2719
|
+
<hkern g1="V.smcp"
|
|
2720
|
+
g2="ampersand"
|
|
2721
|
+
k="30" />
|
|
2722
|
+
<hkern g1="W"
|
|
2723
|
+
g2="J,Jcircumflex"
|
|
2724
|
+
k="38" />
|
|
2725
|
+
<hkern g1="W"
|
|
2726
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2727
|
+
k="20" />
|
|
2728
|
+
<hkern g1="W"
|
|
2729
|
+
g2="bullet.case"
|
|
2730
|
+
k="20" />
|
|
2731
|
+
<hkern g1="W"
|
|
2732
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2733
|
+
k="3" />
|
|
2734
|
+
<hkern g1="W"
|
|
2735
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
2736
|
+
k="13" />
|
|
2737
|
+
<hkern g1="W"
|
|
2738
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
2739
|
+
k="13" />
|
|
2740
|
+
<hkern g1="W"
|
|
2741
|
+
g2="u,uogonek,y.alt1"
|
|
2742
|
+
k="30" />
|
|
2743
|
+
<hkern g1="W"
|
|
2744
|
+
g2="v"
|
|
2745
|
+
k="3" />
|
|
2746
|
+
<hkern g1="W"
|
|
2747
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2748
|
+
k="3" />
|
|
2749
|
+
<hkern g1="W"
|
|
2750
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2751
|
+
k="30" />
|
|
2752
|
+
<hkern g1="W"
|
|
2753
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2754
|
+
k="46" />
|
|
2755
|
+
<hkern g1="W"
|
|
2756
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2757
|
+
k="50" />
|
|
2758
|
+
<hkern g1="W"
|
|
2759
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2760
|
+
k="47" />
|
|
2761
|
+
<hkern g1="W"
|
|
2762
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2763
|
+
k="67" />
|
|
2764
|
+
<hkern g1="W"
|
|
2765
|
+
g2="ampersand"
|
|
2766
|
+
k="20" />
|
|
2767
|
+
<hkern g1="W"
|
|
2768
|
+
g2="a,ae,aogonek,aeacute"
|
|
2769
|
+
k="40" />
|
|
2770
|
+
<hkern g1="W"
|
|
2771
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2772
|
+
k="40" />
|
|
2773
|
+
<hkern g1="W"
|
|
2774
|
+
g2="x"
|
|
2775
|
+
k="23" />
|
|
2776
|
+
<hkern g1="W"
|
|
2777
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2778
|
+
k="33" />
|
|
2779
|
+
<hkern g1="W"
|
|
2780
|
+
g2="s,scedilla,scommaaccent"
|
|
2781
|
+
k="19" />
|
|
2782
|
+
<hkern g1="W"
|
|
2783
|
+
g2="m,n,p,r,z,ncommaaccent,eng,rcommaaccent"
|
|
2784
|
+
k="30" />
|
|
2785
|
+
<hkern g1="W"
|
|
2786
|
+
g2="Dcaron.smcp,Dcroat.smcp,Ecaron.smcp,Edotaccent.smcp,Emacron.smcp,Eogonek.smcp,Hcircumflex.smcp,Hbar.smcp,Imacron.smcp,Iogonek.smcp,Kcommaaccent.smcp,Lacute.smcp,Lcaron.smcp,Lcommaaccent.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Racute.smcp,Rcaron.smcp,Rcommaaccent.smcp,Idotaccent.smcp,Lslash.smcp,B.smcp,D.smcp,E.smcp,F.smcp,H.smcp,I.smcp,K.smcp,L.smcp,M.smcp,N.smcp,P.smcp,R.smcp,Egrave.smcp,Eacute.smcp,Ecircumflex.smcp,Edieresis.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Eth.smcp,Ntilde.smcp"
|
|
2787
|
+
k="3" />
|
|
2788
|
+
<hkern g1="W.smcp"
|
|
2789
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2790
|
+
k="35" />
|
|
2791
|
+
<hkern g1="W.smcp"
|
|
2792
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2793
|
+
k="27" />
|
|
2794
|
+
<hkern g1="W.smcp"
|
|
2795
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2796
|
+
k="39" />
|
|
2797
|
+
<hkern g1="W.smcp"
|
|
2798
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2799
|
+
k="20" />
|
|
2800
|
+
<hkern g1="W.smcp"
|
|
2801
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2802
|
+
k="20" />
|
|
2803
|
+
<hkern g1="W.smcp"
|
|
2804
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2805
|
+
k="47" />
|
|
2806
|
+
<hkern g1="W.smcp"
|
|
2807
|
+
g2="ampersand"
|
|
2808
|
+
k="13" />
|
|
2809
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2810
|
+
g2="J,Jcircumflex"
|
|
2811
|
+
k="113" />
|
|
2812
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2813
|
+
g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
2814
|
+
k="20" />
|
|
2815
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2816
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2817
|
+
k="40" />
|
|
2818
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2819
|
+
g2="bullet.case"
|
|
2820
|
+
k="87" />
|
|
2821
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2822
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2823
|
+
k="97" />
|
|
2824
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2825
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
2826
|
+
k="49" />
|
|
2827
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2828
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
2829
|
+
k="26" />
|
|
2830
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2831
|
+
g2="u,uogonek,y.alt1"
|
|
2832
|
+
k="90" />
|
|
2833
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2834
|
+
g2="v"
|
|
2835
|
+
k="60" />
|
|
2836
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2837
|
+
g2="w"
|
|
2838
|
+
k="60" />
|
|
2839
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2840
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
2841
|
+
k="60" />
|
|
2842
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2843
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2844
|
+
k="76" />
|
|
2845
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2846
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2847
|
+
k="116" />
|
|
2848
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2849
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2850
|
+
k="69" />
|
|
2851
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2852
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2853
|
+
k="63" />
|
|
2854
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2855
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2856
|
+
k="90" />
|
|
2857
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2858
|
+
g2="ampersand"
|
|
2859
|
+
k="60" />
|
|
2860
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2861
|
+
g2="a,ae,aogonek,aeacute"
|
|
2862
|
+
k="121" />
|
|
2863
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2864
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
2865
|
+
k="127" />
|
|
2866
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2867
|
+
g2="x"
|
|
2868
|
+
k="73" />
|
|
2869
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2870
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
2871
|
+
k="116" />
|
|
2872
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2873
|
+
g2="Sacute.smcp,Scedilla.smcp,Scircumflex.smcp,Scommaaccent.smcp,Scaron.smcp,S.smcp"
|
|
2874
|
+
k="39" />
|
|
2875
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2876
|
+
g2="s,scedilla,scommaaccent"
|
|
2877
|
+
k="100" />
|
|
2878
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2879
|
+
g2="colon,semicolon"
|
|
2880
|
+
k="59" />
|
|
2881
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2882
|
+
g2="m,n,p,r,z,ncommaaccent,eng,rcommaaccent"
|
|
2883
|
+
k="90" />
|
|
2884
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2885
|
+
g2="Dcaron.smcp,Dcroat.smcp,Ecaron.smcp,Edotaccent.smcp,Emacron.smcp,Eogonek.smcp,Hcircumflex.smcp,Hbar.smcp,Imacron.smcp,Iogonek.smcp,Kcommaaccent.smcp,Lacute.smcp,Lcaron.smcp,Lcommaaccent.smcp,Nacute.smcp,Ncaron.smcp,Ncommaaccent.smcp,Racute.smcp,Rcaron.smcp,Rcommaaccent.smcp,Idotaccent.smcp,Lslash.smcp,B.smcp,D.smcp,E.smcp,F.smcp,H.smcp,I.smcp,K.smcp,L.smcp,M.smcp,N.smcp,P.smcp,R.smcp,Egrave.smcp,Eacute.smcp,Ecircumflex.smcp,Edieresis.smcp,Igrave.smcp,Iacute.smcp,Icircumflex.smcp,Idieresis.smcp,Eth.smcp,Ntilde.smcp"
|
|
2886
|
+
k="33" />
|
|
2887
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2888
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2889
|
+
k="35" />
|
|
2890
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2891
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
2892
|
+
k="30" />
|
|
2893
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2894
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2895
|
+
k="97" />
|
|
2896
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2897
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2898
|
+
k="40" />
|
|
2899
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2900
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2901
|
+
k="50" />
|
|
2902
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2903
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
2904
|
+
k="70" />
|
|
2905
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2906
|
+
g2="ampersand"
|
|
2907
|
+
k="43" />
|
|
2908
|
+
<hkern g1="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2909
|
+
g2="ampersand.smcp"
|
|
2910
|
+
k="53" />
|
|
2911
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron"
|
|
2912
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
2913
|
+
k="17" />
|
|
2914
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron"
|
|
2915
|
+
g2="bullet.case"
|
|
2916
|
+
k="58" />
|
|
2917
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron"
|
|
2918
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
2919
|
+
k="64" />
|
|
2920
|
+
<hkern g1="Zacute.smcp,Zdotaccent.smcp,Zcaron.smcp,Z.smcp"
|
|
2921
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2922
|
+
k="42" />
|
|
2923
|
+
<hkern g1="a,h,m,n,aogonek,hcircumflex,ncommaaccent,napostrophe,f_h"
|
|
2924
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2925
|
+
k="108" />
|
|
2926
|
+
<hkern g1="a,h,m,n,aogonek,hcircumflex,ncommaaccent,napostrophe,f_h"
|
|
2927
|
+
g2="V"
|
|
2928
|
+
k="66" />
|
|
2929
|
+
<hkern g1="a,h,m,n,aogonek,hcircumflex,ncommaaccent,napostrophe,f_h"
|
|
2930
|
+
g2="W,Wcircumflex"
|
|
2931
|
+
k="43" />
|
|
2932
|
+
<hkern g1="a,h,m,n,aogonek,hcircumflex,ncommaaccent,napostrophe,f_h"
|
|
2933
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2934
|
+
k="110" />
|
|
2935
|
+
<hkern g1="a,h,m,n,aogonek,hcircumflex,ncommaaccent,napostrophe,f_h"
|
|
2936
|
+
g2="question"
|
|
2937
|
+
k="36" />
|
|
2938
|
+
<hkern g1="a,h,m,n,aogonek,hcircumflex,ncommaaccent,napostrophe,f_h"
|
|
2939
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
2940
|
+
k="6" />
|
|
2941
|
+
<hkern g1="ampersand"
|
|
2942
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2943
|
+
k="74" />
|
|
2944
|
+
<hkern g1="ampersand"
|
|
2945
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2946
|
+
k="64" />
|
|
2947
|
+
<hkern g1="ampersand"
|
|
2948
|
+
g2="V"
|
|
2949
|
+
k="50" />
|
|
2950
|
+
<hkern g1="ampersand"
|
|
2951
|
+
g2="W,Wcircumflex"
|
|
2952
|
+
k="48" />
|
|
2953
|
+
<hkern g1="ampersand"
|
|
2954
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
2955
|
+
k="91" />
|
|
2956
|
+
<hkern g1="ampersand"
|
|
2957
|
+
g2="V.smcp"
|
|
2958
|
+
k="40" />
|
|
2959
|
+
<hkern g1="ampersand"
|
|
2960
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
2961
|
+
k="10" />
|
|
2962
|
+
<hkern g1="ampersand"
|
|
2963
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2964
|
+
k="64" />
|
|
2965
|
+
<hkern g1="ampersand.smcp"
|
|
2966
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2967
|
+
k="101" />
|
|
2968
|
+
<hkern g1="ampersand.smcp"
|
|
2969
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
2970
|
+
k="60" />
|
|
2971
|
+
<hkern g1="ampersand.smcp"
|
|
2972
|
+
g2="V"
|
|
2973
|
+
k="74" />
|
|
2974
|
+
<hkern g1="ampersand.smcp"
|
|
2975
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
2976
|
+
k="64" />
|
|
2977
|
+
<hkern g1="asterisk"
|
|
2978
|
+
g2="J,Jcircumflex"
|
|
2979
|
+
k="116" />
|
|
2980
|
+
<hkern g1="asterisk"
|
|
2981
|
+
g2="Jcircumflex.smcp,J.smcp"
|
|
2982
|
+
k="103" />
|
|
2983
|
+
<hkern g1="asterisk"
|
|
2984
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
2985
|
+
k="64" />
|
|
2986
|
+
<hkern g1="asterisk"
|
|
2987
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
2988
|
+
k="101" />
|
|
2989
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
2990
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
2991
|
+
k="115" />
|
|
2992
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
2993
|
+
g2="V"
|
|
2994
|
+
k="60" />
|
|
2995
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
2996
|
+
g2="W,Wcircumflex"
|
|
2997
|
+
k="40" />
|
|
2998
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
2999
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3000
|
+
k="124" />
|
|
3001
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
3002
|
+
g2="question"
|
|
3003
|
+
k="46" />
|
|
3004
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
3005
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
3006
|
+
k="10" />
|
|
3007
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
3008
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3009
|
+
k="7" />
|
|
3010
|
+
<hkern g1="b,o,p,oslash,thorn,f_b"
|
|
3011
|
+
g2="x"
|
|
3012
|
+
k="37" />
|
|
3013
|
+
<hkern g1="bullet"
|
|
3014
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
3015
|
+
k="10" />
|
|
3016
|
+
<hkern g1="bullet.case"
|
|
3017
|
+
g2="J,Jcircumflex"
|
|
3018
|
+
k="80" />
|
|
3019
|
+
<hkern g1="bullet.case"
|
|
3020
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3021
|
+
k="82" />
|
|
3022
|
+
<hkern g1="bullet.case"
|
|
3023
|
+
g2="V"
|
|
3024
|
+
k="47" />
|
|
3025
|
+
<hkern g1="bullet.case"
|
|
3026
|
+
g2="W,Wcircumflex"
|
|
3027
|
+
k="20" />
|
|
3028
|
+
<hkern g1="bullet.case"
|
|
3029
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3030
|
+
k="87" />
|
|
3031
|
+
<hkern g1="bullet.case"
|
|
3032
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
3033
|
+
k="37" />
|
|
3034
|
+
<hkern g1="bullet.case"
|
|
3035
|
+
g2="X"
|
|
3036
|
+
k="60" />
|
|
3037
|
+
<hkern g1="bullet.case"
|
|
3038
|
+
g2="Z,Zacute,Zdotaccent,Zcaron"
|
|
3039
|
+
k="58" />
|
|
3040
|
+
<hkern g1="c,cent,ccedilla"
|
|
3041
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3042
|
+
k="81" />
|
|
3043
|
+
<hkern g1="c,cent,ccedilla"
|
|
3044
|
+
g2="V"
|
|
3045
|
+
k="36" />
|
|
3046
|
+
<hkern g1="c,cent,ccedilla"
|
|
3047
|
+
g2="W,Wcircumflex"
|
|
3048
|
+
k="23" />
|
|
3049
|
+
<hkern g1="c,cent,ccedilla"
|
|
3050
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3051
|
+
k="63" />
|
|
3052
|
+
<hkern g1="c,cent,ccedilla"
|
|
3053
|
+
g2="question"
|
|
3054
|
+
k="23" />
|
|
3055
|
+
<hkern g1="c,cent,ccedilla"
|
|
3056
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
3057
|
+
k="3" />
|
|
3058
|
+
<hkern g1="colon,semicolon"
|
|
3059
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3060
|
+
k="50" />
|
|
3061
|
+
<hkern g1="colon,semicolon"
|
|
3062
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3063
|
+
k="59" />
|
|
3064
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3065
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3066
|
+
k="101" />
|
|
3067
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3068
|
+
g2="V"
|
|
3069
|
+
k="53" />
|
|
3070
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3071
|
+
g2="W,Wcircumflex"
|
|
3072
|
+
k="40" />
|
|
3073
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3074
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3075
|
+
k="110" />
|
|
3076
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3077
|
+
g2="question"
|
|
3078
|
+
k="36" />
|
|
3079
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3080
|
+
g2="asterisk"
|
|
3081
|
+
k="17" />
|
|
3082
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3083
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
3084
|
+
k="3" />
|
|
3085
|
+
<hkern g1="e,ae,eogonek,oe,aeacute,ae.alt1,aeacute.alt1"
|
|
3086
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3087
|
+
k="7" />
|
|
3088
|
+
<hkern g1="eth"
|
|
3089
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3090
|
+
k="7" />
|
|
3091
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3092
|
+
g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent"
|
|
3093
|
+
k="-23" />
|
|
3094
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3095
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3096
|
+
k="-40" />
|
|
3097
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3098
|
+
g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
3099
|
+
k="-40" />
|
|
3100
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3101
|
+
g2="V"
|
|
3102
|
+
k="-63" />
|
|
3103
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3104
|
+
g2="W,Wcircumflex"
|
|
3105
|
+
k="-63" />
|
|
3106
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3107
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3108
|
+
k="-56" />
|
|
3109
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3110
|
+
g2="question"
|
|
3111
|
+
k="-57" />
|
|
3112
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3113
|
+
g2="asterisk"
|
|
3114
|
+
k="-67" />
|
|
3115
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3116
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
3117
|
+
k="-67" />
|
|
3118
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3119
|
+
g2="X"
|
|
3120
|
+
k="-40" />
|
|
3121
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3122
|
+
g2="Z,Zacute,Zdotaccent,Zcaron"
|
|
3123
|
+
k="-40" />
|
|
3124
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3125
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3126
|
+
k="43" />
|
|
3127
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3128
|
+
g2="ampersand"
|
|
3129
|
+
k="3" />
|
|
3130
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3131
|
+
g2="ampersand.smcp"
|
|
3132
|
+
k="3" />
|
|
3133
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3134
|
+
g2="parenright,bracketright,braceright,parenright.case,bracketright.case,braceright.case"
|
|
3135
|
+
k="-74" />
|
|
3136
|
+
<hkern g1="f,longs,f.alt1,f_f"
|
|
3137
|
+
g2="exclam,B,D,E,F,H,I,K,L,M,N,P,R,Egrave,Eacute,Ecircumflex,Edieresis,Igrave,Iacute,Icircumflex,Idieresis,Eth,Ntilde,Dcaron,Dcroat,Emacron,Edotaccent,Eogonek,Ecaron,Hcircumflex,Hbar,Imacron,Iogonek,Kcommaaccent,Lacute,Lcommaaccent,Lcaron,Lslash,Nacute,Ncommaaccent,Ncaron,Racute,Rcommaaccent,Rcaron"
|
|
3138
|
+
k="-40" />
|
|
3139
|
+
<hkern g1="g,q,eng,y.alt1"
|
|
3140
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3141
|
+
k="85" />
|
|
3142
|
+
<hkern g1="g,q,eng,y.alt1"
|
|
3143
|
+
g2="V"
|
|
3144
|
+
k="42" />
|
|
3145
|
+
<hkern g1="g,q,eng,y.alt1"
|
|
3146
|
+
g2="W,Wcircumflex"
|
|
3147
|
+
k="30" />
|
|
3148
|
+
<hkern g1="g,q,eng,y.alt1"
|
|
3149
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3150
|
+
k="90" />
|
|
3151
|
+
<hkern g1="g,q,eng,y.alt1"
|
|
3152
|
+
g2="question"
|
|
3153
|
+
k="23" />
|
|
3154
|
+
<hkern g1="g,q,eng,y.alt1"
|
|
3155
|
+
g2="j,jcircumflex"
|
|
3156
|
+
k="-46" />
|
|
3157
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3158
|
+
g2="J,Jcircumflex"
|
|
3159
|
+
k="67" />
|
|
3160
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3161
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3162
|
+
k="50" />
|
|
3163
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3164
|
+
g2="V"
|
|
3165
|
+
k="30" />
|
|
3166
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3167
|
+
g2="W,Wcircumflex"
|
|
3168
|
+
k="3" />
|
|
3169
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3170
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3171
|
+
k="97" />
|
|
3172
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3173
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
3174
|
+
k="47" />
|
|
3175
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3176
|
+
g2="X"
|
|
3177
|
+
k="77" />
|
|
3178
|
+
<hkern g1="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3179
|
+
g2="Z,Zacute,Zdotaccent,Zcaron"
|
|
3180
|
+
k="64" />
|
|
3181
|
+
<hkern g1="hyphen,periodcentered,endash,emdash"
|
|
3182
|
+
g2="V"
|
|
3183
|
+
k="53" />
|
|
3184
|
+
<hkern g1="hyphen,periodcentered,endash,emdash"
|
|
3185
|
+
g2="W,Wcircumflex"
|
|
3186
|
+
k="33" />
|
|
3187
|
+
<hkern g1="hyphen,periodcentered,endash,emdash"
|
|
3188
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3189
|
+
k="109" />
|
|
3190
|
+
<hkern g1="hyphen,periodcentered,endash,emdash"
|
|
3191
|
+
g2="X"
|
|
3192
|
+
k="43" />
|
|
3193
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3194
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3195
|
+
k="69" />
|
|
3196
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3197
|
+
g2="V"
|
|
3198
|
+
k="23" />
|
|
3199
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3200
|
+
g2="W,Wcircumflex"
|
|
3201
|
+
k="23" />
|
|
3202
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3203
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3204
|
+
k="66" />
|
|
3205
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3206
|
+
g2="bullet"
|
|
3207
|
+
k="27" />
|
|
3208
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3209
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
3210
|
+
k="3" />
|
|
3211
|
+
<hkern g1="k,kcommaaccent,kgreenlandic,f_k"
|
|
3212
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
3213
|
+
k="27" />
|
|
3214
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3215
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3216
|
+
k="93" />
|
|
3217
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3218
|
+
g2="Tbar.smcp,Tcaron.smcp,Tcommaaccent.smcp,T.smcp"
|
|
3219
|
+
k="60" />
|
|
3220
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3221
|
+
g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek"
|
|
3222
|
+
k="30" />
|
|
3223
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3224
|
+
g2="V"
|
|
3225
|
+
k="87" />
|
|
3226
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3227
|
+
g2="W,Wcircumflex"
|
|
3228
|
+
k="67" />
|
|
3229
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3230
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3231
|
+
k="90" />
|
|
3232
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3233
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
3234
|
+
k="76" />
|
|
3235
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3236
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
3237
|
+
k="23" />
|
|
3238
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3239
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
3240
|
+
k="23" />
|
|
3241
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3242
|
+
g2="v"
|
|
3243
|
+
k="67" />
|
|
3244
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3245
|
+
g2="w"
|
|
3246
|
+
k="44" />
|
|
3247
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3248
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
3249
|
+
k="57" />
|
|
3250
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3251
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
3252
|
+
k="21" />
|
|
3253
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3254
|
+
g2="Ubreve.smcp,Uhungarumlaut.smcp,Umacron.smcp,Uogonek.smcp,Uring.smcp,U.smcp,Ugrave.smcp,Uacute.smcp,Ucircumflex.smcp,Udieresis.smcp"
|
|
3255
|
+
k="14" />
|
|
3256
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3257
|
+
g2="V.smcp"
|
|
3258
|
+
k="42" />
|
|
3259
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3260
|
+
g2="Wcircumflex.smcp,W.smcp"
|
|
3261
|
+
k="47" />
|
|
3262
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3263
|
+
g2="Ycircumflex.smcp,Y.smcp,Yacute.smcp,Ydieresis.smcp"
|
|
3264
|
+
k="70" />
|
|
3265
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3266
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
3267
|
+
k="7" />
|
|
3268
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3269
|
+
g2="j,jcircumflex"
|
|
3270
|
+
k="-40" />
|
|
3271
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3272
|
+
g2="one"
|
|
3273
|
+
k="78" />
|
|
3274
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3275
|
+
g2="zero,six"
|
|
3276
|
+
k="31" />
|
|
3277
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3278
|
+
g2="seven"
|
|
3279
|
+
k="66" />
|
|
3280
|
+
<hkern g1="questiondown"
|
|
3281
|
+
g2="j,jcircumflex"
|
|
3282
|
+
k="-160" />
|
|
3283
|
+
<hkern g1="questiondown.case"
|
|
3284
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3285
|
+
k="104" />
|
|
3286
|
+
<hkern g1="questiondown.case"
|
|
3287
|
+
g2="V"
|
|
3288
|
+
k="73" />
|
|
3289
|
+
<hkern g1="questiondown.case"
|
|
3290
|
+
g2="W,Wcircumflex"
|
|
3291
|
+
k="63" />
|
|
3292
|
+
<hkern g1="questiondown.case"
|
|
3293
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3294
|
+
k="93" />
|
|
3295
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3296
|
+
g2="J,Jcircumflex"
|
|
3297
|
+
k="92" />
|
|
3298
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3299
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
3300
|
+
k="3" />
|
|
3301
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3302
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
3303
|
+
k="20" />
|
|
3304
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3305
|
+
g2="Abreve.smcp,Amacron.smcp,Aogonek.smcp,AEacute.smcp,A.smcp,Agrave.smcp,Aacute.smcp,Acircumflex.smcp,Atilde.smcp,Adieresis.smcp,Aring.smcp,AE.smcp"
|
|
3306
|
+
k="80" />
|
|
3307
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3308
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
3309
|
+
k="104" />
|
|
3310
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3311
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3312
|
+
k="76" />
|
|
3313
|
+
<hkern g1="quotedbl,quotesingle,quoteleft,quoteright,quotedblleft,quotedblright"
|
|
3314
|
+
g2="s,scedilla,scommaaccent"
|
|
3315
|
+
k="30" />
|
|
3316
|
+
<hkern g1="r,racute,rcommaaccent,rcaron"
|
|
3317
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3318
|
+
k="48" />
|
|
3319
|
+
<hkern g1="r,racute,rcommaaccent,rcaron"
|
|
3320
|
+
g2="V"
|
|
3321
|
+
k="23" />
|
|
3322
|
+
<hkern g1="r,racute,rcommaaccent,rcaron"
|
|
3323
|
+
g2="W,Wcircumflex"
|
|
3324
|
+
k="6" />
|
|
3325
|
+
<hkern g1="r,racute,rcommaaccent,rcaron"
|
|
3326
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3327
|
+
k="50" />
|
|
3328
|
+
<hkern g1="r,racute,rcommaaccent,rcaron"
|
|
3329
|
+
g2="X"
|
|
3330
|
+
k="9" />
|
|
3331
|
+
<hkern g1="r,racute,rcommaaccent,rcaron"
|
|
3332
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3333
|
+
k="83" />
|
|
3334
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3335
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3336
|
+
k="88" />
|
|
3337
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3338
|
+
g2="V"
|
|
3339
|
+
k="43" />
|
|
3340
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3341
|
+
g2="W,Wcircumflex"
|
|
3342
|
+
k="39" />
|
|
3343
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3344
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3345
|
+
k="93" />
|
|
3346
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3347
|
+
g2="question"
|
|
3348
|
+
k="43" />
|
|
3349
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3350
|
+
g2="quotedbl,quotesingle,registered,quoteleft,quoteright,quotedblleft,quotedblright,trademark"
|
|
3351
|
+
k="20" />
|
|
3352
|
+
<hkern g1="s,scedilla,scommaaccent"
|
|
3353
|
+
g2="X"
|
|
3354
|
+
k="3" />
|
|
3355
|
+
<hkern g1="t,tcommaaccent,tbar"
|
|
3356
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3357
|
+
k="52" />
|
|
3358
|
+
<hkern g1="t,tcommaaccent,tbar"
|
|
3359
|
+
g2="V"
|
|
3360
|
+
k="26" />
|
|
3361
|
+
<hkern g1="t,tcommaaccent,tbar"
|
|
3362
|
+
g2="W,Wcircumflex"
|
|
3363
|
+
k="13" />
|
|
3364
|
+
<hkern g1="t,tcommaaccent,tbar"
|
|
3365
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3366
|
+
k="33" />
|
|
3367
|
+
<hkern g1="u,z,uogonek,a.alt1,aogonek.alt1"
|
|
3368
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3369
|
+
k="85" />
|
|
3370
|
+
<hkern g1="u,z,uogonek,a.alt1,aogonek.alt1"
|
|
3371
|
+
g2="V"
|
|
3372
|
+
k="42" />
|
|
3373
|
+
<hkern g1="u,z,uogonek,a.alt1,aogonek.alt1"
|
|
3374
|
+
g2="W,Wcircumflex"
|
|
3375
|
+
k="30" />
|
|
3376
|
+
<hkern g1="u,z,uogonek,a.alt1,aogonek.alt1"
|
|
3377
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3378
|
+
k="90" />
|
|
3379
|
+
<hkern g1="u,z,uogonek,a.alt1,aogonek.alt1"
|
|
3380
|
+
g2="question"
|
|
3381
|
+
k="23" />
|
|
3382
|
+
<hkern g1="v"
|
|
3383
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3384
|
+
k="56" />
|
|
3385
|
+
<hkern g1="v"
|
|
3386
|
+
g2="V"
|
|
3387
|
+
k="13" />
|
|
3388
|
+
<hkern g1="v"
|
|
3389
|
+
g2="W,Wcircumflex"
|
|
3390
|
+
k="3" />
|
|
3391
|
+
<hkern g1="v"
|
|
3392
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3393
|
+
k="60" />
|
|
3394
|
+
<hkern g1="v"
|
|
3395
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
3396
|
+
k="20" />
|
|
3397
|
+
<hkern g1="v"
|
|
3398
|
+
g2="X"
|
|
3399
|
+
k="37" />
|
|
3400
|
+
<hkern g1="v"
|
|
3401
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3402
|
+
k="67" />
|
|
3403
|
+
<hkern g1="w"
|
|
3404
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3405
|
+
k="56" />
|
|
3406
|
+
<hkern g1="w"
|
|
3407
|
+
g2="V"
|
|
3408
|
+
k="6" />
|
|
3409
|
+
<hkern g1="w"
|
|
3410
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3411
|
+
k="60" />
|
|
3412
|
+
<hkern g1="w"
|
|
3413
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
3414
|
+
k="17" />
|
|
3415
|
+
<hkern g1="w"
|
|
3416
|
+
g2="X"
|
|
3417
|
+
k="44" />
|
|
3418
|
+
<hkern g1="w"
|
|
3419
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3420
|
+
k="44" />
|
|
3421
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3422
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3423
|
+
k="56" />
|
|
3424
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3425
|
+
g2="V"
|
|
3426
|
+
k="6" />
|
|
3427
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3428
|
+
g2="W,Wcircumflex"
|
|
3429
|
+
k="3" />
|
|
3430
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3431
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3432
|
+
k="60" />
|
|
3433
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3434
|
+
g2="question"
|
|
3435
|
+
k="3" />
|
|
3436
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3437
|
+
g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,AE,Amacron,Abreve,Aogonek,AEacute,Delta"
|
|
3438
|
+
k="20" />
|
|
3439
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3440
|
+
g2="X"
|
|
3441
|
+
k="37" />
|
|
3442
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex"
|
|
3443
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3444
|
+
k="57" />
|
|
3445
|
+
<hkern g1="X"
|
|
3446
|
+
g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,Oslashacute,G.alt1,Gbreve.alt1,Gcommaaccent.alt1,Gcircumflex.alt1,Gdotaccent.alt1"
|
|
3447
|
+
k="30" />
|
|
3448
|
+
<hkern g1="X"
|
|
3449
|
+
g2="bullet.case"
|
|
3450
|
+
k="60" />
|
|
3451
|
+
<hkern g1="X"
|
|
3452
|
+
g2="hyphen.case,endash.case,emdash.case,periodcentered.case"
|
|
3453
|
+
k="77" />
|
|
3454
|
+
<hkern g1="X"
|
|
3455
|
+
g2="f,longs,f_f_j,f_j,f.alt1,f_h,f_k,fl.alt1,f_f_l.alt1,f_f,fi,fl,f_f_i,f_f_l"
|
|
3456
|
+
k="30" />
|
|
3457
|
+
<hkern g1="X"
|
|
3458
|
+
g2="t,tcommaaccent,tcaron,tbar"
|
|
3459
|
+
k="30" />
|
|
3460
|
+
<hkern g1="X"
|
|
3461
|
+
g2="v"
|
|
3462
|
+
k="37" />
|
|
3463
|
+
<hkern g1="X"
|
|
3464
|
+
g2="w"
|
|
3465
|
+
k="44" />
|
|
3466
|
+
<hkern g1="X"
|
|
3467
|
+
g2="y,yacute,ydieresis,ycircumflex"
|
|
3468
|
+
k="37" />
|
|
3469
|
+
<hkern g1="X"
|
|
3470
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
3471
|
+
k="54" />
|
|
3472
|
+
<hkern g1="X"
|
|
3473
|
+
g2="hyphen,periodcentered,endash,emdash"
|
|
3474
|
+
k="43" />
|
|
3475
|
+
<hkern g1="X.smcp"
|
|
3476
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3477
|
+
k="35" />
|
|
3478
|
+
<hkern g1="X.smcp"
|
|
3479
|
+
g2="G.smcp.alt1,Gbreve.smcp.alt1,Gcommaaccent.smcp.alt1,Gcircumflex.smcp.alt1,Gdotaccent.smcp.alt1,Cacute.smcp,Ccaron.smcp,Ccircumflex.smcp,Cdotaccent.smcp,Gbreve.smcp,Gcircumflex.smcp,Gcommaaccent.smcp,Gdotaccent.smcp,Obreve.smcp,Ohungarumlaut.smcp,Omacron.smcp,Oslashacute.smcp,OE.smcp,C.smcp,G.smcp,O.smcp,Q.smcp,Ccedilla.smcp,Ograve.smcp,Oacute.smcp,Ocircumflex.smcp,Otilde.smcp,Odieresis.smcp,Oslash.smcp"
|
|
3480
|
+
k="23" />
|
|
3481
|
+
<hkern g1="X.smcp"
|
|
3482
|
+
g2="ampersand"
|
|
3483
|
+
k="20" />
|
|
3484
|
+
<hkern g1="zero,nine"
|
|
3485
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3486
|
+
k="31" />
|
|
3487
|
+
<hkern g1="seven"
|
|
3488
|
+
g2="comma,period,quotesinglbase,quotedblbase,ellipsis"
|
|
3489
|
+
k="97" />
|
|
3490
|
+
<hkern g1="x"
|
|
3491
|
+
g2="T,Tcommaaccent,Tcaron,Tbar"
|
|
3492
|
+
k="66" />
|
|
3493
|
+
<hkern g1="x"
|
|
3494
|
+
g2="V"
|
|
3495
|
+
k="23" />
|
|
3496
|
+
<hkern g1="x"
|
|
3497
|
+
g2="W,Wcircumflex"
|
|
3498
|
+
k="23" />
|
|
3499
|
+
<hkern g1="x"
|
|
3500
|
+
g2="Y,Yacute,Ycircumflex,Ydieresis"
|
|
3501
|
+
k="73" />
|
|
3502
|
+
<hkern g1="x"
|
|
3503
|
+
g2="c,d,e,g,o,q,ccedilla,eth,oslash,dcaron,eogonek,oe,a.alt1,aogonek.alt1,ae.alt1,aeacute.alt1"
|
|
3504
|
+
k="37" />
|
|
3505
|
+
<hkern g1="parenleft,bracketleft,braceleft,parenleft.case,bracketleft.case,braceleft.case"
|
|
3506
|
+
g2="j,jcircumflex"
|
|
3507
|
+
k="-110" />
|
|
3508
|
+
<hkern g1="one.numr"
|
|
3509
|
+
g2="fraction"
|
|
3510
|
+
k="-35" />
|
|
3511
|
+
<hkern g1="seven.numr"
|
|
3512
|
+
g2="fraction"
|
|
3513
|
+
k="50" />
|
|
3514
|
+
<hkern g1="fraction"
|
|
3515
|
+
g2="four.dnom"
|
|
3516
|
+
k="50" />
|
|
3517
|
+
<hkern g1="fraction"
|
|
3518
|
+
g2="one.dnom"
|
|
3519
|
+
k="-22" />
|
|
3520
|
+
</font>
|
|
3521
|
+
</defs></svg>
|