| 159 | return d |
| 160 | |
| 161 | class CFFFont(object): |
| 162 | |
| 163 | STANDARD_STRINGS = ( |
| 164 | '.notdef', 'space', 'exclam', 'quotedbl', 'numbersign', |
| 165 | 'dollar', 'percent', 'ampersand', 'quoteright', 'parenleft', |
| 166 | 'parenright', 'asterisk', 'plus', 'comma', 'hyphen', 'period', |
| 167 | 'slash', 'zero', 'one', 'two', 'three', 'four', 'five', 'six', |
| 168 | 'seven', 'eight', 'nine', 'colon', 'semicolon', 'less', 'equal', |
| 169 | 'greater', 'question', 'at', 'A', 'B', 'C', 'D', 'E', 'F', 'G', |
| 170 | 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', |
| 171 | 'U', 'V', 'W', 'X', 'Y', 'Z', 'bracketleft', 'backslash', |
| 172 | 'bracketright', 'asciicircum', 'underscore', 'quoteleft', 'a', |
| 173 | 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', |
| 174 | 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', |
| 175 | 'braceleft', 'bar', 'braceright', 'asciitilde', 'exclamdown', |
| 176 | 'cent', 'sterling', 'fraction', 'yen', 'florin', 'section', |
| 177 | 'currency', 'quotesingle', 'quotedblleft', 'guillemotleft', |
| 178 | 'guilsinglleft', 'guilsinglright', 'fi', 'fl', 'endash', |
| 179 | 'dagger', 'daggerdbl', 'periodcentered', 'paragraph', 'bullet', |
| 180 | 'quotesinglbase', 'quotedblbase', 'quotedblright', |
| 181 | 'guillemotright', 'ellipsis', 'perthousand', 'questiondown', |
| 182 | 'grave', 'acute', 'circumflex', 'tilde', 'macron', 'breve', |
| 183 | 'dotaccent', 'dieresis', 'ring', 'cedilla', 'hungarumlaut', |
| 184 | 'ogonek', 'caron', 'emdash', 'AE', 'ordfeminine', 'Lslash', |
| 185 | 'Oslash', 'OE', 'ordmasculine', 'ae', 'dotlessi', 'lslash', |
| 186 | 'oslash', 'oe', 'germandbls', 'onesuperior', 'logicalnot', 'mu', |
| 187 | 'trademark', 'Eth', 'onehalf', 'plusminus', 'Thorn', |
| 188 | 'onequarter', 'divide', 'brokenbar', 'degree', 'thorn', |
| 189 | 'threequarters', 'twosuperior', 'registered', 'minus', 'eth', |
| 190 | 'multiply', 'threesuperior', 'copyright', 'Aacute', |
| 191 | 'Acircumflex', 'Adieresis', 'Agrave', 'Aring', 'Atilde', |
| 192 | 'Ccedilla', 'Eacute', 'Ecircumflex', 'Edieresis', 'Egrave', |
| 193 | 'Iacute', 'Icircumflex', 'Idieresis', 'Igrave', 'Ntilde', |
| 194 | 'Oacute', 'Ocircumflex', 'Odieresis', 'Ograve', 'Otilde', |
| 195 | 'Scaron', 'Uacute', 'Ucircumflex', 'Udieresis', 'Ugrave', |
| 196 | 'Yacute', 'Ydieresis', 'Zcaron', 'aacute', 'acircumflex', |
| 197 | 'adieresis', 'agrave', 'aring', 'atilde', 'ccedilla', 'eacute', |
| 198 | 'ecircumflex', 'edieresis', 'egrave', 'iacute', 'icircumflex', |
| 199 | 'idieresis', 'igrave', 'ntilde', 'oacute', 'ocircumflex', |
| 200 | 'odieresis', 'ograve', 'otilde', 'scaron', 'uacute', |
| 201 | 'ucircumflex', 'udieresis', 'ugrave', 'yacute', 'ydieresis', |
| 202 | 'zcaron', 'exclamsmall', 'Hungarumlautsmall', 'dollaroldstyle', |
| 203 | 'dollarsuperior', 'ampersandsmall', 'Acutesmall', |
| 204 | 'parenleftsuperior', 'parenrightsuperior', 'twodotenleader', |
| 205 | 'onedotenleader', 'zerooldstyle', 'oneoldstyle', 'twooldstyle', |
| 206 | 'threeoldstyle', 'fouroldstyle', 'fiveoldstyle', 'sixoldstyle', |
| 207 | 'sevenoldstyle', 'eightoldstyle', 'nineoldstyle', |
| 208 | 'commasuperior', 'threequartersemdash', 'periodsuperior', |
| 209 | 'questionsmall', 'asuperior', 'bsuperior', 'centsuperior', |
| 210 | 'dsuperior', 'esuperior', 'isuperior', 'lsuperior', 'msuperior', |
| 211 | 'nsuperior', 'osuperior', 'rsuperior', 'ssuperior', 'tsuperior', |
| 212 | 'ff', 'ffi', 'ffl', 'parenleftinferior', 'parenrightinferior', |
| 213 | 'Circumflexsmall', 'hyphensuperior', 'Gravesmall', 'Asmall', |
| 214 | 'Bsmall', 'Csmall', 'Dsmall', 'Esmall', 'Fsmall', 'Gsmall', |
| 215 | 'Hsmall', 'Ismall', 'Jsmall', 'Ksmall', 'Lsmall', 'Msmall', |
| 216 | 'Nsmall', 'Osmall', 'Psmall', 'Qsmall', 'Rsmall', 'Ssmall', |
| 217 | 'Tsmall', 'Usmall', 'Vsmall', 'Wsmall', 'Xsmall', 'Ysmall', |
| 218 | 'Zsmall', 'colonmonetary', 'onefitted', 'rupiah', 'Tildesmall', |
no outgoing calls
no test coverage detected
searching dependent graphs…