1
2use serde::{Deserialize, Serialize};
3use strum::{Display, EnumCount, EnumIter, EnumString, AsRefStr};
4use crate::family::Family;
5use crate::font::Font;
6
7#[derive(Debug, Display, Clone, Copy, Hash, Eq, PartialEq, Ord, PartialOrd, Serialize, Deserialize, EnumCount, EnumIter, EnumString, AsRefStr)]
11pub enum Category {
12 Display,
14 Handwriting,
16 Monospace,
18 SansSerif,
20 Serif,
22}
23
24impl Category {
25
26 pub fn name(&self) -> String {
28 match self {
29 Category::Display => "Display".into(),
30 Category::Handwriting => "Handwriting".into(),
31 Category::Monospace => "Monospace".into(),
32 Category::SansSerif => "Sans Serif".into(),
33 Category::Serif => "Serif".into(),
34 }
35 }
36
37 pub fn families(&self) -> Vec<Family> {
39 match self {
40 Category::Display => {
41 vec![
42 #[cfg(feature = "static")]
43 Family::ADLaMDisplay,
44 #[cfg(feature = "static")]
45 Family::Aboreto,
46 #[cfg(feature = "static")]
47 Family::AbrilFatface,
48 #[cfg(feature = "static")]
49 Family::Agbalumo,
50 #[cfg(feature = "static")]
51 Family::AkayaKanadaka,
52 #[cfg(feature = "static")]
53 Family::AkayaTelivigala,
54 #[cfg(feature = "static")]
55 Family::Akronim,
56 #[cfg(feature = "static")]
57 Family::Aladin,
58 #[cfg(feature = "static")]
59 Family::AlfaSlabOne,
60 #[cfg(any(feature = "variable", feature = "static"))]
61 Family::Alkatra,
62 #[cfg(feature = "static")]
63 Family::Allan,
64 #[cfg(feature = "static")]
65 Family::AlmendraDisplay,
66 #[cfg(feature = "static")]
67 Family::AlumniSansInlineOne,
68 #[cfg(feature = "static")]
69 Family::Amarante,
70 #[cfg(feature = "static")]
71 Family::Angkor,
72 #[cfg(any(feature = "variable", feature = "static"))]
73 Family::Anybody,
74 #[cfg(any(feature = "variable", feature = "static"))]
75 Family::Arima,
76 #[cfg(feature = "static")]
77 Family::Asset,
78 #[cfg(feature = "static")]
79 Family::Astloch,
80 #[cfg(feature = "static")]
81 Family::Atma,
82 #[cfg(feature = "static")]
83 Family::AtomicAge,
84 #[cfg(feature = "static")]
85 Family::Aubrey,
86 #[cfg(feature = "static")]
87 Family::Audiowide,
88 #[cfg(feature = "static")]
89 Family::AutourOne,
90 #[cfg(feature = "static")]
91 Family::AveriaGruesaLibre,
92 #[cfg(feature = "static")]
93 Family::AveriaLibre,
94 #[cfg(feature = "static")]
95 Family::AveriaSansLibre,
96 #[cfg(feature = "static")]
97 Family::AveriaSerifLibre,
98 #[cfg(feature = "static")]
99 Family::BagelFatOne,
100 #[cfg(feature = "static")]
101 Family::Bahiana,
102 #[cfg(feature = "static")]
103 Family::Bahianita,
104 #[cfg(feature = "static")]
105 Family::BakbakOne,
106 #[cfg(any(feature = "variable", feature = "static"))]
107 Family::Baloo2,
108 #[cfg(any(feature = "variable", feature = "static"))]
109 Family::BalooBhai2,
110 #[cfg(any(feature = "variable", feature = "static"))]
111 Family::BalooBhaijaan2,
112 #[cfg(any(feature = "variable", feature = "static"))]
113 Family::BalooBhaina2,
114 #[cfg(any(feature = "variable", feature = "static"))]
115 Family::BalooChettan2,
116 #[cfg(any(feature = "variable", feature = "static"))]
117 Family::BalooDa2,
118 #[cfg(any(feature = "variable", feature = "static"))]
119 Family::BalooPaaji2,
120 #[cfg(any(feature = "variable", feature = "static"))]
121 Family::BalooTamma2,
122 #[cfg(any(feature = "variable", feature = "static"))]
123 Family::BalooTammudu2,
124 #[cfg(any(feature = "variable", feature = "static"))]
125 Family::BalooThambi2,
126 #[cfg(feature = "static")]
127 Family::BalsamiqSans,
128 #[cfg(feature = "static")]
129 Family::Bangers,
130 #[cfg(feature = "static")]
131 Family::Barriecito,
132 #[cfg(feature = "static")]
133 Family::Barrio,
134 #[cfg(feature = "static")]
135 Family::Battambang,
136 #[cfg(feature = "static")]
137 Family::Baumans,
138 #[cfg(feature = "static")]
139 Family::Bellota,
140 #[cfg(feature = "static")]
141 Family::BellotaText,
142 #[cfg(any(feature = "variable", feature = "static"))]
143 Family::BigShouldersDisplay,
144 #[cfg(any(feature = "variable", feature = "static"))]
145 Family::BigShouldersInlineDisplay,
146 #[cfg(any(feature = "variable", feature = "static"))]
147 Family::BigShouldersInlineText,
148 #[cfg(any(feature = "variable", feature = "static"))]
149 Family::BigShouldersStencilDisplay,
150 #[cfg(any(feature = "variable", feature = "static"))]
151 Family::BigShouldersStencilText,
152 #[cfg(any(feature = "variable", feature = "static"))]
153 Family::BigShouldersText,
154 #[cfg(feature = "static")]
155 Family::BigelowRules,
156 #[cfg(feature = "static")]
157 Family::BigshotOne,
158 #[cfg(feature = "static")]
159 Family::BlackAndWhitePicture,
160 #[cfg(feature = "static")]
161 Family::BlackOpsOne,
162 #[cfg(feature = "static")]
163 Family::Blaka,
164 #[cfg(feature = "static")]
165 Family::BlakaHollow,
166 #[cfg(feature = "static")]
167 Family::BlakaInk,
168 #[cfg(feature = "static")]
169 Family::Bokor,
170 #[cfg(feature = "static")]
171 Family::Boogaloo,
172 #[cfg(feature = "static")]
173 Family::BowlbyOne,
174 #[cfg(feature = "static")]
175 Family::BowlbyOneSC,
176 #[cfg(feature = "static")]
177 Family::BrunoAce,
178 #[cfg(feature = "static")]
179 Family::BrunoAceSC,
180 #[cfg(feature = "static")]
181 Family::BubblegumSans,
182 #[cfg(feature = "static")]
183 Family::Buda,
184 #[cfg(feature = "static")]
185 Family::Bungee,
186 #[cfg(feature = "static")]
187 Family::BungeeHairline,
188 #[cfg(feature = "static")]
189 Family::BungeeInline,
190 #[cfg(feature = "static")]
191 Family::BungeeOutline,
192 #[cfg(feature = "static")]
193 Family::BungeeShade,
194 #[cfg(feature = "static")]
195 Family::BungeeSpice,
196 #[cfg(feature = "static")]
197 Family::Butcherman,
198 #[cfg(feature = "static")]
199 Family::CabinSketch,
200 #[cfg(feature = "static")]
201 Family::CaesarDressing,
202 #[cfg(feature = "static")]
203 Family::Calistoga,
204 #[cfg(feature = "static")]
205 Family::Caprasimo,
206 #[cfg(feature = "static")]
207 Family::CarterOne,
208 #[cfg(feature = "static")]
209 Family::CastoroTitling,
210 #[cfg(feature = "static")]
211 Family::CevicheOne,
212 #[cfg(feature = "static")]
213 Family::ChangaOne,
214 #[cfg(feature = "static")]
215 Family::Chango,
216 #[cfg(feature = "static")]
217 Family::ChelaOne,
218 #[cfg(feature = "static")]
219 Family::ChelseaMarket,
220 #[cfg(feature = "static")]
221 Family::Chenla,
222 #[cfg(feature = "static")]
223 Family::CherryBombOne,
224 #[cfg(feature = "static")]
225 Family::CherryCreamSoda,
226 #[cfg(feature = "static")]
227 Family::CherrySwash,
228 #[cfg(feature = "static")]
229 Family::Chewy,
230 #[cfg(feature = "static")]
231 Family::Chicle,
232 #[cfg(feature = "static")]
233 Family::Chokokutai,
234 #[cfg(feature = "static")]
235 Family::Chonburi,
236 #[cfg(feature = "static")]
237 Family::CinzelDecorative,
238 #[cfg(any(feature = "variable", feature = "static"))]
239 Family::ClimateCrisis,
240 #[cfg(feature = "static")]
241 Family::Coda,
242 #[cfg(feature = "static")]
243 Family::Codystar,
244 #[cfg(feature = "static")]
245 Family::Coiny,
246 #[cfg(feature = "static")]
247 Family::Combo,
248 #[cfg(any(feature = "variable", feature = "static"))]
249 Family::Comfortaa,
250 #[cfg(feature = "static")]
251 Family::ConcertOne,
252 #[cfg(feature = "static")]
253 Family::Content,
254 #[cfg(feature = "static")]
255 Family::ContrailOne,
256 #[cfg(feature = "static")]
257 Family::Corben,
258 #[cfg(feature = "static")]
259 Family::Creepster,
260 #[cfg(feature = "static")]
261 Family::CroissantOne,
262 #[cfg(feature = "static")]
263 Family::Crushed,
264 #[cfg(feature = "static")]
265 Family::CuteFont,
266 #[cfg(feature = "static")]
267 Family::Dangrek,
268 #[cfg(feature = "static")]
269 Family::DarumadropOne,
270 #[cfg(feature = "static")]
271 Family::DelaGothicOne,
272 #[cfg(feature = "static")]
273 Family::Diplomata,
274 #[cfg(feature = "static")]
275 Family::DiplomataSC,
276 #[cfg(feature = "static")]
277 Family::Dokdo,
278 #[cfg(any(feature = "variable", feature = "static"))]
279 Family::DynaPuff,
280 #[cfg(feature = "static")]
281 Family::Dynalight,
282 #[cfg(feature = "static")]
283 Family::Eater,
284 #[cfg(feature = "static")]
285 Family::Elsie,
286 #[cfg(feature = "static")]
287 Family::ElsieSwashCaps,
288 #[cfg(feature = "static")]
289 Family::EmblemaOne,
290 #[cfg(feature = "static")]
291 Family::EmilysCandy,
292 #[cfg(feature = "static")]
293 Family::EricaOne,
294 #[cfg(feature = "static")]
295 Family::Ewert,
296 #[cfg(any(feature = "variable", feature = "static"))]
297 Family::ExpletusSans,
298 #[cfg(feature = "static")]
299 Family::Farsan,
300 #[cfg(feature = "static")]
301 Family::Fascinate,
302 #[cfg(feature = "static")]
303 Family::FascinateInline,
304 #[cfg(feature = "static")]
305 Family::FasterOne,
306 #[cfg(feature = "static")]
307 Family::Fasthand,
308 #[cfg(feature = "static")]
309 Family::Federant,
310 #[cfg(feature = "static")]
311 Family::FingerPaint,
312 #[cfg(feature = "static")]
313 Family::Flamenco,
314 #[cfg(feature = "static")]
315 Family::Flavors,
316 #[cfg(feature = "static")]
317 Family::FlowBlock,
318 #[cfg(feature = "static")]
319 Family::FlowCircular,
320 #[cfg(feature = "static")]
321 Family::FlowRounded,
322 #[cfg(any(feature = "variable", feature = "static"))]
323 Family::Foldit,
324 #[cfg(feature = "static")]
325 Family::FontdinerSwanky,
326 #[cfg(feature = "static")]
327 Family::Forum,
328 #[cfg(feature = "static")]
329 Family::FreckleFace,
330 #[cfg(feature = "static")]
331 Family::FrederickatheGreat,
332 #[cfg(feature = "static")]
333 Family::Freehand,
334 #[cfg(feature = "static")]
335 Family::Freeman,
336 #[cfg(feature = "static")]
337 Family::Frijole,
338 #[cfg(feature = "static")]
339 Family::Fruktur,
340 #[cfg(feature = "static")]
341 Family::FugazOne,
342 #[cfg(feature = "static")]
343 Family::GaMaamli,
344 #[cfg(any(feature = "variable", feature = "static"))]
345 Family::Gabarito,
346 #[cfg(feature = "static")]
347 Family::GajrajOne,
348 #[cfg(feature = "static")]
349 Family::Galada,
350 #[cfg(feature = "static")]
351 Family::Galindo,
352 #[cfg(feature = "static")]
353 Family::Geostar,
354 #[cfg(feature = "static")]
355 Family::GeostarFill,
356 #[cfg(feature = "static")]
357 Family::GermaniaOne,
358 #[cfg(feature = "static")]
359 Family::GideonRoman,
360 #[cfg(feature = "static")]
361 Family::Girassol,
362 #[cfg(feature = "static")]
363 Family::GlassAntiqua,
364 #[cfg(any(feature = "variable", feature = "static"))]
365 Family::Gluten,
366 #[cfg(feature = "static")]
367 Family::GoblinOne,
368 #[cfg(feature = "static")]
369 Family::Goldman,
370 #[cfg(feature = "static")]
371 Family::Gorditas,
372 #[cfg(any(feature = "variable", feature = "static"))]
373 Family::Grandstander,
374 #[cfg(feature = "static")]
375 Family::GravitasOne,
376 #[cfg(any(feature = "variable", feature = "static"))]
377 Family::GrenzeGotisch,
378 #[cfg(feature = "static")]
379 Family::Griffy,
380 #[cfg(feature = "static")]
381 Family::Gugi,
382 #[cfg(feature = "static")]
383 Family::Hanalei,
384 #[cfg(feature = "static")]
385 Family::HanaleiFill,
386 #[cfg(any(feature = "variable", feature = "static"))]
387 Family::Handjet,
388 #[cfg(feature = "static")]
389 Family::HappyMonkey,
390 #[cfg(feature = "static")]
391 Family::HennyPenny,
392 #[cfg(any(feature = "variable", feature = "static"))]
393 Family::Honk,
394 #[cfg(feature = "static")]
395 Family::Iceberg,
396 #[cfg(feature = "static")]
397 Family::Iceland,
398 #[cfg(feature = "static")]
399 Family::IrishGrover,
400 #[cfg(feature = "static")]
401 Family::Jacquard12,
402 #[cfg(feature = "static")]
403 Family::Jacquard12Charted,
404 #[cfg(feature = "static")]
405 Family::Jacquard24,
406 #[cfg(feature = "static")]
407 Family::Jacquard24Charted,
408 #[cfg(feature = "static")]
409 Family::JacquardaBastarda9,
410 #[cfg(feature = "static")]
411 Family::JacquardaBastarda9Charted,
412 #[cfg(feature = "static")]
413 Family::JacquesFrancoisShadow,
414 #[cfg(feature = "static")]
415 Family::Jaini,
416 #[cfg(feature = "static")]
417 Family::JainiPurva,
418 #[cfg(feature = "static")]
419 Family::Jersey10,
420 #[cfg(feature = "static")]
421 Family::Jersey10Charted,
422 #[cfg(feature = "static")]
423 Family::Jersey15,
424 #[cfg(feature = "static")]
425 Family::Jersey15Charted,
426 #[cfg(feature = "static")]
427 Family::Jersey20,
428 #[cfg(feature = "static")]
429 Family::Jersey20Charted,
430 #[cfg(feature = "static")]
431 Family::Jersey25,
432 #[cfg(feature = "static")]
433 Family::Jersey25Charted,
434 #[cfg(feature = "static")]
435 Family::JollyLodger,
436 #[cfg(feature = "static")]
437 Family::Jomhuria,
438 #[cfg(feature = "static")]
439 Family::JotiOne,
440 #[cfg(any(feature = "variable", feature = "static"))]
441 Family::Kablammo,
442 #[cfg(any(feature = "variable", feature = "static"))]
443 Family::KalniaGlaze,
444 #[cfg(feature = "static")]
445 Family::Karantina,
446 #[cfg(feature = "static")]
447 Family::Katibeh,
448 #[cfg(feature = "static")]
449 Family::Kavoon,
450 #[cfg(feature = "static")]
451 Family::KeaniaOne,
452 #[cfg(feature = "static")]
453 Family::KellySlab,
454 #[cfg(feature = "static")]
455 Family::Kenia,
456 #[cfg(feature = "static")]
457 Family::KirangHaerang,
458 #[cfg(feature = "static")]
459 Family::Knewave,
460 #[cfg(feature = "static")]
461 Family::KonkhmerSleokchher,
462 #[cfg(feature = "static")]
463 Family::Koulen,
464 #[cfg(feature = "static")]
465 Family::Kranky,
466 #[cfg(feature = "static")]
467 Family::KumarOne,
468 #[cfg(feature = "static")]
469 Family::KumarOneOutline,
470 #[cfg(feature = "static")]
471 Family::Lacquer,
472 #[cfg(feature = "static")]
473 Family::Lalezar,
474 #[cfg(feature = "static")]
475 Family::Lancelot,
476 #[cfg(feature = "static")]
477 Family::Langar,
478 #[cfg(feature = "static")]
479 Family::Lemon,
480 #[cfg(any(feature = "variable", feature = "static"))]
481 Family::Lemonada,
482 #[cfg(feature = "static")]
483 Family::LibreBarcode128,
484 #[cfg(feature = "static")]
485 Family::LibreBarcode128Text,
486 #[cfg(feature = "static")]
487 Family::LibreBarcode39,
488 #[cfg(feature = "static")]
489 Family::LibreBarcode39Extended,
490 #[cfg(feature = "static")]
491 Family::LibreBarcode39ExtendedText,
492 #[cfg(feature = "static")]
493 Family::LibreBarcode39Text,
494 #[cfg(feature = "static")]
495 Family::LibreBarcodeEAN13Text,
496 #[cfg(feature = "static")]
497 Family::LifeSavers,
498 #[cfg(feature = "static")]
499 Family::LilitaOne,
500 #[cfg(feature = "static")]
501 Family::LilyScriptOne,
502 #[cfg(feature = "static")]
503 Family::Limelight,
504 #[cfg(any(feature = "variable", feature = "static"))]
505 Family::Linefont,
506 #[cfg(feature = "static")]
507 Family::Lobster,
508 #[cfg(feature = "static")]
509 Family::LobsterTwo,
510 #[cfg(feature = "static")]
511 Family::LondrinaOutline,
512 #[cfg(feature = "static")]
513 Family::LondrinaShadow,
514 #[cfg(feature = "static")]
515 Family::LondrinaSketch,
516 #[cfg(feature = "static")]
517 Family::LondrinaSolid,
518 #[cfg(feature = "static")]
519 Family::LoveYaLikeASister,
520 #[cfg(feature = "static")]
521 Family::LuckiestGuy,
522 #[cfg(feature = "static")]
523 Family::LuxuriousRoman,
524 #[cfg(feature = "static")]
525 Family::Macondo,
526 #[cfg(feature = "static")]
527 Family::MacondoSwashCaps,
528 #[cfg(feature = "static")]
529 Family::Margarine,
530 #[cfg(any(feature = "variable", feature = "static"))]
531 Family::Marhey,
532 #[cfg(feature = "static")]
533 Family::McLaren,
534 #[cfg(feature = "static")]
535 Family::MedievalSharp,
536 #[cfg(feature = "static")]
537 Family::MedulaOne,
538 #[cfg(feature = "static")]
539 Family::Megrim,
540 #[cfg(feature = "static")]
541 Family::Metal,
542 #[cfg(feature = "static")]
543 Family::MetalMania,
544 #[cfg(feature = "static")]
545 Family::Metamorphous,
546 #[cfg(feature = "static")]
547 Family::Micro5,
548 #[cfg(feature = "static")]
549 Family::Micro5Charted,
550 #[cfg(feature = "static")]
551 Family::Milonga,
552 #[cfg(feature = "static")]
553 Family::Miltonian,
554 #[cfg(feature = "static")]
555 Family::MiltonianTattoo,
556 #[cfg(feature = "static")]
557 Family::Miniver,
558 #[cfg(feature = "static")]
559 Family::Modak,
560 #[cfg(feature = "static")]
561 Family::ModernAntiqua,
562 #[cfg(feature = "static")]
563 Family::Mogra,
564 #[cfg(feature = "static")]
565 Family::MoiraiOne,
566 #[cfg(feature = "static")]
567 Family::Monoton,
568 #[cfg(feature = "static")]
569 Family::MooLahLah,
570 #[cfg(feature = "static")]
571 Family::Moul,
572 #[cfg(feature = "static")]
573 Family::MountainsofChristmas,
574 #[cfg(any(feature = "variable", feature = "static"))]
575 Family::MuseoModerno,
576 #[cfg(feature = "static")]
577 Family::MysteryQuest,
578 #[cfg(any(feature = "variable", feature = "static"))]
579 Family::Nabla,
580 #[cfg(feature = "static")]
581 Family::NewRocker,
582 #[cfg(feature = "static")]
583 Family::NixieOne,
584 #[cfg(feature = "static")]
585 Family::Nosifer,
586 #[cfg(feature = "static")]
587 Family::NovaCut,
588 #[cfg(feature = "static")]
589 Family::NovaFlat,
590 #[cfg(feature = "static")]
591 Family::NovaOval,
592 #[cfg(feature = "static")]
593 Family::NovaRound,
594 #[cfg(feature = "static")]
595 Family::NovaScript,
596 #[cfg(feature = "static")]
597 Family::NovaSlim,
598 #[cfg(feature = "static")]
599 Family::NovaSquare,
600 #[cfg(feature = "static")]
601 Family::OdibeeSans,
602 #[cfg(feature = "static")]
603 Family::Offside,
604 #[cfg(feature = "static")]
605 Family::Oi,
606 #[cfg(feature = "static")]
607 Family::Oldenburg,
608 #[cfg(feature = "static")]
609 Family::OleoScript,
610 #[cfg(feature = "static")]
611 Family::OleoScriptSwashCaps,
612 #[cfg(feature = "static")]
613 Family::Oregano,
614 #[cfg(feature = "static")]
615 Family::OrelegaOne,
616 #[cfg(feature = "static")]
617 Family::OriginalSurfer,
618 #[cfg(feature = "static")]
619 Family::Overlock,
620 #[cfg(feature = "static")]
621 Family::OverlockSC,
622 #[cfg(any(feature = "variable", feature = "static"))]
623 Family::Oxanium,
624 #[cfg(feature = "static")]
625 Family::PaletteMosaic,
626 #[cfg(feature = "static")]
627 Family::Paprika,
628 #[cfg(feature = "static")]
629 Family::PasseroOne,
630 #[cfg(feature = "static")]
631 Family::PassionOne,
632 #[cfg(feature = "static")]
633 Family::PatuaOne,
634 #[cfg(any(feature = "variable", feature = "static"))]
635 Family::Phudu,
636 #[cfg(feature = "static")]
637 Family::Piedra,
638 #[cfg(feature = "static")]
639 Family::PirataOne,
640 #[cfg(any(feature = "variable", feature = "static"))]
641 Family::PixelifySans,
642 #[cfg(feature = "static")]
643 Family::Plaster,
644 #[cfg(feature = "static")]
645 Family::Playball,
646 #[cfg(feature = "static")]
647 Family::PoetsenOne,
648 #[cfg(feature = "static")]
649 Family::PoiretOne,
650 #[cfg(feature = "static")]
651 Family::PollerOne,
652 #[cfg(feature = "static")]
653 Family::Pompiere,
654 #[cfg(feature = "static")]
655 Family::PoorStory,
656 #[cfg(feature = "static")]
657 Family::PottaOne,
658 #[cfg(feature = "static")]
659 Family::PressStart2P,
660 #[cfg(feature = "static")]
661 Family::ProstoOne,
662 #[cfg(feature = "static")]
663 Family::ProtestGuerrilla,
664 #[cfg(feature = "static")]
665 Family::ProtestRevolution,
666 #[cfg(feature = "static")]
667 Family::ProtestRiot,
668 #[cfg(feature = "static")]
669 Family::ProtestStrike,
670 #[cfg(feature = "static")]
671 Family::PurplePurse,
672 #[cfg(feature = "static")]
673 Family::RacingSansOne,
674 #[cfg(feature = "static")]
675 Family::Rakkas,
676 #[cfg(feature = "static")]
677 Family::RalewayDots,
678 #[cfg(feature = "static")]
679 Family::RammettoOne,
680 #[cfg(feature = "static")]
681 Family::RampartOne,
682 #[cfg(feature = "static")]
683 Family::Ranchers,
684 #[cfg(feature = "static")]
685 Family::Ranga,
686 #[cfg(feature = "static")]
687 Family::RaviPrakash,
688 #[cfg(any(feature = "variable", feature = "static"))]
689 Family::RedRose,
690 #[cfg(feature = "static")]
691 Family::Redacted,
692 #[cfg(feature = "static")]
693 Family::RedactedScript,
694 #[cfg(feature = "static")]
695 Family::ReggaeOne,
696 #[cfg(feature = "static")]
697 Family::Revalia,
698 #[cfg(feature = "static")]
699 Family::Ribeye,
700 #[cfg(feature = "static")]
701 Family::RibeyeMarrow,
702 #[cfg(feature = "static")]
703 Family::Righteous,
704 #[cfg(feature = "static")]
705 Family::Risque,
706 #[cfg(feature = "static")]
707 Family::RoadRage,
708 #[cfg(feature = "static")]
709 Family::Rock3D,
710 #[cfg(feature = "static")]
711 Family::Rowdies,
712 #[cfg(feature = "static")]
713 Family::Rubik80sFade,
714 #[cfg(feature = "static")]
715 Family::RubikBeastly,
716 #[cfg(feature = "static")]
717 Family::RubikBrokenFax,
718 #[cfg(feature = "static")]
719 Family::RubikBubbles,
720 #[cfg(feature = "static")]
721 Family::RubikBurned,
722 #[cfg(feature = "static")]
723 Family::RubikDirt,
724 #[cfg(feature = "static")]
725 Family::RubikDistressed,
726 #[cfg(feature = "static")]
727 Family::RubikDoodleShadow,
728 #[cfg(feature = "static")]
729 Family::RubikDoodleTriangles,
730 #[cfg(feature = "static")]
731 Family::RubikGemstones,
732 #[cfg(feature = "static")]
733 Family::RubikGlitch,
734 #[cfg(feature = "static")]
735 Family::RubikGlitchPop,
736 #[cfg(feature = "static")]
737 Family::RubikIso,
738 #[cfg(feature = "static")]
739 Family::RubikLines,
740 #[cfg(feature = "static")]
741 Family::RubikMaps,
742 #[cfg(feature = "static")]
743 Family::RubikMarkerHatch,
744 #[cfg(feature = "static")]
745 Family::RubikMaze,
746 #[cfg(feature = "static")]
747 Family::RubikMicrobe,
748 #[cfg(feature = "static")]
749 Family::RubikMoonrocks,
750 #[cfg(feature = "static")]
751 Family::RubikPixels,
752 #[cfg(feature = "static")]
753 Family::RubikPuddles,
754 #[cfg(feature = "static")]
755 Family::RubikScribble,
756 #[cfg(feature = "static")]
757 Family::RubikSprayPaint,
758 #[cfg(feature = "static")]
759 Family::RubikStorm,
760 #[cfg(feature = "static")]
761 Family::RubikVinyl,
762 #[cfg(feature = "static")]
763 Family::RubikWetPaint,
764 #[cfg(feature = "static")]
765 Family::RuslanDisplay,
766 #[cfg(feature = "static")]
767 Family::Rye,
768 #[cfg(feature = "static")]
769 Family::Sail,
770 #[cfg(feature = "static")]
771 Family::SairaStencilOne,
772 #[cfg(feature = "static")]
773 Family::Salsa,
774 #[cfg(feature = "static")]
775 Family::Sancreek,
776 #[cfg(any(feature = "variable", feature = "static"))]
777 Family::SansitaSwashed,
778 #[cfg(feature = "static")]
779 Family::Sarina,
780 #[cfg(feature = "static")]
781 Family::SeaweedScript,
782 #[cfg(feature = "static")]
783 Family::Sevillana,
784 #[cfg(any(feature = "variable", feature = "static"))]
785 Family::ShantellSans,
786 #[cfg(feature = "static")]
787 Family::Shizuru,
788 #[cfg(feature = "static")]
789 Family::Shojumaru,
790 #[cfg(feature = "static")]
791 Family::Shrikhand,
792 #[cfg(feature = "static")]
793 Family::Sigmar,
794 #[cfg(feature = "static")]
795 Family::SigmarOne,
796 #[cfg(feature = "static")]
797 Family::Silkscreen,
798 #[cfg(feature = "static")]
799 Family::Simonetta,
800 #[cfg(feature = "static")]
801 Family::SingleDay,
802 #[cfg(feature = "static")]
803 Family::SirinStencil,
804 #[cfg(feature = "static")]
805 Family::Skranji,
806 #[cfg(feature = "static")]
807 Family::Slackey,
808 #[cfg(feature = "static")]
809 Family::Smokum,
810 #[cfg(feature = "static")]
811 Family::Smythe,
812 #[cfg(feature = "static")]
813 Family::Sniglet,
814 #[cfg(feature = "static")]
815 Family::SnowburstOne,
816 #[cfg(feature = "static")]
817 Family::SofadiOne,
818 #[cfg(feature = "static")]
819 Family::SonsieOne,
820 #[cfg(feature = "static")]
821 Family::SpecialElite,
822 #[cfg(feature = "static")]
823 Family::SpicyRice,
824 #[cfg(feature = "static")]
825 Family::Spirax,
826 #[cfg(feature = "static")]
827 Family::SquadaOne,
828 #[cfg(feature = "static")]
829 Family::Srisakdi,
830 #[cfg(feature = "static")]
831 Family::Staatliches,
832 #[cfg(feature = "static")]
833 Family::StalinistOne,
834 #[cfg(feature = "static")]
835 Family::StardosStencil,
836 #[cfg(feature = "static")]
837 Family::SupermercadoOne,
838 #[cfg(feature = "static")]
839 Family::SyneTactile,
840 #[cfg(feature = "static")]
841 Family::Taprom,
842 #[cfg(any(feature = "variable", feature = "static"))]
843 Family::Tektur,
844 #[cfg(feature = "static")]
845 Family::Tillana,
846 #[cfg(any(feature = "variable", feature = "static"))]
847 Family::TiltNeon,
848 #[cfg(any(feature = "variable", feature = "static"))]
849 Family::TiltPrism,
850 #[cfg(any(feature = "variable", feature = "static"))]
851 Family::TiltWarp,
852 #[cfg(feature = "static")]
853 Family::TitanOne,
854 #[cfg(any(feature = "variable", feature = "static"))]
855 Family::Tourney,
856 #[cfg(feature = "static")]
857 Family::TradeWinds,
858 #[cfg(feature = "static")]
859 Family::TrainOne,
860 #[cfg(feature = "static")]
861 Family::Trochut,
862 #[cfg(feature = "static")]
863 Family::TulpenOne,
864 #[cfg(feature = "static")]
865 Family::TurretRoad,
866 #[cfg(feature = "static")]
867 Family::UncialAntiqua,
868 #[cfg(feature = "static")]
869 Family::Underdog,
870 #[cfg(feature = "static")]
871 Family::UnicaOne,
872 #[cfg(feature = "static")]
873 Family::UnifrakturCook,
874 #[cfg(feature = "static")]
875 Family::UnifrakturMaguntia,
876 #[cfg(feature = "static")]
877 Family::Unkempt,
878 #[cfg(feature = "static")]
879 Family::Unlock,
880 #[cfg(feature = "static")]
881 Family::VampiroOne,
882 #[cfg(feature = "static")]
883 Family::ViaodaLibre,
884 #[cfg(feature = "static")]
885 Family::Vibes,
886 #[cfg(feature = "static")]
887 Family::VinaSans,
888 #[cfg(feature = "static")]
889 Family::Wallpoet,
890 #[cfg(feature = "static")]
891 Family::Warnes,
892 #[cfg(any(feature = "variable", feature = "static"))]
893 Family::Wavefont,
894 #[cfg(feature = "static")]
895 Family::Yarndings12,
896 #[cfg(feature = "static")]
897 Family::Yarndings12Charted,
898 #[cfg(feature = "static")]
899 Family::Yarndings20,
900 #[cfg(feature = "static")]
901 Family::Yarndings20Charted,
902 #[cfg(feature = "static")]
903 Family::YatraOne,
904 #[cfg(feature = "static")]
905 Family::YeonSung,
906 #[cfg(feature = "static")]
907 Family::YesevaOne,
908 #[cfg(feature = "static")]
909 Family::ZenDots,
910 #[cfg(feature = "static")]
911 Family::ZenLoop,
912 #[cfg(feature = "static")]
913 Family::ZenTokyoZoo,
914 ]
915 }
916 Category::Handwriting => {
917 vec![
918 #[cfg(feature = "static")]
919 Family::AguafinaScript,
920 #[cfg(feature = "static")]
921 Family::AlexBrush,
922 #[cfg(feature = "static")]
923 Family::Allison,
924 #[cfg(feature = "static")]
925 Family::Allura,
926 #[cfg(feature = "static")]
927 Family::AmaticSC,
928 #[cfg(feature = "static")]
929 Family::Amita,
930 #[cfg(feature = "static")]
931 Family::AnnieUseYourTelescope,
932 #[cfg(feature = "static")]
933 Family::ArchitectsDaughter,
934 #[cfg(feature = "static")]
935 Family::AreYouSerious,
936 #[cfg(feature = "static")]
937 Family::Arizonia,
938 #[cfg(feature = "static")]
939 Family::Babylonica,
940 #[cfg(feature = "static")]
941 Family::BadScript,
942 #[cfg(any(feature = "variable", feature = "static"))]
943 Family::Ballet,
944 #[cfg(feature = "static")]
945 Family::BeauRivage,
946 #[cfg(feature = "static")]
947 Family::BerkshireSwash,
948 #[cfg(feature = "static")]
949 Family::BethEllen,
950 #[cfg(feature = "static")]
951 Family::Bilbo,
952 #[cfg(feature = "static")]
953 Family::BilboSwashCaps,
954 #[cfg(feature = "static")]
955 Family::Birthstone,
956 #[cfg(feature = "static")]
957 Family::BirthstoneBounce,
958 #[cfg(feature = "static")]
959 Family::Bonbon,
960 #[cfg(feature = "static")]
961 Family::BonheurRoyale,
962 #[cfg(feature = "static")]
963 Family::Borel,
964 #[cfg(feature = "static")]
965 Family::ButterflyKids,
966 #[cfg(feature = "static")]
967 Family::Calligraffitti,
968 #[cfg(feature = "static")]
969 Family::Caramel,
970 #[cfg(feature = "static")]
971 Family::Carattere,
972 #[cfg(any(feature = "variable", feature = "static"))]
973 Family::Caveat,
974 #[cfg(feature = "static")]
975 Family::CaveatBrush,
976 #[cfg(feature = "static")]
977 Family::CedarvilleCursive,
978 #[cfg(feature = "static")]
979 Family::Charm,
980 #[cfg(feature = "static")]
981 Family::Charmonman,
982 #[cfg(feature = "static")]
983 Family::Cherish,
984 #[cfg(feature = "static")]
985 Family::Chilanka,
986 #[cfg(feature = "static")]
987 Family::ClickerScript,
988 #[cfg(feature = "static")]
989 Family::Comforter,
990 #[cfg(feature = "static")]
991 Family::ComforterBrush,
992 #[cfg(feature = "static")]
993 Family::ComicNeue,
994 #[cfg(feature = "static")]
995 Family::ComingSoon,
996 #[cfg(feature = "static")]
997 Family::Condiment,
998 #[cfg(feature = "static")]
999 Family::Cookie,
1000 #[cfg(feature = "static")]
1001 Family::Corinthia,
1002 #[cfg(feature = "static")]
1003 Family::Courgette,
1004 #[cfg(feature = "static")]
1005 Family::CoveredByYourGrace,
1006 #[cfg(feature = "static")]
1007 Family::CraftyGirls,
1008 #[cfg(feature = "static")]
1009 Family::Damion,
1010 #[cfg(any(feature = "variable", feature = "static"))]
1011 Family::DancingScript,
1012 #[cfg(feature = "static")]
1013 Family::DawningofaNewDay,
1014 #[cfg(feature = "static")]
1015 Family::Dekko,
1016 #[cfg(feature = "static")]
1017 Family::DeliciousHandrawn,
1018 #[cfg(feature = "static")]
1019 Family::Delius,
1020 #[cfg(feature = "static")]
1021 Family::DeliusSwashCaps,
1022 #[cfg(feature = "static")]
1023 Family::DeliusUnicase,
1024 #[cfg(feature = "static")]
1025 Family::Devonshire,
1026 #[cfg(feature = "static")]
1027 Family::DrSugiyama,
1028 #[cfg(feature = "static")]
1029 Family::EagleLake,
1030 #[cfg(feature = "static")]
1031 Family::EastSeaDokdo,
1032 #[cfg(any(feature = "variable", feature = "static"))]
1033 Family::EduAUVICWANTHand,
1034 #[cfg(any(feature = "variable", feature = "static"))]
1035 Family::EduNSWACTFoundation,
1036 #[cfg(any(feature = "variable", feature = "static"))]
1037 Family::EduQLDBeginner,
1038 #[cfg(any(feature = "variable", feature = "static"))]
1039 Family::EduSABeginner,
1040 #[cfg(any(feature = "variable", feature = "static"))]
1041 Family::EduTASBeginner,
1042 #[cfg(any(feature = "variable", feature = "static"))]
1043 Family::EduVICWANTBeginner,
1044 #[cfg(feature = "static")]
1045 Family::Engagement,
1046 #[cfg(feature = "static")]
1047 Family::Ephesis,
1048 #[cfg(feature = "static")]
1049 Family::Estonia,
1050 #[cfg(feature = "static")]
1051 Family::EuphoriaScript,
1052 #[cfg(feature = "static")]
1053 Family::Explora,
1054 #[cfg(feature = "static")]
1055 Family::Felipa,
1056 #[cfg(feature = "static")]
1057 Family::Festive,
1058 #[cfg(feature = "static")]
1059 Family::FleurDeLeah,
1060 #[cfg(feature = "static")]
1061 Family::Fondamento,
1062 #[cfg(feature = "static")]
1063 Family::Fuggles,
1064 #[cfg(feature = "static")]
1065 Family::FuzzyBubbles,
1066 #[cfg(feature = "static")]
1067 Family::Gaegu,
1068 #[cfg(feature = "static")]
1069 Family::GamjaFlower,
1070 #[cfg(feature = "static")]
1071 Family::GiveYouGlory,
1072 #[cfg(feature = "static")]
1073 Family::GloriaHallelujah,
1074 #[cfg(feature = "static")]
1075 Family::GochiHand,
1076 #[cfg(feature = "static")]
1077 Family::GrandHotel,
1078 #[cfg(feature = "static")]
1079 Family::GrapeNuts,
1080 #[cfg(feature = "static")]
1081 Family::GreatVibes,
1082 #[cfg(feature = "static")]
1083 Family::GrechenFuemen,
1084 #[cfg(feature = "static")]
1085 Family::GreyQo,
1086 #[cfg(feature = "static")]
1087 Family::Gwendolyn,
1088 #[cfg(feature = "static")]
1089 Family::HachiMaruPop,
1090 #[cfg(feature = "static")]
1091 Family::Handlee,
1092 #[cfg(feature = "static")]
1093 Family::HerrVonMuellerhoff,
1094 #[cfg(feature = "static")]
1095 Family::HiMelody,
1096 #[cfg(feature = "static")]
1097 Family::HomemadeApple,
1098 #[cfg(feature = "static")]
1099 Family::Hurricane,
1100 #[cfg(feature = "static")]
1101 Family::ImperialScript,
1102 #[cfg(feature = "static")]
1103 Family::IndieFlower,
1104 #[cfg(feature = "static")]
1105 Family::IngridDarling,
1106 #[cfg(feature = "static")]
1107 Family::Inspiration,
1108 #[cfg(feature = "static")]
1109 Family::IslandMoments,
1110 #[cfg(feature = "static")]
1111 Family::Italianno,
1112 #[cfg(feature = "static")]
1113 Family::Itim,
1114 #[cfg(feature = "static")]
1115 Family::JimNightshade,
1116 #[cfg(feature = "static")]
1117 Family::Julee,
1118 #[cfg(feature = "static")]
1119 Family::JustAnotherHand,
1120 #[cfg(feature = "static")]
1121 Family::JustMeAgainDownHere,
1122 #[cfg(feature = "static")]
1123 Family::Kalam,
1124 #[cfg(feature = "static")]
1125 Family::KaushanScript,
1126 #[cfg(feature = "static")]
1127 Family::Kavivanar,
1128 #[cfg(feature = "static")]
1129 Family::Kings,
1130 #[cfg(feature = "static")]
1131 Family::KleeOne,
1132 #[cfg(feature = "static")]
1133 Family::KolkerBrush,
1134 #[cfg(feature = "static")]
1135 Family::Kristi,
1136 #[cfg(feature = "static")]
1137 Family::LXGWWenKaiTC,
1138 #[cfg(feature = "static")]
1139 Family::LaBelleAurore,
1140 #[cfg(feature = "static")]
1141 Family::LakkiReddy,
1142 #[cfg(feature = "static")]
1143 Family::LavishlyYours,
1144 #[cfg(feature = "static")]
1145 Family::LeagueScript,
1146 #[cfg(feature = "static")]
1147 Family::LeckerliOne,
1148 #[cfg(feature = "static")]
1149 Family::Licorice,
1150 #[cfg(feature = "static")]
1151 Family::LiuJianMaoCao,
1152 #[cfg(feature = "static")]
1153 Family::LongCang,
1154 #[cfg(feature = "static")]
1155 Family::LoveLight,
1156 #[cfg(feature = "static")]
1157 Family::LovedbytheKing,
1158 #[cfg(feature = "static")]
1159 Family::LoversQuarrel,
1160 #[cfg(feature = "static")]
1161 Family::Lugrasimo,
1162 #[cfg(feature = "static")]
1163 Family::Lumanosimo,
1164 #[cfg(feature = "static")]
1165 Family::LuxuriousScript,
1166 #[cfg(feature = "static")]
1167 Family::MaShanZheng,
1168 #[cfg(feature = "static")]
1169 Family::Mali,
1170 #[cfg(feature = "static")]
1171 Family::Mansalva,
1172 #[cfg(feature = "static")]
1173 Family::MarckScript,
1174 #[cfg(feature = "static")]
1175 Family::MeaCulpa,
1176 #[cfg(feature = "static")]
1177 Family::Meddon,
1178 #[cfg(feature = "static")]
1179 Family::MeieScript,
1180 #[cfg(feature = "static")]
1181 Family::MeowScript,
1182 #[cfg(any(feature = "variable", feature = "static"))]
1183 Family::Merienda,
1184 #[cfg(feature = "static")]
1185 Family::MissFajardose,
1186 #[cfg(feature = "static")]
1187 Family::Molle,
1188 #[cfg(feature = "static")]
1189 Family::MonsieurLaDoulaise,
1190 #[cfg(feature = "static")]
1191 Family::MonteCarlo,
1192 #[cfg(feature = "static")]
1193 Family::Montez,
1194 #[cfg(feature = "static")]
1195 Family::MoonDance,
1196 #[cfg(feature = "static")]
1197 Family::MrBedfort,
1198 #[cfg(feature = "static")]
1199 Family::MrDafoe,
1200 #[cfg(feature = "static")]
1201 Family::MrDeHaviland,
1202 #[cfg(feature = "static")]
1203 Family::MrsSaintDelafield,
1204 #[cfg(feature = "static")]
1205 Family::MrsSheppards,
1206 #[cfg(feature = "static")]
1207 Family::MsMadi,
1208 #[cfg(feature = "static")]
1209 Family::MySoul,
1210 #[cfg(feature = "static")]
1211 Family::Mynerve,
1212 #[cfg(feature = "static")]
1213 Family::NanumBrushScript,
1214 #[cfg(feature = "static")]
1215 Family::NanumGothicCoding,
1216 #[cfg(feature = "static")]
1217 Family::NanumPenScript,
1218 #[cfg(feature = "static")]
1219 Family::Neonderthaw,
1220 #[cfg(feature = "static")]
1221 Family::NerkoOne,
1222 #[cfg(feature = "static")]
1223 Family::Neucha,
1224 #[cfg(feature = "static")]
1225 Family::Niconne,
1226 #[cfg(feature = "static")]
1227 Family::Norican,
1228 #[cfg(feature = "static")]
1229 Family::NothingYouCouldDo,
1230 #[cfg(feature = "static")]
1231 Family::Ole,
1232 #[cfg(feature = "static")]
1233 Family::OoohBaby,
1234 #[cfg(feature = "static")]
1235 Family::OvertheRainbow,
1236 #[cfg(feature = "static")]
1237 Family::Pacifico,
1238 #[cfg(feature = "static")]
1239 Family::Pangolin,
1240 #[cfg(feature = "static")]
1241 Family::Parisienne,
1242 #[cfg(feature = "static")]
1243 Family::PassionsConflict,
1244 #[cfg(feature = "static")]
1245 Family::PatrickHand,
1246 #[cfg(feature = "static")]
1247 Family::PatrickHandSC,
1248 #[cfg(feature = "static")]
1249 Family::PermanentMarker,
1250 #[cfg(feature = "static")]
1251 Family::Petemoss,
1252 #[cfg(feature = "static")]
1253 Family::PetitFormalScript,
1254 #[cfg(feature = "static")]
1255 Family::PinyonScript,
1256 #[cfg(any(feature = "variable", feature = "static"))]
1257 Family::PlaypenSans,
1258 #[cfg(any(feature = "variable", feature = "static"))]
1259 Family::PlaywriteAR,
1260 #[cfg(any(feature = "variable", feature = "static"))]
1261 Family::PlaywriteAT,
1262 #[cfg(any(feature = "variable", feature = "static"))]
1263 Family::PlaywriteAUNSW,
1264 #[cfg(any(feature = "variable", feature = "static"))]
1265 Family::PlaywriteAUQLD,
1266 #[cfg(any(feature = "variable", feature = "static"))]
1267 Family::PlaywriteAUSA,
1268 #[cfg(any(feature = "variable", feature = "static"))]
1269 Family::PlaywriteAUTAS,
1270 #[cfg(any(feature = "variable", feature = "static"))]
1271 Family::PlaywriteAUVIC,
1272 #[cfg(any(feature = "variable", feature = "static"))]
1273 Family::PlaywriteBEVLG,
1274 #[cfg(any(feature = "variable", feature = "static"))]
1275 Family::PlaywriteBEWAL,
1276 #[cfg(any(feature = "variable", feature = "static"))]
1277 Family::PlaywriteBR,
1278 #[cfg(any(feature = "variable", feature = "static"))]
1279 Family::PlaywriteCA,
1280 #[cfg(any(feature = "variable", feature = "static"))]
1281 Family::PlaywriteCL,
1282 #[cfg(any(feature = "variable", feature = "static"))]
1283 Family::PlaywriteCO,
1284 #[cfg(any(feature = "variable", feature = "static"))]
1285 Family::PlaywriteCU,
1286 #[cfg(any(feature = "variable", feature = "static"))]
1287 Family::PlaywriteCZ,
1288 #[cfg(any(feature = "variable", feature = "static"))]
1289 Family::PlaywriteDEGrund,
1290 #[cfg(any(feature = "variable", feature = "static"))]
1291 Family::PlaywriteDELA,
1292 #[cfg(any(feature = "variable", feature = "static"))]
1293 Family::PlaywriteDESAS,
1294 #[cfg(any(feature = "variable", feature = "static"))]
1295 Family::PlaywriteDEVA,
1296 #[cfg(any(feature = "variable", feature = "static"))]
1297 Family::PlaywriteDKLoopet,
1298 #[cfg(any(feature = "variable", feature = "static"))]
1299 Family::PlaywriteDKUloopet,
1300 #[cfg(any(feature = "variable", feature = "static"))]
1301 Family::PlaywriteES,
1302 #[cfg(any(feature = "variable", feature = "static"))]
1303 Family::PlaywriteESDeco,
1304 #[cfg(any(feature = "variable", feature = "static"))]
1305 Family::PlaywriteFRModerne,
1306 #[cfg(any(feature = "variable", feature = "static"))]
1307 Family::PlaywriteFRTrad,
1308 #[cfg(any(feature = "variable", feature = "static"))]
1309 Family::PlaywriteGBJ,
1310 #[cfg(any(feature = "variable", feature = "static"))]
1311 Family::PlaywriteGBS,
1312 #[cfg(any(feature = "variable", feature = "static"))]
1313 Family::PlaywriteHR,
1314 #[cfg(any(feature = "variable", feature = "static"))]
1315 Family::PlaywriteHRLijeva,
1316 #[cfg(any(feature = "variable", feature = "static"))]
1317 Family::PlaywriteHU,
1318 #[cfg(any(feature = "variable", feature = "static"))]
1319 Family::PlaywriteID,
1320 #[cfg(any(feature = "variable", feature = "static"))]
1321 Family::PlaywriteIE,
1322 #[cfg(any(feature = "variable", feature = "static"))]
1323 Family::PlaywriteIN,
1324 #[cfg(any(feature = "variable", feature = "static"))]
1325 Family::PlaywriteIS,
1326 #[cfg(any(feature = "variable", feature = "static"))]
1327 Family::PlaywriteITModerna,
1328 #[cfg(any(feature = "variable", feature = "static"))]
1329 Family::PlaywriteITTrad,
1330 #[cfg(any(feature = "variable", feature = "static"))]
1331 Family::PlaywriteMX,
1332 #[cfg(any(feature = "variable", feature = "static"))]
1333 Family::PlaywriteNGModern,
1334 #[cfg(any(feature = "variable", feature = "static"))]
1335 Family::PlaywriteNL,
1336 #[cfg(any(feature = "variable", feature = "static"))]
1337 Family::PlaywriteNO,
1338 #[cfg(any(feature = "variable", feature = "static"))]
1339 Family::PlaywriteNZ,
1340 #[cfg(any(feature = "variable", feature = "static"))]
1341 Family::PlaywritePE,
1342 #[cfg(any(feature = "variable", feature = "static"))]
1343 Family::PlaywritePL,
1344 #[cfg(any(feature = "variable", feature = "static"))]
1345 Family::PlaywritePT,
1346 #[cfg(any(feature = "variable", feature = "static"))]
1347 Family::PlaywriteRO,
1348 #[cfg(any(feature = "variable", feature = "static"))]
1349 Family::PlaywriteSK,
1350 #[cfg(any(feature = "variable", feature = "static"))]
1351 Family::PlaywriteTZ,
1352 #[cfg(any(feature = "variable", feature = "static"))]
1353 Family::PlaywriteUSModern,
1354 #[cfg(any(feature = "variable", feature = "static"))]
1355 Family::PlaywriteUSTrad,
1356 #[cfg(any(feature = "variable", feature = "static"))]
1357 Family::PlaywriteVN,
1358 #[cfg(any(feature = "variable", feature = "static"))]
1359 Family::PlaywriteZA,
1360 #[cfg(feature = "static")]
1361 Family::Praise,
1362 #[cfg(feature = "static")]
1363 Family::PrincessSofia,
1364 #[cfg(feature = "static")]
1365 Family::PuppiesPlay,
1366 #[cfg(feature = "static")]
1367 Family::Quintessential,
1368 #[cfg(feature = "static")]
1369 Family::Qwigley,
1370 #[cfg(feature = "static")]
1371 Family::QwitcherGrypen,
1372 #[cfg(feature = "static")]
1373 Family::Rancho,
1374 #[cfg(feature = "static")]
1375 Family::Redressed,
1376 #[cfg(feature = "static")]
1377 Family::ReenieBeanie,
1378 #[cfg(feature = "static")]
1379 Family::Rochester,
1380 #[cfg(feature = "static")]
1381 Family::RockSalt,
1382 #[cfg(feature = "static")]
1383 Family::Romanesco,
1384 #[cfg(feature = "static")]
1385 Family::RougeScript,
1386 #[cfg(feature = "static")]
1387 Family::RugeBoogie,
1388 #[cfg(feature = "static")]
1389 Family::Ruthie,
1390 #[cfg(feature = "static")]
1391 Family::Sacramento,
1392 #[cfg(feature = "static")]
1393 Family::SassyFrass,
1394 #[cfg(feature = "static")]
1395 Family::Satisfy,
1396 #[cfg(feature = "static")]
1397 Family::Schoolbell,
1398 #[cfg(feature = "static")]
1399 Family::SedgwickAve,
1400 #[cfg(feature = "static")]
1401 Family::SedgwickAveDisplay,
1402 #[cfg(feature = "static")]
1403 Family::SendFlowers,
1404 #[cfg(feature = "static")]
1405 Family::ShadowsIntoLight,
1406 #[cfg(feature = "static")]
1407 Family::ShadowsIntoLightTwo,
1408 #[cfg(feature = "static")]
1409 Family::Shalimar,
1410 #[cfg(feature = "static")]
1411 Family::ShortStack,
1412 #[cfg(feature = "static")]
1413 Family::SlacksideOne,
1414 #[cfg(feature = "static")]
1415 Family::Smooch,
1416 #[cfg(feature = "static")]
1417 Family::Sofia,
1418 #[cfg(feature = "static")]
1419 Family::Solitreo,
1420 #[cfg(feature = "static")]
1421 Family::Splash,
1422 #[cfg(feature = "static")]
1423 Family::SquarePeg,
1424 #[cfg(feature = "static")]
1425 Family::Sriracha,
1426 #[cfg(feature = "static")]
1427 Family::Stalemate,
1428 #[cfg(feature = "static")]
1429 Family::StyleScript,
1430 #[cfg(feature = "static")]
1431 Family::SueEllenFrancisco,
1432 #[cfg(feature = "static")]
1433 Family::Sunshiney,
1434 #[cfg(feature = "static")]
1435 Family::SwankyandMooMoo,
1436 #[cfg(feature = "static")]
1437 Family::Tangerine,
1438 #[cfg(feature = "static")]
1439 Family::Tapestry,
1440 #[cfg(feature = "static")]
1441 Family::TheGirlNextDoor,
1442 #[cfg(feature = "static")]
1443 Family::TheNautigal,
1444 #[cfg(feature = "static")]
1445 Family::TwinkleStar,
1446 #[cfg(feature = "static")]
1447 Family::Updock,
1448 #[cfg(feature = "static")]
1449 Family::Vibur,
1450 #[cfg(feature = "static")]
1451 Family::VujahdayScript,
1452 #[cfg(feature = "static")]
1453 Family::WaitingfortheSunrise,
1454 #[cfg(feature = "static")]
1455 Family::WalterTurncoat,
1456 #[cfg(feature = "static")]
1457 Family::WaterBrush,
1458 #[cfg(feature = "static")]
1459 Family::Waterfall,
1460 #[cfg(feature = "static")]
1461 Family::Whisper,
1462 #[cfg(feature = "static")]
1463 Family::WindSong,
1464 #[cfg(feature = "static")]
1465 Family::Yellowtail,
1466 #[cfg(feature = "static")]
1467 Family::Yesteryear,
1468 #[cfg(feature = "static")]
1469 Family::Yomogi,
1470 #[cfg(feature = "static")]
1471 Family::YujiHentaiganaAkari,
1472 #[cfg(feature = "static")]
1473 Family::YujiHentaiganaAkebono,
1474 #[cfg(feature = "static")]
1475 Family::Zeyada,
1476 #[cfg(feature = "static")]
1477 Family::ZhiMangXing,
1478 ]
1479 }
1480 Category::Monospace => {
1481 vec![
1482 #[cfg(feature = "static")]
1483 Family::AnonymousPro,
1484 #[cfg(any(feature = "variable", feature = "static"))]
1485 Family::AzeretMono,
1486 #[cfg(feature = "static")]
1487 Family::B612Mono,
1488 #[cfg(any(feature = "variable", feature = "static"))]
1489 Family::ChivoMono,
1490 #[cfg(feature = "static")]
1491 Family::CourierPrime,
1492 #[cfg(feature = "static")]
1493 Family::Cousine,
1494 #[cfg(feature = "static")]
1495 Family::CutiveMono,
1496 #[cfg(feature = "static")]
1497 Family::DMMono,
1498 #[cfg(any(feature = "variable", feature = "static"))]
1499 Family::FiraCode,
1500 #[cfg(feature = "static")]
1501 Family::FiraMono,
1502 #[cfg(feature = "static")]
1503 Family::FragmentMono,
1504 #[cfg(feature = "static")]
1505 Family::IBMPlexMono,
1506 #[cfg(any(feature = "variable", feature = "static"))]
1507 Family::Inconsolata,
1508 #[cfg(any(feature = "variable", feature = "static"))]
1509 Family::JetBrainsMono,
1510 #[cfg(any(feature = "variable", feature = "static"))]
1511 Family::KodeMono,
1512 #[cfg(feature = "static")]
1513 Family::LXGWWenKaiMonoTC,
1514 #[cfg(feature = "static")]
1515 Family::Lekton,
1516 #[cfg(any(feature = "variable", feature = "static"))]
1517 Family::MPLUS1Code,
1518 #[cfg(feature = "static")]
1519 Family::MajorMonoDisplay,
1520 #[cfg(any(feature = "variable", feature = "static"))]
1521 Family::MartianMono,
1522 #[cfg(feature = "static")]
1523 Family::Monofett,
1524 #[cfg(feature = "static")]
1525 Family::NovaMono,
1526 #[cfg(any(feature = "variable", feature = "static"))]
1527 Family::OverpassMono,
1528 #[cfg(feature = "static")]
1529 Family::OxygenMono,
1530 #[cfg(feature = "static")]
1531 Family::PTMono,
1532 #[cfg(any(feature = "variable", feature = "static"))]
1533 Family::RedHatMono,
1534 #[cfg(any(feature = "variable", feature = "static"))]
1535 Family::RedditMono,
1536 #[cfg(any(feature = "variable", feature = "static"))]
1537 Family::RobotoMono,
1538 #[cfg(feature = "static")]
1539 Family::ShareTechMono,
1540 #[cfg(any(feature = "variable", feature = "static"))]
1541 Family::Sixtyfour,
1542 #[cfg(any(feature = "variable", feature = "static"))]
1543 Family::SometypeMono,
1544 #[cfg(any(feature = "variable", feature = "static"))]
1545 Family::SourceCodePro,
1546 #[cfg(feature = "static")]
1547 Family::SpaceMono,
1548 #[cfg(any(feature = "variable", feature = "static"))]
1549 Family::SplineSansMono,
1550 #[cfg(feature = "static")]
1551 Family::SyneMono,
1552 #[cfg(feature = "static")]
1553 Family::UbuntuMono,
1554 #[cfg(any(feature = "variable", feature = "static"))]
1555 Family::UbuntuSansMono,
1556 #[cfg(feature = "static")]
1557 Family::VT323,
1558 #[cfg(any(feature = "variable", feature = "static"))]
1559 Family::VictorMono,
1560 #[cfg(any(feature = "variable", feature = "static"))]
1561 Family::Workbench,
1562 #[cfg(feature = "static")]
1563 Family::XanhMono,
1564 ]
1565 }
1566 Category::SansSerif => {
1567 vec![
1568 #[cfg(feature = "static")]
1569 Family::ABeeZee,
1570 #[cfg(any(feature = "variable", feature = "static"))]
1571 Family::AROneSans,
1572 #[cfg(feature = "static")]
1573 Family::Abel,
1574 #[cfg(feature = "static")]
1575 Family::Aclonica,
1576 #[cfg(feature = "static")]
1577 Family::Acme,
1578 #[cfg(feature = "static")]
1579 Family::Actor,
1580 #[cfg(any(feature = "variable", feature = "static"))]
1581 Family::AdventPro,
1582 #[cfg(any(feature = "variable", feature = "static"))]
1583 Family::Afacad,
1584 #[cfg(feature = "static")]
1585 Family::Agdasima,
1586 #[cfg(feature = "static")]
1587 Family::Akatab,
1588 #[cfg(any(feature = "variable", feature = "static"))]
1589 Family::Akshar,
1590 #[cfg(feature = "static")]
1591 Family::Alata,
1592 #[cfg(feature = "static")]
1593 Family::Alatsi,
1594 #[cfg(any(feature = "variable", feature = "static"))]
1595 Family::AlbertSans,
1596 #[cfg(feature = "static")]
1597 Family::Aldrich,
1598 #[cfg(feature = "static")]
1599 Family::Alef,
1600 #[cfg(feature = "static")]
1601 Family::AlegreyaSans,
1602 #[cfg(feature = "static")]
1603 Family::AlegreyaSansSC,
1604 #[cfg(any(feature = "variable", feature = "static"))]
1605 Family::Alexandria,
1606 #[cfg(feature = "static")]
1607 Family::Allerta,
1608 #[cfg(feature = "static")]
1609 Family::AllertaStencil,
1610 #[cfg(feature = "static")]
1611 Family::Almarai,
1612 #[cfg(any(feature = "variable", feature = "static"))]
1613 Family::AlumniSans,
1614 #[cfg(feature = "static")]
1615 Family::AlumniSansCollegiateOne,
1616 #[cfg(feature = "static")]
1617 Family::AlumniSansPinstripe,
1618 #[cfg(feature = "static")]
1619 Family::Amaranth,
1620 #[cfg(feature = "static")]
1621 Family::Amiko,
1622 #[cfg(any(feature = "variable", feature = "static"))]
1623 Family::Anaheim,
1624 #[cfg(feature = "static")]
1625 Family::Andika,
1626 #[cfg(any(feature = "variable", feature = "static"))]
1627 Family::AnekBangla,
1628 #[cfg(any(feature = "variable", feature = "static"))]
1629 Family::AnekDevanagari,
1630 #[cfg(any(feature = "variable", feature = "static"))]
1631 Family::AnekGujarati,
1632 #[cfg(any(feature = "variable", feature = "static"))]
1633 Family::AnekGurmukhi,
1634 #[cfg(any(feature = "variable", feature = "static"))]
1635 Family::AnekKannada,
1636 #[cfg(any(feature = "variable", feature = "static"))]
1637 Family::AnekLatin,
1638 #[cfg(any(feature = "variable", feature = "static"))]
1639 Family::AnekMalayalam,
1640 #[cfg(any(feature = "variable", feature = "static"))]
1641 Family::AnekOdia,
1642 #[cfg(any(feature = "variable", feature = "static"))]
1643 Family::AnekTamil,
1644 #[cfg(any(feature = "variable", feature = "static"))]
1645 Family::AnekTelugu,
1646 #[cfg(feature = "static")]
1647 Family::Anta,
1648 #[cfg(feature = "static")]
1649 Family::Antic,
1650 #[cfg(feature = "static")]
1651 Family::Anton,
1652 #[cfg(feature = "static")]
1653 Family::AntonSC,
1654 #[cfg(any(feature = "variable", feature = "static"))]
1655 Family::Antonio,
1656 #[cfg(any(feature = "variable", feature = "static"))]
1657 Family::Anuphan,
1658 #[cfg(any(feature = "variable", feature = "static"))]
1659 Family::Archivo,
1660 #[cfg(feature = "static")]
1661 Family::ArchivoBlack,
1662 #[cfg(any(feature = "variable", feature = "static"))]
1663 Family::ArchivoNarrow,
1664 #[cfg(any(feature = "variable", feature = "static"))]
1665 Family::Arimo,
1666 #[cfg(feature = "static")]
1667 Family::Armata,
1668 #[cfg(feature = "static")]
1669 Family::Arsenal,
1670 #[cfg(feature = "static")]
1671 Family::ArsenalSC,
1672 #[cfg(feature = "static")]
1673 Family::Arya,
1674 #[cfg(any(feature = "variable", feature = "static"))]
1675 Family::Asap,
1676 #[cfg(feature = "static")]
1677 Family::AsapCondensed,
1678 #[cfg(any(feature = "variable", feature = "static"))]
1679 Family::Assistant,
1680 #[cfg(feature = "static")]
1681 Family::Asul,
1682 #[cfg(feature = "static")]
1683 Family::Athiti,
1684 #[cfg(feature = "static")]
1685 Family::AtkinsonHyperlegible,
1686 #[cfg(feature = "static")]
1687 Family::AverageSans,
1688 #[cfg(feature = "static")]
1689 Family::B612,
1690 #[cfg(feature = "static")]
1691 Family::BIZUDGothic,
1692 #[cfg(feature = "static")]
1693 Family::BIZUDPGothic,
1694 #[cfg(feature = "static")]
1695 Family::BaiJamjuree,
1696 #[cfg(feature = "static")]
1697 Family::Barlow,
1698 #[cfg(feature = "static")]
1699 Family::BarlowCondensed,
1700 #[cfg(feature = "static")]
1701 Family::BarlowSemiCondensed,
1702 #[cfg(feature = "static")]
1703 Family::Basic,
1704 #[cfg(feature = "static")]
1705 Family::Bayon,
1706 #[cfg(feature = "static")]
1707 Family::BeVietnamPro,
1708 #[cfg(feature = "static")]
1709 Family::BebasNeue,
1710 #[cfg(any(feature = "variable", feature = "static"))]
1711 Family::Beiruti,
1712 #[cfg(feature = "static")]
1713 Family::Belanosima,
1714 #[cfg(feature = "static")]
1715 Family::Belleza,
1716 #[cfg(feature = "static")]
1717 Family::BenchNine,
1718 #[cfg(feature = "static")]
1719 Family::Biryani,
1720 #[cfg(feature = "static")]
1721 Family::BlackHanSans,
1722 #[cfg(feature = "static")]
1723 Family::Blinker,
1724 #[cfg(feature = "static")]
1725 Family::BraahOne,
1726 #[cfg(any(feature = "variable", feature = "static"))]
1727 Family::BricolageGrotesque,
1728 #[cfg(feature = "static")]
1729 Family::BubblerOne,
1730 #[cfg(any(feature = "variable", feature = "static"))]
1731 Family::Cabin,
1732 #[cfg(feature = "static")]
1733 Family::CabinCondensed,
1734 #[cfg(feature = "static")]
1735 Family::Cagliostro,
1736 #[cfg(any(feature = "variable", feature = "static"))]
1737 Family::Cairo,
1738 #[cfg(any(feature = "variable", feature = "static"))]
1739 Family::CairoPlay,
1740 #[cfg(feature = "static")]
1741 Family::Cambay,
1742 #[cfg(feature = "static")]
1743 Family::Candal,
1744 #[cfg(feature = "static")]
1745 Family::Cantarell,
1746 #[cfg(feature = "static")]
1747 Family::CantoraOne,
1748 #[cfg(feature = "static")]
1749 Family::Capriola,
1750 #[cfg(feature = "static")]
1751 Family::Carlito,
1752 #[cfg(feature = "static")]
1753 Family::Carme,
1754 #[cfg(feature = "static")]
1755 Family::CarroisGothic,
1756 #[cfg(feature = "static")]
1757 Family::CarroisGothicSC,
1758 #[cfg(any(feature = "variable", feature = "static"))]
1759 Family::Catamaran,
1760 #[cfg(feature = "static")]
1761 Family::ChakraPetch,
1762 #[cfg(any(feature = "variable", feature = "static"))]
1763 Family::Changa,
1764 #[cfg(feature = "static")]
1765 Family::Chathura,
1766 #[cfg(feature = "static")]
1767 Family::ChauPhilomeneOne,
1768 #[cfg(any(feature = "variable", feature = "static"))]
1769 Family::Chivo,
1770 #[cfg(feature = "static")]
1771 Family::ChocolateClassicalSans,
1772 #[cfg(any(feature = "variable", feature = "static"))]
1773 Family::Comme,
1774 #[cfg(any(feature = "variable", feature = "static"))]
1775 Family::Commissioner,
1776 #[cfg(feature = "static")]
1777 Family::Convergence,
1778 #[cfg(any(feature = "variable", feature = "static"))]
1779 Family::Cuprum,
1780 #[cfg(any(feature = "variable", feature = "static"))]
1781 Family::DMSans,
1782 #[cfg(any(feature = "variable", feature = "static"))]
1783 Family::DarkerGrotesque,
1784 #[cfg(feature = "static")]
1785 Family::DaysOne,
1786 #[cfg(feature = "static")]
1787 Family::DenkOne,
1788 #[cfg(feature = "static")]
1789 Family::Dhurjati,
1790 #[cfg(feature = "static")]
1791 Family::DidactGothic,
1792 #[cfg(feature = "static")]
1793 Family::DoHyeon,
1794 #[cfg(feature = "static")]
1795 Family::Dongle,
1796 #[cfg(feature = "static")]
1797 Family::DoppioOne,
1798 #[cfg(feature = "static")]
1799 Family::Dorsa,
1800 #[cfg(any(feature = "variable", feature = "static"))]
1801 Family::Dosis,
1802 #[cfg(feature = "static")]
1803 Family::DotGothic16,
1804 #[cfg(feature = "static")]
1805 Family::DuruSans,
1806 #[cfg(feature = "static")]
1807 Family::Economica,
1808 #[cfg(any(feature = "variable", feature = "static"))]
1809 Family::ElMessiri,
1810 #[cfg(feature = "static")]
1811 Family::Electrolize,
1812 #[cfg(any(feature = "variable", feature = "static"))]
1813 Family::EncodeSans,
1814 #[cfg(feature = "static")]
1815 Family::EncodeSansCondensed,
1816 #[cfg(feature = "static")]
1817 Family::EncodeSansExpanded,
1818 #[cfg(any(feature = "variable", feature = "static"))]
1819 Family::EncodeSansSC,
1820 #[cfg(feature = "static")]
1821 Family::EncodeSansSemiCondensed,
1822 #[cfg(feature = "static")]
1823 Family::EncodeSansSemiExpanded,
1824 #[cfg(feature = "static")]
1825 Family::Englebert,
1826 #[cfg(any(feature = "variable", feature = "static"))]
1827 Family::Epilogue,
1828 #[cfg(any(feature = "variable", feature = "static"))]
1829 Family::Exo,
1830 #[cfg(any(feature = "variable", feature = "static"))]
1831 Family::Exo2,
1832 #[cfg(feature = "static")]
1833 Family::Fahkwang,
1834 #[cfg(any(feature = "variable", feature = "static"))]
1835 Family::FamiljenGrotesk,
1836 #[cfg(feature = "static")]
1837 Family::Farro,
1838 #[cfg(feature = "static")]
1839 Family::Federo,
1840 #[cfg(any(feature = "variable", feature = "static"))]
1841 Family::Figtree,
1842 #[cfg(any(feature = "variable", feature = "static"))]
1843 Family::Finlandica,
1844 #[cfg(feature = "static")]
1845 Family::FiraSans,
1846 #[cfg(feature = "static")]
1847 Family::FiraSansCondensed,
1848 #[cfg(feature = "static")]
1849 Family::FiraSansExtraCondensed,
1850 #[cfg(feature = "static")]
1851 Family::FjallaOne,
1852 #[cfg(feature = "static")]
1853 Family::FrancoisOne,
1854 #[cfg(any(feature = "variable", feature = "static"))]
1855 Family::Fredoka,
1856 #[cfg(feature = "static")]
1857 Family::Fresca,
1858 #[cfg(any(feature = "variable", feature = "static"))]
1859 Family::Fustat,
1860 #[cfg(feature = "static")]
1861 Family::GFSNeohellenic,
1862 #[cfg(feature = "static")]
1863 Family::Gafata,
1864 #[cfg(feature = "static")]
1865 Family::Galdeano,
1866 #[cfg(any(feature = "variable", feature = "static"))]
1867 Family::Gantari,
1868 #[cfg(feature = "static")]
1869 Family::GasoekOne,
1870 #[cfg(feature = "static")]
1871 Family::Gayathri,
1872 #[cfg(any(feature = "variable", feature = "static"))]
1873 Family::GemunuLibre,
1874 #[cfg(any(feature = "variable", feature = "static"))]
1875 Family::Genos,
1876 #[cfg(feature = "static")]
1877 Family::Geo,
1878 #[cfg(any(feature = "variable", feature = "static"))]
1879 Family::Geologica,
1880 #[cfg(any(feature = "variable", feature = "static"))]
1881 Family::Georama,
1882 #[cfg(feature = "static")]
1883 Family::Gidugu,
1884 #[cfg(any(feature = "variable", feature = "static"))]
1885 Family::Glory,
1886 #[cfg(any(feature = "variable", feature = "static"))]
1887 Family::GolosText,
1888 #[cfg(feature = "static")]
1889 Family::GothicA1,
1890 #[cfg(feature = "static")]
1891 Family::Gotu,
1892 #[cfg(feature = "static")]
1893 Family::GowunDodum,
1894 #[cfg(feature = "static")]
1895 Family::Gruppo,
1896 #[cfg(feature = "static")]
1897 Family::Gudea,
1898 #[cfg(feature = "static")]
1899 Family::HammersmithOne,
1900 #[cfg(any(feature = "variable", feature = "static"))]
1901 Family::HankenGrotesk,
1902 #[cfg(feature = "static")]
1903 Family::Harmattan,
1904 #[cfg(feature = "static")]
1905 Family::HedvigLettersSans,
1906 #[cfg(any(feature = "variable", feature = "static"))]
1907 Family::Heebo,
1908 #[cfg(feature = "static")]
1909 Family::Hind,
1910 #[cfg(feature = "static")]
1911 Family::HindGuntur,
1912 #[cfg(feature = "static")]
1913 Family::HindMadurai,
1914 #[cfg(feature = "static")]
1915 Family::HindSiliguri,
1916 #[cfg(feature = "static")]
1917 Family::HindVadodara,
1918 #[cfg(feature = "static")]
1919 Family::Homenaje,
1920 #[cfg(feature = "static")]
1921 Family::Hubballi,
1922 #[cfg(feature = "static")]
1923 Family::IBMPlexSans,
1924 #[cfg(feature = "static")]
1925 Family::IBMPlexSansArabic,
1926 #[cfg(feature = "static")]
1927 Family::IBMPlexSansCondensed,
1928 #[cfg(feature = "static")]
1929 Family::IBMPlexSansDevanagari,
1930 #[cfg(feature = "static")]
1931 Family::IBMPlexSansHebrew,
1932 #[cfg(feature = "static")]
1933 Family::IBMPlexSansJP,
1934 #[cfg(feature = "static")]
1935 Family::IBMPlexSansKR,
1936 #[cfg(feature = "static")]
1937 Family::IBMPlexSansThai,
1938 #[cfg(feature = "static")]
1939 Family::IBMPlexSansThaiLooped,
1940 #[cfg(feature = "static")]
1941 Family::Imprima,
1942 #[cfg(feature = "static")]
1943 Family::InclusiveSans,
1944 #[cfg(feature = "static")]
1945 Family::Inder,
1946 #[cfg(feature = "static")]
1947 Family::InriaSans,
1948 #[cfg(any(feature = "variable", feature = "static"))]
1949 Family::InstrumentSans,
1950 #[cfg(any(feature = "variable", feature = "static"))]
1951 Family::Inter,
1952 #[cfg(any(feature = "variable", feature = "static"))]
1953 Family::InterTight,
1954 #[cfg(feature = "static")]
1955 Family::IstokWeb,
1956 #[cfg(feature = "static")]
1957 Family::Jaldi,
1958 #[cfg(any(feature = "variable", feature = "static"))]
1959 Family::Jaro,
1960 #[cfg(feature = "static")]
1961 Family::JockeyOne,
1962 #[cfg(any(feature = "variable", feature = "static"))]
1963 Family::JosefinSans,
1964 #[cfg(any(feature = "variable", feature = "static"))]
1965 Family::Jost,
1966 #[cfg(feature = "static")]
1967 Family::Jua,
1968 #[cfg(feature = "static")]
1969 Family::JuliusSansOne,
1970 #[cfg(any(feature = "variable", feature = "static"))]
1971 Family::Jura,
1972 #[cfg(feature = "static")]
1973 Family::K2D,
1974 #[cfg(feature = "static")]
1975 Family::Kanit,
1976 #[cfg(any(feature = "variable", feature = "static"))]
1977 Family::KantumruyPro,
1978 #[cfg(any(feature = "variable", feature = "static"))]
1979 Family::Karla,
1980 #[cfg(feature = "static")]
1981 Family::KdamThmorPro,
1982 #[cfg(feature = "static")]
1983 Family::Khand,
1984 #[cfg(feature = "static")]
1985 Family::Khmer,
1986 #[cfg(feature = "static")]
1987 Family::Khula,
1988 #[cfg(feature = "static")]
1989 Family::KiteOne,
1990 #[cfg(feature = "static")]
1991 Family::KoHo,
1992 #[cfg(feature = "static")]
1993 Family::Kodchasan,
1994 #[cfg(feature = "static")]
1995 Family::Kosugi,
1996 #[cfg(feature = "static")]
1997 Family::KosugiMaru,
1998 #[cfg(feature = "static")]
1999 Family::KronaOne,
2000 #[cfg(feature = "static")]
2001 Family::Krub,
2002 #[cfg(any(feature = "variable", feature = "static"))]
2003 Family::Kufam,
2004 #[cfg(feature = "static")]
2005 Family::KulimPark,
2006 #[cfg(any(feature = "variable", feature = "static"))]
2007 Family::KumbhSans,
2008 #[cfg(feature = "static")]
2009 Family::Laila,
2010 #[cfg(feature = "static")]
2011 Family::Lato,
2012 #[cfg(any(feature = "variable", feature = "static"))]
2013 Family::LeagueGothic,
2014 #[cfg(any(feature = "variable", feature = "static"))]
2015 Family::LeagueSpartan,
2016 #[cfg(any(feature = "variable", feature = "static"))]
2017 Family::Lexend,
2018 #[cfg(any(feature = "variable", feature = "static"))]
2019 Family::LexendDeca,
2020 #[cfg(any(feature = "variable", feature = "static"))]
2021 Family::LexendExa,
2022 #[cfg(any(feature = "variable", feature = "static"))]
2023 Family::LexendGiga,
2024 #[cfg(any(feature = "variable", feature = "static"))]
2025 Family::LexendMega,
2026 #[cfg(any(feature = "variable", feature = "static"))]
2027 Family::LexendPeta,
2028 #[cfg(any(feature = "variable", feature = "static"))]
2029 Family::LexendTera,
2030 #[cfg(any(feature = "variable", feature = "static"))]
2031 Family::LexendZetta,
2032 #[cfg(any(feature = "variable", feature = "static"))]
2033 Family::LibreFranklin,
2034 #[cfg(feature = "static")]
2035 Family::Livvic,
2036 #[cfg(feature = "static")]
2037 Family::Lunasima,
2038 #[cfg(any(feature = "variable", feature = "static"))]
2039 Family::MPLUS1,
2040 #[cfg(feature = "static")]
2041 Family::MPLUS1p,
2042 #[cfg(any(feature = "variable", feature = "static"))]
2043 Family::MPLUS2,
2044 #[cfg(any(feature = "variable", feature = "static"))]
2045 Family::MPLUSCodeLatin,
2046 #[cfg(feature = "static")]
2047 Family::MPLUSRounded1c,
2048 #[cfg(any(feature = "variable", feature = "static"))]
2049 Family::Mada,
2050 #[cfg(feature = "static")]
2051 Family::MadimiOne,
2052 #[cfg(feature = "static")]
2053 Family::Magra,
2054 #[cfg(feature = "static")]
2055 Family::Mako,
2056 #[cfg(feature = "static")]
2057 Family::Mallanna,
2058 #[cfg(feature = "static")]
2059 Family::Mandali,
2060 #[cfg(feature = "static")]
2061 Family::Manjari,
2062 #[cfg(any(feature = "variable", feature = "static"))]
2063 Family::Manrope,
2064 #[cfg(feature = "static")]
2065 Family::Marmelad,
2066 #[cfg(feature = "static")]
2067 Family::MartelSans,
2068 #[cfg(feature = "static")]
2069 Family::Marvel,
2070 #[cfg(any(feature = "variable", feature = "static"))]
2071 Family::MavenPro,
2072 #[cfg(feature = "static")]
2073 Family::MeeraInimai,
2074 #[cfg(any(feature = "variable", feature = "static"))]
2075 Family::MerriweatherSans,
2076 #[cfg(feature = "static")]
2077 Family::Metrophobic,
2078 #[cfg(feature = "static")]
2079 Family::Michroma,
2080 #[cfg(feature = "static")]
2081 Family::Mina,
2082 #[cfg(feature = "static")]
2083 Family::Mingzat,
2084 #[cfg(feature = "static")]
2085 Family::MiriamLibre,
2086 #[cfg(feature = "static")]
2087 Family::Mitr,
2088 #[cfg(feature = "static")]
2089 Family::MochiyPopOne,
2090 #[cfg(feature = "static")]
2091 Family::MochiyPopPOne,
2092 #[cfg(any(feature = "variable", feature = "static"))]
2093 Family::Mohave,
2094 #[cfg(feature = "static")]
2095 Family::Molengo,
2096 #[cfg(any(feature = "variable", feature = "static"))]
2097 Family::Monda,
2098 #[cfg(feature = "static")]
2099 Family::MonomaniacOne,
2100 #[cfg(any(feature = "variable", feature = "static"))]
2101 Family::Montserrat,
2102 #[cfg(feature = "static")]
2103 Family::MontserratAlternates,
2104 #[cfg(feature = "static")]
2105 Family::MontserratSubrayada,
2106 #[cfg(feature = "static")]
2107 Family::Mooli,
2108 #[cfg(feature = "static")]
2109 Family::Moulpali,
2110 #[cfg(feature = "static")]
2111 Family::MouseMemoirs,
2112 #[cfg(feature = "static")]
2113 Family::Mukta,
2114 #[cfg(feature = "static")]
2115 Family::MuktaMahee,
2116 #[cfg(feature = "static")]
2117 Family::MuktaMalar,
2118 #[cfg(feature = "static")]
2119 Family::MuktaVaani,
2120 #[cfg(any(feature = "variable", feature = "static"))]
2121 Family::Mulish,
2122 #[cfg(any(feature = "variable", feature = "static"))]
2123 Family::Murecho,
2124 #[cfg(feature = "static")]
2125 Family::NTR,
2126 #[cfg(feature = "static")]
2127 Family::NanumGothic,
2128 #[cfg(feature = "static")]
2129 Family::NewsCycle,
2130 #[cfg(feature = "static")]
2131 Family::Niramit,
2132 #[cfg(feature = "static")]
2133 Family::Nobile,
2134 #[cfg(feature = "static")]
2135 Family::Nokora,
2136 #[cfg(feature = "static")]
2137 Family::Notable,
2138 #[cfg(feature = "static")]
2139 Family::NotoColorEmoji,
2140 #[cfg(any(feature = "variable", feature = "static"))]
2141 Family::NotoEmoji,
2142 #[cfg(any(feature = "variable", feature = "static"))]
2143 Family::NotoKufiArabic,
2144 #[cfg(feature = "static")]
2145 Family::NotoMusic,
2146 #[cfg(any(feature = "variable", feature = "static"))]
2147 Family::NotoSans,
2148 #[cfg(any(feature = "variable", feature = "static"))]
2149 Family::NotoSansAdlam,
2150 #[cfg(any(feature = "variable", feature = "static"))]
2151 Family::NotoSansAdlamUnjoined,
2152 #[cfg(feature = "static")]
2153 Family::NotoSansAnatolianHieroglyphs,
2154 #[cfg(any(feature = "variable", feature = "static"))]
2155 Family::NotoSansArabic,
2156 #[cfg(any(feature = "variable", feature = "static"))]
2157 Family::NotoSansArmenian,
2158 #[cfg(feature = "static")]
2159 Family::NotoSansAvestan,
2160 #[cfg(any(feature = "variable", feature = "static"))]
2161 Family::NotoSansBalinese,
2162 #[cfg(any(feature = "variable", feature = "static"))]
2163 Family::NotoSansBamum,
2164 #[cfg(any(feature = "variable", feature = "static"))]
2165 Family::NotoSansBassaVah,
2166 #[cfg(feature = "static")]
2167 Family::NotoSansBatak,
2168 #[cfg(any(feature = "variable", feature = "static"))]
2169 Family::NotoSansBengali,
2170 #[cfg(feature = "static")]
2171 Family::NotoSansBhaiksuki,
2172 #[cfg(feature = "static")]
2173 Family::NotoSansBrahmi,
2174 #[cfg(feature = "static")]
2175 Family::NotoSansBuginese,
2176 #[cfg(feature = "static")]
2177 Family::NotoSansBuhid,
2178 #[cfg(any(feature = "variable", feature = "static"))]
2179 Family::NotoSansCanadianAboriginal,
2180 #[cfg(feature = "static")]
2181 Family::NotoSansCarian,
2182 #[cfg(feature = "static")]
2183 Family::NotoSansCaucasianAlbanian,
2184 #[cfg(feature = "static")]
2185 Family::NotoSansChakma,
2186 #[cfg(any(feature = "variable", feature = "static"))]
2187 Family::NotoSansCham,
2188 #[cfg(any(feature = "variable", feature = "static"))]
2189 Family::NotoSansCherokee,
2190 #[cfg(feature = "static")]
2191 Family::NotoSansChorasmian,
2192 #[cfg(feature = "static")]
2193 Family::NotoSansCoptic,
2194 #[cfg(feature = "static")]
2195 Family::NotoSansCuneiform,
2196 #[cfg(feature = "static")]
2197 Family::NotoSansCypriot,
2198 #[cfg(feature = "static")]
2199 Family::NotoSansCyproMinoan,
2200 #[cfg(feature = "static")]
2201 Family::NotoSansDeseret,
2202 #[cfg(any(feature = "variable", feature = "static"))]
2203 Family::NotoSansDevanagari,
2204 #[cfg(any(feature = "variable", feature = "static"))]
2205 Family::NotoSansDisplay,
2206 #[cfg(feature = "static")]
2207 Family::NotoSansDuployan,
2208 #[cfg(feature = "static")]
2209 Family::NotoSansEgyptianHieroglyphs,
2210 #[cfg(feature = "static")]
2211 Family::NotoSansElbasan,
2212 #[cfg(feature = "static")]
2213 Family::NotoSansElymaic,
2214 #[cfg(any(feature = "variable", feature = "static"))]
2215 Family::NotoSansEthiopic,
2216 #[cfg(any(feature = "variable", feature = "static"))]
2217 Family::NotoSansGeorgian,
2218 #[cfg(feature = "static")]
2219 Family::NotoSansGlagolitic,
2220 #[cfg(feature = "static")]
2221 Family::NotoSansGothic,
2222 #[cfg(feature = "static")]
2223 Family::NotoSansGrantha,
2224 #[cfg(any(feature = "variable", feature = "static"))]
2225 Family::NotoSansGujarati,
2226 #[cfg(any(feature = "variable", feature = "static"))]
2227 Family::NotoSansGunjalaGondi,
2228 #[cfg(any(feature = "variable", feature = "static"))]
2229 Family::NotoSansGurmukhi,
2230 #[cfg(any(feature = "variable", feature = "static"))]
2231 Family::NotoSansHK,
2232 #[cfg(any(feature = "variable", feature = "static"))]
2233 Family::NotoSansHanifiRohingya,
2234 #[cfg(feature = "static")]
2235 Family::NotoSansHanunoo,
2236 #[cfg(feature = "static")]
2237 Family::NotoSansHatran,
2238 #[cfg(any(feature = "variable", feature = "static"))]
2239 Family::NotoSansHebrew,
2240 #[cfg(feature = "static")]
2241 Family::NotoSansImperialAramaic,
2242 #[cfg(feature = "static")]
2243 Family::NotoSansIndicSiyaqNumbers,
2244 #[cfg(feature = "static")]
2245 Family::NotoSansInscriptionalPahlavi,
2246 #[cfg(feature = "static")]
2247 Family::NotoSansInscriptionalParthian,
2248 #[cfg(any(feature = "variable", feature = "static"))]
2249 Family::NotoSansJP,
2250 #[cfg(any(feature = "variable", feature = "static"))]
2251 Family::NotoSansJavanese,
2252 #[cfg(any(feature = "variable", feature = "static"))]
2253 Family::NotoSansKR,
2254 #[cfg(feature = "static")]
2255 Family::NotoSansKaithi,
2256 #[cfg(any(feature = "variable", feature = "static"))]
2257 Family::NotoSansKannada,
2258 #[cfg(any(feature = "variable", feature = "static"))]
2259 Family::NotoSansKawi,
2260 #[cfg(any(feature = "variable", feature = "static"))]
2261 Family::NotoSansKayahLi,
2262 #[cfg(feature = "static")]
2263 Family::NotoSansKharoshthi,
2264 #[cfg(any(feature = "variable", feature = "static"))]
2265 Family::NotoSansKhmer,
2266 #[cfg(feature = "static")]
2267 Family::NotoSansKhojki,
2268 #[cfg(feature = "static")]
2269 Family::NotoSansKhudawadi,
2270 #[cfg(any(feature = "variable", feature = "static"))]
2271 Family::NotoSansLao,
2272 #[cfg(any(feature = "variable", feature = "static"))]
2273 Family::NotoSansLaoLooped,
2274 #[cfg(feature = "static")]
2275 Family::NotoSansLepcha,
2276 #[cfg(feature = "static")]
2277 Family::NotoSansLimbu,
2278 #[cfg(feature = "static")]
2279 Family::NotoSansLinearA,
2280 #[cfg(feature = "static")]
2281 Family::NotoSansLinearB,
2282 #[cfg(any(feature = "variable", feature = "static"))]
2283 Family::NotoSansLisu,
2284 #[cfg(feature = "static")]
2285 Family::NotoSansLycian,
2286 #[cfg(feature = "static")]
2287 Family::NotoSansLydian,
2288 #[cfg(feature = "static")]
2289 Family::NotoSansMahajani,
2290 #[cfg(any(feature = "variable", feature = "static"))]
2291 Family::NotoSansMalayalam,
2292 #[cfg(feature = "static")]
2293 Family::NotoSansMandaic,
2294 #[cfg(feature = "static")]
2295 Family::NotoSansManichaean,
2296 #[cfg(feature = "static")]
2297 Family::NotoSansMarchen,
2298 #[cfg(feature = "static")]
2299 Family::NotoSansMasaramGondi,
2300 #[cfg(feature = "static")]
2301 Family::NotoSansMath,
2302 #[cfg(feature = "static")]
2303 Family::NotoSansMayanNumerals,
2304 #[cfg(any(feature = "variable", feature = "static"))]
2305 Family::NotoSansMedefaidrin,
2306 #[cfg(any(feature = "variable", feature = "static"))]
2307 Family::NotoSansMeeteiMayek,
2308 #[cfg(feature = "static")]
2309 Family::NotoSansMendeKikakui,
2310 #[cfg(feature = "static")]
2311 Family::NotoSansMeroitic,
2312 #[cfg(feature = "static")]
2313 Family::NotoSansMiao,
2314 #[cfg(feature = "static")]
2315 Family::NotoSansModi,
2316 #[cfg(feature = "static")]
2317 Family::NotoSansMongolian,
2318 #[cfg(any(feature = "variable", feature = "static"))]
2319 Family::NotoSansMono,
2320 #[cfg(feature = "static")]
2321 Family::NotoSansMro,
2322 #[cfg(feature = "static")]
2323 Family::NotoSansMultani,
2324 #[cfg(feature = "static")]
2325 Family::NotoSansMyanmar,
2326 #[cfg(feature = "static")]
2327 Family::NotoSansNKo,
2328 #[cfg(any(feature = "variable", feature = "static"))]
2329 Family::NotoSansNKoUnjoined,
2330 #[cfg(feature = "static")]
2331 Family::NotoSansNabataean,
2332 #[cfg(any(feature = "variable", feature = "static"))]
2333 Family::NotoSansNagMundari,
2334 #[cfg(feature = "static")]
2335 Family::NotoSansNandinagari,
2336 #[cfg(any(feature = "variable", feature = "static"))]
2337 Family::NotoSansNewTaiLue,
2338 #[cfg(feature = "static")]
2339 Family::NotoSansNewa,
2340 #[cfg(feature = "static")]
2341 Family::NotoSansNushu,
2342 #[cfg(feature = "static")]
2343 Family::NotoSansOgham,
2344 #[cfg(any(feature = "variable", feature = "static"))]
2345 Family::NotoSansOlChiki,
2346 #[cfg(feature = "static")]
2347 Family::NotoSansOldHungarian,
2348 #[cfg(feature = "static")]
2349 Family::NotoSansOldItalic,
2350 #[cfg(feature = "static")]
2351 Family::NotoSansOldNorthArabian,
2352 #[cfg(feature = "static")]
2353 Family::NotoSansOldPermic,
2354 #[cfg(feature = "static")]
2355 Family::NotoSansOldPersian,
2356 #[cfg(feature = "static")]
2357 Family::NotoSansOldSogdian,
2358 #[cfg(feature = "static")]
2359 Family::NotoSansOldSouthArabian,
2360 #[cfg(feature = "static")]
2361 Family::NotoSansOldTurkic,
2362 #[cfg(any(feature = "variable", feature = "static"))]
2363 Family::NotoSansOriya,
2364 #[cfg(feature = "static")]
2365 Family::NotoSansOsage,
2366 #[cfg(feature = "static")]
2367 Family::NotoSansOsmanya,
2368 #[cfg(feature = "static")]
2369 Family::NotoSansPahawhHmong,
2370 #[cfg(feature = "static")]
2371 Family::NotoSansPalmyrene,
2372 #[cfg(feature = "static")]
2373 Family::NotoSansPauCinHau,
2374 #[cfg(feature = "static")]
2375 Family::NotoSansPhagsPa,
2376 #[cfg(feature = "static")]
2377 Family::NotoSansPhoenician,
2378 #[cfg(feature = "static")]
2379 Family::NotoSansPsalterPahlavi,
2380 #[cfg(feature = "static")]
2381 Family::NotoSansRejang,
2382 #[cfg(feature = "static")]
2383 Family::NotoSansRunic,
2384 #[cfg(any(feature = "variable", feature = "static"))]
2385 Family::NotoSansSC,
2386 #[cfg(feature = "static")]
2387 Family::NotoSansSamaritan,
2388 #[cfg(feature = "static")]
2389 Family::NotoSansSaurashtra,
2390 #[cfg(feature = "static")]
2391 Family::NotoSansSharada,
2392 #[cfg(feature = "static")]
2393 Family::NotoSansShavian,
2394 #[cfg(feature = "static")]
2395 Family::NotoSansSiddham,
2396 #[cfg(feature = "static")]
2397 Family::NotoSansSignWriting,
2398 #[cfg(any(feature = "variable", feature = "static"))]
2399 Family::NotoSansSinhala,
2400 #[cfg(feature = "static")]
2401 Family::NotoSansSogdian,
2402 #[cfg(any(feature = "variable", feature = "static"))]
2403 Family::NotoSansSoraSompeng,
2404 #[cfg(feature = "static")]
2405 Family::NotoSansSoyombo,
2406 #[cfg(any(feature = "variable", feature = "static"))]
2407 Family::NotoSansSundanese,
2408 #[cfg(feature = "static")]
2409 Family::NotoSansSylotiNagri,
2410 #[cfg(any(feature = "variable", feature = "static"))]
2411 Family::NotoSansSymbols,
2412 #[cfg(feature = "static")]
2413 Family::NotoSansSymbols2,
2414 #[cfg(any(feature = "variable", feature = "static"))]
2415 Family::NotoSansSyriac,
2416 #[cfg(any(feature = "variable", feature = "static"))]
2417 Family::NotoSansSyriacEastern,
2418 #[cfg(any(feature = "variable", feature = "static"))]
2419 Family::NotoSansTC,
2420 #[cfg(feature = "static")]
2421 Family::NotoSansTagalog,
2422 #[cfg(feature = "static")]
2423 Family::NotoSansTagbanwa,
2424 #[cfg(feature = "static")]
2425 Family::NotoSansTaiLe,
2426 #[cfg(any(feature = "variable", feature = "static"))]
2427 Family::NotoSansTaiTham,
2428 #[cfg(feature = "static")]
2429 Family::NotoSansTaiViet,
2430 #[cfg(feature = "static")]
2431 Family::NotoSansTakri,
2432 #[cfg(any(feature = "variable", feature = "static"))]
2433 Family::NotoSansTamil,
2434 #[cfg(feature = "static")]
2435 Family::NotoSansTamilSupplement,
2436 #[cfg(any(feature = "variable", feature = "static"))]
2437 Family::NotoSansTangsa,
2438 #[cfg(any(feature = "variable", feature = "static"))]
2439 Family::NotoSansTelugu,
2440 #[cfg(any(feature = "variable", feature = "static"))]
2441 Family::NotoSansThaana,
2442 #[cfg(any(feature = "variable", feature = "static"))]
2443 Family::NotoSansThai,
2444 #[cfg(feature = "static")]
2445 Family::NotoSansThaiLooped,
2446 #[cfg(feature = "static")]
2447 Family::NotoSansTifinagh,
2448 #[cfg(feature = "static")]
2449 Family::NotoSansTirhuta,
2450 #[cfg(feature = "static")]
2451 Family::NotoSansUgaritic,
2452 #[cfg(feature = "static")]
2453 Family::NotoSansVai,
2454 #[cfg(any(feature = "variable", feature = "static"))]
2455 Family::NotoSansVithkuqi,
2456 #[cfg(feature = "static")]
2457 Family::NotoSansWancho,
2458 #[cfg(feature = "static")]
2459 Family::NotoSansWarangCiti,
2460 #[cfg(feature = "static")]
2461 Family::NotoSansYi,
2462 #[cfg(feature = "static")]
2463 Family::NotoSansZanabazarSquare,
2464 #[cfg(any(feature = "variable", feature = "static"))]
2465 Family::NotoTraditionalNushu,
2466 #[cfg(feature = "static")]
2467 Family::NotoZnamennyMusicalNotation,
2468 #[cfg(feature = "static")]
2469 Family::Numans,
2470 #[cfg(any(feature = "variable", feature = "static"))]
2471 Family::Nunito,
2472 #[cfg(any(feature = "variable", feature = "static"))]
2473 Family::NunitoSans,
2474 #[cfg(feature = "static")]
2475 Family::NuosuSIL,
2476 #[cfg(any(feature = "variable", feature = "static"))]
2477 Family::Ojuju,
2478 #[cfg(any(feature = "variable", feature = "static"))]
2479 Family::Onest,
2480 #[cfg(any(feature = "variable", feature = "static"))]
2481 Family::OpenSans,
2482 #[cfg(feature = "static")]
2483 Family::Orbit,
2484 #[cfg(any(feature = "variable", feature = "static"))]
2485 Family::Orbitron,
2486 #[cfg(feature = "static")]
2487 Family::Orienta,
2488 #[cfg(any(feature = "variable", feature = "static"))]
2489 Family::Oswald,
2490 #[cfg(any(feature = "variable", feature = "static"))]
2491 Family::Outfit,
2492 #[cfg(any(feature = "variable", feature = "static"))]
2493 Family::Overpass,
2494 #[cfg(feature = "static")]
2495 Family::Oxygen,
2496 #[cfg(feature = "static")]
2497 Family::PTSans,
2498 #[cfg(feature = "static")]
2499 Family::PTSansCaption,
2500 #[cfg(feature = "static")]
2501 Family::PTSansNarrow,
2502 #[cfg(feature = "static")]
2503 Family::Padauk,
2504 #[cfg(feature = "static")]
2505 Family::Palanquin,
2506 #[cfg(feature = "static")]
2507 Family::PalanquinDark,
2508 #[cfg(any(feature = "variable", feature = "static"))]
2509 Family::PathwayExtreme,
2510 #[cfg(feature = "static")]
2511 Family::PathwayGothicOne,
2512 #[cfg(feature = "static")]
2513 Family::Pattaya,
2514 #[cfg(feature = "static")]
2515 Family::Pavanam,
2516 #[cfg(feature = "static")]
2517 Family::PaytoneOne,
2518 #[cfg(feature = "static")]
2519 Family::Philosopher,
2520 #[cfg(feature = "static")]
2521 Family::Play,
2522 #[cfg(any(feature = "variable", feature = "static"))]
2523 Family::PlusJakartaSans,
2524 #[cfg(any(feature = "variable", feature = "static"))]
2525 Family::PontanoSans,
2526 #[cfg(feature = "static")]
2527 Family::Poppins,
2528 #[cfg(feature = "static")]
2529 Family::PortLligatSans,
2530 #[cfg(feature = "static")]
2531 Family::PragatiNarrow,
2532 #[cfg(feature = "static")]
2533 Family::Preahvihear,
2534 #[cfg(feature = "static")]
2535 Family::Prompt,
2536 #[cfg(feature = "static")]
2537 Family::ProzaLibre,
2538 #[cfg(any(feature = "variable", feature = "static"))]
2539 Family::PublicSans,
2540 #[cfg(feature = "static")]
2541 Family::Puritan,
2542 #[cfg(feature = "static")]
2543 Family::Qahiri,
2544 #[cfg(feature = "static")]
2545 Family::Quantico,
2546 #[cfg(feature = "static")]
2547 Family::QuattrocentoSans,
2548 #[cfg(feature = "static")]
2549 Family::Questrial,
2550 #[cfg(any(feature = "variable", feature = "static"))]
2551 Family::Quicksand,
2552 #[cfg(any(feature = "variable", feature = "static"))]
2553 Family::REM,
2554 #[cfg(any(feature = "variable", feature = "static"))]
2555 Family::RadioCanada,
2556 #[cfg(any(feature = "variable", feature = "static"))]
2557 Family::RadioCanadaBig,
2558 #[cfg(feature = "static")]
2559 Family::Rajdhani,
2560 #[cfg(any(feature = "variable", feature = "static"))]
2561 Family::Raleway,
2562 #[cfg(feature = "static")]
2563 Family::Ramabhadra,
2564 #[cfg(feature = "static")]
2565 Family::Rambla,
2566 #[cfg(feature = "static")]
2567 Family::Rationale,
2568 #[cfg(any(feature = "variable", feature = "static"))]
2569 Family::ReadexPro,
2570 #[cfg(any(feature = "variable", feature = "static"))]
2571 Family::Recursive,
2572 #[cfg(any(feature = "variable", feature = "static"))]
2573 Family::RedHatDisplay,
2574 #[cfg(any(feature = "variable", feature = "static"))]
2575 Family::RedHatText,
2576 #[cfg(any(feature = "variable", feature = "static"))]
2577 Family::RedditSans,
2578 #[cfg(any(feature = "variable", feature = "static"))]
2579 Family::RedditSansCondensed,
2580 #[cfg(any(feature = "variable", feature = "static"))]
2581 Family::ReemKufi,
2582 #[cfg(any(feature = "variable", feature = "static"))]
2583 Family::ReemKufiFun,
2584 #[cfg(feature = "static")]
2585 Family::ReemKufiInk,
2586 #[cfg(any(feature = "variable", feature = "static"))]
2587 Family::RethinkSans,
2588 #[cfg(feature = "static")]
2589 Family::Roboto,
2590 #[cfg(any(feature = "variable", feature = "static"))]
2591 Family::RobotoCondensed,
2592 #[cfg(any(feature = "variable", feature = "static"))]
2593 Family::RobotoFlex,
2594 #[cfg(feature = "static")]
2595 Family::RocknRollOne,
2596 #[cfg(feature = "static")]
2597 Family::RopaSans,
2598 #[cfg(any(feature = "variable", feature = "static"))]
2599 Family::Rosario,
2600 #[cfg(any(feature = "variable", feature = "static"))]
2601 Family::Rubik,
2602 #[cfg(feature = "static")]
2603 Family::RubikMonoOne,
2604 #[cfg(any(feature = "variable", feature = "static"))]
2605 Family::Ruda,
2606 #[cfg(feature = "static")]
2607 Family::Ruluko,
2608 #[cfg(feature = "static")]
2609 Family::RumRaisin,
2610 #[cfg(feature = "static")]
2611 Family::RussoOne,
2612 #[cfg(any(feature = "variable", feature = "static"))]
2613 Family::Saira,
2614 #[cfg(feature = "static")]
2615 Family::SairaCondensed,
2616 #[cfg(feature = "static")]
2617 Family::SairaExtraCondensed,
2618 #[cfg(feature = "static")]
2619 Family::SairaSemiCondensed,
2620 #[cfg(feature = "static")]
2621 Family::Sansita,
2622 #[cfg(feature = "static")]
2623 Family::Sarabun,
2624 #[cfg(feature = "static")]
2625 Family::Sarala,
2626 #[cfg(feature = "static")]
2627 Family::Sarpanch,
2628 #[cfg(feature = "static")]
2629 Family::SawarabiGothic,
2630 #[cfg(feature = "static")]
2631 Family::Scada,
2632 #[cfg(any(feature = "variable", feature = "static"))]
2633 Family::SchibstedGrotesk,
2634 #[cfg(feature = "static")]
2635 Family::SecularOne,
2636 #[cfg(any(feature = "variable", feature = "static"))]
2637 Family::Sen,
2638 #[cfg(feature = "static")]
2639 Family::SeymourOne,
2640 #[cfg(feature = "static")]
2641 Family::Shanti,
2642 #[cfg(feature = "static")]
2643 Family::Share,
2644 #[cfg(feature = "static")]
2645 Family::ShareTech,
2646 #[cfg(feature = "static")]
2647 Family::ShipporiAntique,
2648 #[cfg(feature = "static")]
2649 Family::ShipporiAntiqueB1,
2650 #[cfg(feature = "static")]
2651 Family::Siemreap,
2652 #[cfg(any(feature = "variable", feature = "static"))]
2653 Family::Signika,
2654 #[cfg(any(feature = "variable", feature = "static"))]
2655 Family::SignikaNegative,
2656 #[cfg(feature = "static")]
2657 Family::Sintony,
2658 #[cfg(feature = "static")]
2659 Family::SixCaps,
2660 #[cfg(any(feature = "variable", feature = "static"))]
2661 Family::SmoochSans,
2662 #[cfg(feature = "static")]
2663 Family::Snippet,
2664 #[cfg(any(feature = "variable", feature = "static"))]
2665 Family::SofiaSans,
2666 #[cfg(any(feature = "variable", feature = "static"))]
2667 Family::SofiaSansCondensed,
2668 #[cfg(any(feature = "variable", feature = "static"))]
2669 Family::SofiaSansExtraCondensed,
2670 #[cfg(any(feature = "variable", feature = "static"))]
2671 Family::SofiaSansSemiCondensed,
2672 #[cfg(any(feature = "variable", feature = "static"))]
2673 Family::Sono,
2674 #[cfg(any(feature = "variable", feature = "static"))]
2675 Family::Sora,
2676 #[cfg(any(feature = "variable", feature = "static"))]
2677 Family::SourceSans3,
2678 #[cfg(any(feature = "variable", feature = "static"))]
2679 Family::SpaceGrotesk,
2680 #[cfg(feature = "static")]
2681 Family::Spinnaker,
2682 #[cfg(any(feature = "variable", feature = "static"))]
2683 Family::SplineSans,
2684 #[cfg(feature = "static")]
2685 Family::Stick,
2686 #[cfg(any(feature = "variable", feature = "static"))]
2687 Family::StickNoBills,
2688 #[cfg(feature = "static")]
2689 Family::Strait,
2690 #[cfg(feature = "static")]
2691 Family::Stylish,
2692 #[cfg(feature = "static")]
2693 Family::SulphurPoint,
2694 #[cfg(feature = "static")]
2695 Family::Sunflower,
2696 #[cfg(feature = "static")]
2697 Family::Syncopate,
2698 #[cfg(any(feature = "variable", feature = "static"))]
2699 Family::Syne,
2700 #[cfg(feature = "static")]
2701 Family::TacOne,
2702 #[cfg(feature = "static")]
2703 Family::Tajawal,
2704 #[cfg(feature = "static")]
2705 Family::Tauri,
2706 #[cfg(any(feature = "variable", feature = "static"))]
2707 Family::Teachers,
2708 #[cfg(any(feature = "variable", feature = "static"))]
2709 Family::Teko,
2710 #[cfg(feature = "static")]
2711 Family::Telex,
2712 #[cfg(feature = "static")]
2713 Family::TenaliRamakrishna,
2714 #[cfg(feature = "static")]
2715 Family::TenorSans,
2716 #[cfg(feature = "static")]
2717 Family::TextMeOne,
2718 #[cfg(feature = "static")]
2719 Family::Thasadith,
2720 #[cfg(feature = "static")]
2721 Family::Timmana,
2722 #[cfg(feature = "static")]
2723 Family::Tiny5,
2724 #[cfg(feature = "static")]
2725 Family::TitilliumWeb,
2726 #[cfg(feature = "static")]
2727 Family::Tomorrow,
2728 #[cfg(any(feature = "variable", feature = "static"))]
2729 Family::Trispace,
2730 #[cfg(any(feature = "variable", feature = "static"))]
2731 Family::Truculenta,
2732 #[cfg(feature = "static")]
2733 Family::TsukimiRounded,
2734 #[cfg(feature = "static")]
2735 Family::Ubuntu,
2736 #[cfg(feature = "static")]
2737 Family::UbuntuCondensed,
2738 #[cfg(any(feature = "variable", feature = "static"))]
2739 Family::UbuntuSans,
2740 #[cfg(any(feature = "variable", feature = "static"))]
2741 Family::Unbounded,
2742 #[cfg(any(feature = "variable", feature = "static"))]
2743 Family::Urbanist,
2744 #[cfg(feature = "static")]
2745 Family::Varela,
2746 #[cfg(feature = "static")]
2747 Family::VarelaRound,
2748 #[cfg(any(feature = "variable", feature = "static"))]
2749 Family::Varta,
2750 #[cfg(any(feature = "variable", feature = "static"))]
2751 Family::Vazirmatn,
2752 #[cfg(feature = "static")]
2753 Family::Viga,
2754 #[cfg(feature = "static")]
2755 Family::Voces,
2756 #[cfg(feature = "static")]
2757 Family::Voltaire,
2758 #[cfg(feature = "static")]
2759 Family::WendyOne,
2760 #[cfg(feature = "static")]
2761 Family::WireOne,
2762 #[cfg(any(feature = "variable", feature = "static"))]
2763 Family::WixMadeforDisplay,
2764 #[cfg(any(feature = "variable", feature = "static"))]
2765 Family::WixMadeforText,
2766 #[cfg(any(feature = "variable", feature = "static"))]
2767 Family::WorkSans,
2768 #[cfg(any(feature = "variable", feature = "static"))]
2769 Family::Yaldevi,
2770 #[cfg(any(feature = "variable", feature = "static"))]
2771 Family::YanoneKaffeesatz,
2772 #[cfg(feature = "static")]
2773 Family::Yantramanav,
2774 #[cfg(any(feature = "variable", feature = "static"))]
2775 Family::Ysabeau,
2776 #[cfg(any(feature = "variable", feature = "static"))]
2777 Family::YsabeauInfant,
2778 #[cfg(any(feature = "variable", feature = "static"))]
2779 Family::YsabeauOffice,
2780 #[cfg(any(feature = "variable", feature = "static"))]
2781 Family::YsabeauSC,
2782 #[cfg(feature = "static")]
2783 Family::YuseiMagic,
2784 #[cfg(feature = "static")]
2785 Family::ZCOOLKuaiLe,
2786 #[cfg(feature = "static")]
2787 Family::ZCOOLQingKeHuangYou,
2788 #[cfg(feature = "static")]
2789 Family::ZCOOLXiaoWei,
2790 #[cfg(feature = "static")]
2791 Family::Zain,
2792 #[cfg(feature = "static")]
2793 Family::ZenKakuGothicAntique,
2794 #[cfg(feature = "static")]
2795 Family::ZenKakuGothicNew,
2796 #[cfg(feature = "static")]
2797 Family::ZenKurenaido,
2798 #[cfg(feature = "static")]
2799 Family::ZenMaruGothic,
2800 ]
2801 }
2802 Category::Serif => {
2803 vec![
2804 #[cfg(feature = "static")]
2805 Family::AbhayaLibre,
2806 #[cfg(feature = "static")]
2807 Family::AbyssinicaSIL,
2808 #[cfg(feature = "static")]
2809 Family::Adamina,
2810 #[cfg(any(feature = "variable", feature = "static"))]
2811 Family::Alegreya,
2812 #[cfg(feature = "static")]
2813 Family::AlegreyaSC,
2814 #[cfg(any(feature = "variable", feature = "static"))]
2815 Family::Aleo,
2816 #[cfg(feature = "static")]
2817 Family::Alice,
2818 #[cfg(feature = "static")]
2819 Family::Alike,
2820 #[cfg(feature = "static")]
2821 Family::AlikeAngular,
2822 #[cfg(feature = "static")]
2823 Family::Alkalami,
2824 #[cfg(feature = "static")]
2825 Family::Almendra,
2826 #[cfg(feature = "static")]
2827 Family::AlmendraSC,
2828 #[cfg(feature = "static")]
2829 Family::Amethysta,
2830 #[cfg(feature = "static")]
2831 Family::Amiri,
2832 #[cfg(feature = "static")]
2833 Family::AmiriQuran,
2834 #[cfg(any(feature = "variable", feature = "static"))]
2835 Family::AndadaPro,
2836 #[cfg(feature = "static")]
2837 Family::AnnapurnaSIL,
2838 #[cfg(feature = "static")]
2839 Family::AnticDidone,
2840 #[cfg(feature = "static")]
2841 Family::AnticSlab,
2842 #[cfg(feature = "static")]
2843 Family::AoboshiOne,
2844 #[cfg(feature = "static")]
2845 Family::Arapey,
2846 #[cfg(feature = "static")]
2847 Family::Arbutus,
2848 #[cfg(feature = "static")]
2849 Family::ArbutusSlab,
2850 #[cfg(feature = "static")]
2851 Family::ArefRuqaa,
2852 #[cfg(feature = "static")]
2853 Family::ArefRuqaaInk,
2854 #[cfg(feature = "static")]
2855 Family::Artifika,
2856 #[cfg(feature = "static")]
2857 Family::Arvo,
2858 #[cfg(feature = "static")]
2859 Family::Asar,
2860 #[cfg(feature = "static")]
2861 Family::Average,
2862 #[cfg(feature = "static")]
2863 Family::BIZUDMincho,
2864 #[cfg(feature = "static")]
2865 Family::BIZUDPMincho,
2866 #[cfg(feature = "static")]
2867 Family::BacasimeAntique,
2868 #[cfg(feature = "static")]
2869 Family::Balthazar,
2870 #[cfg(feature = "static")]
2871 Family::Baskervville,
2872 #[cfg(feature = "static")]
2873 Family::BaskervvilleSC,
2874 #[cfg(feature = "static")]
2875 Family::Belgrano,
2876 #[cfg(feature = "static")]
2877 Family::Bellefair,
2878 #[cfg(feature = "static")]
2879 Family::Benne,
2880 #[cfg(feature = "static")]
2881 Family::Bentham,
2882 #[cfg(any(feature = "variable", feature = "static"))]
2883 Family::Besley,
2884 #[cfg(feature = "static")]
2885 Family::Bevan,
2886 #[cfg(feature = "static")]
2887 Family::BhuTukaExpandedOne,
2888 #[cfg(any(feature = "variable", feature = "static"))]
2889 Family::BioRhyme,
2890 #[cfg(feature = "static")]
2891 Family::BioRhymeExpanded,
2892 #[cfg(any(feature = "variable", feature = "static"))]
2893 Family::Bitter,
2894 #[cfg(any(feature = "variable", feature = "static"))]
2895 Family::BodoniModa,
2896 #[cfg(any(feature = "variable", feature = "static"))]
2897 Family::BodoniModaSC,
2898 #[cfg(feature = "static")]
2899 Family::BonaNova,
2900 #[cfg(feature = "static")]
2901 Family::BonaNovaSC,
2902 #[cfg(feature = "static")]
2903 Family::Brawler,
2904 #[cfg(feature = "static")]
2905 Family::BreeSerif,
2906 #[cfg(any(feature = "variable", feature = "static"))]
2907 Family::Brygada1918,
2908 #[cfg(feature = "static")]
2909 Family::Buenard,
2910 #[cfg(feature = "static")]
2911 Family::CactusClassicalSerif,
2912 #[cfg(feature = "static")]
2913 Family::Caladea,
2914 #[cfg(feature = "static")]
2915 Family::Cambo,
2916 #[cfg(feature = "static")]
2917 Family::CantataOne,
2918 #[cfg(feature = "static")]
2919 Family::Cardo,
2920 #[cfg(feature = "static")]
2921 Family::Castoro,
2922 #[cfg(feature = "static")]
2923 Family::Caudex,
2924 #[cfg(feature = "static")]
2925 Family::CharisSIL,
2926 #[cfg(any(feature = "variable", feature = "static"))]
2927 Family::Cinzel,
2928 #[cfg(feature = "static")]
2929 Family::Copse,
2930 #[cfg(any(feature = "variable", feature = "static"))]
2931 Family::Cormorant,
2932 #[cfg(feature = "static")]
2933 Family::CormorantGaramond,
2934 #[cfg(feature = "static")]
2935 Family::CormorantInfant,
2936 #[cfg(feature = "static")]
2937 Family::CormorantSC,
2938 #[cfg(feature = "static")]
2939 Family::CormorantUnicase,
2940 #[cfg(feature = "static")]
2941 Family::CormorantUpright,
2942 #[cfg(feature = "static")]
2943 Family::Coustard,
2944 #[cfg(feature = "static")]
2945 Family::CreteRound,
2946 #[cfg(any(feature = "variable", feature = "static"))]
2947 Family::CrimsonPro,
2948 #[cfg(feature = "static")]
2949 Family::CrimsonText,
2950 #[cfg(feature = "static")]
2951 Family::Cutive,
2952 #[cfg(feature = "static")]
2953 Family::DMSerifDisplay,
2954 #[cfg(feature = "static")]
2955 Family::DMSerifText,
2956 #[cfg(feature = "static")]
2957 Family::DaiBannaSIL,
2958 #[cfg(any(feature = "variable", feature = "static"))]
2959 Family::Danfo,
2960 #[cfg(feature = "static")]
2961 Family::DavidLibre,
2962 #[cfg(feature = "static")]
2963 Family::DellaRespira,
2964 #[cfg(feature = "static")]
2965 Family::Diphylleia,
2966 #[cfg(any(feature = "variable", feature = "static"))]
2967 Family::Domine,
2968 #[cfg(feature = "static")]
2969 Family::DonegalOne,
2970 #[cfg(any(feature = "variable", feature = "static"))]
2971 Family::EBGaramond,
2972 #[cfg(any(feature = "variable", feature = "static"))]
2973 Family::Eczar,
2974 #[cfg(feature = "static")]
2975 Family::Enriqueta,
2976 #[cfg(feature = "static")]
2977 Family::Esteban,
2978 #[cfg(feature = "static")]
2979 Family::FanwoodText,
2980 #[cfg(feature = "static")]
2981 Family::FaunaOne,
2982 #[cfg(any(feature = "variable", feature = "static"))]
2983 Family::Faustina,
2984 #[cfg(feature = "static")]
2985 Family::Fenix,
2986 #[cfg(feature = "static")]
2987 Family::FjordOne,
2988 #[cfg(any(feature = "variable", feature = "static"))]
2989 Family::FrankRuhlLibre,
2990 #[cfg(any(feature = "variable", feature = "static"))]
2991 Family::Fraunces,
2992 #[cfg(feature = "static")]
2993 Family::GFSDidot,
2994 #[cfg(feature = "static")]
2995 Family::Gabriela,
2996 #[cfg(any(feature = "variable", feature = "static"))]
2997 Family::Gelasio,
2998 #[cfg(feature = "static")]
2999 Family::GentiumBookPlus,
3000 #[cfg(feature = "static")]
3001 Family::GentiumPlus,
3002 #[cfg(feature = "static")]
3003 Family::GildaDisplay,
3004 #[cfg(feature = "static")]
3005 Family::Glegoo,
3006 #[cfg(feature = "static")]
3007 Family::Gloock,
3008 #[cfg(feature = "static")]
3009 Family::GoudyBookletter1911,
3010 #[cfg(feature = "static")]
3011 Family::GowunBatang,
3012 #[cfg(feature = "static")]
3013 Family::Graduate,
3014 #[cfg(feature = "static")]
3015 Family::GrandifloraOne,
3016 #[cfg(feature = "static")]
3017 Family::Grenze,
3018 #[cfg(feature = "static")]
3019 Family::Gulzar,
3020 #[cfg(feature = "static")]
3021 Family::Gupter,
3022 #[cfg(feature = "static")]
3023 Family::Gurajada,
3024 #[cfg(feature = "static")]
3025 Family::Habibi,
3026 #[cfg(any(feature = "variable", feature = "static"))]
3027 Family::Hahmlet,
3028 #[cfg(feature = "static")]
3029 Family::Halant,
3030 #[cfg(feature = "static")]
3031 Family::Hanuman,
3032 #[cfg(feature = "static")]
3033 Family::HeadlandOne,
3034 #[cfg(any(feature = "variable", feature = "static"))]
3035 Family::HedvigLettersSerif,
3036 #[cfg(any(feature = "variable", feature = "static"))]
3037 Family::HeptaSlab,
3038 #[cfg(feature = "static")]
3039 Family::HinaMincho,
3040 #[cfg(feature = "static")]
3041 Family::HoltwoodOneSC,
3042 #[cfg(feature = "static")]
3043 Family::IBMPlexSerif,
3044 #[cfg(feature = "static")]
3045 Family::IMFellDWPica,
3046 #[cfg(feature = "static")]
3047 Family::IMFellDWPicaSC,
3048 #[cfg(feature = "static")]
3049 Family::IMFellDoublePica,
3050 #[cfg(feature = "static")]
3051 Family::IMFellDoublePicaSC,
3052 #[cfg(feature = "static")]
3053 Family::IMFellEnglish,
3054 #[cfg(feature = "static")]
3055 Family::IMFellEnglishSC,
3056 #[cfg(feature = "static")]
3057 Family::IMFellFrenchCanon,
3058 #[cfg(feature = "static")]
3059 Family::IMFellFrenchCanonSC,
3060 #[cfg(feature = "static")]
3061 Family::IMFellGreatPrimer,
3062 #[cfg(feature = "static")]
3063 Family::IMFellGreatPrimerSC,
3064 #[cfg(any(feature = "variable", feature = "static"))]
3065 Family::IbarraRealNova,
3066 #[cfg(any(feature = "variable", feature = "static"))]
3067 Family::Imbue,
3068 #[cfg(feature = "static")]
3069 Family::Inika,
3070 #[cfg(feature = "static")]
3071 Family::InknutAntiqua,
3072 #[cfg(feature = "static")]
3073 Family::InriaSerif,
3074 #[cfg(feature = "static")]
3075 Family::InstrumentSerif,
3076 #[cfg(feature = "static")]
3077 Family::Italiana,
3078 #[cfg(feature = "static")]
3079 Family::JacquesFrancois,
3080 #[cfg(feature = "static")]
3081 Family::Joan,
3082 #[cfg(feature = "static")]
3083 Family::Jomolhari,
3084 #[cfg(any(feature = "variable", feature = "static"))]
3085 Family::JosefinSlab,
3086 #[cfg(feature = "static")]
3087 Family::Judson,
3088 #[cfg(feature = "static")]
3089 Family::Junge,
3090 #[cfg(feature = "static")]
3091 Family::Kadwa,
3092 #[cfg(feature = "static")]
3093 Family::KaiseiDecol,
3094 #[cfg(feature = "static")]
3095 Family::KaiseiHarunoUmi,
3096 #[cfg(feature = "static")]
3097 Family::KaiseiOpti,
3098 #[cfg(feature = "static")]
3099 Family::KaiseiTokumin,
3100 #[cfg(any(feature = "variable", feature = "static"))]
3101 Family::Kalnia,
3102 #[cfg(any(feature = "variable", feature = "static"))]
3103 Family::Kameron,
3104 #[cfg(feature = "static")]
3105 Family::Karma,
3106 #[cfg(feature = "static")]
3107 Family::KayPhoDu,
3108 #[cfg(feature = "static")]
3109 Family::KiwiMaru,
3110 #[cfg(feature = "static")]
3111 Family::KohSantepheap,
3112 #[cfg(feature = "static")]
3113 Family::KottaOne,
3114 #[cfg(any(feature = "variable", feature = "static"))]
3115 Family::Kreon,
3116 #[cfg(feature = "static")]
3117 Family::Kurale,
3118 #[cfg(any(feature = "variable", feature = "static"))]
3119 Family::Labrada,
3120 #[cfg(feature = "static")]
3121 Family::Lateef,
3122 #[cfg(feature = "static")]
3123 Family::Ledger,
3124 #[cfg(feature = "static")]
3125 Family::LibreBaskerville,
3126 #[cfg(any(feature = "variable", feature = "static"))]
3127 Family::LibreBodoni,
3128 #[cfg(feature = "static")]
3129 Family::LibreCaslonDisplay,
3130 #[cfg(feature = "static")]
3131 Family::LibreCaslonText,
3132 #[cfg(feature = "static")]
3133 Family::LindenHill,
3134 #[cfg(feature = "static")]
3135 Family::LisuBosa,
3136 #[cfg(any(feature = "variable", feature = "static"))]
3137 Family::Literata,
3138 #[cfg(any(feature = "variable", feature = "static"))]
3139 Family::Lora,
3140 #[cfg(feature = "static")]
3141 Family::Lusitana,
3142 #[cfg(feature = "static")]
3143 Family::Lustria,
3144 #[cfg(feature = "static")]
3145 Family::MaidenOrange,
3146 #[cfg(feature = "static")]
3147 Family::Maitree,
3148 #[cfg(feature = "static")]
3149 Family::Maname,
3150 #[cfg(any(feature = "variable", feature = "static"))]
3151 Family::Manuale,
3152 #[cfg(feature = "static")]
3153 Family::Marcellus,
3154 #[cfg(feature = "static")]
3155 Family::MarcellusSC,
3156 #[cfg(any(feature = "variable", feature = "static"))]
3157 Family::MarkaziText,
3158 #[cfg(feature = "static")]
3159 Family::MarkoOne,
3160 #[cfg(feature = "static")]
3161 Family::Martel,
3162 #[cfg(feature = "static")]
3163 Family::Mate,
3164 #[cfg(feature = "static")]
3165 Family::MateSC,
3166 #[cfg(feature = "static")]
3167 Family::Merriweather,
3168 #[cfg(feature = "static")]
3169 Family::Mirza,
3170 #[cfg(feature = "static")]
3171 Family::Montaga,
3172 #[cfg(any(feature = "variable", feature = "static"))]
3173 Family::MontaguSlab,
3174 #[cfg(feature = "static")]
3175 Family::Namdhinggo,
3176 #[cfg(feature = "static")]
3177 Family::NanumMyeongjo,
3178 #[cfg(feature = "static")]
3179 Family::Narnoor,
3180 #[cfg(feature = "static")]
3181 Family::Neuton,
3182 #[cfg(feature = "static")]
3183 Family::NewTegomin,
3184 #[cfg(any(feature = "variable", feature = "static"))]
3185 Family::Newsreader,
3186 #[cfg(feature = "static")]
3187 Family::NoticiaText,
3188 #[cfg(any(feature = "variable", feature = "static"))]
3189 Family::NotoNaskhArabic,
3190 #[cfg(any(feature = "variable", feature = "static"))]
3191 Family::NotoNastaliqUrdu,
3192 #[cfg(any(feature = "variable", feature = "static"))]
3193 Family::NotoRashiHebrew,
3194 #[cfg(any(feature = "variable", feature = "static"))]
3195 Family::NotoSerif,
3196 #[cfg(feature = "static")]
3197 Family::NotoSerifAhom,
3198 #[cfg(any(feature = "variable", feature = "static"))]
3199 Family::NotoSerifArmenian,
3200 #[cfg(feature = "static")]
3201 Family::NotoSerifBalinese,
3202 #[cfg(any(feature = "variable", feature = "static"))]
3203 Family::NotoSerifBengali,
3204 #[cfg(any(feature = "variable", feature = "static"))]
3205 Family::NotoSerifDevanagari,
3206 #[cfg(any(feature = "variable", feature = "static"))]
3207 Family::NotoSerifDisplay,
3208 #[cfg(feature = "static")]
3209 Family::NotoSerifDogra,
3210 #[cfg(any(feature = "variable", feature = "static"))]
3211 Family::NotoSerifEthiopic,
3212 #[cfg(any(feature = "variable", feature = "static"))]
3213 Family::NotoSerifGeorgian,
3214 #[cfg(feature = "static")]
3215 Family::NotoSerifGrantha,
3216 #[cfg(any(feature = "variable", feature = "static"))]
3217 Family::NotoSerifGujarati,
3218 #[cfg(any(feature = "variable", feature = "static"))]
3219 Family::NotoSerifGurmukhi,
3220 #[cfg(any(feature = "variable", feature = "static"))]
3221 Family::NotoSerifHK,
3222 #[cfg(any(feature = "variable", feature = "static"))]
3223 Family::NotoSerifHebrew,
3224 #[cfg(any(feature = "variable", feature = "static"))]
3225 Family::NotoSerifJP,
3226 #[cfg(any(feature = "variable", feature = "static"))]
3227 Family::NotoSerifKR,
3228 #[cfg(any(feature = "variable", feature = "static"))]
3229 Family::NotoSerifKannada,
3230 #[cfg(feature = "static")]
3231 Family::NotoSerifKhitanSmallScript,
3232 #[cfg(any(feature = "variable", feature = "static"))]
3233 Family::NotoSerifKhmer,
3234 #[cfg(any(feature = "variable", feature = "static"))]
3235 Family::NotoSerifKhojki,
3236 #[cfg(any(feature = "variable", feature = "static"))]
3237 Family::NotoSerifLao,
3238 #[cfg(feature = "static")]
3239 Family::NotoSerifMakasar,
3240 #[cfg(any(feature = "variable", feature = "static"))]
3241 Family::NotoSerifMalayalam,
3242 #[cfg(feature = "static")]
3243 Family::NotoSerifMyanmar,
3244 #[cfg(any(feature = "variable", feature = "static"))]
3245 Family::NotoSerifNPHmong,
3246 #[cfg(feature = "static")]
3247 Family::NotoSerifOldUyghur,
3248 #[cfg(any(feature = "variable", feature = "static"))]
3249 Family::NotoSerifOriya,
3250 #[cfg(feature = "static")]
3251 Family::NotoSerifOttomanSiyaq,
3252 #[cfg(any(feature = "variable", feature = "static"))]
3253 Family::NotoSerifSC,
3254 #[cfg(any(feature = "variable", feature = "static"))]
3255 Family::NotoSerifSinhala,
3256 #[cfg(any(feature = "variable", feature = "static"))]
3257 Family::NotoSerifTC,
3258 #[cfg(any(feature = "variable", feature = "static"))]
3259 Family::NotoSerifTamil,
3260 #[cfg(feature = "static")]
3261 Family::NotoSerifTangut,
3262 #[cfg(any(feature = "variable", feature = "static"))]
3263 Family::NotoSerifTelugu,
3264 #[cfg(any(feature = "variable", feature = "static"))]
3265 Family::NotoSerifThai,
3266 #[cfg(any(feature = "variable", feature = "static"))]
3267 Family::NotoSerifTibetan,
3268 #[cfg(any(feature = "variable", feature = "static"))]
3269 Family::NotoSerifToto,
3270 #[cfg(any(feature = "variable", feature = "static"))]
3271 Family::NotoSerifVithkuqi,
3272 #[cfg(any(feature = "variable", feature = "static"))]
3273 Family::NotoSerifYezidi,
3274 #[cfg(feature = "static")]
3275 Family::OdorMeanChey,
3276 #[cfg(feature = "static")]
3277 Family::OldStandardTT,
3278 #[cfg(feature = "static")]
3279 Family::Oranienbaum,
3280 #[cfg(feature = "static")]
3281 Family::Ovo,
3282 #[cfg(feature = "static")]
3283 Family::PTSerif,
3284 #[cfg(feature = "static")]
3285 Family::PTSerifCaption,
3286 #[cfg(feature = "static")]
3287 Family::PadyakkeExpandedOne,
3288 #[cfg(feature = "static")]
3289 Family::Peddana,
3290 #[cfg(feature = "static")]
3291 Family::Peralta,
3292 #[cfg(any(feature = "variable", feature = "static"))]
3293 Family::Petrona,
3294 #[cfg(any(feature = "variable", feature = "static"))]
3295 Family::Piazzolla,
3296 #[cfg(any(feature = "variable", feature = "static"))]
3297 Family::Platypi,
3298 #[cfg(any(feature = "variable", feature = "static"))]
3299 Family::Playfair,
3300 #[cfg(any(feature = "variable", feature = "static"))]
3301 Family::PlayfairDisplay,
3302 #[cfg(feature = "static")]
3303 Family::PlayfairDisplaySC,
3304 #[cfg(any(feature = "variable", feature = "static"))]
3305 Family::Podkova,
3306 #[cfg(any(feature = "variable", feature = "static"))]
3307 Family::PoltawskiNowy,
3308 #[cfg(feature = "static")]
3309 Family::Poly,
3310 #[cfg(feature = "static")]
3311 Family::PortLligatSlab,
3312 #[cfg(feature = "static")]
3313 Family::Prata,
3314 #[cfg(feature = "static")]
3315 Family::Pridi,
3316 #[cfg(feature = "static")]
3317 Family::Prociono,
3318 #[cfg(feature = "static")]
3319 Family::Quando,
3320 #[cfg(feature = "static")]
3321 Family::Quattrocento,
3322 #[cfg(feature = "static")]
3323 Family::Radley,
3324 #[cfg(feature = "static")]
3325 Family::Ramaraja,
3326 #[cfg(any(feature = "variable", feature = "static"))]
3327 Family::Rasa,
3328 #[cfg(feature = "static")]
3329 Family::RhodiumLibre,
3330 #[cfg(any(feature = "variable", feature = "static"))]
3331 Family::RobotoSerif,
3332 #[cfg(any(feature = "variable", feature = "static"))]
3333 Family::RobotoSlab,
3334 #[cfg(any(feature = "variable", feature = "static"))]
3335 Family::Rokkitt,
3336 #[cfg(feature = "static")]
3337 Family::Rosarivo,
3338 #[cfg(feature = "static")]
3339 Family::RozhaOne,
3340 #[cfg(feature = "static")]
3341 Family::Rufina,
3342 #[cfg(feature = "static")]
3343 Family::Ruwudu,
3344 #[cfg(any(feature = "variable", feature = "static"))]
3345 Family::STIXTwoText,
3346 #[cfg(feature = "static")]
3347 Family::Sahitya,
3348 #[cfg(feature = "static")]
3349 Family::Sanchez,
3350 #[cfg(feature = "static")]
3351 Family::SawarabiMincho,
3352 #[cfg(feature = "static")]
3353 Family::ScheherazadeNew,
3354 #[cfg(feature = "static")]
3355 Family::ScopeOne,
3356 #[cfg(feature = "static")]
3357 Family::Sedan,
3358 #[cfg(feature = "static")]
3359 Family::SedanSC,
3360 #[cfg(feature = "static")]
3361 Family::ShipporiMincho,
3362 #[cfg(feature = "static")]
3363 Family::ShipporiMinchoB1,
3364 #[cfg(feature = "static")]
3365 Family::Slabo13px,
3366 #[cfg(feature = "static")]
3367 Family::Slabo27px,
3368 #[cfg(feature = "static")]
3369 Family::Solway,
3370 #[cfg(feature = "static")]
3371 Family::SongMyung,
3372 #[cfg(feature = "static")]
3373 Family::SortsMillGoudy,
3374 #[cfg(any(feature = "variable", feature = "static"))]
3375 Family::SourceSerif4,
3376 #[cfg(feature = "static")]
3377 Family::Spectral,
3378 #[cfg(feature = "static")]
3379 Family::SpectralSC,
3380 #[cfg(feature = "static")]
3381 Family::SreeKrushnadevaraya,
3382 #[cfg(feature = "static")]
3383 Family::StintUltraCondensed,
3384 #[cfg(feature = "static")]
3385 Family::StintUltraExpanded,
3386 #[cfg(feature = "static")]
3387 Family::Stoke,
3388 #[cfg(feature = "static")]
3389 Family::SuezOne,
3390 #[cfg(feature = "static")]
3391 Family::Sumana,
3392 #[cfg(feature = "static")]
3393 Family::Sura,
3394 #[cfg(feature = "static")]
3395 Family::Suranna,
3396 #[cfg(feature = "static")]
3397 Family::Suravaram,
3398 #[cfg(feature = "static")]
3399 Family::Suwannaphum,
3400 #[cfg(feature = "static")]
3401 Family::TaiHeritagePro,
3402 #[cfg(feature = "static")]
3403 Family::Taviraj,
3404 #[cfg(any(feature = "variable", feature = "static"))]
3405 Family::Texturina,
3406 #[cfg(feature = "static")]
3407 Family::Tienne,
3408 #[cfg(feature = "static")]
3409 Family::Tinos,
3410 #[cfg(feature = "static")]
3411 Family::TiroBangla,
3412 #[cfg(feature = "static")]
3413 Family::TiroDevanagariHindi,
3414 #[cfg(feature = "static")]
3415 Family::TiroDevanagariMarathi,
3416 #[cfg(feature = "static")]
3417 Family::TiroDevanagariSanskrit,
3418 #[cfg(feature = "static")]
3419 Family::TiroGurmukhi,
3420 #[cfg(feature = "static")]
3421 Family::TiroKannada,
3422 #[cfg(feature = "static")]
3423 Family::TiroTamil,
3424 #[cfg(feature = "static")]
3425 Family::TiroTelugu,
3426 #[cfg(feature = "static")]
3427 Family::Trirong,
3428 #[cfg(feature = "static")]
3429 Family::Trocchi,
3430 #[cfg(feature = "static")]
3431 Family::Trykker,
3432 #[cfg(feature = "static")]
3433 Family::Uchen,
3434 #[cfg(feature = "static")]
3435 Family::Ultra,
3436 #[cfg(feature = "static")]
3437 Family::Unna,
3438 #[cfg(feature = "static")]
3439 Family::VastShadow,
3440 #[cfg(feature = "static")]
3441 Family::VesperLibre,
3442 #[cfg(feature = "static")]
3443 Family::Vidaloka,
3444 #[cfg(feature = "static")]
3445 Family::Volkhov,
3446 #[cfg(any(feature = "variable", feature = "static"))]
3447 Family::Vollkorn,
3448 #[cfg(feature = "static")]
3449 Family::VollkornSC,
3450 #[cfg(feature = "static")]
3451 Family::Wellfleet,
3452 #[cfg(any(feature = "variable", feature = "static"))]
3453 Family::Wittgenstein,
3454 #[cfg(feature = "static")]
3455 Family::YoungSerif,
3456 #[cfg(any(feature = "variable", feature = "static"))]
3457 Family::Yrsa,
3458 #[cfg(feature = "static")]
3459 Family::YujiBoku,
3460 #[cfg(feature = "static")]
3461 Family::YujiMai,
3462 #[cfg(feature = "static")]
3463 Family::YujiSyuku,
3464 #[cfg(feature = "static")]
3465 Family::ZenAntique,
3466 #[cfg(feature = "static")]
3467 Family::ZenAntiqueSoft,
3468 #[cfg(feature = "static")]
3469 Family::ZenOldMincho,
3470 #[cfg(feature = "static")]
3471 Family::ZillaSlab,
3472 #[cfg(feature = "static")]
3473 Family::ZillaSlabHighlight,
3474 ]
3475 }
3476 }
3477 }
3478
3479 pub fn fonts(&self) -> Vec<Font> {
3481 match self {
3482 Category::Display => {
3483 vec![
3484 #[cfg(feature = "static")]
3485 Font::ADLaMDisplayRegular,
3486 #[cfg(feature = "static")]
3487 Font::AboretoRegular,
3488 #[cfg(feature = "static")]
3489 Font::AbrilFatfaceRegular,
3490 #[cfg(feature = "static")]
3491 Font::AgbalumoRegular,
3492 #[cfg(feature = "static")]
3493 Font::AkayaKanadakaRegular,
3494 #[cfg(feature = "static")]
3495 Font::AkayaTelivigalaRegular,
3496 #[cfg(feature = "static")]
3497 Font::AkronimRegular,
3498 #[cfg(feature = "static")]
3499 Font::AladinRegular,
3500 #[cfg(feature = "static")]
3501 Font::AlfaSlabOneRegular,
3502 #[cfg(feature = "static")]
3503 Font::AlkatraRegular,
3504 #[cfg(feature = "static")]
3505 Font::AlkatraMedium,
3506 #[cfg(feature = "static")]
3507 Font::AlkatraSemiBold,
3508 #[cfg(feature = "static")]
3509 Font::AlkatraBold,
3510 #[cfg(feature = "variable")]
3511 Font::AlkatraVariable,
3512 #[cfg(feature = "static")]
3513 Font::AllanRegular,
3514 #[cfg(feature = "static")]
3515 Font::AllanBold,
3516 #[cfg(feature = "static")]
3517 Font::AlmendraDisplayRegular,
3518 #[cfg(feature = "static")]
3519 Font::AlumniSansInlineOneRegular,
3520 #[cfg(feature = "static")]
3521 Font::AlumniSansInlineOneItalic,
3522 #[cfg(feature = "static")]
3523 Font::AmaranteRegular,
3524 #[cfg(feature = "static")]
3525 Font::AngkorRegular,
3526 #[cfg(feature = "static")]
3527 Font::AnybodyUltraCondensedThin,
3528 #[cfg(feature = "static")]
3529 Font::AnybodyUltraCondensedExtraLight,
3530 #[cfg(feature = "static")]
3531 Font::AnybodyUltraCondensedLight,
3532 #[cfg(feature = "static")]
3533 Font::AnybodyUltraCondensedRegular,
3534 #[cfg(feature = "static")]
3535 Font::AnybodyUltraCondensedMedium,
3536 #[cfg(feature = "static")]
3537 Font::AnybodyUltraCondensedSemiBold,
3538 #[cfg(feature = "static")]
3539 Font::AnybodyUltraCondensedBold,
3540 #[cfg(feature = "static")]
3541 Font::AnybodyUltraCondensedExtraBold,
3542 #[cfg(feature = "static")]
3543 Font::AnybodyUltraCondensedBlack,
3544 #[cfg(feature = "static")]
3545 Font::AnybodyExtraCondensedThin,
3546 #[cfg(feature = "static")]
3547 Font::AnybodyExtraCondensedExtraLight,
3548 #[cfg(feature = "static")]
3549 Font::AnybodyExtraCondensedLight,
3550 #[cfg(feature = "static")]
3551 Font::AnybodyExtraCondensedRegular,
3552 #[cfg(feature = "static")]
3553 Font::AnybodyExtraCondensedMedium,
3554 #[cfg(feature = "static")]
3555 Font::AnybodyExtraCondensedSemiBold,
3556 #[cfg(feature = "static")]
3557 Font::AnybodyExtraCondensedBold,
3558 #[cfg(feature = "static")]
3559 Font::AnybodyExtraCondensedExtraBold,
3560 #[cfg(feature = "static")]
3561 Font::AnybodyExtraCondensedBlack,
3562 #[cfg(feature = "static")]
3563 Font::AnybodyCondensedThin,
3564 #[cfg(feature = "static")]
3565 Font::AnybodyCondensedExtraLight,
3566 #[cfg(feature = "static")]
3567 Font::AnybodyCondensedLight,
3568 #[cfg(feature = "static")]
3569 Font::AnybodyCondensedRegular,
3570 #[cfg(feature = "static")]
3571 Font::AnybodyCondensedMedium,
3572 #[cfg(feature = "static")]
3573 Font::AnybodyCondensedSemiBold,
3574 #[cfg(feature = "static")]
3575 Font::AnybodyCondensedBold,
3576 #[cfg(feature = "static")]
3577 Font::AnybodyCondensedExtraBold,
3578 #[cfg(feature = "static")]
3579 Font::AnybodyCondensedBlack,
3580 #[cfg(feature = "static")]
3581 Font::AnybodySemiCondensedThin,
3582 #[cfg(feature = "static")]
3583 Font::AnybodySemiCondensedExtraLight,
3584 #[cfg(feature = "static")]
3585 Font::AnybodySemiCondensedLight,
3586 #[cfg(feature = "static")]
3587 Font::AnybodySemiCondensedRegular,
3588 #[cfg(feature = "static")]
3589 Font::AnybodySemiCondensedMedium,
3590 #[cfg(feature = "static")]
3591 Font::AnybodySemiCondensedSemiBold,
3592 #[cfg(feature = "static")]
3593 Font::AnybodySemiCondensedBold,
3594 #[cfg(feature = "static")]
3595 Font::AnybodySemiCondensedExtraBold,
3596 #[cfg(feature = "static")]
3597 Font::AnybodySemiCondensedBlack,
3598 #[cfg(feature = "static")]
3599 Font::AnybodyThin,
3600 #[cfg(feature = "static")]
3601 Font::AnybodyExtraLight,
3602 #[cfg(feature = "static")]
3603 Font::AnybodyLight,
3604 #[cfg(feature = "static")]
3605 Font::AnybodyRegular,
3606 #[cfg(feature = "static")]
3607 Font::AnybodyMedium,
3608 #[cfg(feature = "static")]
3609 Font::AnybodySemiBold,
3610 #[cfg(feature = "static")]
3611 Font::AnybodyBold,
3612 #[cfg(feature = "static")]
3613 Font::AnybodyExtraBold,
3614 #[cfg(feature = "static")]
3615 Font::AnybodyBlack,
3616 #[cfg(feature = "static")]
3617 Font::AnybodySemiExpandedThin,
3618 #[cfg(feature = "static")]
3619 Font::AnybodySemiExpandedExtraLight,
3620 #[cfg(feature = "static")]
3621 Font::AnybodySemiExpandedLight,
3622 #[cfg(feature = "static")]
3623 Font::AnybodySemiExpandedRegular,
3624 #[cfg(feature = "static")]
3625 Font::AnybodySemiExpandedMedium,
3626 #[cfg(feature = "static")]
3627 Font::AnybodySemiExpandedSemiBold,
3628 #[cfg(feature = "static")]
3629 Font::AnybodySemiExpandedBold,
3630 #[cfg(feature = "static")]
3631 Font::AnybodySemiExpandedExtraBold,
3632 #[cfg(feature = "static")]
3633 Font::AnybodySemiExpandedBlack,
3634 #[cfg(feature = "static")]
3635 Font::AnybodyExpandedThin,
3636 #[cfg(feature = "static")]
3637 Font::AnybodyExpandedExtraLight,
3638 #[cfg(feature = "static")]
3639 Font::AnybodyExpandedLight,
3640 #[cfg(feature = "static")]
3641 Font::AnybodyExpandedRegular,
3642 #[cfg(feature = "static")]
3643 Font::AnybodyExpandedMedium,
3644 #[cfg(feature = "static")]
3645 Font::AnybodyExpandedSemiBold,
3646 #[cfg(feature = "static")]
3647 Font::AnybodyExpandedBold,
3648 #[cfg(feature = "static")]
3649 Font::AnybodyExpandedExtraBold,
3650 #[cfg(feature = "static")]
3651 Font::AnybodyExpandedBlack,
3652 #[cfg(feature = "static")]
3653 Font::AnybodyExtraExpandedThin,
3654 #[cfg(feature = "static")]
3655 Font::AnybodyExtraExpandedExtraLight,
3656 #[cfg(feature = "static")]
3657 Font::AnybodyExtraExpandedLight,
3658 #[cfg(feature = "static")]
3659 Font::AnybodyExtraExpandedRegular,
3660 #[cfg(feature = "static")]
3661 Font::AnybodyExtraExpandedMedium,
3662 #[cfg(feature = "static")]
3663 Font::AnybodyExtraExpandedSemiBold,
3664 #[cfg(feature = "static")]
3665 Font::AnybodyExtraExpandedBold,
3666 #[cfg(feature = "static")]
3667 Font::AnybodyExtraExpandedExtraBold,
3668 #[cfg(feature = "static")]
3669 Font::AnybodyExtraExpandedBlack,
3670 #[cfg(feature = "static")]
3671 Font::AnybodyUltraCondensedThinItalic,
3672 #[cfg(feature = "static")]
3673 Font::AnybodyUltraCondensedExtraLightItalic,
3674 #[cfg(feature = "static")]
3675 Font::AnybodyUltraCondensedLightItalic,
3676 #[cfg(feature = "static")]
3677 Font::AnybodyUltraCondensedItalic,
3678 #[cfg(feature = "static")]
3679 Font::AnybodyUltraCondensedMediumItalic,
3680 #[cfg(feature = "static")]
3681 Font::AnybodyUltraCondensedSemiBoldItalic,
3682 #[cfg(feature = "static")]
3683 Font::AnybodyUltraCondensedBoldItalic,
3684 #[cfg(feature = "static")]
3685 Font::AnybodyUltraCondensedExtraBoldItalic,
3686 #[cfg(feature = "static")]
3687 Font::AnybodyUltraCondensedBlackItalic,
3688 #[cfg(feature = "static")]
3689 Font::AnybodyExtraCondensedThinItalic,
3690 #[cfg(feature = "static")]
3691 Font::AnybodyExtraCondensedExtraLightItalic,
3692 #[cfg(feature = "static")]
3693 Font::AnybodyExtraCondensedLightItalic,
3694 #[cfg(feature = "static")]
3695 Font::AnybodyExtraCondensedItalic,
3696 #[cfg(feature = "static")]
3697 Font::AnybodyExtraCondensedMediumItalic,
3698 #[cfg(feature = "static")]
3699 Font::AnybodyExtraCondensedSemiBoldItalic,
3700 #[cfg(feature = "static")]
3701 Font::AnybodyExtraCondensedBoldItalic,
3702 #[cfg(feature = "static")]
3703 Font::AnybodyExtraCondensedExtraBoldItalic,
3704 #[cfg(feature = "static")]
3705 Font::AnybodyExtraCondensedBlackItalic,
3706 #[cfg(feature = "static")]
3707 Font::AnybodyCondensedThinItalic,
3708 #[cfg(feature = "static")]
3709 Font::AnybodyCondensedExtraLightItalic,
3710 #[cfg(feature = "static")]
3711 Font::AnybodyCondensedLightItalic,
3712 #[cfg(feature = "static")]
3713 Font::AnybodyCondensedItalic,
3714 #[cfg(feature = "static")]
3715 Font::AnybodyCondensedMediumItalic,
3716 #[cfg(feature = "static")]
3717 Font::AnybodyCondensedSemiBoldItalic,
3718 #[cfg(feature = "static")]
3719 Font::AnybodyCondensedBoldItalic,
3720 #[cfg(feature = "static")]
3721 Font::AnybodyCondensedExtraBoldItalic,
3722 #[cfg(feature = "static")]
3723 Font::AnybodyCondensedBlackItalic,
3724 #[cfg(feature = "static")]
3725 Font::AnybodySemiCondensedThinItalic,
3726 #[cfg(feature = "static")]
3727 Font::AnybodySemiCondensedExtraLightItalic,
3728 #[cfg(feature = "static")]
3729 Font::AnybodySemiCondensedLightItalic,
3730 #[cfg(feature = "static")]
3731 Font::AnybodySemiCondensedItalic,
3732 #[cfg(feature = "static")]
3733 Font::AnybodySemiCondensedMediumItalic,
3734 #[cfg(feature = "static")]
3735 Font::AnybodySemiCondensedSemiBoldItalic,
3736 #[cfg(feature = "static")]
3737 Font::AnybodySemiCondensedBoldItalic,
3738 #[cfg(feature = "static")]
3739 Font::AnybodySemiCondensedExtraBoldItalic,
3740 #[cfg(feature = "static")]
3741 Font::AnybodySemiCondensedBlackItalic,
3742 #[cfg(feature = "static")]
3743 Font::AnybodyThinItalic,
3744 #[cfg(feature = "static")]
3745 Font::AnybodyExtraLightItalic,
3746 #[cfg(feature = "static")]
3747 Font::AnybodyLightItalic,
3748 #[cfg(feature = "static")]
3749 Font::AnybodyItalic,
3750 #[cfg(feature = "static")]
3751 Font::AnybodyMediumItalic,
3752 #[cfg(feature = "static")]
3753 Font::AnybodySemiBoldItalic,
3754 #[cfg(feature = "static")]
3755 Font::AnybodyBoldItalic,
3756 #[cfg(feature = "static")]
3757 Font::AnybodyExtraBoldItalic,
3758 #[cfg(feature = "static")]
3759 Font::AnybodyBlackItalic,
3760 #[cfg(feature = "static")]
3761 Font::AnybodySemiExpandedThinItalic,
3762 #[cfg(feature = "static")]
3763 Font::AnybodySemiExpandedExtraLightItalic,
3764 #[cfg(feature = "static")]
3765 Font::AnybodySemiExpandedLightItalic,
3766 #[cfg(feature = "static")]
3767 Font::AnybodySemiExpandedItalic,
3768 #[cfg(feature = "static")]
3769 Font::AnybodySemiExpandedMediumItalic,
3770 #[cfg(feature = "static")]
3771 Font::AnybodySemiExpandedSemiBoldItalic,
3772 #[cfg(feature = "static")]
3773 Font::AnybodySemiExpandedBoldItalic,
3774 #[cfg(feature = "static")]
3775 Font::AnybodySemiExpandedExtraBoldItalic,
3776 #[cfg(feature = "static")]
3777 Font::AnybodySemiExpandedBlackItalic,
3778 #[cfg(feature = "static")]
3779 Font::AnybodyExpandedThinItalic,
3780 #[cfg(feature = "static")]
3781 Font::AnybodyExpandedExtraLightItalic,
3782 #[cfg(feature = "static")]
3783 Font::AnybodyExpandedLightItalic,
3784 #[cfg(feature = "static")]
3785 Font::AnybodyExpandedItalic,
3786 #[cfg(feature = "static")]
3787 Font::AnybodyExpandedMediumItalic,
3788 #[cfg(feature = "static")]
3789 Font::AnybodyExpandedSemiBoldItalic,
3790 #[cfg(feature = "static")]
3791 Font::AnybodyExpandedBoldItalic,
3792 #[cfg(feature = "static")]
3793 Font::AnybodyExpandedExtraBoldItalic,
3794 #[cfg(feature = "static")]
3795 Font::AnybodyExpandedBlackItalic,
3796 #[cfg(feature = "static")]
3797 Font::AnybodyExtraExpandedThinItalic,
3798 #[cfg(feature = "static")]
3799 Font::AnybodyExtraExpandedExtraLightItalic,
3800 #[cfg(feature = "static")]
3801 Font::AnybodyExtraExpandedLightItalic,
3802 #[cfg(feature = "static")]
3803 Font::AnybodyExtraExpandedItalic,
3804 #[cfg(feature = "static")]
3805 Font::AnybodyExtraExpandedMediumItalic,
3806 #[cfg(feature = "static")]
3807 Font::AnybodyExtraExpandedSemiBoldItalic,
3808 #[cfg(feature = "static")]
3809 Font::AnybodyExtraExpandedBoldItalic,
3810 #[cfg(feature = "static")]
3811 Font::AnybodyExtraExpandedExtraBoldItalic,
3812 #[cfg(feature = "static")]
3813 Font::AnybodyExtraExpandedBlackItalic,
3814 #[cfg(feature = "variable")]
3815 Font::AnybodyVariable,
3816 #[cfg(feature = "variable")]
3817 Font::AnybodyItalicVariable,
3818 #[cfg(feature = "static")]
3819 Font::ArimaThin,
3820 #[cfg(feature = "static")]
3821 Font::ArimaExtraLight,
3822 #[cfg(feature = "static")]
3823 Font::ArimaLight,
3824 #[cfg(feature = "static")]
3825 Font::ArimaRegular,
3826 #[cfg(feature = "static")]
3827 Font::ArimaMedium,
3828 #[cfg(feature = "static")]
3829 Font::ArimaSemiBold,
3830 #[cfg(feature = "static")]
3831 Font::ArimaBold,
3832 #[cfg(feature = "variable")]
3833 Font::ArimaVariable,
3834 #[cfg(feature = "static")]
3835 Font::AssetRegular,
3836 #[cfg(feature = "static")]
3837 Font::AstlochRegular,
3838 #[cfg(feature = "static")]
3839 Font::AstlochBold,
3840 #[cfg(feature = "static")]
3841 Font::AtmaLight,
3842 #[cfg(feature = "static")]
3843 Font::AtmaRegular,
3844 #[cfg(feature = "static")]
3845 Font::AtmaMedium,
3846 #[cfg(feature = "static")]
3847 Font::AtmaSemiBold,
3848 #[cfg(feature = "static")]
3849 Font::AtmaBold,
3850 #[cfg(feature = "static")]
3851 Font::AtomicAgeRegular,
3852 #[cfg(feature = "static")]
3853 Font::AubreyRegular,
3854 #[cfg(feature = "static")]
3855 Font::AudiowideRegular,
3856 #[cfg(feature = "static")]
3857 Font::AutourOneRegular,
3858 #[cfg(feature = "static")]
3859 Font::AveriaGruesaLibreRegular,
3860 #[cfg(feature = "static")]
3861 Font::AveriaLibreLight,
3862 #[cfg(feature = "static")]
3863 Font::AveriaLibreLightItalic,
3864 #[cfg(feature = "static")]
3865 Font::AveriaLibreRegular,
3866 #[cfg(feature = "static")]
3867 Font::AveriaLibreItalic,
3868 #[cfg(feature = "static")]
3869 Font::AveriaLibreBold,
3870 #[cfg(feature = "static")]
3871 Font::AveriaLibreBoldItalic,
3872 #[cfg(feature = "static")]
3873 Font::AveriaSansLibreLight,
3874 #[cfg(feature = "static")]
3875 Font::AveriaSansLibreLightItalic,
3876 #[cfg(feature = "static")]
3877 Font::AveriaSansLibreRegular,
3878 #[cfg(feature = "static")]
3879 Font::AveriaSansLibreItalic,
3880 #[cfg(feature = "static")]
3881 Font::AveriaSansLibreBold,
3882 #[cfg(feature = "static")]
3883 Font::AveriaSansLibreBoldItalic,
3884 #[cfg(feature = "static")]
3885 Font::AveriaSerifLibreLight,
3886 #[cfg(feature = "static")]
3887 Font::AveriaSerifLibreLightItalic,
3888 #[cfg(feature = "static")]
3889 Font::AveriaSerifLibreRegular,
3890 #[cfg(feature = "static")]
3891 Font::AveriaSerifLibreItalic,
3892 #[cfg(feature = "static")]
3893 Font::AveriaSerifLibreBold,
3894 #[cfg(feature = "static")]
3895 Font::AveriaSerifLibreBoldItalic,
3896 #[cfg(feature = "static")]
3897 Font::BagelFatOneRegular,
3898 #[cfg(feature = "static")]
3899 Font::BahianaRegular,
3900 #[cfg(feature = "static")]
3901 Font::BahianitaRegular,
3902 #[cfg(feature = "static")]
3903 Font::BakbakOneRegular,
3904 #[cfg(feature = "static")]
3905 Font::Baloo2Regular,
3906 #[cfg(feature = "static")]
3907 Font::Baloo2Medium,
3908 #[cfg(feature = "static")]
3909 Font::Baloo2SemiBold,
3910 #[cfg(feature = "static")]
3911 Font::Baloo2Bold,
3912 #[cfg(feature = "static")]
3913 Font::Baloo2ExtraBold,
3914 #[cfg(feature = "variable")]
3915 Font::Baloo2Variable,
3916 #[cfg(feature = "static")]
3917 Font::BalooBhai2Regular,
3918 #[cfg(feature = "static")]
3919 Font::BalooBhai2Medium,
3920 #[cfg(feature = "static")]
3921 Font::BalooBhai2SemiBold,
3922 #[cfg(feature = "static")]
3923 Font::BalooBhai2Bold,
3924 #[cfg(feature = "static")]
3925 Font::BalooBhai2ExtraBold,
3926 #[cfg(feature = "variable")]
3927 Font::BalooBhai2Variable,
3928 #[cfg(feature = "static")]
3929 Font::BalooBhaijaan2Regular,
3930 #[cfg(feature = "static")]
3931 Font::BalooBhaijaan2Medium,
3932 #[cfg(feature = "static")]
3933 Font::BalooBhaijaan2SemiBold,
3934 #[cfg(feature = "static")]
3935 Font::BalooBhaijaan2Bold,
3936 #[cfg(feature = "static")]
3937 Font::BalooBhaijaan2ExtraBold,
3938 #[cfg(feature = "variable")]
3939 Font::BalooBhaijaan2Variable,
3940 #[cfg(feature = "static")]
3941 Font::BalooBhaina2Regular,
3942 #[cfg(feature = "static")]
3943 Font::BalooBhaina2Medium,
3944 #[cfg(feature = "static")]
3945 Font::BalooBhaina2SemiBold,
3946 #[cfg(feature = "static")]
3947 Font::BalooBhaina2Bold,
3948 #[cfg(feature = "static")]
3949 Font::BalooBhaina2ExtraBold,
3950 #[cfg(feature = "variable")]
3951 Font::BalooBhaina2Variable,
3952 #[cfg(feature = "static")]
3953 Font::BalooChettan2Regular,
3954 #[cfg(feature = "static")]
3955 Font::BalooChettan2Medium,
3956 #[cfg(feature = "static")]
3957 Font::BalooChettan2SemiBold,
3958 #[cfg(feature = "static")]
3959 Font::BalooChettan2Bold,
3960 #[cfg(feature = "static")]
3961 Font::BalooChettan2ExtraBold,
3962 #[cfg(feature = "variable")]
3963 Font::BalooChettan2Variable,
3964 #[cfg(feature = "static")]
3965 Font::BalooDa2Regular,
3966 #[cfg(feature = "static")]
3967 Font::BalooDa2Medium,
3968 #[cfg(feature = "static")]
3969 Font::BalooDa2SemiBold,
3970 #[cfg(feature = "static")]
3971 Font::BalooDa2Bold,
3972 #[cfg(feature = "static")]
3973 Font::BalooDa2ExtraBold,
3974 #[cfg(feature = "variable")]
3975 Font::BalooDa2Variable,
3976 #[cfg(feature = "static")]
3977 Font::BalooPaaji2Regular,
3978 #[cfg(feature = "static")]
3979 Font::BalooPaaji2Medium,
3980 #[cfg(feature = "static")]
3981 Font::BalooPaaji2SemiBold,
3982 #[cfg(feature = "static")]
3983 Font::BalooPaaji2Bold,
3984 #[cfg(feature = "static")]
3985 Font::BalooPaaji2ExtraBold,
3986 #[cfg(feature = "variable")]
3987 Font::BalooPaaji2Variable,
3988 #[cfg(feature = "static")]
3989 Font::BalooTamma2Regular,
3990 #[cfg(feature = "static")]
3991 Font::BalooTamma2Medium,
3992 #[cfg(feature = "static")]
3993 Font::BalooTamma2SemiBold,
3994 #[cfg(feature = "static")]
3995 Font::BalooTamma2Bold,
3996 #[cfg(feature = "static")]
3997 Font::BalooTamma2ExtraBold,
3998 #[cfg(feature = "variable")]
3999 Font::BalooTamma2Variable,
4000 #[cfg(feature = "static")]
4001 Font::BalooTammudu2Regular,
4002 #[cfg(feature = "static")]
4003 Font::BalooTammudu2Medium,
4004 #[cfg(feature = "static")]
4005 Font::BalooTammudu2SemiBold,
4006 #[cfg(feature = "static")]
4007 Font::BalooTammudu2Bold,
4008 #[cfg(feature = "static")]
4009 Font::BalooTammudu2ExtraBold,
4010 #[cfg(feature = "variable")]
4011 Font::BalooTammudu2Variable,
4012 #[cfg(feature = "static")]
4013 Font::BalooThambi2Regular,
4014 #[cfg(feature = "static")]
4015 Font::BalooThambi2Medium,
4016 #[cfg(feature = "static")]
4017 Font::BalooThambi2SemiBold,
4018 #[cfg(feature = "static")]
4019 Font::BalooThambi2Bold,
4020 #[cfg(feature = "static")]
4021 Font::BalooThambi2ExtraBold,
4022 #[cfg(feature = "variable")]
4023 Font::BalooThambi2Variable,
4024 #[cfg(feature = "static")]
4025 Font::BalsamiqSansRegular,
4026 #[cfg(feature = "static")]
4027 Font::BalsamiqSansItalic,
4028 #[cfg(feature = "static")]
4029 Font::BalsamiqSansBold,
4030 #[cfg(feature = "static")]
4031 Font::BalsamiqSansBoldItalic,
4032 #[cfg(feature = "static")]
4033 Font::BangersRegular,
4034 #[cfg(feature = "static")]
4035 Font::BarriecitoRegular,
4036 #[cfg(feature = "static")]
4037 Font::BarrioRegular,
4038 #[cfg(feature = "static")]
4039 Font::BattambangThin,
4040 #[cfg(feature = "static")]
4041 Font::BattambangLight,
4042 #[cfg(feature = "static")]
4043 Font::BattambangRegular,
4044 #[cfg(feature = "static")]
4045 Font::BattambangBold,
4046 #[cfg(feature = "static")]
4047 Font::BattambangBlack,
4048 #[cfg(feature = "static")]
4049 Font::BaumansRegular,
4050 #[cfg(feature = "static")]
4051 Font::BellotaLight,
4052 #[cfg(feature = "static")]
4053 Font::BellotaLightItalic,
4054 #[cfg(feature = "static")]
4055 Font::BellotaRegular,
4056 #[cfg(feature = "static")]
4057 Font::BellotaItalic,
4058 #[cfg(feature = "static")]
4059 Font::BellotaBold,
4060 #[cfg(feature = "static")]
4061 Font::BellotaBoldItalic,
4062 #[cfg(feature = "static")]
4063 Font::BellotaTextLight,
4064 #[cfg(feature = "static")]
4065 Font::BellotaTextLightItalic,
4066 #[cfg(feature = "static")]
4067 Font::BellotaTextRegular,
4068 #[cfg(feature = "static")]
4069 Font::BellotaTextItalic,
4070 #[cfg(feature = "static")]
4071 Font::BellotaTextBold,
4072 #[cfg(feature = "static")]
4073 Font::BellotaTextBoldItalic,
4074 #[cfg(feature = "static")]
4075 Font::BigShouldersDisplayThin,
4076 #[cfg(feature = "static")]
4077 Font::BigShouldersDisplayExtraLight,
4078 #[cfg(feature = "static")]
4079 Font::BigShouldersDisplayLight,
4080 #[cfg(feature = "static")]
4081 Font::BigShouldersDisplayRegular,
4082 #[cfg(feature = "static")]
4083 Font::BigShouldersDisplayMedium,
4084 #[cfg(feature = "static")]
4085 Font::BigShouldersDisplaySemiBold,
4086 #[cfg(feature = "static")]
4087 Font::BigShouldersDisplayBold,
4088 #[cfg(feature = "static")]
4089 Font::BigShouldersDisplayExtraBold,
4090 #[cfg(feature = "static")]
4091 Font::BigShouldersDisplayBlack,
4092 #[cfg(feature = "variable")]
4093 Font::BigShouldersDisplayVariable,
4094 #[cfg(feature = "static")]
4095 Font::BigShouldersInlineDisplayThin,
4096 #[cfg(feature = "static")]
4097 Font::BigShouldersInlineDisplayExtraLight,
4098 #[cfg(feature = "static")]
4099 Font::BigShouldersInlineDisplayLight,
4100 #[cfg(feature = "static")]
4101 Font::BigShouldersInlineDisplayRegular,
4102 #[cfg(feature = "static")]
4103 Font::BigShouldersInlineDisplayMedium,
4104 #[cfg(feature = "static")]
4105 Font::BigShouldersInlineDisplaySemiBold,
4106 #[cfg(feature = "static")]
4107 Font::BigShouldersInlineDisplayBold,
4108 #[cfg(feature = "static")]
4109 Font::BigShouldersInlineDisplayExtraBold,
4110 #[cfg(feature = "static")]
4111 Font::BigShouldersInlineDisplayBlack,
4112 #[cfg(feature = "variable")]
4113 Font::BigShouldersInlineDisplayVariable,
4114 #[cfg(feature = "static")]
4115 Font::BigShouldersInlineTextThin,
4116 #[cfg(feature = "static")]
4117 Font::BigShouldersInlineTextExtraLight,
4118 #[cfg(feature = "static")]
4119 Font::BigShouldersInlineTextLight,
4120 #[cfg(feature = "static")]
4121 Font::BigShouldersInlineTextRegular,
4122 #[cfg(feature = "static")]
4123 Font::BigShouldersInlineTextMedium,
4124 #[cfg(feature = "static")]
4125 Font::BigShouldersInlineTextSemiBold,
4126 #[cfg(feature = "static")]
4127 Font::BigShouldersInlineTextBold,
4128 #[cfg(feature = "static")]
4129 Font::BigShouldersInlineTextExtraBold,
4130 #[cfg(feature = "static")]
4131 Font::BigShouldersInlineTextBlack,
4132 #[cfg(feature = "variable")]
4133 Font::BigShouldersInlineTextVariable,
4134 #[cfg(feature = "static")]
4135 Font::BigShouldersStencilDisplayThin,
4136 #[cfg(feature = "static")]
4137 Font::BigShouldersStencilDisplayExtraLight,
4138 #[cfg(feature = "static")]
4139 Font::BigShouldersStencilDisplayLight,
4140 #[cfg(feature = "static")]
4141 Font::BigShouldersStencilDisplayRegular,
4142 #[cfg(feature = "static")]
4143 Font::BigShouldersStencilDisplayMedium,
4144 #[cfg(feature = "static")]
4145 Font::BigShouldersStencilDisplaySemiBold,
4146 #[cfg(feature = "static")]
4147 Font::BigShouldersStencilDisplayBold,
4148 #[cfg(feature = "static")]
4149 Font::BigShouldersStencilDisplayExtraBold,
4150 #[cfg(feature = "static")]
4151 Font::BigShouldersStencilDisplayBlack,
4152 #[cfg(feature = "variable")]
4153 Font::BigShouldersStencilDisplayVariable,
4154 #[cfg(feature = "static")]
4155 Font::BigShouldersStencilTextThin,
4156 #[cfg(feature = "static")]
4157 Font::BigShouldersStencilTextExtraLight,
4158 #[cfg(feature = "static")]
4159 Font::BigShouldersStencilTextLight,
4160 #[cfg(feature = "static")]
4161 Font::BigShouldersStencilTextRegular,
4162 #[cfg(feature = "static")]
4163 Font::BigShouldersStencilTextMedium,
4164 #[cfg(feature = "static")]
4165 Font::BigShouldersStencilTextSemiBold,
4166 #[cfg(feature = "static")]
4167 Font::BigShouldersStencilTextBold,
4168 #[cfg(feature = "static")]
4169 Font::BigShouldersStencilTextExtraBold,
4170 #[cfg(feature = "static")]
4171 Font::BigShouldersStencilTextBlack,
4172 #[cfg(feature = "variable")]
4173 Font::BigShouldersStencilTextVariable,
4174 #[cfg(feature = "static")]
4175 Font::BigShouldersTextThin,
4176 #[cfg(feature = "static")]
4177 Font::BigShouldersTextExtraLight,
4178 #[cfg(feature = "static")]
4179 Font::BigShouldersTextLight,
4180 #[cfg(feature = "static")]
4181 Font::BigShouldersTextRegular,
4182 #[cfg(feature = "static")]
4183 Font::BigShouldersTextMedium,
4184 #[cfg(feature = "static")]
4185 Font::BigShouldersTextSemiBold,
4186 #[cfg(feature = "static")]
4187 Font::BigShouldersTextBold,
4188 #[cfg(feature = "static")]
4189 Font::BigShouldersTextExtraBold,
4190 #[cfg(feature = "static")]
4191 Font::BigShouldersTextBlack,
4192 #[cfg(feature = "variable")]
4193 Font::BigShouldersTextVariable,
4194 #[cfg(feature = "static")]
4195 Font::BigelowRulesRegular,
4196 #[cfg(feature = "static")]
4197 Font::BigshotOneRegular,
4198 #[cfg(feature = "static")]
4199 Font::BlackAndWhitePictureRegular,
4200 #[cfg(feature = "static")]
4201 Font::BlackOpsOneRegular,
4202 #[cfg(feature = "static")]
4203 Font::BlakaRegular,
4204 #[cfg(feature = "static")]
4205 Font::BlakaHollowRegular,
4206 #[cfg(feature = "static")]
4207 Font::BlakaInkRegular,
4208 #[cfg(feature = "static")]
4209 Font::BokorRegular,
4210 #[cfg(feature = "static")]
4211 Font::BoogalooRegular,
4212 #[cfg(feature = "static")]
4213 Font::BowlbyOneRegular,
4214 #[cfg(feature = "static")]
4215 Font::BowlbyOneSCRegular,
4216 #[cfg(feature = "static")]
4217 Font::BrunoAceRegular,
4218 #[cfg(feature = "static")]
4219 Font::BrunoAceSCRegular,
4220 #[cfg(feature = "static")]
4221 Font::BubblegumSansRegular,
4222 #[cfg(feature = "static")]
4223 Font::BudaLight,
4224 #[cfg(feature = "static")]
4225 Font::BungeeRegular,
4226 #[cfg(feature = "static")]
4227 Font::BungeeHairlineRegular,
4228 #[cfg(feature = "static")]
4229 Font::BungeeInlineRegular,
4230 #[cfg(feature = "static")]
4231 Font::BungeeOutlineRegular,
4232 #[cfg(feature = "static")]
4233 Font::BungeeShadeRegular,
4234 #[cfg(feature = "static")]
4235 Font::BungeeSpiceRegular,
4236 #[cfg(feature = "static")]
4237 Font::ButchermanRegular,
4238 #[cfg(feature = "static")]
4239 Font::CabinSketchRegular,
4240 #[cfg(feature = "static")]
4241 Font::CabinSketchBold,
4242 #[cfg(feature = "static")]
4243 Font::CaesarDressingRegular,
4244 #[cfg(feature = "static")]
4245 Font::CalistogaRegular,
4246 #[cfg(feature = "static")]
4247 Font::CaprasimoRegular,
4248 #[cfg(feature = "static")]
4249 Font::CarterOneRegular,
4250 #[cfg(feature = "static")]
4251 Font::CastoroTitlingRegular,
4252 #[cfg(feature = "static")]
4253 Font::CevicheOneRegular,
4254 #[cfg(feature = "static")]
4255 Font::ChangaOneRegular,
4256 #[cfg(feature = "static")]
4257 Font::ChangaOneItalic,
4258 #[cfg(feature = "static")]
4259 Font::ChangoRegular,
4260 #[cfg(feature = "static")]
4261 Font::ChelaOneRegular,
4262 #[cfg(feature = "static")]
4263 Font::ChelseaMarketRegular,
4264 #[cfg(feature = "static")]
4265 Font::ChenlaRegular,
4266 #[cfg(feature = "static")]
4267 Font::CherryBombOneRegular,
4268 #[cfg(feature = "static")]
4269 Font::CherryCreamSodaRegular,
4270 #[cfg(feature = "static")]
4271 Font::CherrySwashRegular,
4272 #[cfg(feature = "static")]
4273 Font::CherrySwashBold,
4274 #[cfg(feature = "static")]
4275 Font::ChewyRegular,
4276 #[cfg(feature = "static")]
4277 Font::ChicleRegular,
4278 #[cfg(feature = "static")]
4279 Font::ChokokutaiRegular,
4280 #[cfg(feature = "static")]
4281 Font::ChonburiRegular,
4282 #[cfg(feature = "static")]
4283 Font::CinzelDecorativeRegular,
4284 #[cfg(feature = "static")]
4285 Font::CinzelDecorativeBold,
4286 #[cfg(feature = "static")]
4287 Font::CinzelDecorativeBlack,
4288 #[cfg(feature = "static")]
4289 Font::ClimateCrisisRegular,
4290 #[cfg(feature = "variable")]
4291 Font::ClimateCrisisRegularVariable,
4292 #[cfg(feature = "static")]
4293 Font::CodaRegular,
4294 #[cfg(feature = "static")]
4295 Font::CodaExtraBold,
4296 #[cfg(feature = "static")]
4297 Font::CodystarLight,
4298 #[cfg(feature = "static")]
4299 Font::CodystarRegular,
4300 #[cfg(feature = "static")]
4301 Font::CoinyRegular,
4302 #[cfg(feature = "static")]
4303 Font::ComboRegular,
4304 #[cfg(feature = "static")]
4305 Font::ComfortaaLight,
4306 #[cfg(feature = "static")]
4307 Font::ComfortaaRegular,
4308 #[cfg(feature = "static")]
4309 Font::ComfortaaMedium,
4310 #[cfg(feature = "static")]
4311 Font::ComfortaaSemiBold,
4312 #[cfg(feature = "static")]
4313 Font::ComfortaaBold,
4314 #[cfg(feature = "variable")]
4315 Font::ComfortaaVariable,
4316 #[cfg(feature = "static")]
4317 Font::ConcertOneRegular,
4318 #[cfg(feature = "static")]
4319 Font::ContentRegular,
4320 #[cfg(feature = "static")]
4321 Font::ContentBold,
4322 #[cfg(feature = "static")]
4323 Font::ContrailOneRegular,
4324 #[cfg(feature = "static")]
4325 Font::CorbenRegular,
4326 #[cfg(feature = "static")]
4327 Font::CorbenBold,
4328 #[cfg(feature = "static")]
4329 Font::CreepsterRegular,
4330 #[cfg(feature = "static")]
4331 Font::CroissantOneRegular,
4332 #[cfg(feature = "static")]
4333 Font::CrushedRegular,
4334 #[cfg(feature = "static")]
4335 Font::CuteFontRegular,
4336 #[cfg(feature = "static")]
4337 Font::DangrekRegular,
4338 #[cfg(feature = "static")]
4339 Font::DarumadropOneRegular,
4340 #[cfg(feature = "static")]
4341 Font::DelaGothicOneRegular,
4342 #[cfg(feature = "static")]
4343 Font::DiplomataRegular,
4344 #[cfg(feature = "static")]
4345 Font::DiplomataSCRegular,
4346 #[cfg(feature = "static")]
4347 Font::DokdoRegular,
4348 #[cfg(feature = "static")]
4349 Font::DynaPuffCondensedRegular,
4350 #[cfg(feature = "static")]
4351 Font::DynaPuffCondensedMedium,
4352 #[cfg(feature = "static")]
4353 Font::DynaPuffCondensedSemiBold,
4354 #[cfg(feature = "static")]
4355 Font::DynaPuffCondensedBold,
4356 #[cfg(feature = "static")]
4357 Font::DynaPuffSemiCondensedRegular,
4358 #[cfg(feature = "static")]
4359 Font::DynaPuffSemiCondensedMedium,
4360 #[cfg(feature = "static")]
4361 Font::DynaPuffSemiCondensedSemiBold,
4362 #[cfg(feature = "static")]
4363 Font::DynaPuffSemiCondensedBold,
4364 #[cfg(feature = "static")]
4365 Font::DynaPuffRegular,
4366 #[cfg(feature = "static")]
4367 Font::DynaPuffMedium,
4368 #[cfg(feature = "static")]
4369 Font::DynaPuffSemiBold,
4370 #[cfg(feature = "static")]
4371 Font::DynaPuffBold,
4372 #[cfg(feature = "variable")]
4373 Font::DynaPuffVariable,
4374 #[cfg(feature = "static")]
4375 Font::DynalightRegular,
4376 #[cfg(feature = "static")]
4377 Font::EaterRegular,
4378 #[cfg(feature = "static")]
4379 Font::ElsieRegular,
4380 #[cfg(feature = "static")]
4381 Font::ElsieBlack,
4382 #[cfg(feature = "static")]
4383 Font::ElsieSwashCapsRegular,
4384 #[cfg(feature = "static")]
4385 Font::ElsieSwashCapsBlack,
4386 #[cfg(feature = "static")]
4387 Font::EmblemaOneRegular,
4388 #[cfg(feature = "static")]
4389 Font::EmilysCandyRegular,
4390 #[cfg(feature = "static")]
4391 Font::EricaOneRegular,
4392 #[cfg(feature = "static")]
4393 Font::EwertRegular,
4394 #[cfg(feature = "static")]
4395 Font::ExpletusSansRegular,
4396 #[cfg(feature = "static")]
4397 Font::ExpletusSansMedium,
4398 #[cfg(feature = "static")]
4399 Font::ExpletusSansSemiBold,
4400 #[cfg(feature = "static")]
4401 Font::ExpletusSansBold,
4402 #[cfg(feature = "static")]
4403 Font::ExpletusSansItalic,
4404 #[cfg(feature = "static")]
4405 Font::ExpletusSansMediumItalic,
4406 #[cfg(feature = "static")]
4407 Font::ExpletusSansSemiBoldItalic,
4408 #[cfg(feature = "static")]
4409 Font::ExpletusSansBoldItalic,
4410 #[cfg(feature = "variable")]
4411 Font::ExpletusSansVariable,
4412 #[cfg(feature = "variable")]
4413 Font::ExpletusSansItalicVariable,
4414 #[cfg(feature = "static")]
4415 Font::FarsanRegular,
4416 #[cfg(feature = "static")]
4417 Font::FascinateRegular,
4418 #[cfg(feature = "static")]
4419 Font::FascinateInlineRegular,
4420 #[cfg(feature = "static")]
4421 Font::FasterOneRegular,
4422 #[cfg(feature = "static")]
4423 Font::FasthandRegular,
4424 #[cfg(feature = "static")]
4425 Font::FederantRegular,
4426 #[cfg(feature = "static")]
4427 Font::FingerPaintRegular,
4428 #[cfg(feature = "static")]
4429 Font::FlamencoLight,
4430 #[cfg(feature = "static")]
4431 Font::FlamencoRegular,
4432 #[cfg(feature = "static")]
4433 Font::FlavorsRegular,
4434 #[cfg(feature = "static")]
4435 Font::FlowBlockRegular,
4436 #[cfg(feature = "static")]
4437 Font::FlowCircularRegular,
4438 #[cfg(feature = "static")]
4439 Font::FlowRoundedRegular,
4440 #[cfg(feature = "static")]
4441 Font::FolditThin,
4442 #[cfg(feature = "static")]
4443 Font::FolditExtraLight,
4444 #[cfg(feature = "static")]
4445 Font::FolditLight,
4446 #[cfg(feature = "static")]
4447 Font::FolditRegular,
4448 #[cfg(feature = "static")]
4449 Font::FolditMedium,
4450 #[cfg(feature = "static")]
4451 Font::FolditSemiBold,
4452 #[cfg(feature = "static")]
4453 Font::FolditBold,
4454 #[cfg(feature = "static")]
4455 Font::FolditExtraBold,
4456 #[cfg(feature = "static")]
4457 Font::FolditBlack,
4458 #[cfg(feature = "variable")]
4459 Font::FolditVariable,
4460 #[cfg(feature = "static")]
4461 Font::FontdinerSwankyRegular,
4462 #[cfg(feature = "static")]
4463 Font::ForumRegular,
4464 #[cfg(feature = "static")]
4465 Font::FreckleFaceRegular,
4466 #[cfg(feature = "static")]
4467 Font::FrederickatheGreatRegular,
4468 #[cfg(feature = "static")]
4469 Font::FreehandRegular,
4470 #[cfg(feature = "static")]
4471 Font::FreemanRegular,
4472 #[cfg(feature = "static")]
4473 Font::FrijoleRegular,
4474 #[cfg(feature = "static")]
4475 Font::FrukturRegular,
4476 #[cfg(feature = "static")]
4477 Font::FrukturItalic,
4478 #[cfg(feature = "static")]
4479 Font::FugazOneRegular,
4480 #[cfg(feature = "static")]
4481 Font::GaMaamliRegular,
4482 #[cfg(feature = "static")]
4483 Font::GabaritoRegular,
4484 #[cfg(feature = "static")]
4485 Font::GabaritoMedium,
4486 #[cfg(feature = "static")]
4487 Font::GabaritoSemiBold,
4488 #[cfg(feature = "static")]
4489 Font::GabaritoBold,
4490 #[cfg(feature = "static")]
4491 Font::GabaritoExtraBold,
4492 #[cfg(feature = "static")]
4493 Font::GabaritoBlack,
4494 #[cfg(feature = "variable")]
4495 Font::GabaritoVariable,
4496 #[cfg(feature = "static")]
4497 Font::GajrajOneRegular,
4498 #[cfg(feature = "static")]
4499 Font::GaladaRegular,
4500 #[cfg(feature = "static")]
4501 Font::GalindoRegular,
4502 #[cfg(feature = "static")]
4503 Font::GeostarRegular,
4504 #[cfg(feature = "static")]
4505 Font::GeostarFillRegular,
4506 #[cfg(feature = "static")]
4507 Font::GermaniaOneRegular,
4508 #[cfg(feature = "static")]
4509 Font::GideonRomanRegular,
4510 #[cfg(feature = "static")]
4511 Font::GirassolRegular,
4512 #[cfg(feature = "static")]
4513 Font::GlassAntiquaRegular,
4514 #[cfg(feature = "static")]
4515 Font::GlutenThin,
4516 #[cfg(feature = "static")]
4517 Font::GlutenExtraLight,
4518 #[cfg(feature = "static")]
4519 Font::GlutenLight,
4520 #[cfg(feature = "static")]
4521 Font::GlutenRegular,
4522 #[cfg(feature = "static")]
4523 Font::GlutenMedium,
4524 #[cfg(feature = "static")]
4525 Font::GlutenSemiBold,
4526 #[cfg(feature = "static")]
4527 Font::GlutenBold,
4528 #[cfg(feature = "static")]
4529 Font::GlutenExtraBold,
4530 #[cfg(feature = "static")]
4531 Font::GlutenBlack,
4532 #[cfg(feature = "variable")]
4533 Font::GlutenVariable,
4534 #[cfg(feature = "static")]
4535 Font::GoblinOneRegular,
4536 #[cfg(feature = "static")]
4537 Font::GoldmanRegular,
4538 #[cfg(feature = "static")]
4539 Font::GoldmanBold,
4540 #[cfg(feature = "static")]
4541 Font::GorditasRegular,
4542 #[cfg(feature = "static")]
4543 Font::GorditasBold,
4544 #[cfg(feature = "static")]
4545 Font::GrandstanderThin,
4546 #[cfg(feature = "static")]
4547 Font::GrandstanderExtraLight,
4548 #[cfg(feature = "static")]
4549 Font::GrandstanderLight,
4550 #[cfg(feature = "static")]
4551 Font::GrandstanderRegular,
4552 #[cfg(feature = "static")]
4553 Font::GrandstanderMedium,
4554 #[cfg(feature = "static")]
4555 Font::GrandstanderSemiBold,
4556 #[cfg(feature = "static")]
4557 Font::GrandstanderBold,
4558 #[cfg(feature = "static")]
4559 Font::GrandstanderExtraBold,
4560 #[cfg(feature = "static")]
4561 Font::GrandstanderBlack,
4562 #[cfg(feature = "static")]
4563 Font::GrandstanderThinItalic,
4564 #[cfg(feature = "static")]
4565 Font::GrandstanderExtraLightItalic,
4566 #[cfg(feature = "static")]
4567 Font::GrandstanderLightItalic,
4568 #[cfg(feature = "static")]
4569 Font::GrandstanderItalic,
4570 #[cfg(feature = "static")]
4571 Font::GrandstanderMediumItalic,
4572 #[cfg(feature = "static")]
4573 Font::GrandstanderSemiBoldItalic,
4574 #[cfg(feature = "static")]
4575 Font::GrandstanderBoldItalic,
4576 #[cfg(feature = "static")]
4577 Font::GrandstanderExtraBoldItalic,
4578 #[cfg(feature = "static")]
4579 Font::GrandstanderBlackItalic,
4580 #[cfg(feature = "variable")]
4581 Font::GrandstanderVariable,
4582 #[cfg(feature = "variable")]
4583 Font::GrandstanderItalicVariable,
4584 #[cfg(feature = "static")]
4585 Font::GravitasOneRegular,
4586 #[cfg(feature = "static")]
4587 Font::GrenzeGotischThin,
4588 #[cfg(feature = "static")]
4589 Font::GrenzeGotischExtraLight,
4590 #[cfg(feature = "static")]
4591 Font::GrenzeGotischLight,
4592 #[cfg(feature = "static")]
4593 Font::GrenzeGotischRegular,
4594 #[cfg(feature = "static")]
4595 Font::GrenzeGotischMedium,
4596 #[cfg(feature = "static")]
4597 Font::GrenzeGotischSemiBold,
4598 #[cfg(feature = "static")]
4599 Font::GrenzeGotischBold,
4600 #[cfg(feature = "static")]
4601 Font::GrenzeGotischExtraBold,
4602 #[cfg(feature = "static")]
4603 Font::GrenzeGotischBlack,
4604 #[cfg(feature = "variable")]
4605 Font::GrenzeGotischVariable,
4606 #[cfg(feature = "static")]
4607 Font::GriffyRegular,
4608 #[cfg(feature = "static")]
4609 Font::GugiRegular,
4610 #[cfg(feature = "static")]
4611 Font::HanaleiRegular,
4612 #[cfg(feature = "static")]
4613 Font::HanaleiFillRegular,
4614 #[cfg(feature = "static")]
4615 Font::HandjetThin,
4616 #[cfg(feature = "static")]
4617 Font::HandjetExtraLight,
4618 #[cfg(feature = "static")]
4619 Font::HandjetLight,
4620 #[cfg(feature = "static")]
4621 Font::HandjetRegular,
4622 #[cfg(feature = "static")]
4623 Font::HandjetMedium,
4624 #[cfg(feature = "static")]
4625 Font::HandjetSemiBold,
4626 #[cfg(feature = "static")]
4627 Font::HandjetBold,
4628 #[cfg(feature = "static")]
4629 Font::HandjetExtraBold,
4630 #[cfg(feature = "static")]
4631 Font::HandjetBlack,
4632 #[cfg(feature = "variable")]
4633 Font::HandjetVariable,
4634 #[cfg(feature = "static")]
4635 Font::HappyMonkeyRegular,
4636 #[cfg(feature = "static")]
4637 Font::HennyPennyRegular,
4638 #[cfg(feature = "static")]
4639 Font::HonkRegular,
4640 #[cfg(feature = "variable")]
4641 Font::HonkRegularVariable,
4642 #[cfg(feature = "static")]
4643 Font::IcebergRegular,
4644 #[cfg(feature = "static")]
4645 Font::IcelandRegular,
4646 #[cfg(feature = "static")]
4647 Font::IrishGroverRegular,
4648 #[cfg(feature = "static")]
4649 Font::Jacquard12Regular,
4650 #[cfg(feature = "static")]
4651 Font::Jacquard12ChartedRegular,
4652 #[cfg(feature = "static")]
4653 Font::Jacquard24Regular,
4654 #[cfg(feature = "static")]
4655 Font::Jacquard24ChartedRegular,
4656 #[cfg(feature = "static")]
4657 Font::JacquardaBastarda9Regular,
4658 #[cfg(feature = "static")]
4659 Font::JacquardaBastarda9ChartedRegular,
4660 #[cfg(feature = "static")]
4661 Font::JacquesFrancoisShadowRegular,
4662 #[cfg(feature = "static")]
4663 Font::JainiRegular,
4664 #[cfg(feature = "static")]
4665 Font::JainiPurvaRegular,
4666 #[cfg(feature = "static")]
4667 Font::Jersey10Regular,
4668 #[cfg(feature = "static")]
4669 Font::Jersey10ChartedRegular,
4670 #[cfg(feature = "static")]
4671 Font::Jersey15Regular,
4672 #[cfg(feature = "static")]
4673 Font::Jersey15ChartedRegular,
4674 #[cfg(feature = "static")]
4675 Font::Jersey20Regular,
4676 #[cfg(feature = "static")]
4677 Font::Jersey20ChartedRegular,
4678 #[cfg(feature = "static")]
4679 Font::Jersey25Regular,
4680 #[cfg(feature = "static")]
4681 Font::Jersey25ChartedRegular,
4682 #[cfg(feature = "static")]
4683 Font::JollyLodgerRegular,
4684 #[cfg(feature = "static")]
4685 Font::JomhuriaRegular,
4686 #[cfg(feature = "static")]
4687 Font::JotiOneRegular,
4688 #[cfg(feature = "static")]
4689 Font::KablammoRegular,
4690 #[cfg(feature = "variable")]
4691 Font::KablammoRegularVariable,
4692 #[cfg(feature = "static")]
4693 Font::KalniaGlazeThin,
4694 #[cfg(feature = "static")]
4695 Font::KalniaGlazeExtraLight,
4696 #[cfg(feature = "static")]
4697 Font::KalniaGlazeLight,
4698 #[cfg(feature = "static")]
4699 Font::KalniaGlazeRegular,
4700 #[cfg(feature = "static")]
4701 Font::KalniaGlazeMedium,
4702 #[cfg(feature = "static")]
4703 Font::KalniaGlazeSemiBold,
4704 #[cfg(feature = "static")]
4705 Font::KalniaGlazeBold,
4706 #[cfg(feature = "static")]
4707 Font::KalniaGlazeSemiExpandedThin,
4708 #[cfg(feature = "static")]
4709 Font::KalniaGlazeSemiExpandedExtraLight,
4710 #[cfg(feature = "static")]
4711 Font::KalniaGlazeSemiExpandedLight,
4712 #[cfg(feature = "static")]
4713 Font::KalniaGlazeSemiExpandedRegular,
4714 #[cfg(feature = "static")]
4715 Font::KalniaGlazeSemiExpandedMedium,
4716 #[cfg(feature = "static")]
4717 Font::KalniaGlazeSemiExpandedSemiBold,
4718 #[cfg(feature = "static")]
4719 Font::KalniaGlazeSemiExpandedBold,
4720 #[cfg(feature = "static")]
4721 Font::KalniaGlazeExpandedThin,
4722 #[cfg(feature = "static")]
4723 Font::KalniaGlazeExpandedExtraLight,
4724 #[cfg(feature = "static")]
4725 Font::KalniaGlazeExpandedLight,
4726 #[cfg(feature = "static")]
4727 Font::KalniaGlazeExpandedRegular,
4728 #[cfg(feature = "static")]
4729 Font::KalniaGlazeExpandedMedium,
4730 #[cfg(feature = "static")]
4731 Font::KalniaGlazeExpandedSemiBold,
4732 #[cfg(feature = "static")]
4733 Font::KalniaGlazeExpandedBold,
4734 #[cfg(feature = "variable")]
4735 Font::KalniaGlazeVariable,
4736 #[cfg(feature = "static")]
4737 Font::KarantinaLight,
4738 #[cfg(feature = "static")]
4739 Font::KarantinaRegular,
4740 #[cfg(feature = "static")]
4741 Font::KarantinaBold,
4742 #[cfg(feature = "static")]
4743 Font::KatibehRegular,
4744 #[cfg(feature = "static")]
4745 Font::KavoonRegular,
4746 #[cfg(feature = "static")]
4747 Font::KeaniaOneRegular,
4748 #[cfg(feature = "static")]
4749 Font::KellySlabRegular,
4750 #[cfg(feature = "static")]
4751 Font::KeniaRegular,
4752 #[cfg(feature = "static")]
4753 Font::KirangHaerangRegular,
4754 #[cfg(feature = "static")]
4755 Font::KnewaveRegular,
4756 #[cfg(feature = "static")]
4757 Font::KonkhmerSleokchherRegular,
4758 #[cfg(feature = "static")]
4759 Font::KoulenRegular,
4760 #[cfg(feature = "static")]
4761 Font::KrankyRegular,
4762 #[cfg(feature = "static")]
4763 Font::KumarOneRegular,
4764 #[cfg(feature = "static")]
4765 Font::KumarOneOutlineRegular,
4766 #[cfg(feature = "static")]
4767 Font::LacquerRegular,
4768 #[cfg(feature = "static")]
4769 Font::LalezarRegular,
4770 #[cfg(feature = "static")]
4771 Font::LancelotRegular,
4772 #[cfg(feature = "static")]
4773 Font::LangarRegular,
4774 #[cfg(feature = "static")]
4775 Font::LemonRegular,
4776 #[cfg(feature = "static")]
4777 Font::LemonadaLight,
4778 #[cfg(feature = "static")]
4779 Font::LemonadaRegular,
4780 #[cfg(feature = "static")]
4781 Font::LemonadaMedium,
4782 #[cfg(feature = "static")]
4783 Font::LemonadaSemiBold,
4784 #[cfg(feature = "static")]
4785 Font::LemonadaBold,
4786 #[cfg(feature = "variable")]
4787 Font::LemonadaVariable,
4788 #[cfg(feature = "static")]
4789 Font::LibreBarcode128Regular,
4790 #[cfg(feature = "static")]
4791 Font::LibreBarcode128TextRegular,
4792 #[cfg(feature = "static")]
4793 Font::LibreBarcode39Regular,
4794 #[cfg(feature = "static")]
4795 Font::LibreBarcode39ExtendedRegular,
4796 #[cfg(feature = "static")]
4797 Font::LibreBarcode39ExtendedTextRegular,
4798 #[cfg(feature = "static")]
4799 Font::LibreBarcode39TextRegular,
4800 #[cfg(feature = "static")]
4801 Font::LibreBarcodeEAN13TextRegular,
4802 #[cfg(feature = "static")]
4803 Font::LifeSaversRegular,
4804 #[cfg(feature = "static")]
4805 Font::LifeSaversBold,
4806 #[cfg(feature = "static")]
4807 Font::LifeSaversExtraBold,
4808 #[cfg(feature = "static")]
4809 Font::LilitaOneRegular,
4810 #[cfg(feature = "static")]
4811 Font::LilyScriptOneRegular,
4812 #[cfg(feature = "static")]
4813 Font::LimelightRegular,
4814 #[cfg(feature = "static")]
4815 Font::LinefontSuperCondensedThin,
4816 #[cfg(feature = "static")]
4817 Font::LinefontSuperCondensedExtraLight,
4818 #[cfg(feature = "static")]
4819 Font::LinefontSuperCondensedLight,
4820 #[cfg(feature = "static")]
4821 Font::LinefontSuperCondensedRegular,
4822 #[cfg(feature = "static")]
4823 Font::LinefontSuperCondensedMedium,
4824 #[cfg(feature = "static")]
4825 Font::LinefontSuperCondensedSemiBold,
4826 #[cfg(feature = "static")]
4827 Font::LinefontSuperCondensedBold,
4828 #[cfg(feature = "static")]
4829 Font::LinefontSuperCondensedExtraBold,
4830 #[cfg(feature = "static")]
4831 Font::LinefontSuperCondensedBlack,
4832 #[cfg(feature = "static")]
4833 Font::LinefontUltraCondensedThin,
4834 #[cfg(feature = "static")]
4835 Font::LinefontUltraCondensedExtraLight,
4836 #[cfg(feature = "static")]
4837 Font::LinefontUltraCondensedLight,
4838 #[cfg(feature = "static")]
4839 Font::LinefontUltraCondensedRegular,
4840 #[cfg(feature = "static")]
4841 Font::LinefontUltraCondensedMedium,
4842 #[cfg(feature = "static")]
4843 Font::LinefontUltraCondensedSemiBold,
4844 #[cfg(feature = "static")]
4845 Font::LinefontUltraCondensedBold,
4846 #[cfg(feature = "static")]
4847 Font::LinefontUltraCondensedExtraBold,
4848 #[cfg(feature = "static")]
4849 Font::LinefontUltraCondensedBlack,
4850 #[cfg(feature = "static")]
4851 Font::LinefontExtraCondensedThin,
4852 #[cfg(feature = "static")]
4853 Font::LinefontExtraCondensedExtraLight,
4854 #[cfg(feature = "static")]
4855 Font::LinefontExtraCondensedLight,
4856 #[cfg(feature = "static")]
4857 Font::LinefontExtraCondensedRegular,
4858 #[cfg(feature = "static")]
4859 Font::LinefontExtraCondensedMedium,
4860 #[cfg(feature = "static")]
4861 Font::LinefontExtraCondensedSemiBold,
4862 #[cfg(feature = "static")]
4863 Font::LinefontExtraCondensedBold,
4864 #[cfg(feature = "static")]
4865 Font::LinefontExtraCondensedExtraBold,
4866 #[cfg(feature = "static")]
4867 Font::LinefontExtraCondensedBlack,
4868 #[cfg(feature = "static")]
4869 Font::LinefontCondensedThin,
4870 #[cfg(feature = "static")]
4871 Font::LinefontCondensedExtraLight,
4872 #[cfg(feature = "static")]
4873 Font::LinefontCondensedLight,
4874 #[cfg(feature = "static")]
4875 Font::LinefontCondensedRegular,
4876 #[cfg(feature = "static")]
4877 Font::LinefontCondensedMedium,
4878 #[cfg(feature = "static")]
4879 Font::LinefontCondensedSemiBold,
4880 #[cfg(feature = "static")]
4881 Font::LinefontCondensedBold,
4882 #[cfg(feature = "static")]
4883 Font::LinefontCondensedExtraBold,
4884 #[cfg(feature = "static")]
4885 Font::LinefontCondensedBlack,
4886 #[cfg(feature = "static")]
4887 Font::LinefontSemiCondensedThin,
4888 #[cfg(feature = "static")]
4889 Font::LinefontSemiCondensedExtraLight,
4890 #[cfg(feature = "static")]
4891 Font::LinefontSemiCondensedLight,
4892 #[cfg(feature = "static")]
4893 Font::LinefontSemiCondensedRegular,
4894 #[cfg(feature = "static")]
4895 Font::LinefontSemiCondensedMedium,
4896 #[cfg(feature = "static")]
4897 Font::LinefontSemiCondensedSemiBold,
4898 #[cfg(feature = "static")]
4899 Font::LinefontSemiCondensedBold,
4900 #[cfg(feature = "static")]
4901 Font::LinefontSemiCondensedExtraBold,
4902 #[cfg(feature = "static")]
4903 Font::LinefontSemiCondensedBlack,
4904 #[cfg(feature = "static")]
4905 Font::LinefontThin,
4906 #[cfg(feature = "static")]
4907 Font::LinefontExtraLight,
4908 #[cfg(feature = "static")]
4909 Font::LinefontLight,
4910 #[cfg(feature = "static")]
4911 Font::LinefontRegular,
4912 #[cfg(feature = "static")]
4913 Font::LinefontMedium,
4914 #[cfg(feature = "static")]
4915 Font::LinefontSemiBold,
4916 #[cfg(feature = "static")]
4917 Font::LinefontBold,
4918 #[cfg(feature = "static")]
4919 Font::LinefontExtraBold,
4920 #[cfg(feature = "static")]
4921 Font::LinefontBlack,
4922 #[cfg(feature = "static")]
4923 Font::LinefontSemiExpandedThin,
4924 #[cfg(feature = "static")]
4925 Font::LinefontSemiExpandedExtraLight,
4926 #[cfg(feature = "static")]
4927 Font::LinefontSemiExpandedLight,
4928 #[cfg(feature = "static")]
4929 Font::LinefontSemiExpandedRegular,
4930 #[cfg(feature = "static")]
4931 Font::LinefontSemiExpandedMedium,
4932 #[cfg(feature = "static")]
4933 Font::LinefontSemiExpandedSemiBold,
4934 #[cfg(feature = "static")]
4935 Font::LinefontSemiExpandedBold,
4936 #[cfg(feature = "static")]
4937 Font::LinefontSemiExpandedExtraBold,
4938 #[cfg(feature = "static")]
4939 Font::LinefontSemiExpandedBlack,
4940 #[cfg(feature = "static")]
4941 Font::LinefontExpandedThin,
4942 #[cfg(feature = "static")]
4943 Font::LinefontExpandedExtraLight,
4944 #[cfg(feature = "static")]
4945 Font::LinefontExpandedLight,
4946 #[cfg(feature = "static")]
4947 Font::LinefontExpandedRegular,
4948 #[cfg(feature = "static")]
4949 Font::LinefontExpandedMedium,
4950 #[cfg(feature = "static")]
4951 Font::LinefontExpandedSemiBold,
4952 #[cfg(feature = "static")]
4953 Font::LinefontExpandedBold,
4954 #[cfg(feature = "static")]
4955 Font::LinefontExpandedExtraBold,
4956 #[cfg(feature = "static")]
4957 Font::LinefontExpandedBlack,
4958 #[cfg(feature = "static")]
4959 Font::LinefontExtraExpandedThin,
4960 #[cfg(feature = "static")]
4961 Font::LinefontExtraExpandedExtraLight,
4962 #[cfg(feature = "static")]
4963 Font::LinefontExtraExpandedLight,
4964 #[cfg(feature = "static")]
4965 Font::LinefontExtraExpandedRegular,
4966 #[cfg(feature = "static")]
4967 Font::LinefontExtraExpandedMedium,
4968 #[cfg(feature = "static")]
4969 Font::LinefontExtraExpandedSemiBold,
4970 #[cfg(feature = "static")]
4971 Font::LinefontExtraExpandedBold,
4972 #[cfg(feature = "static")]
4973 Font::LinefontExtraExpandedExtraBold,
4974 #[cfg(feature = "static")]
4975 Font::LinefontExtraExpandedBlack,
4976 #[cfg(feature = "static")]
4977 Font::LinefontUltraExpandedThin,
4978 #[cfg(feature = "static")]
4979 Font::LinefontUltraExpandedExtraLight,
4980 #[cfg(feature = "static")]
4981 Font::LinefontUltraExpandedLight,
4982 #[cfg(feature = "static")]
4983 Font::LinefontUltraExpandedRegular,
4984 #[cfg(feature = "static")]
4985 Font::LinefontUltraExpandedMedium,
4986 #[cfg(feature = "static")]
4987 Font::LinefontUltraExpandedSemiBold,
4988 #[cfg(feature = "static")]
4989 Font::LinefontUltraExpandedBold,
4990 #[cfg(feature = "static")]
4991 Font::LinefontUltraExpandedExtraBold,
4992 #[cfg(feature = "static")]
4993 Font::LinefontUltraExpandedBlack,
4994 #[cfg(feature = "variable")]
4995 Font::LinefontVariable,
4996 #[cfg(feature = "static")]
4997 Font::LobsterRegular,
4998 #[cfg(feature = "static")]
4999 Font::LobsterTwoRegular,
5000 #[cfg(feature = "static")]
5001 Font::LobsterTwoItalic,
5002 #[cfg(feature = "static")]
5003 Font::LobsterTwoBold,
5004 #[cfg(feature = "static")]
5005 Font::LobsterTwoBoldItalic,
5006 #[cfg(feature = "static")]
5007 Font::LondrinaOutlineRegular,
5008 #[cfg(feature = "static")]
5009 Font::LondrinaShadowRegular,
5010 #[cfg(feature = "static")]
5011 Font::LondrinaSketchRegular,
5012 #[cfg(feature = "static")]
5013 Font::LondrinaSolidThin,
5014 #[cfg(feature = "static")]
5015 Font::LondrinaSolidLight,
5016 #[cfg(feature = "static")]
5017 Font::LondrinaSolidRegular,
5018 #[cfg(feature = "static")]
5019 Font::LondrinaSolidBlack,
5020 #[cfg(feature = "static")]
5021 Font::LoveYaLikeASisterRegular,
5022 #[cfg(feature = "static")]
5023 Font::LuckiestGuyRegular,
5024 #[cfg(feature = "static")]
5025 Font::LuxuriousRomanRegular,
5026 #[cfg(feature = "static")]
5027 Font::MacondoRegular,
5028 #[cfg(feature = "static")]
5029 Font::MacondoSwashCapsRegular,
5030 #[cfg(feature = "static")]
5031 Font::MargarineRegular,
5032 #[cfg(feature = "static")]
5033 Font::MarheyLight,
5034 #[cfg(feature = "static")]
5035 Font::MarheyRegular,
5036 #[cfg(feature = "static")]
5037 Font::MarheyMedium,
5038 #[cfg(feature = "static")]
5039 Font::MarheySemiBold,
5040 #[cfg(feature = "static")]
5041 Font::MarheyBold,
5042 #[cfg(feature = "variable")]
5043 Font::MarheyVariable,
5044 #[cfg(feature = "static")]
5045 Font::McLarenRegular,
5046 #[cfg(feature = "static")]
5047 Font::MedievalSharpRegular,
5048 #[cfg(feature = "static")]
5049 Font::MedulaOneRegular,
5050 #[cfg(feature = "static")]
5051 Font::MegrimRegular,
5052 #[cfg(feature = "static")]
5053 Font::MetalRegular,
5054 #[cfg(feature = "static")]
5055 Font::MetalManiaRegular,
5056 #[cfg(feature = "static")]
5057 Font::MetamorphousRegular,
5058 #[cfg(feature = "static")]
5059 Font::Micro5Regular,
5060 #[cfg(feature = "static")]
5061 Font::Micro5ChartedRegular,
5062 #[cfg(feature = "static")]
5063 Font::MilongaRegular,
5064 #[cfg(feature = "static")]
5065 Font::MiltonianRegular,
5066 #[cfg(feature = "static")]
5067 Font::MiltonianTattooRegular,
5068 #[cfg(feature = "static")]
5069 Font::MiniverRegular,
5070 #[cfg(feature = "static")]
5071 Font::ModakRegular,
5072 #[cfg(feature = "static")]
5073 Font::ModernAntiquaRegular,
5074 #[cfg(feature = "static")]
5075 Font::MograRegular,
5076 #[cfg(feature = "static")]
5077 Font::MoiraiOneRegular,
5078 #[cfg(feature = "static")]
5079 Font::MonotonRegular,
5080 #[cfg(feature = "static")]
5081 Font::MooLahLahRegular,
5082 #[cfg(feature = "static")]
5083 Font::MoulRegular,
5084 #[cfg(feature = "static")]
5085 Font::MountainsofChristmasRegular,
5086 #[cfg(feature = "static")]
5087 Font::MountainsofChristmasBold,
5088 #[cfg(feature = "static")]
5089 Font::MuseoModernoThin,
5090 #[cfg(feature = "static")]
5091 Font::MuseoModernoExtraLight,
5092 #[cfg(feature = "static")]
5093 Font::MuseoModernoLight,
5094 #[cfg(feature = "static")]
5095 Font::MuseoModernoRegular,
5096 #[cfg(feature = "static")]
5097 Font::MuseoModernoMedium,
5098 #[cfg(feature = "static")]
5099 Font::MuseoModernoSemiBold,
5100 #[cfg(feature = "static")]
5101 Font::MuseoModernoBold,
5102 #[cfg(feature = "static")]
5103 Font::MuseoModernoExtraBold,
5104 #[cfg(feature = "static")]
5105 Font::MuseoModernoBlack,
5106 #[cfg(feature = "static")]
5107 Font::MuseoModernoThinItalic,
5108 #[cfg(feature = "static")]
5109 Font::MuseoModernoExtraLightItalic,
5110 #[cfg(feature = "static")]
5111 Font::MuseoModernoLightItalic,
5112 #[cfg(feature = "static")]
5113 Font::MuseoModernoItalic,
5114 #[cfg(feature = "static")]
5115 Font::MuseoModernoMediumItalic,
5116 #[cfg(feature = "static")]
5117 Font::MuseoModernoSemiBoldItalic,
5118 #[cfg(feature = "static")]
5119 Font::MuseoModernoBoldItalic,
5120 #[cfg(feature = "static")]
5121 Font::MuseoModernoExtraBoldItalic,
5122 #[cfg(feature = "static")]
5123 Font::MuseoModernoBlackItalic,
5124 #[cfg(feature = "variable")]
5125 Font::MuseoModernoVariable,
5126 #[cfg(feature = "variable")]
5127 Font::MuseoModernoItalicVariable,
5128 #[cfg(feature = "static")]
5129 Font::MysteryQuestRegular,
5130 #[cfg(feature = "static")]
5131 Font::NablaRegular,
5132 #[cfg(feature = "variable")]
5133 Font::NablaRegularVariable,
5134 #[cfg(feature = "static")]
5135 Font::NewRockerRegular,
5136 #[cfg(feature = "static")]
5137 Font::NixieOneRegular,
5138 #[cfg(feature = "static")]
5139 Font::NosiferRegular,
5140 #[cfg(feature = "static")]
5141 Font::NovaCutRegular,
5142 #[cfg(feature = "static")]
5143 Font::NovaFlatRegular,
5144 #[cfg(feature = "static")]
5145 Font::NovaOvalRegular,
5146 #[cfg(feature = "static")]
5147 Font::NovaRoundRegular,
5148 #[cfg(feature = "static")]
5149 Font::NovaScriptRegular,
5150 #[cfg(feature = "static")]
5151 Font::NovaSlimRegular,
5152 #[cfg(feature = "static")]
5153 Font::NovaSquareRegular,
5154 #[cfg(feature = "static")]
5155 Font::OdibeeSansRegular,
5156 #[cfg(feature = "static")]
5157 Font::OffsideRegular,
5158 #[cfg(feature = "static")]
5159 Font::OiRegular,
5160 #[cfg(feature = "static")]
5161 Font::OldenburgRegular,
5162 #[cfg(feature = "static")]
5163 Font::OleoScriptRegular,
5164 #[cfg(feature = "static")]
5165 Font::OleoScriptBold,
5166 #[cfg(feature = "static")]
5167 Font::OleoScriptSwashCapsRegular,
5168 #[cfg(feature = "static")]
5169 Font::OleoScriptSwashCapsBold,
5170 #[cfg(feature = "static")]
5171 Font::OreganoRegular,
5172 #[cfg(feature = "static")]
5173 Font::OreganoItalic,
5174 #[cfg(feature = "static")]
5175 Font::OrelegaOneRegular,
5176 #[cfg(feature = "static")]
5177 Font::OriginalSurferRegular,
5178 #[cfg(feature = "static")]
5179 Font::OverlockRegular,
5180 #[cfg(feature = "static")]
5181 Font::OverlockItalic,
5182 #[cfg(feature = "static")]
5183 Font::OverlockBold,
5184 #[cfg(feature = "static")]
5185 Font::OverlockBoldItalic,
5186 #[cfg(feature = "static")]
5187 Font::OverlockBlack,
5188 #[cfg(feature = "static")]
5189 Font::OverlockBlackItalic,
5190 #[cfg(feature = "static")]
5191 Font::OverlockSCRegular,
5192 #[cfg(feature = "static")]
5193 Font::OxaniumExtraLight,
5194 #[cfg(feature = "static")]
5195 Font::OxaniumLight,
5196 #[cfg(feature = "static")]
5197 Font::OxaniumRegular,
5198 #[cfg(feature = "static")]
5199 Font::OxaniumMedium,
5200 #[cfg(feature = "static")]
5201 Font::OxaniumSemiBold,
5202 #[cfg(feature = "static")]
5203 Font::OxaniumBold,
5204 #[cfg(feature = "static")]
5205 Font::OxaniumExtraBold,
5206 #[cfg(feature = "variable")]
5207 Font::OxaniumVariable,
5208 #[cfg(feature = "static")]
5209 Font::PaletteMosaicRegular,
5210 #[cfg(feature = "static")]
5211 Font::PaprikaRegular,
5212 #[cfg(feature = "static")]
5213 Font::PasseroOneRegular,
5214 #[cfg(feature = "static")]
5215 Font::PassionOneRegular,
5216 #[cfg(feature = "static")]
5217 Font::PassionOneBold,
5218 #[cfg(feature = "static")]
5219 Font::PassionOneBlack,
5220 #[cfg(feature = "static")]
5221 Font::PatuaOneRegular,
5222 #[cfg(feature = "static")]
5223 Font::PhuduLight,
5224 #[cfg(feature = "static")]
5225 Font::PhuduRegular,
5226 #[cfg(feature = "static")]
5227 Font::PhuduMedium,
5228 #[cfg(feature = "static")]
5229 Font::PhuduSemiBold,
5230 #[cfg(feature = "static")]
5231 Font::PhuduBold,
5232 #[cfg(feature = "static")]
5233 Font::PhuduExtraBold,
5234 #[cfg(feature = "static")]
5235 Font::PhuduBlack,
5236 #[cfg(feature = "variable")]
5237 Font::PhuduVariable,
5238 #[cfg(feature = "static")]
5239 Font::PiedraRegular,
5240 #[cfg(feature = "static")]
5241 Font::PirataOneRegular,
5242 #[cfg(feature = "static")]
5243 Font::PixelifySansRegular,
5244 #[cfg(feature = "static")]
5245 Font::PixelifySansMedium,
5246 #[cfg(feature = "static")]
5247 Font::PixelifySansSemiBold,
5248 #[cfg(feature = "static")]
5249 Font::PixelifySansBold,
5250 #[cfg(feature = "variable")]
5251 Font::PixelifySansVariable,
5252 #[cfg(feature = "static")]
5253 Font::PlasterRegular,
5254 #[cfg(feature = "static")]
5255 Font::PlayballRegular,
5256 #[cfg(feature = "static")]
5257 Font::PoetsenOneRegular,
5258 #[cfg(feature = "static")]
5259 Font::PoiretOneRegular,
5260 #[cfg(feature = "static")]
5261 Font::PollerOneRegular,
5262 #[cfg(feature = "static")]
5263 Font::PompiereRegular,
5264 #[cfg(feature = "static")]
5265 Font::PoorStoryRegular,
5266 #[cfg(feature = "static")]
5267 Font::PottaOneRegular,
5268 #[cfg(feature = "static")]
5269 Font::PressStart2PRegular,
5270 #[cfg(feature = "static")]
5271 Font::ProstoOneRegular,
5272 #[cfg(feature = "static")]
5273 Font::ProtestGuerrillaRegular,
5274 #[cfg(feature = "static")]
5275 Font::ProtestRevolutionRegular,
5276 #[cfg(feature = "static")]
5277 Font::ProtestRiotRegular,
5278 #[cfg(feature = "static")]
5279 Font::ProtestStrikeRegular,
5280 #[cfg(feature = "static")]
5281 Font::PurplePurseRegular,
5282 #[cfg(feature = "static")]
5283 Font::RacingSansOneRegular,
5284 #[cfg(feature = "static")]
5285 Font::RakkasRegular,
5286 #[cfg(feature = "static")]
5287 Font::RalewayDotsRegular,
5288 #[cfg(feature = "static")]
5289 Font::RammettoOneRegular,
5290 #[cfg(feature = "static")]
5291 Font::RampartOneRegular,
5292 #[cfg(feature = "static")]
5293 Font::RanchersRegular,
5294 #[cfg(feature = "static")]
5295 Font::RangaRegular,
5296 #[cfg(feature = "static")]
5297 Font::RangaBold,
5298 #[cfg(feature = "static")]
5299 Font::RaviPrakashRegular,
5300 #[cfg(feature = "static")]
5301 Font::RedRoseLight,
5302 #[cfg(feature = "static")]
5303 Font::RedRoseRegular,
5304 #[cfg(feature = "static")]
5305 Font::RedRoseMedium,
5306 #[cfg(feature = "static")]
5307 Font::RedRoseSemiBold,
5308 #[cfg(feature = "static")]
5309 Font::RedRoseBold,
5310 #[cfg(feature = "variable")]
5311 Font::RedRoseVariable,
5312 #[cfg(feature = "static")]
5313 Font::RedactedRegular,
5314 #[cfg(feature = "static")]
5315 Font::RedactedScriptLight,
5316 #[cfg(feature = "static")]
5317 Font::RedactedScriptRegular,
5318 #[cfg(feature = "static")]
5319 Font::RedactedScriptBold,
5320 #[cfg(feature = "static")]
5321 Font::ReggaeOneRegular,
5322 #[cfg(feature = "static")]
5323 Font::RevaliaRegular,
5324 #[cfg(feature = "static")]
5325 Font::RibeyeRegular,
5326 #[cfg(feature = "static")]
5327 Font::RibeyeMarrowRegular,
5328 #[cfg(feature = "static")]
5329 Font::RighteousRegular,
5330 #[cfg(feature = "static")]
5331 Font::RisqueRegular,
5332 #[cfg(feature = "static")]
5333 Font::RoadRageRegular,
5334 #[cfg(feature = "static")]
5335 Font::Rock3DRegular,
5336 #[cfg(feature = "static")]
5337 Font::RowdiesLight,
5338 #[cfg(feature = "static")]
5339 Font::RowdiesRegular,
5340 #[cfg(feature = "static")]
5341 Font::RowdiesBold,
5342 #[cfg(feature = "static")]
5343 Font::Rubik80sFadeRegular,
5344 #[cfg(feature = "static")]
5345 Font::RubikBeastlyRegular,
5346 #[cfg(feature = "static")]
5347 Font::RubikBrokenFaxRegular,
5348 #[cfg(feature = "static")]
5349 Font::RubikBubblesRegular,
5350 #[cfg(feature = "static")]
5351 Font::RubikBurnedRegular,
5352 #[cfg(feature = "static")]
5353 Font::RubikDirtRegular,
5354 #[cfg(feature = "static")]
5355 Font::RubikDistressedRegular,
5356 #[cfg(feature = "static")]
5357 Font::RubikDoodleShadowRegular,
5358 #[cfg(feature = "static")]
5359 Font::RubikDoodleTrianglesRegular,
5360 #[cfg(feature = "static")]
5361 Font::RubikGemstonesRegular,
5362 #[cfg(feature = "static")]
5363 Font::RubikGlitchRegular,
5364 #[cfg(feature = "static")]
5365 Font::RubikGlitchPopRegular,
5366 #[cfg(feature = "static")]
5367 Font::RubikIsoRegular,
5368 #[cfg(feature = "static")]
5369 Font::RubikLinesRegular,
5370 #[cfg(feature = "static")]
5371 Font::RubikMapsRegular,
5372 #[cfg(feature = "static")]
5373 Font::RubikMarkerHatchRegular,
5374 #[cfg(feature = "static")]
5375 Font::RubikMazeRegular,
5376 #[cfg(feature = "static")]
5377 Font::RubikMicrobeRegular,
5378 #[cfg(feature = "static")]
5379 Font::RubikMoonrocksRegular,
5380 #[cfg(feature = "static")]
5381 Font::RubikPixelsRegular,
5382 #[cfg(feature = "static")]
5383 Font::RubikPuddlesRegular,
5384 #[cfg(feature = "static")]
5385 Font::RubikScribbleRegular,
5386 #[cfg(feature = "static")]
5387 Font::RubikSprayPaintRegular,
5388 #[cfg(feature = "static")]
5389 Font::RubikStormRegular,
5390 #[cfg(feature = "static")]
5391 Font::RubikVinylRegular,
5392 #[cfg(feature = "static")]
5393 Font::RubikWetPaintRegular,
5394 #[cfg(feature = "static")]
5395 Font::RuslanDisplayRegular,
5396 #[cfg(feature = "static")]
5397 Font::RyeRegular,
5398 #[cfg(feature = "static")]
5399 Font::SailRegular,
5400 #[cfg(feature = "static")]
5401 Font::SairaStencilOneRegular,
5402 #[cfg(feature = "static")]
5403 Font::SalsaRegular,
5404 #[cfg(feature = "static")]
5405 Font::SancreekRegular,
5406 #[cfg(feature = "static")]
5407 Font::SansitaSwashedLight,
5408 #[cfg(feature = "static")]
5409 Font::SansitaSwashedRegular,
5410 #[cfg(feature = "static")]
5411 Font::SansitaSwashedMedium,
5412 #[cfg(feature = "static")]
5413 Font::SansitaSwashedSemiBold,
5414 #[cfg(feature = "static")]
5415 Font::SansitaSwashedBold,
5416 #[cfg(feature = "static")]
5417 Font::SansitaSwashedExtraBold,
5418 #[cfg(feature = "static")]
5419 Font::SansitaSwashedBlack,
5420 #[cfg(feature = "variable")]
5421 Font::SansitaSwashedVariable,
5422 #[cfg(feature = "static")]
5423 Font::SarinaRegular,
5424 #[cfg(feature = "static")]
5425 Font::SeaweedScriptRegular,
5426 #[cfg(feature = "static")]
5427 Font::SevillanaRegular,
5428 #[cfg(feature = "static")]
5429 Font::ShantellSansLight,
5430 #[cfg(feature = "static")]
5431 Font::ShantellSansRegular,
5432 #[cfg(feature = "static")]
5433 Font::ShantellSansMedium,
5434 #[cfg(feature = "static")]
5435 Font::ShantellSansSemiBold,
5436 #[cfg(feature = "static")]
5437 Font::ShantellSansBold,
5438 #[cfg(feature = "static")]
5439 Font::ShantellSansExtraBold,
5440 #[cfg(feature = "static")]
5441 Font::ShantellSansLightItalic,
5442 #[cfg(feature = "static")]
5443 Font::ShantellSansItalic,
5444 #[cfg(feature = "static")]
5445 Font::ShantellSansMediumItalic,
5446 #[cfg(feature = "static")]
5447 Font::ShantellSansSemiBoldItalic,
5448 #[cfg(feature = "static")]
5449 Font::ShantellSansBoldItalic,
5450 #[cfg(feature = "static")]
5451 Font::ShantellSansExtraBoldItalic,
5452 #[cfg(feature = "variable")]
5453 Font::ShantellSansVariable,
5454 #[cfg(feature = "variable")]
5455 Font::ShantellSansItalicVariable,
5456 #[cfg(feature = "static")]
5457 Font::ShizuruRegular,
5458 #[cfg(feature = "static")]
5459 Font::ShojumaruRegular,
5460 #[cfg(feature = "static")]
5461 Font::ShrikhandRegular,
5462 #[cfg(feature = "static")]
5463 Font::SigmarRegular,
5464 #[cfg(feature = "static")]
5465 Font::SigmarOneRegular,
5466 #[cfg(feature = "static")]
5467 Font::SilkscreenRegular,
5468 #[cfg(feature = "static")]
5469 Font::SilkscreenBold,
5470 #[cfg(feature = "static")]
5471 Font::SimonettaRegular,
5472 #[cfg(feature = "static")]
5473 Font::SimonettaItalic,
5474 #[cfg(feature = "static")]
5475 Font::SimonettaBlack,
5476 #[cfg(feature = "static")]
5477 Font::SimonettaBlackItalic,
5478 #[cfg(feature = "static")]
5479 Font::SingleDayRegular,
5480 #[cfg(feature = "static")]
5481 Font::SirinStencilRegular,
5482 #[cfg(feature = "static")]
5483 Font::SkranjiRegular,
5484 #[cfg(feature = "static")]
5485 Font::SkranjiBold,
5486 #[cfg(feature = "static")]
5487 Font::SlackeyRegular,
5488 #[cfg(feature = "static")]
5489 Font::SmokumRegular,
5490 #[cfg(feature = "static")]
5491 Font::SmytheRegular,
5492 #[cfg(feature = "static")]
5493 Font::SnigletRegular,
5494 #[cfg(feature = "static")]
5495 Font::SnigletExtraBold,
5496 #[cfg(feature = "static")]
5497 Font::SnowburstOneRegular,
5498 #[cfg(feature = "static")]
5499 Font::SofadiOneRegular,
5500 #[cfg(feature = "static")]
5501 Font::SonsieOneRegular,
5502 #[cfg(feature = "static")]
5503 Font::SpecialEliteRegular,
5504 #[cfg(feature = "static")]
5505 Font::SpicyRiceRegular,
5506 #[cfg(feature = "static")]
5507 Font::SpiraxRegular,
5508 #[cfg(feature = "static")]
5509 Font::SquadaOneRegular,
5510 #[cfg(feature = "static")]
5511 Font::SrisakdiRegular,
5512 #[cfg(feature = "static")]
5513 Font::SrisakdiBold,
5514 #[cfg(feature = "static")]
5515 Font::StaatlichesRegular,
5516 #[cfg(feature = "static")]
5517 Font::StalinistOneRegular,
5518 #[cfg(feature = "static")]
5519 Font::StardosStencilRegular,
5520 #[cfg(feature = "static")]
5521 Font::StardosStencilBold,
5522 #[cfg(feature = "static")]
5523 Font::SupermercadoOneRegular,
5524 #[cfg(feature = "static")]
5525 Font::SyneTactileRegular,
5526 #[cfg(feature = "static")]
5527 Font::TapromRegular,
5528 #[cfg(feature = "static")]
5529 Font::TekturCondensedRegular,
5530 #[cfg(feature = "static")]
5531 Font::TekturCondensedMedium,
5532 #[cfg(feature = "static")]
5533 Font::TekturCondensedSemiBold,
5534 #[cfg(feature = "static")]
5535 Font::TekturCondensedBold,
5536 #[cfg(feature = "static")]
5537 Font::TekturCondensedExtraBold,
5538 #[cfg(feature = "static")]
5539 Font::TekturCondensedBlack,
5540 #[cfg(feature = "static")]
5541 Font::TekturSemiCondensedRegular,
5542 #[cfg(feature = "static")]
5543 Font::TekturSemiCondensedMedium,
5544 #[cfg(feature = "static")]
5545 Font::TekturSemiCondensedSemiBold,
5546 #[cfg(feature = "static")]
5547 Font::TekturSemiCondensedBold,
5548 #[cfg(feature = "static")]
5549 Font::TekturSemiCondensedExtraBold,
5550 #[cfg(feature = "static")]
5551 Font::TekturSemiCondensedBlack,
5552 #[cfg(feature = "static")]
5553 Font::TekturRegular,
5554 #[cfg(feature = "static")]
5555 Font::TekturMedium,
5556 #[cfg(feature = "static")]
5557 Font::TekturSemiBold,
5558 #[cfg(feature = "static")]
5559 Font::TekturBold,
5560 #[cfg(feature = "static")]
5561 Font::TekturExtraBold,
5562 #[cfg(feature = "static")]
5563 Font::TekturBlack,
5564 #[cfg(feature = "variable")]
5565 Font::TekturVariable,
5566 #[cfg(feature = "static")]
5567 Font::TillanaRegular,
5568 #[cfg(feature = "static")]
5569 Font::TillanaMedium,
5570 #[cfg(feature = "static")]
5571 Font::TillanaSemiBold,
5572 #[cfg(feature = "static")]
5573 Font::TillanaBold,
5574 #[cfg(feature = "static")]
5575 Font::TillanaExtraBold,
5576 #[cfg(feature = "static")]
5577 Font::TiltNeonRegular,
5578 #[cfg(feature = "variable")]
5579 Font::TiltNeonRegularVariable,
5580 #[cfg(feature = "static")]
5581 Font::TiltPrismRegular,
5582 #[cfg(feature = "variable")]
5583 Font::TiltPrismRegularVariable,
5584 #[cfg(feature = "static")]
5585 Font::TiltWarpRegular,
5586 #[cfg(feature = "variable")]
5587 Font::TiltWarpRegularVariable,
5588 #[cfg(feature = "static")]
5589 Font::TitanOneRegular,
5590 #[cfg(feature = "static")]
5591 Font::TourneyCondensedThin,
5592 #[cfg(feature = "static")]
5593 Font::TourneyCondensedExtraLight,
5594 #[cfg(feature = "static")]
5595 Font::TourneyCondensedLight,
5596 #[cfg(feature = "static")]
5597 Font::TourneyCondensedRegular,
5598 #[cfg(feature = "static")]
5599 Font::TourneyCondensedMedium,
5600 #[cfg(feature = "static")]
5601 Font::TourneyCondensedSemiBold,
5602 #[cfg(feature = "static")]
5603 Font::TourneyCondensedBold,
5604 #[cfg(feature = "static")]
5605 Font::TourneyCondensedExtraBold,
5606 #[cfg(feature = "static")]
5607 Font::TourneyCondensedBlack,
5608 #[cfg(feature = "static")]
5609 Font::TourneySemiCondensedThin,
5610 #[cfg(feature = "static")]
5611 Font::TourneySemiCondensedExtraLight,
5612 #[cfg(feature = "static")]
5613 Font::TourneySemiCondensedLight,
5614 #[cfg(feature = "static")]
5615 Font::TourneySemiCondensedRegular,
5616 #[cfg(feature = "static")]
5617 Font::TourneySemiCondensedMedium,
5618 #[cfg(feature = "static")]
5619 Font::TourneySemiCondensedSemiBold,
5620 #[cfg(feature = "static")]
5621 Font::TourneySemiCondensedBold,
5622 #[cfg(feature = "static")]
5623 Font::TourneySemiCondensedExtraBold,
5624 #[cfg(feature = "static")]
5625 Font::TourneySemiCondensedBlack,
5626 #[cfg(feature = "static")]
5627 Font::TourneyThin,
5628 #[cfg(feature = "static")]
5629 Font::TourneyExtraLight,
5630 #[cfg(feature = "static")]
5631 Font::TourneyLight,
5632 #[cfg(feature = "static")]
5633 Font::TourneyRegular,
5634 #[cfg(feature = "static")]
5635 Font::TourneyMedium,
5636 #[cfg(feature = "static")]
5637 Font::TourneySemiBold,
5638 #[cfg(feature = "static")]
5639 Font::TourneyBold,
5640 #[cfg(feature = "static")]
5641 Font::TourneyExtraBold,
5642 #[cfg(feature = "static")]
5643 Font::TourneyBlack,
5644 #[cfg(feature = "static")]
5645 Font::TourneySemiExpandedThin,
5646 #[cfg(feature = "static")]
5647 Font::TourneySemiExpandedExtraLight,
5648 #[cfg(feature = "static")]
5649 Font::TourneySemiExpandedLight,
5650 #[cfg(feature = "static")]
5651 Font::TourneySemiExpandedRegular,
5652 #[cfg(feature = "static")]
5653 Font::TourneySemiExpandedMedium,
5654 #[cfg(feature = "static")]
5655 Font::TourneySemiExpandedSemiBold,
5656 #[cfg(feature = "static")]
5657 Font::TourneySemiExpandedBold,
5658 #[cfg(feature = "static")]
5659 Font::TourneySemiExpandedExtraBold,
5660 #[cfg(feature = "static")]
5661 Font::TourneySemiExpandedBlack,
5662 #[cfg(feature = "static")]
5663 Font::TourneyExpandedThin,
5664 #[cfg(feature = "static")]
5665 Font::TourneyExpandedExtraLight,
5666 #[cfg(feature = "static")]
5667 Font::TourneyExpandedLight,
5668 #[cfg(feature = "static")]
5669 Font::TourneyExpandedRegular,
5670 #[cfg(feature = "static")]
5671 Font::TourneyExpandedMedium,
5672 #[cfg(feature = "static")]
5673 Font::TourneyExpandedSemiBold,
5674 #[cfg(feature = "static")]
5675 Font::TourneyExpandedBold,
5676 #[cfg(feature = "static")]
5677 Font::TourneyExpandedExtraBold,
5678 #[cfg(feature = "static")]
5679 Font::TourneyExpandedBlack,
5680 #[cfg(feature = "static")]
5681 Font::TourneyCondensedThinItalic,
5682 #[cfg(feature = "static")]
5683 Font::TourneyCondensedExtraLightItalic,
5684 #[cfg(feature = "static")]
5685 Font::TourneyCondensedLightItalic,
5686 #[cfg(feature = "static")]
5687 Font::TourneyCondensedItalic,
5688 #[cfg(feature = "static")]
5689 Font::TourneyCondensedMediumItalic,
5690 #[cfg(feature = "static")]
5691 Font::TourneyCondensedSemiBoldItalic,
5692 #[cfg(feature = "static")]
5693 Font::TourneyCondensedBoldItalic,
5694 #[cfg(feature = "static")]
5695 Font::TourneyCondensedExtraBoldItalic,
5696 #[cfg(feature = "static")]
5697 Font::TourneyCondensedBlackItalic,
5698 #[cfg(feature = "static")]
5699 Font::TourneySemiCondensedThinItalic,
5700 #[cfg(feature = "static")]
5701 Font::TourneySemiCondensedExtraLightItalic,
5702 #[cfg(feature = "static")]
5703 Font::TourneySemiCondensedLightItalic,
5704 #[cfg(feature = "static")]
5705 Font::TourneySemiCondensedItalic,
5706 #[cfg(feature = "static")]
5707 Font::TourneySemiCondensedMediumItalic,
5708 #[cfg(feature = "static")]
5709 Font::TourneySemiCondensedSemiBoldItalic,
5710 #[cfg(feature = "static")]
5711 Font::TourneySemiCondensedBoldItalic,
5712 #[cfg(feature = "static")]
5713 Font::TourneySemiCondensedExtraBoldItalic,
5714 #[cfg(feature = "static")]
5715 Font::TourneySemiCondensedBlackItalic,
5716 #[cfg(feature = "static")]
5717 Font::TourneyThinItalic,
5718 #[cfg(feature = "static")]
5719 Font::TourneyExtraLightItalic,
5720 #[cfg(feature = "static")]
5721 Font::TourneyLightItalic,
5722 #[cfg(feature = "static")]
5723 Font::TourneyItalic,
5724 #[cfg(feature = "static")]
5725 Font::TourneyMediumItalic,
5726 #[cfg(feature = "static")]
5727 Font::TourneySemiBoldItalic,
5728 #[cfg(feature = "static")]
5729 Font::TourneyBoldItalic,
5730 #[cfg(feature = "static")]
5731 Font::TourneyExtraBoldItalic,
5732 #[cfg(feature = "static")]
5733 Font::TourneyBlackItalic,
5734 #[cfg(feature = "static")]
5735 Font::TourneySemiExpandedThinItalic,
5736 #[cfg(feature = "static")]
5737 Font::TourneySemiExpandedExtraLightItalic,
5738 #[cfg(feature = "static")]
5739 Font::TourneySemiExpandedLightItalic,
5740 #[cfg(feature = "static")]
5741 Font::TourneySemiExpandedItalic,
5742 #[cfg(feature = "static")]
5743 Font::TourneySemiExpandedMediumItalic,
5744 #[cfg(feature = "static")]
5745 Font::TourneySemiExpandedSemiBoldItalic,
5746 #[cfg(feature = "static")]
5747 Font::TourneySemiExpandedBoldItalic,
5748 #[cfg(feature = "static")]
5749 Font::TourneySemiExpandedExtraBoldItalic,
5750 #[cfg(feature = "static")]
5751 Font::TourneySemiExpandedBlackItalic,
5752 #[cfg(feature = "static")]
5753 Font::TourneyExpandedThinItalic,
5754 #[cfg(feature = "static")]
5755 Font::TourneyExpandedExtraLightItalic,
5756 #[cfg(feature = "static")]
5757 Font::TourneyExpandedLightItalic,
5758 #[cfg(feature = "static")]
5759 Font::TourneyExpandedItalic,
5760 #[cfg(feature = "static")]
5761 Font::TourneyExpandedMediumItalic,
5762 #[cfg(feature = "static")]
5763 Font::TourneyExpandedSemiBoldItalic,
5764 #[cfg(feature = "static")]
5765 Font::TourneyExpandedBoldItalic,
5766 #[cfg(feature = "static")]
5767 Font::TourneyExpandedExtraBoldItalic,
5768 #[cfg(feature = "static")]
5769 Font::TourneyExpandedBlackItalic,
5770 #[cfg(feature = "variable")]
5771 Font::TourneyVariable,
5772 #[cfg(feature = "variable")]
5773 Font::TourneyItalicVariable,
5774 #[cfg(feature = "static")]
5775 Font::TradeWindsRegular,
5776 #[cfg(feature = "static")]
5777 Font::TrainOneRegular,
5778 #[cfg(feature = "static")]
5779 Font::TrochutRegular,
5780 #[cfg(feature = "static")]
5781 Font::TrochutItalic,
5782 #[cfg(feature = "static")]
5783 Font::TrochutBold,
5784 #[cfg(feature = "static")]
5785 Font::TulpenOneRegular,
5786 #[cfg(feature = "static")]
5787 Font::TurretRoadExtraLight,
5788 #[cfg(feature = "static")]
5789 Font::TurretRoadLight,
5790 #[cfg(feature = "static")]
5791 Font::TurretRoadRegular,
5792 #[cfg(feature = "static")]
5793 Font::TurretRoadMedium,
5794 #[cfg(feature = "static")]
5795 Font::TurretRoadBold,
5796 #[cfg(feature = "static")]
5797 Font::TurretRoadExtraBold,
5798 #[cfg(feature = "static")]
5799 Font::UncialAntiquaRegular,
5800 #[cfg(feature = "static")]
5801 Font::UnderdogRegular,
5802 #[cfg(feature = "static")]
5803 Font::UnicaOneRegular,
5804 #[cfg(feature = "static")]
5805 Font::UnifrakturCookBold,
5806 #[cfg(feature = "static")]
5807 Font::UnifrakturMaguntiaRegular,
5808 #[cfg(feature = "static")]
5809 Font::UnkemptRegular,
5810 #[cfg(feature = "static")]
5811 Font::UnkemptBold,
5812 #[cfg(feature = "static")]
5813 Font::UnlockRegular,
5814 #[cfg(feature = "static")]
5815 Font::VampiroOneRegular,
5816 #[cfg(feature = "static")]
5817 Font::ViaodaLibreRegular,
5818 #[cfg(feature = "static")]
5819 Font::VibesRegular,
5820 #[cfg(feature = "static")]
5821 Font::VinaSansRegular,
5822 #[cfg(feature = "static")]
5823 Font::WallpoetRegular,
5824 #[cfg(feature = "static")]
5825 Font::WarnesRegular,
5826 #[cfg(feature = "static")]
5827 Font::WavefontThin,
5828 #[cfg(feature = "static")]
5829 Font::WavefontExtraLight,
5830 #[cfg(feature = "static")]
5831 Font::WavefontLight,
5832 #[cfg(feature = "static")]
5833 Font::WavefontRegular,
5834 #[cfg(feature = "static")]
5835 Font::WavefontMedium,
5836 #[cfg(feature = "static")]
5837 Font::WavefontSemiBold,
5838 #[cfg(feature = "static")]
5839 Font::WavefontBold,
5840 #[cfg(feature = "static")]
5841 Font::WavefontExtraBold,
5842 #[cfg(feature = "static")]
5843 Font::WavefontBlack,
5844 #[cfg(feature = "variable")]
5845 Font::WavefontVariable,
5846 #[cfg(feature = "static")]
5847 Font::Yarndings12Regular,
5848 #[cfg(feature = "static")]
5849 Font::Yarndings12ChartedRegular,
5850 #[cfg(feature = "static")]
5851 Font::Yarndings20Regular,
5852 #[cfg(feature = "static")]
5853 Font::Yarndings20ChartedRegular,
5854 #[cfg(feature = "static")]
5855 Font::YatraOneRegular,
5856 #[cfg(feature = "static")]
5857 Font::YeonSungRegular,
5858 #[cfg(feature = "static")]
5859 Font::YesevaOneRegular,
5860 #[cfg(feature = "static")]
5861 Font::ZenDotsRegular,
5862 #[cfg(feature = "static")]
5863 Font::ZenLoopRegular,
5864 #[cfg(feature = "static")]
5865 Font::ZenLoopItalic,
5866 #[cfg(feature = "static")]
5867 Font::ZenTokyoZooRegular,
5868 ]
5869 }
5870 Category::Handwriting => {
5871 vec![
5872 #[cfg(feature = "static")]
5873 Font::AguafinaScriptRegular,
5874 #[cfg(feature = "static")]
5875 Font::AlexBrushRegular,
5876 #[cfg(feature = "static")]
5877 Font::AllisonRegular,
5878 #[cfg(feature = "static")]
5879 Font::AlluraRegular,
5880 #[cfg(feature = "static")]
5881 Font::AmaticSCRegular,
5882 #[cfg(feature = "static")]
5883 Font::AmaticSCBold,
5884 #[cfg(feature = "static")]
5885 Font::AmitaRegular,
5886 #[cfg(feature = "static")]
5887 Font::AmitaBold,
5888 #[cfg(feature = "static")]
5889 Font::AnnieUseYourTelescopeRegular,
5890 #[cfg(feature = "static")]
5891 Font::ArchitectsDaughterRegular,
5892 #[cfg(feature = "static")]
5893 Font::AreYouSeriousRegular,
5894 #[cfg(feature = "static")]
5895 Font::ArizoniaRegular,
5896 #[cfg(feature = "static")]
5897 Font::BabylonicaRegular,
5898 #[cfg(feature = "static")]
5899 Font::BadScriptRegular,
5900 #[cfg(feature = "static")]
5901 Font::Ballet24ptRegular,
5902 #[cfg(feature = "static")]
5903 Font::Ballet28ptRegular,
5904 #[cfg(feature = "static")]
5905 Font::Ballet48ptRegular,
5906 #[cfg(feature = "static")]
5907 Font::Ballet60ptRegular,
5908 #[cfg(feature = "variable")]
5909 Font::BalletRegularVariable,
5910 #[cfg(feature = "static")]
5911 Font::BeauRivageRegular,
5912 #[cfg(feature = "static")]
5913 Font::BerkshireSwashRegular,
5914 #[cfg(feature = "static")]
5915 Font::BethEllenRegular,
5916 #[cfg(feature = "static")]
5917 Font::BilboRegular,
5918 #[cfg(feature = "static")]
5919 Font::BilboSwashCapsRegular,
5920 #[cfg(feature = "static")]
5921 Font::BirthstoneRegular,
5922 #[cfg(feature = "static")]
5923 Font::BirthstoneBounceRegular,
5924 #[cfg(feature = "static")]
5925 Font::BirthstoneBounceMedium,
5926 #[cfg(feature = "static")]
5927 Font::BonbonRegular,
5928 #[cfg(feature = "static")]
5929 Font::BonheurRoyaleRegular,
5930 #[cfg(feature = "static")]
5931 Font::BorelRegular,
5932 #[cfg(feature = "static")]
5933 Font::ButterflyKidsRegular,
5934 #[cfg(feature = "static")]
5935 Font::CalligraffittiRegular,
5936 #[cfg(feature = "static")]
5937 Font::CaramelRegular,
5938 #[cfg(feature = "static")]
5939 Font::CarattereRegular,
5940 #[cfg(feature = "static")]
5941 Font::CaveatRegular,
5942 #[cfg(feature = "static")]
5943 Font::CaveatMedium,
5944 #[cfg(feature = "static")]
5945 Font::CaveatSemiBold,
5946 #[cfg(feature = "static")]
5947 Font::CaveatBold,
5948 #[cfg(feature = "variable")]
5949 Font::CaveatVariable,
5950 #[cfg(feature = "static")]
5951 Font::CaveatBrushRegular,
5952 #[cfg(feature = "static")]
5953 Font::CedarvilleCursiveRegular,
5954 #[cfg(feature = "static")]
5955 Font::CharmRegular,
5956 #[cfg(feature = "static")]
5957 Font::CharmBold,
5958 #[cfg(feature = "static")]
5959 Font::CharmonmanRegular,
5960 #[cfg(feature = "static")]
5961 Font::CharmonmanBold,
5962 #[cfg(feature = "static")]
5963 Font::CherishRegular,
5964 #[cfg(feature = "static")]
5965 Font::ChilankaRegular,
5966 #[cfg(feature = "static")]
5967 Font::ClickerScriptRegular,
5968 #[cfg(feature = "static")]
5969 Font::ComforterRegular,
5970 #[cfg(feature = "static")]
5971 Font::ComforterBrushRegular,
5972 #[cfg(feature = "static")]
5973 Font::ComicNeueLight,
5974 #[cfg(feature = "static")]
5975 Font::ComicNeueLightItalic,
5976 #[cfg(feature = "static")]
5977 Font::ComicNeueRegular,
5978 #[cfg(feature = "static")]
5979 Font::ComicNeueItalic,
5980 #[cfg(feature = "static")]
5981 Font::ComicNeueBold,
5982 #[cfg(feature = "static")]
5983 Font::ComicNeueBoldItalic,
5984 #[cfg(feature = "static")]
5985 Font::ComingSoonRegular,
5986 #[cfg(feature = "static")]
5987 Font::CondimentRegular,
5988 #[cfg(feature = "static")]
5989 Font::CookieRegular,
5990 #[cfg(feature = "static")]
5991 Font::CorinthiaRegular,
5992 #[cfg(feature = "static")]
5993 Font::CorinthiaBold,
5994 #[cfg(feature = "static")]
5995 Font::CourgetteRegular,
5996 #[cfg(feature = "static")]
5997 Font::CoveredByYourGraceRegular,
5998 #[cfg(feature = "static")]
5999 Font::CraftyGirlsRegular,
6000 #[cfg(feature = "static")]
6001 Font::DamionRegular,
6002 #[cfg(feature = "static")]
6003 Font::DancingScriptRegular,
6004 #[cfg(feature = "static")]
6005 Font::DancingScriptMedium,
6006 #[cfg(feature = "static")]
6007 Font::DancingScriptSemiBold,
6008 #[cfg(feature = "static")]
6009 Font::DancingScriptBold,
6010 #[cfg(feature = "variable")]
6011 Font::DancingScriptVariable,
6012 #[cfg(feature = "static")]
6013 Font::DawningofaNewDayRegular,
6014 #[cfg(feature = "static")]
6015 Font::DekkoRegular,
6016 #[cfg(feature = "static")]
6017 Font::DeliciousHandrawnRegular,
6018 #[cfg(feature = "static")]
6019 Font::DeliusRegular,
6020 #[cfg(feature = "static")]
6021 Font::DeliusSwashCapsRegular,
6022 #[cfg(feature = "static")]
6023 Font::DeliusUnicaseRegular,
6024 #[cfg(feature = "static")]
6025 Font::DeliusUnicaseBold,
6026 #[cfg(feature = "static")]
6027 Font::DevonshireRegular,
6028 #[cfg(feature = "static")]
6029 Font::DrSugiyamaRegular,
6030 #[cfg(feature = "static")]
6031 Font::EagleLakeRegular,
6032 #[cfg(feature = "static")]
6033 Font::EastSeaDokdoRegular,
6034 #[cfg(feature = "static")]
6035 Font::EduAUVICWANTHandRegular,
6036 #[cfg(feature = "static")]
6037 Font::EduAUVICWANTHandMedium,
6038 #[cfg(feature = "static")]
6039 Font::EduAUVICWANTHandSemiBold,
6040 #[cfg(feature = "static")]
6041 Font::EduAUVICWANTHandBold,
6042 #[cfg(feature = "variable")]
6043 Font::EduAUVICWANTHandVariable,
6044 #[cfg(feature = "static")]
6045 Font::EduNSWACTFoundationRegular,
6046 #[cfg(feature = "static")]
6047 Font::EduNSWACTFoundationMedium,
6048 #[cfg(feature = "static")]
6049 Font::EduNSWACTFoundationSemiBold,
6050 #[cfg(feature = "static")]
6051 Font::EduNSWACTFoundationBold,
6052 #[cfg(feature = "variable")]
6053 Font::EduNSWACTFoundationVariable,
6054 #[cfg(feature = "static")]
6055 Font::EduQLDBeginnerRegular,
6056 #[cfg(feature = "static")]
6057 Font::EduQLDBeginnerMedium,
6058 #[cfg(feature = "static")]
6059 Font::EduQLDBeginnerSemiBold,
6060 #[cfg(feature = "static")]
6061 Font::EduQLDBeginnerBold,
6062 #[cfg(feature = "variable")]
6063 Font::EduQLDBeginnerVariable,
6064 #[cfg(feature = "static")]
6065 Font::EduSABeginnerRegular,
6066 #[cfg(feature = "static")]
6067 Font::EduSABeginnerMedium,
6068 #[cfg(feature = "static")]
6069 Font::EduSABeginnerSemiBold,
6070 #[cfg(feature = "static")]
6071 Font::EduSABeginnerBold,
6072 #[cfg(feature = "variable")]
6073 Font::EduSABeginnerVariable,
6074 #[cfg(feature = "static")]
6075 Font::EduTASBeginnerRegular,
6076 #[cfg(feature = "static")]
6077 Font::EduTASBeginnerMedium,
6078 #[cfg(feature = "static")]
6079 Font::EduTASBeginnerSemiBold,
6080 #[cfg(feature = "static")]
6081 Font::EduTASBeginnerBold,
6082 #[cfg(feature = "variable")]
6083 Font::EduTASBeginnerVariable,
6084 #[cfg(feature = "static")]
6085 Font::EduVICWANTBeginnerRegular,
6086 #[cfg(feature = "static")]
6087 Font::EduVICWANTBeginnerMedium,
6088 #[cfg(feature = "static")]
6089 Font::EduVICWANTBeginnerSemiBold,
6090 #[cfg(feature = "static")]
6091 Font::EduVICWANTBeginnerBold,
6092 #[cfg(feature = "variable")]
6093 Font::EduVICWANTBeginnerVariable,
6094 #[cfg(feature = "static")]
6095 Font::EngagementRegular,
6096 #[cfg(feature = "static")]
6097 Font::EphesisRegular,
6098 #[cfg(feature = "static")]
6099 Font::EstoniaRegular,
6100 #[cfg(feature = "static")]
6101 Font::EuphoriaScriptRegular,
6102 #[cfg(feature = "static")]
6103 Font::ExploraRegular,
6104 #[cfg(feature = "static")]
6105 Font::FelipaRegular,
6106 #[cfg(feature = "static")]
6107 Font::FestiveRegular,
6108 #[cfg(feature = "static")]
6109 Font::FleurDeLeahRegular,
6110 #[cfg(feature = "static")]
6111 Font::FondamentoRegular,
6112 #[cfg(feature = "static")]
6113 Font::FondamentoItalic,
6114 #[cfg(feature = "static")]
6115 Font::FugglesRegular,
6116 #[cfg(feature = "static")]
6117 Font::FuzzyBubblesRegular,
6118 #[cfg(feature = "static")]
6119 Font::FuzzyBubblesBold,
6120 #[cfg(feature = "static")]
6121 Font::GaeguLight,
6122 #[cfg(feature = "static")]
6123 Font::GaeguRegular,
6124 #[cfg(feature = "static")]
6125 Font::GaeguBold,
6126 #[cfg(feature = "static")]
6127 Font::GamjaFlowerRegular,
6128 #[cfg(feature = "static")]
6129 Font::GiveYouGloryRegular,
6130 #[cfg(feature = "static")]
6131 Font::GloriaHallelujahRegular,
6132 #[cfg(feature = "static")]
6133 Font::GochiHandRegular,
6134 #[cfg(feature = "static")]
6135 Font::GrandHotelRegular,
6136 #[cfg(feature = "static")]
6137 Font::GrapeNutsRegular,
6138 #[cfg(feature = "static")]
6139 Font::GreatVibesRegular,
6140 #[cfg(feature = "static")]
6141 Font::GrechenFuemenRegular,
6142 #[cfg(feature = "static")]
6143 Font::GreyQoRegular,
6144 #[cfg(feature = "static")]
6145 Font::GwendolynRegular,
6146 #[cfg(feature = "static")]
6147 Font::GwendolynBold,
6148 #[cfg(feature = "static")]
6149 Font::HachiMaruPopRegular,
6150 #[cfg(feature = "static")]
6151 Font::HandleeRegular,
6152 #[cfg(feature = "static")]
6153 Font::HerrVonMuellerhoffRegular,
6154 #[cfg(feature = "static")]
6155 Font::HiMelodyRegular,
6156 #[cfg(feature = "static")]
6157 Font::HomemadeAppleRegular,
6158 #[cfg(feature = "static")]
6159 Font::HurricaneRegular,
6160 #[cfg(feature = "static")]
6161 Font::ImperialScriptRegular,
6162 #[cfg(feature = "static")]
6163 Font::IndieFlowerRegular,
6164 #[cfg(feature = "static")]
6165 Font::IngridDarlingRegular,
6166 #[cfg(feature = "static")]
6167 Font::InspirationRegular,
6168 #[cfg(feature = "static")]
6169 Font::IslandMomentsRegular,
6170 #[cfg(feature = "static")]
6171 Font::ItaliannoRegular,
6172 #[cfg(feature = "static")]
6173 Font::ItimRegular,
6174 #[cfg(feature = "static")]
6175 Font::JimNightshadeRegular,
6176 #[cfg(feature = "static")]
6177 Font::JuleeRegular,
6178 #[cfg(feature = "static")]
6179 Font::JustAnotherHandRegular,
6180 #[cfg(feature = "static")]
6181 Font::JustMeAgainDownHereRegular,
6182 #[cfg(feature = "static")]
6183 Font::KalamLight,
6184 #[cfg(feature = "static")]
6185 Font::KalamRegular,
6186 #[cfg(feature = "static")]
6187 Font::KalamBold,
6188 #[cfg(feature = "static")]
6189 Font::KaushanScriptRegular,
6190 #[cfg(feature = "static")]
6191 Font::KavivanarRegular,
6192 #[cfg(feature = "static")]
6193 Font::KingsRegular,
6194 #[cfg(feature = "static")]
6195 Font::KleeOneRegular,
6196 #[cfg(feature = "static")]
6197 Font::KleeOneSemiBold,
6198 #[cfg(feature = "static")]
6199 Font::KolkerBrushRegular,
6200 #[cfg(feature = "static")]
6201 Font::KristiRegular,
6202 #[cfg(feature = "static")]
6203 Font::LXGWWenKaiTCLight,
6204 #[cfg(feature = "static")]
6205 Font::LXGWWenKaiTCRegular,
6206 #[cfg(feature = "static")]
6207 Font::LXGWWenKaiTCBold,
6208 #[cfg(feature = "static")]
6209 Font::LaBelleAuroreRegular,
6210 #[cfg(feature = "static")]
6211 Font::LakkiReddyRegular,
6212 #[cfg(feature = "static")]
6213 Font::LavishlyYoursRegular,
6214 #[cfg(feature = "static")]
6215 Font::LeagueScriptRegular,
6216 #[cfg(feature = "static")]
6217 Font::LeckerliOneRegular,
6218 #[cfg(feature = "static")]
6219 Font::LicoriceRegular,
6220 #[cfg(feature = "static")]
6221 Font::LiuJianMaoCaoRegular,
6222 #[cfg(feature = "static")]
6223 Font::LongCangRegular,
6224 #[cfg(feature = "static")]
6225 Font::LoveLightRegular,
6226 #[cfg(feature = "static")]
6227 Font::LovedbytheKingRegular,
6228 #[cfg(feature = "static")]
6229 Font::LoversQuarrelRegular,
6230 #[cfg(feature = "static")]
6231 Font::LugrasimoRegular,
6232 #[cfg(feature = "static")]
6233 Font::LumanosimoRegular,
6234 #[cfg(feature = "static")]
6235 Font::LuxuriousScriptRegular,
6236 #[cfg(feature = "static")]
6237 Font::MaShanZhengRegular,
6238 #[cfg(feature = "static")]
6239 Font::MaliExtraLight,
6240 #[cfg(feature = "static")]
6241 Font::MaliExtraLightItalic,
6242 #[cfg(feature = "static")]
6243 Font::MaliLight,
6244 #[cfg(feature = "static")]
6245 Font::MaliLightItalic,
6246 #[cfg(feature = "static")]
6247 Font::MaliRegular,
6248 #[cfg(feature = "static")]
6249 Font::MaliItalic,
6250 #[cfg(feature = "static")]
6251 Font::MaliMedium,
6252 #[cfg(feature = "static")]
6253 Font::MaliMediumItalic,
6254 #[cfg(feature = "static")]
6255 Font::MaliSemiBold,
6256 #[cfg(feature = "static")]
6257 Font::MaliSemiBoldItalic,
6258 #[cfg(feature = "static")]
6259 Font::MaliBold,
6260 #[cfg(feature = "static")]
6261 Font::MaliBoldItalic,
6262 #[cfg(feature = "static")]
6263 Font::MansalvaRegular,
6264 #[cfg(feature = "static")]
6265 Font::MarckScriptRegular,
6266 #[cfg(feature = "static")]
6267 Font::MeaCulpaRegular,
6268 #[cfg(feature = "static")]
6269 Font::MeddonRegular,
6270 #[cfg(feature = "static")]
6271 Font::MeieScriptRegular,
6272 #[cfg(feature = "static")]
6273 Font::MeowScriptRegular,
6274 #[cfg(feature = "static")]
6275 Font::MeriendaLight,
6276 #[cfg(feature = "static")]
6277 Font::MeriendaRegular,
6278 #[cfg(feature = "static")]
6279 Font::MeriendaMedium,
6280 #[cfg(feature = "static")]
6281 Font::MeriendaSemiBold,
6282 #[cfg(feature = "static")]
6283 Font::MeriendaBold,
6284 #[cfg(feature = "static")]
6285 Font::MeriendaExtraBold,
6286 #[cfg(feature = "static")]
6287 Font::MeriendaBlack,
6288 #[cfg(feature = "variable")]
6289 Font::MeriendaVariable,
6290 #[cfg(feature = "static")]
6291 Font::MissFajardoseRegular,
6292 #[cfg(feature = "static")]
6293 Font::MolleItalic,
6294 #[cfg(feature = "static")]
6295 Font::MonsieurLaDoulaiseRegular,
6296 #[cfg(feature = "static")]
6297 Font::MonteCarloRegular,
6298 #[cfg(feature = "static")]
6299 Font::MontezRegular,
6300 #[cfg(feature = "static")]
6301 Font::MoonDanceRegular,
6302 #[cfg(feature = "static")]
6303 Font::MrBedfortRegular,
6304 #[cfg(feature = "static")]
6305 Font::MrDafoeRegular,
6306 #[cfg(feature = "static")]
6307 Font::MrDeHavilandRegular,
6308 #[cfg(feature = "static")]
6309 Font::MrsSaintDelafieldRegular,
6310 #[cfg(feature = "static")]
6311 Font::MrsSheppardsRegular,
6312 #[cfg(feature = "static")]
6313 Font::MsMadiRegular,
6314 #[cfg(feature = "static")]
6315 Font::MySoulRegular,
6316 #[cfg(feature = "static")]
6317 Font::MynerveRegular,
6318 #[cfg(feature = "static")]
6319 Font::NanumBrushScriptRegular,
6320 #[cfg(feature = "static")]
6321 Font::NanumGothicCodingRegular,
6322 #[cfg(feature = "static")]
6323 Font::NanumGothicCodingBold,
6324 #[cfg(feature = "static")]
6325 Font::NanumPenScriptRegular,
6326 #[cfg(feature = "static")]
6327 Font::NeonderthawRegular,
6328 #[cfg(feature = "static")]
6329 Font::NerkoOneRegular,
6330 #[cfg(feature = "static")]
6331 Font::NeuchaRegular,
6332 #[cfg(feature = "static")]
6333 Font::NiconneRegular,
6334 #[cfg(feature = "static")]
6335 Font::NoricanRegular,
6336 #[cfg(feature = "static")]
6337 Font::NothingYouCouldDoRegular,
6338 #[cfg(feature = "static")]
6339 Font::OleRegular,
6340 #[cfg(feature = "static")]
6341 Font::OoohBabyRegular,
6342 #[cfg(feature = "static")]
6343 Font::OvertheRainbowRegular,
6344 #[cfg(feature = "static")]
6345 Font::PacificoRegular,
6346 #[cfg(feature = "static")]
6347 Font::PangolinRegular,
6348 #[cfg(feature = "static")]
6349 Font::ParisienneRegular,
6350 #[cfg(feature = "static")]
6351 Font::PassionsConflictRegular,
6352 #[cfg(feature = "static")]
6353 Font::PatrickHandRegular,
6354 #[cfg(feature = "static")]
6355 Font::PatrickHandSCRegular,
6356 #[cfg(feature = "static")]
6357 Font::PermanentMarkerRegular,
6358 #[cfg(feature = "static")]
6359 Font::PetemossRegular,
6360 #[cfg(feature = "static")]
6361 Font::PetitFormalScriptRegular,
6362 #[cfg(feature = "static")]
6363 Font::PinyonScriptRegular,
6364 #[cfg(feature = "static")]
6365 Font::PlaypenSansThin,
6366 #[cfg(feature = "static")]
6367 Font::PlaypenSansExtraLight,
6368 #[cfg(feature = "static")]
6369 Font::PlaypenSansLight,
6370 #[cfg(feature = "static")]
6371 Font::PlaypenSansRegular,
6372 #[cfg(feature = "static")]
6373 Font::PlaypenSansMedium,
6374 #[cfg(feature = "static")]
6375 Font::PlaypenSansSemiBold,
6376 #[cfg(feature = "static")]
6377 Font::PlaypenSansBold,
6378 #[cfg(feature = "static")]
6379 Font::PlaypenSansExtraBold,
6380 #[cfg(feature = "variable")]
6381 Font::PlaypenSansVariable,
6382 #[cfg(feature = "static")]
6383 Font::PlaywriteARThin,
6384 #[cfg(feature = "static")]
6385 Font::PlaywriteARExtraLight,
6386 #[cfg(feature = "static")]
6387 Font::PlaywriteARLight,
6388 #[cfg(feature = "static")]
6389 Font::PlaywriteARRegular,
6390 #[cfg(feature = "variable")]
6391 Font::PlaywriteARVariable,
6392 #[cfg(feature = "static")]
6393 Font::PlaywriteATThin,
6394 #[cfg(feature = "static")]
6395 Font::PlaywriteATExtraLight,
6396 #[cfg(feature = "static")]
6397 Font::PlaywriteATLight,
6398 #[cfg(feature = "static")]
6399 Font::PlaywriteATRegular,
6400 #[cfg(feature = "static")]
6401 Font::PlaywriteATThinItalic,
6402 #[cfg(feature = "static")]
6403 Font::PlaywriteATExtraLightItalic,
6404 #[cfg(feature = "static")]
6405 Font::PlaywriteATLightItalic,
6406 #[cfg(feature = "static")]
6407 Font::PlaywriteATItalic,
6408 #[cfg(feature = "variable")]
6409 Font::PlaywriteATVariable,
6410 #[cfg(feature = "variable")]
6411 Font::PlaywriteATItalicVariable,
6412 #[cfg(feature = "static")]
6413 Font::PlaywriteAUNSWThin,
6414 #[cfg(feature = "static")]
6415 Font::PlaywriteAUNSWExtraLight,
6416 #[cfg(feature = "static")]
6417 Font::PlaywriteAUNSWLight,
6418 #[cfg(feature = "static")]
6419 Font::PlaywriteAUNSWRegular,
6420 #[cfg(feature = "variable")]
6421 Font::PlaywriteAUNSWVariable,
6422 #[cfg(feature = "static")]
6423 Font::PlaywriteAUQLDThin,
6424 #[cfg(feature = "static")]
6425 Font::PlaywriteAUQLDExtraLight,
6426 #[cfg(feature = "static")]
6427 Font::PlaywriteAUQLDLight,
6428 #[cfg(feature = "static")]
6429 Font::PlaywriteAUQLDRegular,
6430 #[cfg(feature = "variable")]
6431 Font::PlaywriteAUQLDVariable,
6432 #[cfg(feature = "static")]
6433 Font::PlaywriteAUSAThin,
6434 #[cfg(feature = "static")]
6435 Font::PlaywriteAUSAExtraLight,
6436 #[cfg(feature = "static")]
6437 Font::PlaywriteAUSALight,
6438 #[cfg(feature = "static")]
6439 Font::PlaywriteAUSARegular,
6440 #[cfg(feature = "variable")]
6441 Font::PlaywriteAUSAVariable,
6442 #[cfg(feature = "static")]
6443 Font::PlaywriteAUTASThin,
6444 #[cfg(feature = "static")]
6445 Font::PlaywriteAUTASExtraLight,
6446 #[cfg(feature = "static")]
6447 Font::PlaywriteAUTASLight,
6448 #[cfg(feature = "static")]
6449 Font::PlaywriteAUTASRegular,
6450 #[cfg(feature = "variable")]
6451 Font::PlaywriteAUTASVariable,
6452 #[cfg(feature = "static")]
6453 Font::PlaywriteAUVICThin,
6454 #[cfg(feature = "static")]
6455 Font::PlaywriteAUVICExtraLight,
6456 #[cfg(feature = "static")]
6457 Font::PlaywriteAUVICLight,
6458 #[cfg(feature = "static")]
6459 Font::PlaywriteAUVICRegular,
6460 #[cfg(feature = "variable")]
6461 Font::PlaywriteAUVICVariable,
6462 #[cfg(feature = "static")]
6463 Font::PlaywriteBEVLGThin,
6464 #[cfg(feature = "static")]
6465 Font::PlaywriteBEVLGExtraLight,
6466 #[cfg(feature = "static")]
6467 Font::PlaywriteBEVLGLight,
6468 #[cfg(feature = "static")]
6469 Font::PlaywriteBEVLGRegular,
6470 #[cfg(feature = "variable")]
6471 Font::PlaywriteBEVLGVariable,
6472 #[cfg(feature = "static")]
6473 Font::PlaywriteBEWALThin,
6474 #[cfg(feature = "static")]
6475 Font::PlaywriteBEWALExtraLight,
6476 #[cfg(feature = "static")]
6477 Font::PlaywriteBEWALLight,
6478 #[cfg(feature = "static")]
6479 Font::PlaywriteBEWALRegular,
6480 #[cfg(feature = "variable")]
6481 Font::PlaywriteBEWALVariable,
6482 #[cfg(feature = "static")]
6483 Font::PlaywriteBRThin,
6484 #[cfg(feature = "static")]
6485 Font::PlaywriteBRExtraLight,
6486 #[cfg(feature = "static")]
6487 Font::PlaywriteBRLight,
6488 #[cfg(feature = "static")]
6489 Font::PlaywriteBRRegular,
6490 #[cfg(feature = "variable")]
6491 Font::PlaywriteBRVariable,
6492 #[cfg(feature = "static")]
6493 Font::PlaywriteCAThin,
6494 #[cfg(feature = "static")]
6495 Font::PlaywriteCAExtraLight,
6496 #[cfg(feature = "static")]
6497 Font::PlaywriteCALight,
6498 #[cfg(feature = "static")]
6499 Font::PlaywriteCARegular,
6500 #[cfg(feature = "variable")]
6501 Font::PlaywriteCAVariable,
6502 #[cfg(feature = "static")]
6503 Font::PlaywriteCLThin,
6504 #[cfg(feature = "static")]
6505 Font::PlaywriteCLExtraLight,
6506 #[cfg(feature = "static")]
6507 Font::PlaywriteCLLight,
6508 #[cfg(feature = "static")]
6509 Font::PlaywriteCLRegular,
6510 #[cfg(feature = "variable")]
6511 Font::PlaywriteCLVariable,
6512 #[cfg(feature = "static")]
6513 Font::PlaywriteCOThin,
6514 #[cfg(feature = "static")]
6515 Font::PlaywriteCOExtraLight,
6516 #[cfg(feature = "static")]
6517 Font::PlaywriteCOLight,
6518 #[cfg(feature = "static")]
6519 Font::PlaywriteCORegular,
6520 #[cfg(feature = "variable")]
6521 Font::PlaywriteCOVariable,
6522 #[cfg(feature = "static")]
6523 Font::PlaywriteCUThin,
6524 #[cfg(feature = "static")]
6525 Font::PlaywriteCUExtraLight,
6526 #[cfg(feature = "static")]
6527 Font::PlaywriteCULight,
6528 #[cfg(feature = "static")]
6529 Font::PlaywriteCURegular,
6530 #[cfg(feature = "variable")]
6531 Font::PlaywriteCUVariable,
6532 #[cfg(feature = "static")]
6533 Font::PlaywriteCZThin,
6534 #[cfg(feature = "static")]
6535 Font::PlaywriteCZExtraLight,
6536 #[cfg(feature = "static")]
6537 Font::PlaywriteCZLight,
6538 #[cfg(feature = "static")]
6539 Font::PlaywriteCZRegular,
6540 #[cfg(feature = "variable")]
6541 Font::PlaywriteCZVariable,
6542 #[cfg(feature = "static")]
6543 Font::PlaywriteDEGrundThin,
6544 #[cfg(feature = "static")]
6545 Font::PlaywriteDEGrundExtraLight,
6546 #[cfg(feature = "static")]
6547 Font::PlaywriteDEGrundLight,
6548 #[cfg(feature = "static")]
6549 Font::PlaywriteDEGrundRegular,
6550 #[cfg(feature = "variable")]
6551 Font::PlaywriteDEGrundVariable,
6552 #[cfg(feature = "static")]
6553 Font::PlaywriteDELAThin,
6554 #[cfg(feature = "static")]
6555 Font::PlaywriteDELAExtraLight,
6556 #[cfg(feature = "static")]
6557 Font::PlaywriteDELALight,
6558 #[cfg(feature = "static")]
6559 Font::PlaywriteDELARegular,
6560 #[cfg(feature = "variable")]
6561 Font::PlaywriteDELAVariable,
6562 #[cfg(feature = "static")]
6563 Font::PlaywriteDESASThin,
6564 #[cfg(feature = "static")]
6565 Font::PlaywriteDESASExtraLight,
6566 #[cfg(feature = "static")]
6567 Font::PlaywriteDESASLight,
6568 #[cfg(feature = "static")]
6569 Font::PlaywriteDESASRegular,
6570 #[cfg(feature = "variable")]
6571 Font::PlaywriteDESASVariable,
6572 #[cfg(feature = "static")]
6573 Font::PlaywriteDEVAThin,
6574 #[cfg(feature = "static")]
6575 Font::PlaywriteDEVAExtraLight,
6576 #[cfg(feature = "static")]
6577 Font::PlaywriteDEVALight,
6578 #[cfg(feature = "static")]
6579 Font::PlaywriteDEVARegular,
6580 #[cfg(feature = "variable")]
6581 Font::PlaywriteDEVAVariable,
6582 #[cfg(feature = "static")]
6583 Font::PlaywriteDKLoopetThin,
6584 #[cfg(feature = "static")]
6585 Font::PlaywriteDKLoopetExtraLight,
6586 #[cfg(feature = "static")]
6587 Font::PlaywriteDKLoopetLight,
6588 #[cfg(feature = "static")]
6589 Font::PlaywriteDKLoopetRegular,
6590 #[cfg(feature = "variable")]
6591 Font::PlaywriteDKLoopetVariable,
6592 #[cfg(feature = "static")]
6593 Font::PlaywriteDKUloopetThin,
6594 #[cfg(feature = "static")]
6595 Font::PlaywriteDKUloopetExtraLight,
6596 #[cfg(feature = "static")]
6597 Font::PlaywriteDKUloopetLight,
6598 #[cfg(feature = "static")]
6599 Font::PlaywriteDKUloopetRegular,
6600 #[cfg(feature = "variable")]
6601 Font::PlaywriteDKUloopetVariable,
6602 #[cfg(feature = "static")]
6603 Font::PlaywriteESThin,
6604 #[cfg(feature = "static")]
6605 Font::PlaywriteESExtraLight,
6606 #[cfg(feature = "static")]
6607 Font::PlaywriteESLight,
6608 #[cfg(feature = "static")]
6609 Font::PlaywriteESRegular,
6610 #[cfg(feature = "variable")]
6611 Font::PlaywriteESVariable,
6612 #[cfg(feature = "static")]
6613 Font::PlaywriteESDecoThin,
6614 #[cfg(feature = "static")]
6615 Font::PlaywriteESDecoExtraLight,
6616 #[cfg(feature = "static")]
6617 Font::PlaywriteESDecoLight,
6618 #[cfg(feature = "static")]
6619 Font::PlaywriteESDecoRegular,
6620 #[cfg(feature = "variable")]
6621 Font::PlaywriteESDecoVariable,
6622 #[cfg(feature = "static")]
6623 Font::PlaywriteFRModerneThin,
6624 #[cfg(feature = "static")]
6625 Font::PlaywriteFRModerneExtraLight,
6626 #[cfg(feature = "static")]
6627 Font::PlaywriteFRModerneLight,
6628 #[cfg(feature = "static")]
6629 Font::PlaywriteFRModerneRegular,
6630 #[cfg(feature = "variable")]
6631 Font::PlaywriteFRModerneVariable,
6632 #[cfg(feature = "static")]
6633 Font::PlaywriteFRTradThin,
6634 #[cfg(feature = "static")]
6635 Font::PlaywriteFRTradExtraLight,
6636 #[cfg(feature = "static")]
6637 Font::PlaywriteFRTradLight,
6638 #[cfg(feature = "static")]
6639 Font::PlaywriteFRTradRegular,
6640 #[cfg(feature = "variable")]
6641 Font::PlaywriteFRTradVariable,
6642 #[cfg(feature = "static")]
6643 Font::PlaywriteGBJThin,
6644 #[cfg(feature = "static")]
6645 Font::PlaywriteGBJExtraLight,
6646 #[cfg(feature = "static")]
6647 Font::PlaywriteGBJLight,
6648 #[cfg(feature = "static")]
6649 Font::PlaywriteGBJRegular,
6650 #[cfg(feature = "static")]
6651 Font::PlaywriteGBJThinItalic,
6652 #[cfg(feature = "static")]
6653 Font::PlaywriteGBJExtraLightItalic,
6654 #[cfg(feature = "static")]
6655 Font::PlaywriteGBJLightItalic,
6656 #[cfg(feature = "static")]
6657 Font::PlaywriteGBJItalic,
6658 #[cfg(feature = "variable")]
6659 Font::PlaywriteGBJVariable,
6660 #[cfg(feature = "variable")]
6661 Font::PlaywriteGBJItalicVariable,
6662 #[cfg(feature = "static")]
6663 Font::PlaywriteGBSThin,
6664 #[cfg(feature = "static")]
6665 Font::PlaywriteGBSExtraLight,
6666 #[cfg(feature = "static")]
6667 Font::PlaywriteGBSLight,
6668 #[cfg(feature = "static")]
6669 Font::PlaywriteGBSRegular,
6670 #[cfg(feature = "static")]
6671 Font::PlaywriteGBSThinItalic,
6672 #[cfg(feature = "static")]
6673 Font::PlaywriteGBSExtraLightItalic,
6674 #[cfg(feature = "static")]
6675 Font::PlaywriteGBSLightItalic,
6676 #[cfg(feature = "static")]
6677 Font::PlaywriteGBSItalic,
6678 #[cfg(feature = "variable")]
6679 Font::PlaywriteGBSVariable,
6680 #[cfg(feature = "variable")]
6681 Font::PlaywriteGBSItalicVariable,
6682 #[cfg(feature = "static")]
6683 Font::PlaywriteHRThin,
6684 #[cfg(feature = "static")]
6685 Font::PlaywriteHRExtraLight,
6686 #[cfg(feature = "static")]
6687 Font::PlaywriteHRLight,
6688 #[cfg(feature = "static")]
6689 Font::PlaywriteHRRegular,
6690 #[cfg(feature = "variable")]
6691 Font::PlaywriteHRVariable,
6692 #[cfg(feature = "static")]
6693 Font::PlaywriteHRLijevaThin,
6694 #[cfg(feature = "static")]
6695 Font::PlaywriteHRLijevaExtraLight,
6696 #[cfg(feature = "static")]
6697 Font::PlaywriteHRLijevaLight,
6698 #[cfg(feature = "static")]
6699 Font::PlaywriteHRLijevaRegular,
6700 #[cfg(feature = "variable")]
6701 Font::PlaywriteHRLijevaVariable,
6702 #[cfg(feature = "static")]
6703 Font::PlaywriteHUThin,
6704 #[cfg(feature = "static")]
6705 Font::PlaywriteHUExtraLight,
6706 #[cfg(feature = "static")]
6707 Font::PlaywriteHULight,
6708 #[cfg(feature = "static")]
6709 Font::PlaywriteHURegular,
6710 #[cfg(feature = "variable")]
6711 Font::PlaywriteHUVariable,
6712 #[cfg(feature = "static")]
6713 Font::PlaywriteIDThin,
6714 #[cfg(feature = "static")]
6715 Font::PlaywriteIDExtraLight,
6716 #[cfg(feature = "static")]
6717 Font::PlaywriteIDLight,
6718 #[cfg(feature = "static")]
6719 Font::PlaywriteIDRegular,
6720 #[cfg(feature = "variable")]
6721 Font::PlaywriteIDVariable,
6722 #[cfg(feature = "static")]
6723 Font::PlaywriteIEThin,
6724 #[cfg(feature = "static")]
6725 Font::PlaywriteIEExtraLight,
6726 #[cfg(feature = "static")]
6727 Font::PlaywriteIELight,
6728 #[cfg(feature = "static")]
6729 Font::PlaywriteIERegular,
6730 #[cfg(feature = "variable")]
6731 Font::PlaywriteIEVariable,
6732 #[cfg(feature = "static")]
6733 Font::PlaywriteINThin,
6734 #[cfg(feature = "static")]
6735 Font::PlaywriteINExtraLight,
6736 #[cfg(feature = "static")]
6737 Font::PlaywriteINLight,
6738 #[cfg(feature = "static")]
6739 Font::PlaywriteINRegular,
6740 #[cfg(feature = "variable")]
6741 Font::PlaywriteINVariable,
6742 #[cfg(feature = "static")]
6743 Font::PlaywriteISThin,
6744 #[cfg(feature = "static")]
6745 Font::PlaywriteISExtraLight,
6746 #[cfg(feature = "static")]
6747 Font::PlaywriteISLight,
6748 #[cfg(feature = "static")]
6749 Font::PlaywriteISRegular,
6750 #[cfg(feature = "variable")]
6751 Font::PlaywriteISVariable,
6752 #[cfg(feature = "static")]
6753 Font::PlaywriteITModernaThin,
6754 #[cfg(feature = "static")]
6755 Font::PlaywriteITModernaExtraLight,
6756 #[cfg(feature = "static")]
6757 Font::PlaywriteITModernaLight,
6758 #[cfg(feature = "static")]
6759 Font::PlaywriteITModernaRegular,
6760 #[cfg(feature = "variable")]
6761 Font::PlaywriteITModernaVariable,
6762 #[cfg(feature = "static")]
6763 Font::PlaywriteITTradThin,
6764 #[cfg(feature = "static")]
6765 Font::PlaywriteITTradExtraLight,
6766 #[cfg(feature = "static")]
6767 Font::PlaywriteITTradLight,
6768 #[cfg(feature = "static")]
6769 Font::PlaywriteITTradRegular,
6770 #[cfg(feature = "variable")]
6771 Font::PlaywriteITTradVariable,
6772 #[cfg(feature = "static")]
6773 Font::PlaywriteMXThin,
6774 #[cfg(feature = "static")]
6775 Font::PlaywriteMXExtraLight,
6776 #[cfg(feature = "static")]
6777 Font::PlaywriteMXLight,
6778 #[cfg(feature = "static")]
6779 Font::PlaywriteMXRegular,
6780 #[cfg(feature = "variable")]
6781 Font::PlaywriteMXVariable,
6782 #[cfg(feature = "static")]
6783 Font::PlaywriteNGModernThin,
6784 #[cfg(feature = "static")]
6785 Font::PlaywriteNGModernExtraLight,
6786 #[cfg(feature = "static")]
6787 Font::PlaywriteNGModernLight,
6788 #[cfg(feature = "static")]
6789 Font::PlaywriteNGModernRegular,
6790 #[cfg(feature = "variable")]
6791 Font::PlaywriteNGModernVariable,
6792 #[cfg(feature = "static")]
6793 Font::PlaywriteNLThin,
6794 #[cfg(feature = "static")]
6795 Font::PlaywriteNLExtraLight,
6796 #[cfg(feature = "static")]
6797 Font::PlaywriteNLLight,
6798 #[cfg(feature = "static")]
6799 Font::PlaywriteNLRegular,
6800 #[cfg(feature = "variable")]
6801 Font::PlaywriteNLVariable,
6802 #[cfg(feature = "static")]
6803 Font::PlaywriteNOThin,
6804 #[cfg(feature = "static")]
6805 Font::PlaywriteNOExtraLight,
6806 #[cfg(feature = "static")]
6807 Font::PlaywriteNOLight,
6808 #[cfg(feature = "static")]
6809 Font::PlaywriteNORegular,
6810 #[cfg(feature = "variable")]
6811 Font::PlaywriteNOVariable,
6812 #[cfg(feature = "static")]
6813 Font::PlaywriteNZThin,
6814 #[cfg(feature = "static")]
6815 Font::PlaywriteNZExtraLight,
6816 #[cfg(feature = "static")]
6817 Font::PlaywriteNZLight,
6818 #[cfg(feature = "static")]
6819 Font::PlaywriteNZRegular,
6820 #[cfg(feature = "variable")]
6821 Font::PlaywriteNZVariable,
6822 #[cfg(feature = "static")]
6823 Font::PlaywritePEThin,
6824 #[cfg(feature = "static")]
6825 Font::PlaywritePEExtraLight,
6826 #[cfg(feature = "static")]
6827 Font::PlaywritePELight,
6828 #[cfg(feature = "static")]
6829 Font::PlaywritePERegular,
6830 #[cfg(feature = "variable")]
6831 Font::PlaywritePEVariable,
6832 #[cfg(feature = "static")]
6833 Font::PlaywritePLThin,
6834 #[cfg(feature = "static")]
6835 Font::PlaywritePLExtraLight,
6836 #[cfg(feature = "static")]
6837 Font::PlaywritePLLight,
6838 #[cfg(feature = "static")]
6839 Font::PlaywritePLRegular,
6840 #[cfg(feature = "variable")]
6841 Font::PlaywritePLVariable,
6842 #[cfg(feature = "static")]
6843 Font::PlaywritePTThin,
6844 #[cfg(feature = "static")]
6845 Font::PlaywritePTExtraLight,
6846 #[cfg(feature = "static")]
6847 Font::PlaywritePTLight,
6848 #[cfg(feature = "static")]
6849 Font::PlaywritePTRegular,
6850 #[cfg(feature = "variable")]
6851 Font::PlaywritePTVariable,
6852 #[cfg(feature = "static")]
6853 Font::PlaywriteROThin,
6854 #[cfg(feature = "static")]
6855 Font::PlaywriteROExtraLight,
6856 #[cfg(feature = "static")]
6857 Font::PlaywriteROLight,
6858 #[cfg(feature = "static")]
6859 Font::PlaywriteRORegular,
6860 #[cfg(feature = "variable")]
6861 Font::PlaywriteROVariable,
6862 #[cfg(feature = "static")]
6863 Font::PlaywriteSKThin,
6864 #[cfg(feature = "static")]
6865 Font::PlaywriteSKExtraLight,
6866 #[cfg(feature = "static")]
6867 Font::PlaywriteSKLight,
6868 #[cfg(feature = "static")]
6869 Font::PlaywriteSKRegular,
6870 #[cfg(feature = "variable")]
6871 Font::PlaywriteSKVariable,
6872 #[cfg(feature = "static")]
6873 Font::PlaywriteTZThin,
6874 #[cfg(feature = "static")]
6875 Font::PlaywriteTZExtraLight,
6876 #[cfg(feature = "static")]
6877 Font::PlaywriteTZLight,
6878 #[cfg(feature = "static")]
6879 Font::PlaywriteTZRegular,
6880 #[cfg(feature = "variable")]
6881 Font::PlaywriteTZVariable,
6882 #[cfg(feature = "static")]
6883 Font::PlaywriteUSModernThin,
6884 #[cfg(feature = "static")]
6885 Font::PlaywriteUSModernExtraLight,
6886 #[cfg(feature = "static")]
6887 Font::PlaywriteUSModernLight,
6888 #[cfg(feature = "static")]
6889 Font::PlaywriteUSModernRegular,
6890 #[cfg(feature = "variable")]
6891 Font::PlaywriteUSModernVariable,
6892 #[cfg(feature = "static")]
6893 Font::PlaywriteUSTradThin,
6894 #[cfg(feature = "static")]
6895 Font::PlaywriteUSTradExtraLight,
6896 #[cfg(feature = "static")]
6897 Font::PlaywriteUSTradLight,
6898 #[cfg(feature = "static")]
6899 Font::PlaywriteUSTradRegular,
6900 #[cfg(feature = "variable")]
6901 Font::PlaywriteUSTradVariable,
6902 #[cfg(feature = "static")]
6903 Font::PlaywriteVNThin,
6904 #[cfg(feature = "static")]
6905 Font::PlaywriteVNExtraLight,
6906 #[cfg(feature = "static")]
6907 Font::PlaywriteVNLight,
6908 #[cfg(feature = "static")]
6909 Font::PlaywriteVNRegular,
6910 #[cfg(feature = "variable")]
6911 Font::PlaywriteVNVariable,
6912 #[cfg(feature = "static")]
6913 Font::PlaywriteZAThin,
6914 #[cfg(feature = "static")]
6915 Font::PlaywriteZAExtraLight,
6916 #[cfg(feature = "static")]
6917 Font::PlaywriteZALight,
6918 #[cfg(feature = "static")]
6919 Font::PlaywriteZARegular,
6920 #[cfg(feature = "variable")]
6921 Font::PlaywriteZAVariable,
6922 #[cfg(feature = "static")]
6923 Font::PraiseRegular,
6924 #[cfg(feature = "static")]
6925 Font::PrincessSofiaRegular,
6926 #[cfg(feature = "static")]
6927 Font::PuppiesPlayRegular,
6928 #[cfg(feature = "static")]
6929 Font::QuintessentialRegular,
6930 #[cfg(feature = "static")]
6931 Font::QwigleyRegular,
6932 #[cfg(feature = "static")]
6933 Font::QwitcherGrypenRegular,
6934 #[cfg(feature = "static")]
6935 Font::QwitcherGrypenBold,
6936 #[cfg(feature = "static")]
6937 Font::RanchoRegular,
6938 #[cfg(feature = "static")]
6939 Font::RedressedRegular,
6940 #[cfg(feature = "static")]
6941 Font::ReenieBeanieRegular,
6942 #[cfg(feature = "static")]
6943 Font::RochesterRegular,
6944 #[cfg(feature = "static")]
6945 Font::RockSaltRegular,
6946 #[cfg(feature = "static")]
6947 Font::RomanescoRegular,
6948 #[cfg(feature = "static")]
6949 Font::RougeScriptRegular,
6950 #[cfg(feature = "static")]
6951 Font::RugeBoogieRegular,
6952 #[cfg(feature = "static")]
6953 Font::RuthieRegular,
6954 #[cfg(feature = "static")]
6955 Font::SacramentoRegular,
6956 #[cfg(feature = "static")]
6957 Font::SassyFrassRegular,
6958 #[cfg(feature = "static")]
6959 Font::SatisfyRegular,
6960 #[cfg(feature = "static")]
6961 Font::SchoolbellRegular,
6962 #[cfg(feature = "static")]
6963 Font::SedgwickAveRegular,
6964 #[cfg(feature = "static")]
6965 Font::SedgwickAveDisplayRegular,
6966 #[cfg(feature = "static")]
6967 Font::SendFlowersRegular,
6968 #[cfg(feature = "static")]
6969 Font::ShadowsIntoLightRegular,
6970 #[cfg(feature = "static")]
6971 Font::ShadowsIntoLightTwoRegular,
6972 #[cfg(feature = "static")]
6973 Font::ShalimarRegular,
6974 #[cfg(feature = "static")]
6975 Font::ShortStackRegular,
6976 #[cfg(feature = "static")]
6977 Font::SlacksideOneRegular,
6978 #[cfg(feature = "static")]
6979 Font::SmoochRegular,
6980 #[cfg(feature = "static")]
6981 Font::SofiaRegular,
6982 #[cfg(feature = "static")]
6983 Font::SolitreoRegular,
6984 #[cfg(feature = "static")]
6985 Font::SplashRegular,
6986 #[cfg(feature = "static")]
6987 Font::SquarePegRegular,
6988 #[cfg(feature = "static")]
6989 Font::SrirachaRegular,
6990 #[cfg(feature = "static")]
6991 Font::StalemateRegular,
6992 #[cfg(feature = "static")]
6993 Font::StyleScriptRegular,
6994 #[cfg(feature = "static")]
6995 Font::SueEllenFranciscoRegular,
6996 #[cfg(feature = "static")]
6997 Font::SunshineyRegular,
6998 #[cfg(feature = "static")]
6999 Font::SwankyandMooMooRegular,
7000 #[cfg(feature = "static")]
7001 Font::TangerineRegular,
7002 #[cfg(feature = "static")]
7003 Font::TangerineBold,
7004 #[cfg(feature = "static")]
7005 Font::TapestryRegular,
7006 #[cfg(feature = "static")]
7007 Font::TheGirlNextDoorRegular,
7008 #[cfg(feature = "static")]
7009 Font::TheNautigalRegular,
7010 #[cfg(feature = "static")]
7011 Font::TheNautigalBold,
7012 #[cfg(feature = "static")]
7013 Font::TwinkleStarRegular,
7014 #[cfg(feature = "static")]
7015 Font::UpdockRegular,
7016 #[cfg(feature = "static")]
7017 Font::ViburRegular,
7018 #[cfg(feature = "static")]
7019 Font::VujahdayScriptRegular,
7020 #[cfg(feature = "static")]
7021 Font::WaitingfortheSunriseRegular,
7022 #[cfg(feature = "static")]
7023 Font::WalterTurncoatRegular,
7024 #[cfg(feature = "static")]
7025 Font::WaterBrushRegular,
7026 #[cfg(feature = "static")]
7027 Font::WaterfallRegular,
7028 #[cfg(feature = "static")]
7029 Font::WhisperRegular,
7030 #[cfg(feature = "static")]
7031 Font::WindSongRegular,
7032 #[cfg(feature = "static")]
7033 Font::WindSongMedium,
7034 #[cfg(feature = "static")]
7035 Font::YellowtailRegular,
7036 #[cfg(feature = "static")]
7037 Font::YesteryearRegular,
7038 #[cfg(feature = "static")]
7039 Font::YomogiRegular,
7040 #[cfg(feature = "static")]
7041 Font::YujiHentaiganaAkariRegular,
7042 #[cfg(feature = "static")]
7043 Font::YujiHentaiganaAkebonoRegular,
7044 #[cfg(feature = "static")]
7045 Font::ZeyadaRegular,
7046 #[cfg(feature = "static")]
7047 Font::ZhiMangXingRegular,
7048 ]
7049 }
7050 Category::Monospace => {
7051 vec![
7052 #[cfg(feature = "static")]
7053 Font::AnonymousProRegular,
7054 #[cfg(feature = "static")]
7055 Font::AnonymousProItalic,
7056 #[cfg(feature = "static")]
7057 Font::AnonymousProBold,
7058 #[cfg(feature = "static")]
7059 Font::AnonymousProBoldItalic,
7060 #[cfg(feature = "static")]
7061 Font::AzeretMonoThin,
7062 #[cfg(feature = "static")]
7063 Font::AzeretMonoExtraLight,
7064 #[cfg(feature = "static")]
7065 Font::AzeretMonoLight,
7066 #[cfg(feature = "static")]
7067 Font::AzeretMonoRegular,
7068 #[cfg(feature = "static")]
7069 Font::AzeretMonoMedium,
7070 #[cfg(feature = "static")]
7071 Font::AzeretMonoSemiBold,
7072 #[cfg(feature = "static")]
7073 Font::AzeretMonoBold,
7074 #[cfg(feature = "static")]
7075 Font::AzeretMonoExtraBold,
7076 #[cfg(feature = "static")]
7077 Font::AzeretMonoBlack,
7078 #[cfg(feature = "static")]
7079 Font::AzeretMonoThinItalic,
7080 #[cfg(feature = "static")]
7081 Font::AzeretMonoExtraLightItalic,
7082 #[cfg(feature = "static")]
7083 Font::AzeretMonoLightItalic,
7084 #[cfg(feature = "static")]
7085 Font::AzeretMonoItalic,
7086 #[cfg(feature = "static")]
7087 Font::AzeretMonoMediumItalic,
7088 #[cfg(feature = "static")]
7089 Font::AzeretMonoSemiBoldItalic,
7090 #[cfg(feature = "static")]
7091 Font::AzeretMonoBoldItalic,
7092 #[cfg(feature = "static")]
7093 Font::AzeretMonoExtraBoldItalic,
7094 #[cfg(feature = "static")]
7095 Font::AzeretMonoBlackItalic,
7096 #[cfg(feature = "variable")]
7097 Font::AzeretMonoVariable,
7098 #[cfg(feature = "variable")]
7099 Font::AzeretMonoItalicVariable,
7100 #[cfg(feature = "static")]
7101 Font::B612MonoRegular,
7102 #[cfg(feature = "static")]
7103 Font::B612MonoItalic,
7104 #[cfg(feature = "static")]
7105 Font::B612MonoBold,
7106 #[cfg(feature = "static")]
7107 Font::B612MonoBoldItalic,
7108 #[cfg(feature = "static")]
7109 Font::ChivoMonoThin,
7110 #[cfg(feature = "static")]
7111 Font::ChivoMonoExtraLight,
7112 #[cfg(feature = "static")]
7113 Font::ChivoMonoLight,
7114 #[cfg(feature = "static")]
7115 Font::ChivoMonoRegular,
7116 #[cfg(feature = "static")]
7117 Font::ChivoMonoMedium,
7118 #[cfg(feature = "static")]
7119 Font::ChivoMonoSemiBold,
7120 #[cfg(feature = "static")]
7121 Font::ChivoMonoBold,
7122 #[cfg(feature = "static")]
7123 Font::ChivoMonoExtraBold,
7124 #[cfg(feature = "static")]
7125 Font::ChivoMonoBlack,
7126 #[cfg(feature = "static")]
7127 Font::ChivoMonoThinItalic,
7128 #[cfg(feature = "static")]
7129 Font::ChivoMonoExtraLightItalic,
7130 #[cfg(feature = "static")]
7131 Font::ChivoMonoLightItalic,
7132 #[cfg(feature = "static")]
7133 Font::ChivoMonoItalic,
7134 #[cfg(feature = "static")]
7135 Font::ChivoMonoMediumItalic,
7136 #[cfg(feature = "static")]
7137 Font::ChivoMonoSemiBoldItalic,
7138 #[cfg(feature = "static")]
7139 Font::ChivoMonoBoldItalic,
7140 #[cfg(feature = "static")]
7141 Font::ChivoMonoExtraBoldItalic,
7142 #[cfg(feature = "static")]
7143 Font::ChivoMonoBlackItalic,
7144 #[cfg(feature = "variable")]
7145 Font::ChivoMonoVariable,
7146 #[cfg(feature = "variable")]
7147 Font::ChivoMonoItalicVariable,
7148 #[cfg(feature = "static")]
7149 Font::CourierPrimeRegular,
7150 #[cfg(feature = "static")]
7151 Font::CourierPrimeItalic,
7152 #[cfg(feature = "static")]
7153 Font::CourierPrimeBold,
7154 #[cfg(feature = "static")]
7155 Font::CourierPrimeBoldItalic,
7156 #[cfg(feature = "static")]
7157 Font::CousineRegular,
7158 #[cfg(feature = "static")]
7159 Font::CousineItalic,
7160 #[cfg(feature = "static")]
7161 Font::CousineBold,
7162 #[cfg(feature = "static")]
7163 Font::CousineBoldItalic,
7164 #[cfg(feature = "static")]
7165 Font::CutiveMonoRegular,
7166 #[cfg(feature = "static")]
7167 Font::DMMonoLight,
7168 #[cfg(feature = "static")]
7169 Font::DMMonoLightItalic,
7170 #[cfg(feature = "static")]
7171 Font::DMMonoRegular,
7172 #[cfg(feature = "static")]
7173 Font::DMMonoItalic,
7174 #[cfg(feature = "static")]
7175 Font::DMMonoMedium,
7176 #[cfg(feature = "static")]
7177 Font::DMMonoMediumItalic,
7178 #[cfg(feature = "static")]
7179 Font::FiraCodeLight,
7180 #[cfg(feature = "static")]
7181 Font::FiraCodeRegular,
7182 #[cfg(feature = "static")]
7183 Font::FiraCodeMedium,
7184 #[cfg(feature = "static")]
7185 Font::FiraCodeSemiBold,
7186 #[cfg(feature = "static")]
7187 Font::FiraCodeBold,
7188 #[cfg(feature = "variable")]
7189 Font::FiraCodeVariable,
7190 #[cfg(feature = "static")]
7191 Font::FiraMonoRegular,
7192 #[cfg(feature = "static")]
7193 Font::FiraMonoMedium,
7194 #[cfg(feature = "static")]
7195 Font::FiraMonoBold,
7196 #[cfg(feature = "static")]
7197 Font::FragmentMonoRegular,
7198 #[cfg(feature = "static")]
7199 Font::FragmentMonoItalic,
7200 #[cfg(feature = "static")]
7201 Font::IBMPlexMonoThin,
7202 #[cfg(feature = "static")]
7203 Font::IBMPlexMonoThinItalic,
7204 #[cfg(feature = "static")]
7205 Font::IBMPlexMonoExtraLight,
7206 #[cfg(feature = "static")]
7207 Font::IBMPlexMonoExtraLightItalic,
7208 #[cfg(feature = "static")]
7209 Font::IBMPlexMonoLight,
7210 #[cfg(feature = "static")]
7211 Font::IBMPlexMonoLightItalic,
7212 #[cfg(feature = "static")]
7213 Font::IBMPlexMonoRegular,
7214 #[cfg(feature = "static")]
7215 Font::IBMPlexMonoItalic,
7216 #[cfg(feature = "static")]
7217 Font::IBMPlexMonoMedium,
7218 #[cfg(feature = "static")]
7219 Font::IBMPlexMonoMediumItalic,
7220 #[cfg(feature = "static")]
7221 Font::IBMPlexMonoSemiBold,
7222 #[cfg(feature = "static")]
7223 Font::IBMPlexMonoSemiBoldItalic,
7224 #[cfg(feature = "static")]
7225 Font::IBMPlexMonoBold,
7226 #[cfg(feature = "static")]
7227 Font::IBMPlexMonoBoldItalic,
7228 #[cfg(feature = "static")]
7229 Font::InconsolataUltraCondensedExtraLight,
7230 #[cfg(feature = "static")]
7231 Font::InconsolataUltraCondensedLight,
7232 #[cfg(feature = "static")]
7233 Font::InconsolataUltraCondensedRegular,
7234 #[cfg(feature = "static")]
7235 Font::InconsolataUltraCondensedMedium,
7236 #[cfg(feature = "static")]
7237 Font::InconsolataUltraCondensedSemiBold,
7238 #[cfg(feature = "static")]
7239 Font::InconsolataUltraCondensedBold,
7240 #[cfg(feature = "static")]
7241 Font::InconsolataUltraCondensedExtraBold,
7242 #[cfg(feature = "static")]
7243 Font::InconsolataUltraCondensedBlack,
7244 #[cfg(feature = "static")]
7245 Font::InconsolataExtraCondensedExtraLight,
7246 #[cfg(feature = "static")]
7247 Font::InconsolataExtraCondensedLight,
7248 #[cfg(feature = "static")]
7249 Font::InconsolataExtraCondensedRegular,
7250 #[cfg(feature = "static")]
7251 Font::InconsolataExtraCondensedMedium,
7252 #[cfg(feature = "static")]
7253 Font::InconsolataExtraCondensedSemiBold,
7254 #[cfg(feature = "static")]
7255 Font::InconsolataExtraCondensedBold,
7256 #[cfg(feature = "static")]
7257 Font::InconsolataExtraCondensedExtraBold,
7258 #[cfg(feature = "static")]
7259 Font::InconsolataExtraCondensedBlack,
7260 #[cfg(feature = "static")]
7261 Font::InconsolataCondensedExtraLight,
7262 #[cfg(feature = "static")]
7263 Font::InconsolataCondensedLight,
7264 #[cfg(feature = "static")]
7265 Font::InconsolataCondensedRegular,
7266 #[cfg(feature = "static")]
7267 Font::InconsolataCondensedMedium,
7268 #[cfg(feature = "static")]
7269 Font::InconsolataCondensedSemiBold,
7270 #[cfg(feature = "static")]
7271 Font::InconsolataCondensedBold,
7272 #[cfg(feature = "static")]
7273 Font::InconsolataCondensedExtraBold,
7274 #[cfg(feature = "static")]
7275 Font::InconsolataCondensedBlack,
7276 #[cfg(feature = "static")]
7277 Font::InconsolataSemiCondensedExtraLight,
7278 #[cfg(feature = "static")]
7279 Font::InconsolataSemiCondensedLight,
7280 #[cfg(feature = "static")]
7281 Font::InconsolataSemiCondensedRegular,
7282 #[cfg(feature = "static")]
7283 Font::InconsolataSemiCondensedMedium,
7284 #[cfg(feature = "static")]
7285 Font::InconsolataSemiCondensedSemiBold,
7286 #[cfg(feature = "static")]
7287 Font::InconsolataSemiCondensedBold,
7288 #[cfg(feature = "static")]
7289 Font::InconsolataSemiCondensedExtraBold,
7290 #[cfg(feature = "static")]
7291 Font::InconsolataSemiCondensedBlack,
7292 #[cfg(feature = "static")]
7293 Font::InconsolataExtraLight,
7294 #[cfg(feature = "static")]
7295 Font::InconsolataLight,
7296 #[cfg(feature = "static")]
7297 Font::InconsolataRegular,
7298 #[cfg(feature = "static")]
7299 Font::InconsolataMedium,
7300 #[cfg(feature = "static")]
7301 Font::InconsolataSemiBold,
7302 #[cfg(feature = "static")]
7303 Font::InconsolataBold,
7304 #[cfg(feature = "static")]
7305 Font::InconsolataExtraBold,
7306 #[cfg(feature = "static")]
7307 Font::InconsolataBlack,
7308 #[cfg(feature = "static")]
7309 Font::InconsolataSemiExpandedExtraLight,
7310 #[cfg(feature = "static")]
7311 Font::InconsolataSemiExpandedLight,
7312 #[cfg(feature = "static")]
7313 Font::InconsolataSemiExpandedRegular,
7314 #[cfg(feature = "static")]
7315 Font::InconsolataSemiExpandedMedium,
7316 #[cfg(feature = "static")]
7317 Font::InconsolataSemiExpandedSemiBold,
7318 #[cfg(feature = "static")]
7319 Font::InconsolataSemiExpandedBold,
7320 #[cfg(feature = "static")]
7321 Font::InconsolataSemiExpandedExtraBold,
7322 #[cfg(feature = "static")]
7323 Font::InconsolataSemiExpandedBlack,
7324 #[cfg(feature = "static")]
7325 Font::InconsolataExpandedExtraLight,
7326 #[cfg(feature = "static")]
7327 Font::InconsolataExpandedLight,
7328 #[cfg(feature = "static")]
7329 Font::InconsolataExpandedRegular,
7330 #[cfg(feature = "static")]
7331 Font::InconsolataExpandedMedium,
7332 #[cfg(feature = "static")]
7333 Font::InconsolataExpandedSemiBold,
7334 #[cfg(feature = "static")]
7335 Font::InconsolataExpandedBold,
7336 #[cfg(feature = "static")]
7337 Font::InconsolataExpandedExtraBold,
7338 #[cfg(feature = "static")]
7339 Font::InconsolataExpandedBlack,
7340 #[cfg(feature = "static")]
7341 Font::InconsolataExtraExpandedExtraLight,
7342 #[cfg(feature = "static")]
7343 Font::InconsolataExtraExpandedLight,
7344 #[cfg(feature = "static")]
7345 Font::InconsolataExtraExpandedRegular,
7346 #[cfg(feature = "static")]
7347 Font::InconsolataExtraExpandedMedium,
7348 #[cfg(feature = "static")]
7349 Font::InconsolataExtraExpandedSemiBold,
7350 #[cfg(feature = "static")]
7351 Font::InconsolataExtraExpandedBold,
7352 #[cfg(feature = "static")]
7353 Font::InconsolataExtraExpandedExtraBold,
7354 #[cfg(feature = "static")]
7355 Font::InconsolataExtraExpandedBlack,
7356 #[cfg(feature = "static")]
7357 Font::InconsolataUltraExpandedExtraLight,
7358 #[cfg(feature = "static")]
7359 Font::InconsolataUltraExpandedLight,
7360 #[cfg(feature = "static")]
7361 Font::InconsolataUltraExpandedRegular,
7362 #[cfg(feature = "static")]
7363 Font::InconsolataUltraExpandedMedium,
7364 #[cfg(feature = "static")]
7365 Font::InconsolataUltraExpandedSemiBold,
7366 #[cfg(feature = "static")]
7367 Font::InconsolataUltraExpandedBold,
7368 #[cfg(feature = "static")]
7369 Font::InconsolataUltraExpandedExtraBold,
7370 #[cfg(feature = "static")]
7371 Font::InconsolataUltraExpandedBlack,
7372 #[cfg(feature = "variable")]
7373 Font::InconsolataVariable,
7374 #[cfg(feature = "static")]
7375 Font::JetBrainsMonoThin,
7376 #[cfg(feature = "static")]
7377 Font::JetBrainsMonoExtraLight,
7378 #[cfg(feature = "static")]
7379 Font::JetBrainsMonoLight,
7380 #[cfg(feature = "static")]
7381 Font::JetBrainsMonoRegular,
7382 #[cfg(feature = "static")]
7383 Font::JetBrainsMonoMedium,
7384 #[cfg(feature = "static")]
7385 Font::JetBrainsMonoSemiBold,
7386 #[cfg(feature = "static")]
7387 Font::JetBrainsMonoBold,
7388 #[cfg(feature = "static")]
7389 Font::JetBrainsMonoExtraBold,
7390 #[cfg(feature = "static")]
7391 Font::JetBrainsMonoThinItalic,
7392 #[cfg(feature = "static")]
7393 Font::JetBrainsMonoExtraLightItalic,
7394 #[cfg(feature = "static")]
7395 Font::JetBrainsMonoLightItalic,
7396 #[cfg(feature = "static")]
7397 Font::JetBrainsMonoItalic,
7398 #[cfg(feature = "static")]
7399 Font::JetBrainsMonoMediumItalic,
7400 #[cfg(feature = "static")]
7401 Font::JetBrainsMonoSemiBoldItalic,
7402 #[cfg(feature = "static")]
7403 Font::JetBrainsMonoBoldItalic,
7404 #[cfg(feature = "static")]
7405 Font::JetBrainsMonoExtraBoldItalic,
7406 #[cfg(feature = "variable")]
7407 Font::JetBrainsMonoVariable,
7408 #[cfg(feature = "variable")]
7409 Font::JetBrainsMonoItalicVariable,
7410 #[cfg(feature = "static")]
7411 Font::KodeMonoRegular,
7412 #[cfg(feature = "static")]
7413 Font::KodeMonoMedium,
7414 #[cfg(feature = "static")]
7415 Font::KodeMonoSemiBold,
7416 #[cfg(feature = "static")]
7417 Font::KodeMonoBold,
7418 #[cfg(feature = "variable")]
7419 Font::KodeMonoVariable,
7420 #[cfg(feature = "static")]
7421 Font::LXGWWenKaiMonoTCLight,
7422 #[cfg(feature = "static")]
7423 Font::LXGWWenKaiMonoTCRegular,
7424 #[cfg(feature = "static")]
7425 Font::LXGWWenKaiMonoTCBold,
7426 #[cfg(feature = "static")]
7427 Font::LektonRegular,
7428 #[cfg(feature = "static")]
7429 Font::LektonItalic,
7430 #[cfg(feature = "static")]
7431 Font::LektonBold,
7432 #[cfg(feature = "static")]
7433 Font::MPLUS1CodeThin,
7434 #[cfg(feature = "static")]
7435 Font::MPLUS1CodeExtraLight,
7436 #[cfg(feature = "static")]
7437 Font::MPLUS1CodeLight,
7438 #[cfg(feature = "static")]
7439 Font::MPLUS1CodeRegular,
7440 #[cfg(feature = "static")]
7441 Font::MPLUS1CodeMedium,
7442 #[cfg(feature = "static")]
7443 Font::MPLUS1CodeSemiBold,
7444 #[cfg(feature = "static")]
7445 Font::MPLUS1CodeBold,
7446 #[cfg(feature = "variable")]
7447 Font::MPLUS1CodeVariable,
7448 #[cfg(feature = "static")]
7449 Font::MajorMonoDisplayRegular,
7450 #[cfg(feature = "static")]
7451 Font::MartianMonoCondensedThin,
7452 #[cfg(feature = "static")]
7453 Font::MartianMonoCondensedExtraLight,
7454 #[cfg(feature = "static")]
7455 Font::MartianMonoCondensedLight,
7456 #[cfg(feature = "static")]
7457 Font::MartianMonoCondensedRegular,
7458 #[cfg(feature = "static")]
7459 Font::MartianMonoCondensedMedium,
7460 #[cfg(feature = "static")]
7461 Font::MartianMonoCondensedSemiBold,
7462 #[cfg(feature = "static")]
7463 Font::MartianMonoCondensedBold,
7464 #[cfg(feature = "static")]
7465 Font::MartianMonoCondensedExtraBold,
7466 #[cfg(feature = "static")]
7467 Font::MartianMonoSemiCondensedThin,
7468 #[cfg(feature = "static")]
7469 Font::MartianMonoSemiCondensedExtraLight,
7470 #[cfg(feature = "static")]
7471 Font::MartianMonoSemiCondensedLight,
7472 #[cfg(feature = "static")]
7473 Font::MartianMonoSemiCondensedRegular,
7474 #[cfg(feature = "static")]
7475 Font::MartianMonoSemiCondensedMedium,
7476 #[cfg(feature = "static")]
7477 Font::MartianMonoSemiCondensedSemiBold,
7478 #[cfg(feature = "static")]
7479 Font::MartianMonoSemiCondensedBold,
7480 #[cfg(feature = "static")]
7481 Font::MartianMonoSemiCondensedExtraBold,
7482 #[cfg(feature = "static")]
7483 Font::MartianMonoThin,
7484 #[cfg(feature = "static")]
7485 Font::MartianMonoExtraLight,
7486 #[cfg(feature = "static")]
7487 Font::MartianMonoLight,
7488 #[cfg(feature = "static")]
7489 Font::MartianMonoRegular,
7490 #[cfg(feature = "static")]
7491 Font::MartianMonoMedium,
7492 #[cfg(feature = "static")]
7493 Font::MartianMonoSemiBold,
7494 #[cfg(feature = "static")]
7495 Font::MartianMonoBold,
7496 #[cfg(feature = "static")]
7497 Font::MartianMonoExtraBold,
7498 #[cfg(feature = "static")]
7499 Font::MartianMonoSemiExpandedThin,
7500 #[cfg(feature = "static")]
7501 Font::MartianMonoSemiExpandedExtraLight,
7502 #[cfg(feature = "static")]
7503 Font::MartianMonoSemiExpandedLight,
7504 #[cfg(feature = "static")]
7505 Font::MartianMonoSemiExpandedRegular,
7506 #[cfg(feature = "static")]
7507 Font::MartianMonoSemiExpandedMedium,
7508 #[cfg(feature = "static")]
7509 Font::MartianMonoSemiExpandedSemiBold,
7510 #[cfg(feature = "static")]
7511 Font::MartianMonoSemiExpandedBold,
7512 #[cfg(feature = "static")]
7513 Font::MartianMonoSemiExpandedExtraBold,
7514 #[cfg(feature = "variable")]
7515 Font::MartianMonoVariable,
7516 #[cfg(feature = "static")]
7517 Font::MonofettRegular,
7518 #[cfg(feature = "static")]
7519 Font::NovaMonoRegular,
7520 #[cfg(feature = "static")]
7521 Font::OverpassMonoLight,
7522 #[cfg(feature = "static")]
7523 Font::OverpassMonoRegular,
7524 #[cfg(feature = "static")]
7525 Font::OverpassMonoMedium,
7526 #[cfg(feature = "static")]
7527 Font::OverpassMonoSemiBold,
7528 #[cfg(feature = "static")]
7529 Font::OverpassMonoBold,
7530 #[cfg(feature = "variable")]
7531 Font::OverpassMonoVariable,
7532 #[cfg(feature = "static")]
7533 Font::OxygenMonoRegular,
7534 #[cfg(feature = "static")]
7535 Font::PTMonoRegular,
7536 #[cfg(feature = "static")]
7537 Font::RedHatMonoLight,
7538 #[cfg(feature = "static")]
7539 Font::RedHatMonoRegular,
7540 #[cfg(feature = "static")]
7541 Font::RedHatMonoMedium,
7542 #[cfg(feature = "static")]
7543 Font::RedHatMonoSemiBold,
7544 #[cfg(feature = "static")]
7545 Font::RedHatMonoBold,
7546 #[cfg(feature = "static")]
7547 Font::RedHatMonoLightItalic,
7548 #[cfg(feature = "static")]
7549 Font::RedHatMonoItalic,
7550 #[cfg(feature = "static")]
7551 Font::RedHatMonoMediumItalic,
7552 #[cfg(feature = "static")]
7553 Font::RedHatMonoSemiBoldItalic,
7554 #[cfg(feature = "static")]
7555 Font::RedHatMonoBoldItalic,
7556 #[cfg(feature = "variable")]
7557 Font::RedHatMonoVariable,
7558 #[cfg(feature = "variable")]
7559 Font::RedHatMonoItalicVariable,
7560 #[cfg(feature = "static")]
7561 Font::RedditMonoExtraLight,
7562 #[cfg(feature = "static")]
7563 Font::RedditMonoLight,
7564 #[cfg(feature = "static")]
7565 Font::RedditMonoRegular,
7566 #[cfg(feature = "static")]
7567 Font::RedditMonoMedium,
7568 #[cfg(feature = "static")]
7569 Font::RedditMonoSemiBold,
7570 #[cfg(feature = "static")]
7571 Font::RedditMonoBold,
7572 #[cfg(feature = "static")]
7573 Font::RedditMonoExtraBold,
7574 #[cfg(feature = "static")]
7575 Font::RedditMonoBlack,
7576 #[cfg(feature = "variable")]
7577 Font::RedditMonoVariable,
7578 #[cfg(feature = "static")]
7579 Font::RobotoMonoThin,
7580 #[cfg(feature = "static")]
7581 Font::RobotoMonoExtraLight,
7582 #[cfg(feature = "static")]
7583 Font::RobotoMonoLight,
7584 #[cfg(feature = "static")]
7585 Font::RobotoMonoRegular,
7586 #[cfg(feature = "static")]
7587 Font::RobotoMonoMedium,
7588 #[cfg(feature = "static")]
7589 Font::RobotoMonoSemiBold,
7590 #[cfg(feature = "static")]
7591 Font::RobotoMonoBold,
7592 #[cfg(feature = "static")]
7593 Font::RobotoMonoThinItalic,
7594 #[cfg(feature = "static")]
7595 Font::RobotoMonoExtraLightItalic,
7596 #[cfg(feature = "static")]
7597 Font::RobotoMonoLightItalic,
7598 #[cfg(feature = "static")]
7599 Font::RobotoMonoItalic,
7600 #[cfg(feature = "static")]
7601 Font::RobotoMonoMediumItalic,
7602 #[cfg(feature = "static")]
7603 Font::RobotoMonoSemiBoldItalic,
7604 #[cfg(feature = "static")]
7605 Font::RobotoMonoBoldItalic,
7606 #[cfg(feature = "variable")]
7607 Font::RobotoMonoVariable,
7608 #[cfg(feature = "variable")]
7609 Font::RobotoMonoItalicVariable,
7610 #[cfg(feature = "static")]
7611 Font::ShareTechMonoRegular,
7612 #[cfg(feature = "static")]
7613 Font::SixtyfourRegular,
7614 #[cfg(feature = "variable")]
7615 Font::SixtyfourRegularVariable,
7616 #[cfg(feature = "static")]
7617 Font::SometypeMonoRegular,
7618 #[cfg(feature = "static")]
7619 Font::SometypeMonoMedium,
7620 #[cfg(feature = "static")]
7621 Font::SometypeMonoSemiBold,
7622 #[cfg(feature = "static")]
7623 Font::SometypeMonoBold,
7624 #[cfg(feature = "static")]
7625 Font::SometypeMonoItalic,
7626 #[cfg(feature = "static")]
7627 Font::SometypeMonoMediumItalic,
7628 #[cfg(feature = "static")]
7629 Font::SometypeMonoSemiBoldItalic,
7630 #[cfg(feature = "static")]
7631 Font::SometypeMonoBoldItalic,
7632 #[cfg(feature = "variable")]
7633 Font::SometypeMonoVariable,
7634 #[cfg(feature = "variable")]
7635 Font::SometypeMonoItalicVariable,
7636 #[cfg(feature = "static")]
7637 Font::SourceCodeProExtraLight,
7638 #[cfg(feature = "static")]
7639 Font::SourceCodeProLight,
7640 #[cfg(feature = "static")]
7641 Font::SourceCodeProRegular,
7642 #[cfg(feature = "static")]
7643 Font::SourceCodeProMedium,
7644 #[cfg(feature = "static")]
7645 Font::SourceCodeProSemiBold,
7646 #[cfg(feature = "static")]
7647 Font::SourceCodeProBold,
7648 #[cfg(feature = "static")]
7649 Font::SourceCodeProExtraBold,
7650 #[cfg(feature = "static")]
7651 Font::SourceCodeProBlack,
7652 #[cfg(feature = "static")]
7653 Font::SourceCodeProExtraLightItalic,
7654 #[cfg(feature = "static")]
7655 Font::SourceCodeProLightItalic,
7656 #[cfg(feature = "static")]
7657 Font::SourceCodeProItalic,
7658 #[cfg(feature = "static")]
7659 Font::SourceCodeProMediumItalic,
7660 #[cfg(feature = "static")]
7661 Font::SourceCodeProSemiBoldItalic,
7662 #[cfg(feature = "static")]
7663 Font::SourceCodeProBoldItalic,
7664 #[cfg(feature = "static")]
7665 Font::SourceCodeProExtraBoldItalic,
7666 #[cfg(feature = "static")]
7667 Font::SourceCodeProBlackItalic,
7668 #[cfg(feature = "variable")]
7669 Font::SourceCodeProVariable,
7670 #[cfg(feature = "variable")]
7671 Font::SourceCodeProItalicVariable,
7672 #[cfg(feature = "static")]
7673 Font::SpaceMonoRegular,
7674 #[cfg(feature = "static")]
7675 Font::SpaceMonoItalic,
7676 #[cfg(feature = "static")]
7677 Font::SpaceMonoBold,
7678 #[cfg(feature = "static")]
7679 Font::SpaceMonoBoldItalic,
7680 #[cfg(feature = "static")]
7681 Font::SplineSansMonoLight,
7682 #[cfg(feature = "static")]
7683 Font::SplineSansMonoRegular,
7684 #[cfg(feature = "static")]
7685 Font::SplineSansMonoMedium,
7686 #[cfg(feature = "static")]
7687 Font::SplineSansMonoSemiBold,
7688 #[cfg(feature = "static")]
7689 Font::SplineSansMonoBold,
7690 #[cfg(feature = "static")]
7691 Font::SplineSansMonoLightItalic,
7692 #[cfg(feature = "static")]
7693 Font::SplineSansMonoItalic,
7694 #[cfg(feature = "static")]
7695 Font::SplineSansMonoMediumItalic,
7696 #[cfg(feature = "static")]
7697 Font::SplineSansMonoSemiBoldItalic,
7698 #[cfg(feature = "static")]
7699 Font::SplineSansMonoBoldItalic,
7700 #[cfg(feature = "variable")]
7701 Font::SplineSansMonoVariable,
7702 #[cfg(feature = "variable")]
7703 Font::SplineSansMonoItalicVariable,
7704 #[cfg(feature = "static")]
7705 Font::SyneMonoRegular,
7706 #[cfg(feature = "static")]
7707 Font::UbuntuMonoRegular,
7708 #[cfg(feature = "static")]
7709 Font::UbuntuMonoItalic,
7710 #[cfg(feature = "static")]
7711 Font::UbuntuMonoBold,
7712 #[cfg(feature = "static")]
7713 Font::UbuntuMonoBoldItalic,
7714 #[cfg(feature = "static")]
7715 Font::UbuntuSansMonoRegular,
7716 #[cfg(feature = "static")]
7717 Font::UbuntuSansMonoMedium,
7718 #[cfg(feature = "static")]
7719 Font::UbuntuSansMonoSemiBold,
7720 #[cfg(feature = "static")]
7721 Font::UbuntuSansMonoBold,
7722 #[cfg(feature = "static")]
7723 Font::UbuntuSansMonoItalic,
7724 #[cfg(feature = "static")]
7725 Font::UbuntuSansMonoMediumItalic,
7726 #[cfg(feature = "static")]
7727 Font::UbuntuSansMonoSemiBoldItalic,
7728 #[cfg(feature = "static")]
7729 Font::UbuntuSansMonoBoldItalic,
7730 #[cfg(feature = "variable")]
7731 Font::UbuntuSansMonoVariable,
7732 #[cfg(feature = "variable")]
7733 Font::UbuntuSansMonoItalicVariable,
7734 #[cfg(feature = "static")]
7735 Font::VT323Regular,
7736 #[cfg(feature = "static")]
7737 Font::VictorMonoThin,
7738 #[cfg(feature = "static")]
7739 Font::VictorMonoExtraLight,
7740 #[cfg(feature = "static")]
7741 Font::VictorMonoLight,
7742 #[cfg(feature = "static")]
7743 Font::VictorMonoRegular,
7744 #[cfg(feature = "static")]
7745 Font::VictorMonoMedium,
7746 #[cfg(feature = "static")]
7747 Font::VictorMonoSemiBold,
7748 #[cfg(feature = "static")]
7749 Font::VictorMonoBold,
7750 #[cfg(feature = "static")]
7751 Font::VictorMonoThinItalic,
7752 #[cfg(feature = "static")]
7753 Font::VictorMonoExtraLightItalic,
7754 #[cfg(feature = "static")]
7755 Font::VictorMonoLightItalic,
7756 #[cfg(feature = "static")]
7757 Font::VictorMonoItalic,
7758 #[cfg(feature = "static")]
7759 Font::VictorMonoMediumItalic,
7760 #[cfg(feature = "static")]
7761 Font::VictorMonoSemiBoldItalic,
7762 #[cfg(feature = "static")]
7763 Font::VictorMonoBoldItalic,
7764 #[cfg(feature = "variable")]
7765 Font::VictorMonoVariable,
7766 #[cfg(feature = "variable")]
7767 Font::VictorMonoItalicVariable,
7768 #[cfg(feature = "static")]
7769 Font::WorkbenchRegular,
7770 #[cfg(feature = "variable")]
7771 Font::WorkbenchRegularVariable,
7772 #[cfg(feature = "static")]
7773 Font::XanhMonoRegular,
7774 #[cfg(feature = "static")]
7775 Font::XanhMonoItalic,
7776 ]
7777 }
7778 Category::SansSerif => {
7779 vec![
7780 #[cfg(feature = "static")]
7781 Font::ABeeZeeRegular,
7782 #[cfg(feature = "static")]
7783 Font::ABeeZeeItalic,
7784 #[cfg(feature = "static")]
7785 Font::AROneSansRegular,
7786 #[cfg(feature = "static")]
7787 Font::AROneSansMedium,
7788 #[cfg(feature = "static")]
7789 Font::AROneSansSemiBold,
7790 #[cfg(feature = "static")]
7791 Font::AROneSansBold,
7792 #[cfg(feature = "variable")]
7793 Font::AROneSansVariable,
7794 #[cfg(feature = "static")]
7795 Font::AbelRegular,
7796 #[cfg(feature = "static")]
7797 Font::AclonicaRegular,
7798 #[cfg(feature = "static")]
7799 Font::AcmeRegular,
7800 #[cfg(feature = "static")]
7801 Font::ActorRegular,
7802 #[cfg(feature = "static")]
7803 Font::AdventProThin,
7804 #[cfg(feature = "static")]
7805 Font::AdventProExtraLight,
7806 #[cfg(feature = "static")]
7807 Font::AdventProLight,
7808 #[cfg(feature = "static")]
7809 Font::AdventProRegular,
7810 #[cfg(feature = "static")]
7811 Font::AdventProMedium,
7812 #[cfg(feature = "static")]
7813 Font::AdventProSemiBold,
7814 #[cfg(feature = "static")]
7815 Font::AdventProBold,
7816 #[cfg(feature = "static")]
7817 Font::AdventProExtraBold,
7818 #[cfg(feature = "static")]
7819 Font::AdventProBlack,
7820 #[cfg(feature = "static")]
7821 Font::AdventProSemiExpandedThin,
7822 #[cfg(feature = "static")]
7823 Font::AdventProSemiExpandedExtraLight,
7824 #[cfg(feature = "static")]
7825 Font::AdventProSemiExpandedLight,
7826 #[cfg(feature = "static")]
7827 Font::AdventProSemiExpandedRegular,
7828 #[cfg(feature = "static")]
7829 Font::AdventProSemiExpandedMedium,
7830 #[cfg(feature = "static")]
7831 Font::AdventProSemiExpandedSemiBold,
7832 #[cfg(feature = "static")]
7833 Font::AdventProSemiExpandedBold,
7834 #[cfg(feature = "static")]
7835 Font::AdventProSemiExpandedExtraBold,
7836 #[cfg(feature = "static")]
7837 Font::AdventProSemiExpandedBlack,
7838 #[cfg(feature = "static")]
7839 Font::AdventProExpandedThin,
7840 #[cfg(feature = "static")]
7841 Font::AdventProExpandedExtraLight,
7842 #[cfg(feature = "static")]
7843 Font::AdventProExpandedLight,
7844 #[cfg(feature = "static")]
7845 Font::AdventProExpandedRegular,
7846 #[cfg(feature = "static")]
7847 Font::AdventProExpandedMedium,
7848 #[cfg(feature = "static")]
7849 Font::AdventProExpandedSemiBold,
7850 #[cfg(feature = "static")]
7851 Font::AdventProExpandedBold,
7852 #[cfg(feature = "static")]
7853 Font::AdventProExpandedExtraBold,
7854 #[cfg(feature = "static")]
7855 Font::AdventProExpandedBlack,
7856 #[cfg(feature = "static")]
7857 Font::AdventProExtraExpandedThin,
7858 #[cfg(feature = "static")]
7859 Font::AdventProExtraExpandedExtraLight,
7860 #[cfg(feature = "static")]
7861 Font::AdventProExtraExpandedLight,
7862 #[cfg(feature = "static")]
7863 Font::AdventProExtraExpandedRegular,
7864 #[cfg(feature = "static")]
7865 Font::AdventProExtraExpandedMedium,
7866 #[cfg(feature = "static")]
7867 Font::AdventProExtraExpandedSemiBold,
7868 #[cfg(feature = "static")]
7869 Font::AdventProExtraExpandedBold,
7870 #[cfg(feature = "static")]
7871 Font::AdventProExtraExpandedExtraBold,
7872 #[cfg(feature = "static")]
7873 Font::AdventProExtraExpandedBlack,
7874 #[cfg(feature = "static")]
7875 Font::AdventProUltraExpandedThin,
7876 #[cfg(feature = "static")]
7877 Font::AdventProUltraExpandedExtraLight,
7878 #[cfg(feature = "static")]
7879 Font::AdventProUltraExpandedLight,
7880 #[cfg(feature = "static")]
7881 Font::AdventProUltraExpandedRegular,
7882 #[cfg(feature = "static")]
7883 Font::AdventProUltraExpandedMedium,
7884 #[cfg(feature = "static")]
7885 Font::AdventProUltraExpandedSemiBold,
7886 #[cfg(feature = "static")]
7887 Font::AdventProUltraExpandedBold,
7888 #[cfg(feature = "static")]
7889 Font::AdventProUltraExpandedExtraBold,
7890 #[cfg(feature = "static")]
7891 Font::AdventProUltraExpandedBlack,
7892 #[cfg(feature = "static")]
7893 Font::AdventProThinItalic,
7894 #[cfg(feature = "static")]
7895 Font::AdventProExtraLightItalic,
7896 #[cfg(feature = "static")]
7897 Font::AdventProLightItalic,
7898 #[cfg(feature = "static")]
7899 Font::AdventProItalic,
7900 #[cfg(feature = "static")]
7901 Font::AdventProMediumItalic,
7902 #[cfg(feature = "static")]
7903 Font::AdventProSemiBoldItalic,
7904 #[cfg(feature = "static")]
7905 Font::AdventProBoldItalic,
7906 #[cfg(feature = "static")]
7907 Font::AdventProExtraBoldItalic,
7908 #[cfg(feature = "static")]
7909 Font::AdventProBlackItalic,
7910 #[cfg(feature = "static")]
7911 Font::AdventProSemiExpandedThinItalic,
7912 #[cfg(feature = "static")]
7913 Font::AdventProSemiExpandedExtraLightItalic,
7914 #[cfg(feature = "static")]
7915 Font::AdventProSemiExpandedLightItalic,
7916 #[cfg(feature = "static")]
7917 Font::AdventProSemiExpandedItalic,
7918 #[cfg(feature = "static")]
7919 Font::AdventProSemiExpandedMediumItalic,
7920 #[cfg(feature = "static")]
7921 Font::AdventProSemiExpandedSemiBoldItalic,
7922 #[cfg(feature = "static")]
7923 Font::AdventProSemiExpandedBoldItalic,
7924 #[cfg(feature = "static")]
7925 Font::AdventProSemiExpandedExtraBoldItalic,
7926 #[cfg(feature = "static")]
7927 Font::AdventProSemiExpandedBlackItalic,
7928 #[cfg(feature = "static")]
7929 Font::AdventProExpandedThinItalic,
7930 #[cfg(feature = "static")]
7931 Font::AdventProExpandedExtraLightItalic,
7932 #[cfg(feature = "static")]
7933 Font::AdventProExpandedLightItalic,
7934 #[cfg(feature = "static")]
7935 Font::AdventProExpandedItalic,
7936 #[cfg(feature = "static")]
7937 Font::AdventProExpandedMediumItalic,
7938 #[cfg(feature = "static")]
7939 Font::AdventProExpandedSemiBoldItalic,
7940 #[cfg(feature = "static")]
7941 Font::AdventProExpandedBoldItalic,
7942 #[cfg(feature = "static")]
7943 Font::AdventProExpandedExtraBoldItalic,
7944 #[cfg(feature = "static")]
7945 Font::AdventProExpandedBlackItalic,
7946 #[cfg(feature = "static")]
7947 Font::AdventProExtraExpandedThinItalic,
7948 #[cfg(feature = "static")]
7949 Font::AdventProExtraExpandedExtraLightItalic,
7950 #[cfg(feature = "static")]
7951 Font::AdventProExtraExpandedLightItalic,
7952 #[cfg(feature = "static")]
7953 Font::AdventProExtraExpandedItalic,
7954 #[cfg(feature = "static")]
7955 Font::AdventProExtraExpandedMediumItalic,
7956 #[cfg(feature = "static")]
7957 Font::AdventProExtraExpandedSemiBoldItalic,
7958 #[cfg(feature = "static")]
7959 Font::AdventProExtraExpandedBoldItalic,
7960 #[cfg(feature = "static")]
7961 Font::AdventProExtraExpandedExtraBoldItalic,
7962 #[cfg(feature = "static")]
7963 Font::AdventProExtraExpandedBlackItalic,
7964 #[cfg(feature = "static")]
7965 Font::AdventProUltraExpandedThinItalic,
7966 #[cfg(feature = "static")]
7967 Font::AdventProUltraExpandedExtraLightItalic,
7968 #[cfg(feature = "static")]
7969 Font::AdventProUltraExpandedLightItalic,
7970 #[cfg(feature = "static")]
7971 Font::AdventProUltraExpandedItalic,
7972 #[cfg(feature = "static")]
7973 Font::AdventProUltraExpandedMediumItalic,
7974 #[cfg(feature = "static")]
7975 Font::AdventProUltraExpandedSemiBoldItalic,
7976 #[cfg(feature = "static")]
7977 Font::AdventProUltraExpandedBoldItalic,
7978 #[cfg(feature = "static")]
7979 Font::AdventProUltraExpandedExtraBoldItalic,
7980 #[cfg(feature = "static")]
7981 Font::AdventProUltraExpandedBlackItalic,
7982 #[cfg(feature = "variable")]
7983 Font::AdventProVariable,
7984 #[cfg(feature = "variable")]
7985 Font::AdventProItalicVariable,
7986 #[cfg(feature = "static")]
7987 Font::AfacadRegular,
7988 #[cfg(feature = "static")]
7989 Font::AfacadMedium,
7990 #[cfg(feature = "static")]
7991 Font::AfacadSemiBold,
7992 #[cfg(feature = "static")]
7993 Font::AfacadBold,
7994 #[cfg(feature = "static")]
7995 Font::AfacadItalic,
7996 #[cfg(feature = "static")]
7997 Font::AfacadMediumItalic,
7998 #[cfg(feature = "static")]
7999 Font::AfacadSemiBoldItalic,
8000 #[cfg(feature = "static")]
8001 Font::AfacadBoldItalic,
8002 #[cfg(feature = "variable")]
8003 Font::AfacadVariable,
8004 #[cfg(feature = "variable")]
8005 Font::AfacadItalicVariable,
8006 #[cfg(feature = "static")]
8007 Font::AgdasimaRegular,
8008 #[cfg(feature = "static")]
8009 Font::AgdasimaBold,
8010 #[cfg(feature = "static")]
8011 Font::AkatabRegular,
8012 #[cfg(feature = "static")]
8013 Font::AkatabMedium,
8014 #[cfg(feature = "static")]
8015 Font::AkatabSemiBold,
8016 #[cfg(feature = "static")]
8017 Font::AkatabBold,
8018 #[cfg(feature = "static")]
8019 Font::AkatabExtraBold,
8020 #[cfg(feature = "static")]
8021 Font::AkatabBlack,
8022 #[cfg(feature = "static")]
8023 Font::AksharLight,
8024 #[cfg(feature = "static")]
8025 Font::AksharRegular,
8026 #[cfg(feature = "static")]
8027 Font::AksharMedium,
8028 #[cfg(feature = "static")]
8029 Font::AksharSemiBold,
8030 #[cfg(feature = "static")]
8031 Font::AksharBold,
8032 #[cfg(feature = "variable")]
8033 Font::AksharVariable,
8034 #[cfg(feature = "static")]
8035 Font::AlataRegular,
8036 #[cfg(feature = "static")]
8037 Font::AlatsiRegular,
8038 #[cfg(feature = "static")]
8039 Font::AlbertSansThin,
8040 #[cfg(feature = "static")]
8041 Font::AlbertSansExtraLight,
8042 #[cfg(feature = "static")]
8043 Font::AlbertSansLight,
8044 #[cfg(feature = "static")]
8045 Font::AlbertSansRegular,
8046 #[cfg(feature = "static")]
8047 Font::AlbertSansMedium,
8048 #[cfg(feature = "static")]
8049 Font::AlbertSansSemiBold,
8050 #[cfg(feature = "static")]
8051 Font::AlbertSansBold,
8052 #[cfg(feature = "static")]
8053 Font::AlbertSansExtraBold,
8054 #[cfg(feature = "static")]
8055 Font::AlbertSansBlack,
8056 #[cfg(feature = "static")]
8057 Font::AlbertSansThinItalic,
8058 #[cfg(feature = "static")]
8059 Font::AlbertSansExtraLightItalic,
8060 #[cfg(feature = "static")]
8061 Font::AlbertSansLightItalic,
8062 #[cfg(feature = "static")]
8063 Font::AlbertSansItalic,
8064 #[cfg(feature = "static")]
8065 Font::AlbertSansMediumItalic,
8066 #[cfg(feature = "static")]
8067 Font::AlbertSansSemiBoldItalic,
8068 #[cfg(feature = "static")]
8069 Font::AlbertSansBoldItalic,
8070 #[cfg(feature = "static")]
8071 Font::AlbertSansExtraBoldItalic,
8072 #[cfg(feature = "static")]
8073 Font::AlbertSansBlackItalic,
8074 #[cfg(feature = "variable")]
8075 Font::AlbertSansVariable,
8076 #[cfg(feature = "variable")]
8077 Font::AlbertSansItalicVariable,
8078 #[cfg(feature = "static")]
8079 Font::AldrichRegular,
8080 #[cfg(feature = "static")]
8081 Font::AlefRegular,
8082 #[cfg(feature = "static")]
8083 Font::AlefBold,
8084 #[cfg(feature = "static")]
8085 Font::AlegreyaSansThin,
8086 #[cfg(feature = "static")]
8087 Font::AlegreyaSansThinItalic,
8088 #[cfg(feature = "static")]
8089 Font::AlegreyaSansLight,
8090 #[cfg(feature = "static")]
8091 Font::AlegreyaSansLightItalic,
8092 #[cfg(feature = "static")]
8093 Font::AlegreyaSansRegular,
8094 #[cfg(feature = "static")]
8095 Font::AlegreyaSansItalic,
8096 #[cfg(feature = "static")]
8097 Font::AlegreyaSansMedium,
8098 #[cfg(feature = "static")]
8099 Font::AlegreyaSansMediumItalic,
8100 #[cfg(feature = "static")]
8101 Font::AlegreyaSansBold,
8102 #[cfg(feature = "static")]
8103 Font::AlegreyaSansBoldItalic,
8104 #[cfg(feature = "static")]
8105 Font::AlegreyaSansExtraBold,
8106 #[cfg(feature = "static")]
8107 Font::AlegreyaSansExtraBoldItalic,
8108 #[cfg(feature = "static")]
8109 Font::AlegreyaSansBlack,
8110 #[cfg(feature = "static")]
8111 Font::AlegreyaSansBlackItalic,
8112 #[cfg(feature = "static")]
8113 Font::AlegreyaSansSCThin,
8114 #[cfg(feature = "static")]
8115 Font::AlegreyaSansSCThinItalic,
8116 #[cfg(feature = "static")]
8117 Font::AlegreyaSansSCLight,
8118 #[cfg(feature = "static")]
8119 Font::AlegreyaSansSCLightItalic,
8120 #[cfg(feature = "static")]
8121 Font::AlegreyaSansSCRegular,
8122 #[cfg(feature = "static")]
8123 Font::AlegreyaSansSCItalic,
8124 #[cfg(feature = "static")]
8125 Font::AlegreyaSansSCMedium,
8126 #[cfg(feature = "static")]
8127 Font::AlegreyaSansSCMediumItalic,
8128 #[cfg(feature = "static")]
8129 Font::AlegreyaSansSCBold,
8130 #[cfg(feature = "static")]
8131 Font::AlegreyaSansSCBoldItalic,
8132 #[cfg(feature = "static")]
8133 Font::AlegreyaSansSCExtraBold,
8134 #[cfg(feature = "static")]
8135 Font::AlegreyaSansSCExtraBoldItalic,
8136 #[cfg(feature = "static")]
8137 Font::AlegreyaSansSCBlack,
8138 #[cfg(feature = "static")]
8139 Font::AlegreyaSansSCBlackItalic,
8140 #[cfg(feature = "static")]
8141 Font::AlexandriaThin,
8142 #[cfg(feature = "static")]
8143 Font::AlexandriaExtraLight,
8144 #[cfg(feature = "static")]
8145 Font::AlexandriaLight,
8146 #[cfg(feature = "static")]
8147 Font::AlexandriaRegular,
8148 #[cfg(feature = "static")]
8149 Font::AlexandriaMedium,
8150 #[cfg(feature = "static")]
8151 Font::AlexandriaSemiBold,
8152 #[cfg(feature = "static")]
8153 Font::AlexandriaBold,
8154 #[cfg(feature = "static")]
8155 Font::AlexandriaExtraBold,
8156 #[cfg(feature = "static")]
8157 Font::AlexandriaBlack,
8158 #[cfg(feature = "variable")]
8159 Font::AlexandriaVariable,
8160 #[cfg(feature = "static")]
8161 Font::AllertaRegular,
8162 #[cfg(feature = "static")]
8163 Font::AllertaStencilRegular,
8164 #[cfg(feature = "static")]
8165 Font::AlmaraiLight,
8166 #[cfg(feature = "static")]
8167 Font::AlmaraiRegular,
8168 #[cfg(feature = "static")]
8169 Font::AlmaraiBold,
8170 #[cfg(feature = "static")]
8171 Font::AlmaraiExtraBold,
8172 #[cfg(feature = "static")]
8173 Font::AlumniSansThin,
8174 #[cfg(feature = "static")]
8175 Font::AlumniSansExtraLight,
8176 #[cfg(feature = "static")]
8177 Font::AlumniSansLight,
8178 #[cfg(feature = "static")]
8179 Font::AlumniSansRegular,
8180 #[cfg(feature = "static")]
8181 Font::AlumniSansMedium,
8182 #[cfg(feature = "static")]
8183 Font::AlumniSansSemiBold,
8184 #[cfg(feature = "static")]
8185 Font::AlumniSansBold,
8186 #[cfg(feature = "static")]
8187 Font::AlumniSansExtraBold,
8188 #[cfg(feature = "static")]
8189 Font::AlumniSansBlack,
8190 #[cfg(feature = "static")]
8191 Font::AlumniSansThinItalic,
8192 #[cfg(feature = "static")]
8193 Font::AlumniSansExtraLightItalic,
8194 #[cfg(feature = "static")]
8195 Font::AlumniSansLightItalic,
8196 #[cfg(feature = "static")]
8197 Font::AlumniSansItalic,
8198 #[cfg(feature = "static")]
8199 Font::AlumniSansMediumItalic,
8200 #[cfg(feature = "static")]
8201 Font::AlumniSansSemiBoldItalic,
8202 #[cfg(feature = "static")]
8203 Font::AlumniSansBoldItalic,
8204 #[cfg(feature = "static")]
8205 Font::AlumniSansExtraBoldItalic,
8206 #[cfg(feature = "static")]
8207 Font::AlumniSansBlackItalic,
8208 #[cfg(feature = "variable")]
8209 Font::AlumniSansVariable,
8210 #[cfg(feature = "variable")]
8211 Font::AlumniSansItalicVariable,
8212 #[cfg(feature = "static")]
8213 Font::AlumniSansCollegiateOneRegular,
8214 #[cfg(feature = "static")]
8215 Font::AlumniSansCollegiateOneItalic,
8216 #[cfg(feature = "static")]
8217 Font::AlumniSansPinstripeRegular,
8218 #[cfg(feature = "static")]
8219 Font::AlumniSansPinstripeItalic,
8220 #[cfg(feature = "static")]
8221 Font::AmaranthRegular,
8222 #[cfg(feature = "static")]
8223 Font::AmaranthItalic,
8224 #[cfg(feature = "static")]
8225 Font::AmaranthBold,
8226 #[cfg(feature = "static")]
8227 Font::AmaranthBoldItalic,
8228 #[cfg(feature = "static")]
8229 Font::AmikoRegular,
8230 #[cfg(feature = "static")]
8231 Font::AmikoSemiBold,
8232 #[cfg(feature = "static")]
8233 Font::AmikoBold,
8234 #[cfg(feature = "static")]
8235 Font::AnaheimRegular,
8236 #[cfg(feature = "static")]
8237 Font::AnaheimMedium,
8238 #[cfg(feature = "static")]
8239 Font::AnaheimSemiBold,
8240 #[cfg(feature = "static")]
8241 Font::AnaheimBold,
8242 #[cfg(feature = "static")]
8243 Font::AnaheimExtraBold,
8244 #[cfg(feature = "variable")]
8245 Font::AnaheimVariable,
8246 #[cfg(feature = "static")]
8247 Font::AndikaRegular,
8248 #[cfg(feature = "static")]
8249 Font::AndikaItalic,
8250 #[cfg(feature = "static")]
8251 Font::AndikaBold,
8252 #[cfg(feature = "static")]
8253 Font::AndikaBoldItalic,
8254 #[cfg(feature = "static")]
8255 Font::AnekBanglaCondensedThin,
8256 #[cfg(feature = "static")]
8257 Font::AnekBanglaCondensedExtraLight,
8258 #[cfg(feature = "static")]
8259 Font::AnekBanglaCondensedLight,
8260 #[cfg(feature = "static")]
8261 Font::AnekBanglaCondensedRegular,
8262 #[cfg(feature = "static")]
8263 Font::AnekBanglaCondensedMedium,
8264 #[cfg(feature = "static")]
8265 Font::AnekBanglaCondensedSemiBold,
8266 #[cfg(feature = "static")]
8267 Font::AnekBanglaCondensedBold,
8268 #[cfg(feature = "static")]
8269 Font::AnekBanglaCondensedExtraBold,
8270 #[cfg(feature = "static")]
8271 Font::AnekBanglaSemiCondensedThin,
8272 #[cfg(feature = "static")]
8273 Font::AnekBanglaSemiCondensedExtraLight,
8274 #[cfg(feature = "static")]
8275 Font::AnekBanglaSemiCondensedLight,
8276 #[cfg(feature = "static")]
8277 Font::AnekBanglaSemiCondensedRegular,
8278 #[cfg(feature = "static")]
8279 Font::AnekBanglaSemiCondensedMedium,
8280 #[cfg(feature = "static")]
8281 Font::AnekBanglaSemiCondensedSemiBold,
8282 #[cfg(feature = "static")]
8283 Font::AnekBanglaSemiCondensedBold,
8284 #[cfg(feature = "static")]
8285 Font::AnekBanglaSemiCondensedExtraBold,
8286 #[cfg(feature = "static")]
8287 Font::AnekBanglaThin,
8288 #[cfg(feature = "static")]
8289 Font::AnekBanglaExtraLight,
8290 #[cfg(feature = "static")]
8291 Font::AnekBanglaLight,
8292 #[cfg(feature = "static")]
8293 Font::AnekBanglaRegular,
8294 #[cfg(feature = "static")]
8295 Font::AnekBanglaMedium,
8296 #[cfg(feature = "static")]
8297 Font::AnekBanglaSemiBold,
8298 #[cfg(feature = "static")]
8299 Font::AnekBanglaBold,
8300 #[cfg(feature = "static")]
8301 Font::AnekBanglaExtraBold,
8302 #[cfg(feature = "static")]
8303 Font::AnekBanglaSemiExpandedThin,
8304 #[cfg(feature = "static")]
8305 Font::AnekBanglaSemiExpandedExtraLight,
8306 #[cfg(feature = "static")]
8307 Font::AnekBanglaSemiExpandedLight,
8308 #[cfg(feature = "static")]
8309 Font::AnekBanglaSemiExpandedRegular,
8310 #[cfg(feature = "static")]
8311 Font::AnekBanglaSemiExpandedMedium,
8312 #[cfg(feature = "static")]
8313 Font::AnekBanglaSemiExpandedSemiBold,
8314 #[cfg(feature = "static")]
8315 Font::AnekBanglaSemiExpandedBold,
8316 #[cfg(feature = "static")]
8317 Font::AnekBanglaSemiExpandedExtraBold,
8318 #[cfg(feature = "static")]
8319 Font::AnekBanglaExpandedThin,
8320 #[cfg(feature = "static")]
8321 Font::AnekBanglaExpandedExtraLight,
8322 #[cfg(feature = "static")]
8323 Font::AnekBanglaExpandedLight,
8324 #[cfg(feature = "static")]
8325 Font::AnekBanglaExpandedRegular,
8326 #[cfg(feature = "static")]
8327 Font::AnekBanglaExpandedMedium,
8328 #[cfg(feature = "static")]
8329 Font::AnekBanglaExpandedSemiBold,
8330 #[cfg(feature = "static")]
8331 Font::AnekBanglaExpandedBold,
8332 #[cfg(feature = "static")]
8333 Font::AnekBanglaExpandedExtraBold,
8334 #[cfg(feature = "variable")]
8335 Font::AnekBanglaVariable,
8336 #[cfg(feature = "static")]
8337 Font::AnekDevanagariCondensedThin,
8338 #[cfg(feature = "static")]
8339 Font::AnekDevanagariCondensedExtraLight,
8340 #[cfg(feature = "static")]
8341 Font::AnekDevanagariCondensedLight,
8342 #[cfg(feature = "static")]
8343 Font::AnekDevanagariCondensedRegular,
8344 #[cfg(feature = "static")]
8345 Font::AnekDevanagariCondensedMedium,
8346 #[cfg(feature = "static")]
8347 Font::AnekDevanagariCondensedSemiBold,
8348 #[cfg(feature = "static")]
8349 Font::AnekDevanagariCondensedBold,
8350 #[cfg(feature = "static")]
8351 Font::AnekDevanagariCondensedExtraBold,
8352 #[cfg(feature = "static")]
8353 Font::AnekDevanagariSemiCondensedThin,
8354 #[cfg(feature = "static")]
8355 Font::AnekDevanagariSemiCondensedExtraLight,
8356 #[cfg(feature = "static")]
8357 Font::AnekDevanagariSemiCondensedLight,
8358 #[cfg(feature = "static")]
8359 Font::AnekDevanagariSemiCondensedRegular,
8360 #[cfg(feature = "static")]
8361 Font::AnekDevanagariSemiCondensedMedium,
8362 #[cfg(feature = "static")]
8363 Font::AnekDevanagariSemiCondensedSemiBold,
8364 #[cfg(feature = "static")]
8365 Font::AnekDevanagariSemiCondensedBold,
8366 #[cfg(feature = "static")]
8367 Font::AnekDevanagariSemiCondensedExtraBold,
8368 #[cfg(feature = "static")]
8369 Font::AnekDevanagariThin,
8370 #[cfg(feature = "static")]
8371 Font::AnekDevanagariExtraLight,
8372 #[cfg(feature = "static")]
8373 Font::AnekDevanagariLight,
8374 #[cfg(feature = "static")]
8375 Font::AnekDevanagariRegular,
8376 #[cfg(feature = "static")]
8377 Font::AnekDevanagariMedium,
8378 #[cfg(feature = "static")]
8379 Font::AnekDevanagariSemiBold,
8380 #[cfg(feature = "static")]
8381 Font::AnekDevanagariBold,
8382 #[cfg(feature = "static")]
8383 Font::AnekDevanagariExtraBold,
8384 #[cfg(feature = "static")]
8385 Font::AnekDevanagariSemiExpandedThin,
8386 #[cfg(feature = "static")]
8387 Font::AnekDevanagariSemiExpandedExtraLight,
8388 #[cfg(feature = "static")]
8389 Font::AnekDevanagariSemiExpandedLight,
8390 #[cfg(feature = "static")]
8391 Font::AnekDevanagariSemiExpandedRegular,
8392 #[cfg(feature = "static")]
8393 Font::AnekDevanagariSemiExpandedMedium,
8394 #[cfg(feature = "static")]
8395 Font::AnekDevanagariSemiExpandedSemiBold,
8396 #[cfg(feature = "static")]
8397 Font::AnekDevanagariSemiExpandedBold,
8398 #[cfg(feature = "static")]
8399 Font::AnekDevanagariSemiExpandedExtraBold,
8400 #[cfg(feature = "static")]
8401 Font::AnekDevanagariExpandedThin,
8402 #[cfg(feature = "static")]
8403 Font::AnekDevanagariExpandedExtraLight,
8404 #[cfg(feature = "static")]
8405 Font::AnekDevanagariExpandedLight,
8406 #[cfg(feature = "static")]
8407 Font::AnekDevanagariExpandedRegular,
8408 #[cfg(feature = "static")]
8409 Font::AnekDevanagariExpandedMedium,
8410 #[cfg(feature = "static")]
8411 Font::AnekDevanagariExpandedSemiBold,
8412 #[cfg(feature = "static")]
8413 Font::AnekDevanagariExpandedBold,
8414 #[cfg(feature = "static")]
8415 Font::AnekDevanagariExpandedExtraBold,
8416 #[cfg(feature = "variable")]
8417 Font::AnekDevanagariVariable,
8418 #[cfg(feature = "static")]
8419 Font::AnekGujaratiCondensedThin,
8420 #[cfg(feature = "static")]
8421 Font::AnekGujaratiCondensedExtraLight,
8422 #[cfg(feature = "static")]
8423 Font::AnekGujaratiCondensedLight,
8424 #[cfg(feature = "static")]
8425 Font::AnekGujaratiCondensedRegular,
8426 #[cfg(feature = "static")]
8427 Font::AnekGujaratiCondensedMedium,
8428 #[cfg(feature = "static")]
8429 Font::AnekGujaratiCondensedSemiBold,
8430 #[cfg(feature = "static")]
8431 Font::AnekGujaratiCondensedBold,
8432 #[cfg(feature = "static")]
8433 Font::AnekGujaratiCondensedExtraBold,
8434 #[cfg(feature = "static")]
8435 Font::AnekGujaratiSemiCondensedThin,
8436 #[cfg(feature = "static")]
8437 Font::AnekGujaratiSemiCondensedExtraLight,
8438 #[cfg(feature = "static")]
8439 Font::AnekGujaratiSemiCondensedLight,
8440 #[cfg(feature = "static")]
8441 Font::AnekGujaratiSemiCondensedRegular,
8442 #[cfg(feature = "static")]
8443 Font::AnekGujaratiSemiCondensedMedium,
8444 #[cfg(feature = "static")]
8445 Font::AnekGujaratiSemiCondensedSemiBold,
8446 #[cfg(feature = "static")]
8447 Font::AnekGujaratiSemiCondensedBold,
8448 #[cfg(feature = "static")]
8449 Font::AnekGujaratiSemiCondensedExtraBold,
8450 #[cfg(feature = "static")]
8451 Font::AnekGujaratiThin,
8452 #[cfg(feature = "static")]
8453 Font::AnekGujaratiExtraLight,
8454 #[cfg(feature = "static")]
8455 Font::AnekGujaratiLight,
8456 #[cfg(feature = "static")]
8457 Font::AnekGujaratiRegular,
8458 #[cfg(feature = "static")]
8459 Font::AnekGujaratiMedium,
8460 #[cfg(feature = "static")]
8461 Font::AnekGujaratiSemiBold,
8462 #[cfg(feature = "static")]
8463 Font::AnekGujaratiBold,
8464 #[cfg(feature = "static")]
8465 Font::AnekGujaratiExtraBold,
8466 #[cfg(feature = "static")]
8467 Font::AnekGujaratiSemiExpandedThin,
8468 #[cfg(feature = "static")]
8469 Font::AnekGujaratiSemiExpandedExtraLight,
8470 #[cfg(feature = "static")]
8471 Font::AnekGujaratiSemiExpandedLight,
8472 #[cfg(feature = "static")]
8473 Font::AnekGujaratiSemiExpandedRegular,
8474 #[cfg(feature = "static")]
8475 Font::AnekGujaratiSemiExpandedMedium,
8476 #[cfg(feature = "static")]
8477 Font::AnekGujaratiSemiExpandedSemiBold,
8478 #[cfg(feature = "static")]
8479 Font::AnekGujaratiSemiExpandedBold,
8480 #[cfg(feature = "static")]
8481 Font::AnekGujaratiSemiExpandedExtraBold,
8482 #[cfg(feature = "static")]
8483 Font::AnekGujaratiExpandedThin,
8484 #[cfg(feature = "static")]
8485 Font::AnekGujaratiExpandedExtraLight,
8486 #[cfg(feature = "static")]
8487 Font::AnekGujaratiExpandedLight,
8488 #[cfg(feature = "static")]
8489 Font::AnekGujaratiExpandedRegular,
8490 #[cfg(feature = "static")]
8491 Font::AnekGujaratiExpandedMedium,
8492 #[cfg(feature = "static")]
8493 Font::AnekGujaratiExpandedSemiBold,
8494 #[cfg(feature = "static")]
8495 Font::AnekGujaratiExpandedBold,
8496 #[cfg(feature = "static")]
8497 Font::AnekGujaratiExpandedExtraBold,
8498 #[cfg(feature = "variable")]
8499 Font::AnekGujaratiVariable,
8500 #[cfg(feature = "static")]
8501 Font::AnekGurmukhiCondensedThin,
8502 #[cfg(feature = "static")]
8503 Font::AnekGurmukhiCondensedExtraLight,
8504 #[cfg(feature = "static")]
8505 Font::AnekGurmukhiCondensedLight,
8506 #[cfg(feature = "static")]
8507 Font::AnekGurmukhiCondensedRegular,
8508 #[cfg(feature = "static")]
8509 Font::AnekGurmukhiCondensedMedium,
8510 #[cfg(feature = "static")]
8511 Font::AnekGurmukhiCondensedSemiBold,
8512 #[cfg(feature = "static")]
8513 Font::AnekGurmukhiCondensedBold,
8514 #[cfg(feature = "static")]
8515 Font::AnekGurmukhiCondensedExtraBold,
8516 #[cfg(feature = "static")]
8517 Font::AnekGurmukhiSemiCondensedThin,
8518 #[cfg(feature = "static")]
8519 Font::AnekGurmukhiSemiCondensedExtraLight,
8520 #[cfg(feature = "static")]
8521 Font::AnekGurmukhiSemiCondensedLight,
8522 #[cfg(feature = "static")]
8523 Font::AnekGurmukhiSemiCondensedRegular,
8524 #[cfg(feature = "static")]
8525 Font::AnekGurmukhiSemiCondensedMedium,
8526 #[cfg(feature = "static")]
8527 Font::AnekGurmukhiSemiCondensedSemiBold,
8528 #[cfg(feature = "static")]
8529 Font::AnekGurmukhiSemiCondensedBold,
8530 #[cfg(feature = "static")]
8531 Font::AnekGurmukhiSemiCondensedExtraBold,
8532 #[cfg(feature = "static")]
8533 Font::AnekGurmukhiThin,
8534 #[cfg(feature = "static")]
8535 Font::AnekGurmukhiExtraLight,
8536 #[cfg(feature = "static")]
8537 Font::AnekGurmukhiLight,
8538 #[cfg(feature = "static")]
8539 Font::AnekGurmukhiRegular,
8540 #[cfg(feature = "static")]
8541 Font::AnekGurmukhiMedium,
8542 #[cfg(feature = "static")]
8543 Font::AnekGurmukhiSemiBold,
8544 #[cfg(feature = "static")]
8545 Font::AnekGurmukhiBold,
8546 #[cfg(feature = "static")]
8547 Font::AnekGurmukhiExtraBold,
8548 #[cfg(feature = "static")]
8549 Font::AnekGurmukhiSemiExpandedThin,
8550 #[cfg(feature = "static")]
8551 Font::AnekGurmukhiSemiExpandedExtraLight,
8552 #[cfg(feature = "static")]
8553 Font::AnekGurmukhiSemiExpandedLight,
8554 #[cfg(feature = "static")]
8555 Font::AnekGurmukhiSemiExpandedRegular,
8556 #[cfg(feature = "static")]
8557 Font::AnekGurmukhiSemiExpandedMedium,
8558 #[cfg(feature = "static")]
8559 Font::AnekGurmukhiSemiExpandedSemiBold,
8560 #[cfg(feature = "static")]
8561 Font::AnekGurmukhiSemiExpandedBold,
8562 #[cfg(feature = "static")]
8563 Font::AnekGurmukhiSemiExpandedExtraBold,
8564 #[cfg(feature = "static")]
8565 Font::AnekGurmukhiExpandedThin,
8566 #[cfg(feature = "static")]
8567 Font::AnekGurmukhiExpandedExtraLight,
8568 #[cfg(feature = "static")]
8569 Font::AnekGurmukhiExpandedLight,
8570 #[cfg(feature = "static")]
8571 Font::AnekGurmukhiExpandedRegular,
8572 #[cfg(feature = "static")]
8573 Font::AnekGurmukhiExpandedMedium,
8574 #[cfg(feature = "static")]
8575 Font::AnekGurmukhiExpandedSemiBold,
8576 #[cfg(feature = "static")]
8577 Font::AnekGurmukhiExpandedBold,
8578 #[cfg(feature = "static")]
8579 Font::AnekGurmukhiExpandedExtraBold,
8580 #[cfg(feature = "variable")]
8581 Font::AnekGurmukhiVariable,
8582 #[cfg(feature = "static")]
8583 Font::AnekKannadaCondensedThin,
8584 #[cfg(feature = "static")]
8585 Font::AnekKannadaCondensedExtraLight,
8586 #[cfg(feature = "static")]
8587 Font::AnekKannadaCondensedLight,
8588 #[cfg(feature = "static")]
8589 Font::AnekKannadaCondensedRegular,
8590 #[cfg(feature = "static")]
8591 Font::AnekKannadaCondensedMedium,
8592 #[cfg(feature = "static")]
8593 Font::AnekKannadaCondensedSemiBold,
8594 #[cfg(feature = "static")]
8595 Font::AnekKannadaCondensedBold,
8596 #[cfg(feature = "static")]
8597 Font::AnekKannadaCondensedExtraBold,
8598 #[cfg(feature = "static")]
8599 Font::AnekKannadaSemiCondensedThin,
8600 #[cfg(feature = "static")]
8601 Font::AnekKannadaSemiCondensedExtraLight,
8602 #[cfg(feature = "static")]
8603 Font::AnekKannadaSemiCondensedLight,
8604 #[cfg(feature = "static")]
8605 Font::AnekKannadaSemiCondensedRegular,
8606 #[cfg(feature = "static")]
8607 Font::AnekKannadaSemiCondensedMedium,
8608 #[cfg(feature = "static")]
8609 Font::AnekKannadaSemiCondensedSemiBold,
8610 #[cfg(feature = "static")]
8611 Font::AnekKannadaSemiCondensedBold,
8612 #[cfg(feature = "static")]
8613 Font::AnekKannadaSemiCondensedExtraBold,
8614 #[cfg(feature = "static")]
8615 Font::AnekKannadaThin,
8616 #[cfg(feature = "static")]
8617 Font::AnekKannadaExtraLight,
8618 #[cfg(feature = "static")]
8619 Font::AnekKannadaLight,
8620 #[cfg(feature = "static")]
8621 Font::AnekKannadaRegular,
8622 #[cfg(feature = "static")]
8623 Font::AnekKannadaMedium,
8624 #[cfg(feature = "static")]
8625 Font::AnekKannadaSemiBold,
8626 #[cfg(feature = "static")]
8627 Font::AnekKannadaBold,
8628 #[cfg(feature = "static")]
8629 Font::AnekKannadaExtraBold,
8630 #[cfg(feature = "static")]
8631 Font::AnekKannadaSemiExpandedThin,
8632 #[cfg(feature = "static")]
8633 Font::AnekKannadaSemiExpandedExtraLight,
8634 #[cfg(feature = "static")]
8635 Font::AnekKannadaSemiExpandedLight,
8636 #[cfg(feature = "static")]
8637 Font::AnekKannadaSemiExpandedRegular,
8638 #[cfg(feature = "static")]
8639 Font::AnekKannadaSemiExpandedMedium,
8640 #[cfg(feature = "static")]
8641 Font::AnekKannadaSemiExpandedSemiBold,
8642 #[cfg(feature = "static")]
8643 Font::AnekKannadaSemiExpandedBold,
8644 #[cfg(feature = "static")]
8645 Font::AnekKannadaSemiExpandedExtraBold,
8646 #[cfg(feature = "static")]
8647 Font::AnekKannadaExpandedThin,
8648 #[cfg(feature = "static")]
8649 Font::AnekKannadaExpandedExtraLight,
8650 #[cfg(feature = "static")]
8651 Font::AnekKannadaExpandedLight,
8652 #[cfg(feature = "static")]
8653 Font::AnekKannadaExpandedRegular,
8654 #[cfg(feature = "static")]
8655 Font::AnekKannadaExpandedMedium,
8656 #[cfg(feature = "static")]
8657 Font::AnekKannadaExpandedSemiBold,
8658 #[cfg(feature = "static")]
8659 Font::AnekKannadaExpandedBold,
8660 #[cfg(feature = "static")]
8661 Font::AnekKannadaExpandedExtraBold,
8662 #[cfg(feature = "variable")]
8663 Font::AnekKannadaVariable,
8664 #[cfg(feature = "static")]
8665 Font::AnekLatinCondensedThin,
8666 #[cfg(feature = "static")]
8667 Font::AnekLatinCondensedExtraLight,
8668 #[cfg(feature = "static")]
8669 Font::AnekLatinCondensedLight,
8670 #[cfg(feature = "static")]
8671 Font::AnekLatinCondensedRegular,
8672 #[cfg(feature = "static")]
8673 Font::AnekLatinCondensedMedium,
8674 #[cfg(feature = "static")]
8675 Font::AnekLatinCondensedSemiBold,
8676 #[cfg(feature = "static")]
8677 Font::AnekLatinCondensedBold,
8678 #[cfg(feature = "static")]
8679 Font::AnekLatinCondensedExtraBold,
8680 #[cfg(feature = "static")]
8681 Font::AnekLatinSemiCondensedThin,
8682 #[cfg(feature = "static")]
8683 Font::AnekLatinSemiCondensedExtraLight,
8684 #[cfg(feature = "static")]
8685 Font::AnekLatinSemiCondensedLight,
8686 #[cfg(feature = "static")]
8687 Font::AnekLatinSemiCondensedRegular,
8688 #[cfg(feature = "static")]
8689 Font::AnekLatinSemiCondensedMedium,
8690 #[cfg(feature = "static")]
8691 Font::AnekLatinSemiCondensedSemiBold,
8692 #[cfg(feature = "static")]
8693 Font::AnekLatinSemiCondensedBold,
8694 #[cfg(feature = "static")]
8695 Font::AnekLatinSemiCondensedExtraBold,
8696 #[cfg(feature = "static")]
8697 Font::AnekLatinThin,
8698 #[cfg(feature = "static")]
8699 Font::AnekLatinExtraLight,
8700 #[cfg(feature = "static")]
8701 Font::AnekLatinLight,
8702 #[cfg(feature = "static")]
8703 Font::AnekLatinRegular,
8704 #[cfg(feature = "static")]
8705 Font::AnekLatinMedium,
8706 #[cfg(feature = "static")]
8707 Font::AnekLatinSemiBold,
8708 #[cfg(feature = "static")]
8709 Font::AnekLatinBold,
8710 #[cfg(feature = "static")]
8711 Font::AnekLatinExtraBold,
8712 #[cfg(feature = "static")]
8713 Font::AnekLatinSemiExpandedThin,
8714 #[cfg(feature = "static")]
8715 Font::AnekLatinSemiExpandedExtraLight,
8716 #[cfg(feature = "static")]
8717 Font::AnekLatinSemiExpandedLight,
8718 #[cfg(feature = "static")]
8719 Font::AnekLatinSemiExpandedRegular,
8720 #[cfg(feature = "static")]
8721 Font::AnekLatinSemiExpandedMedium,
8722 #[cfg(feature = "static")]
8723 Font::AnekLatinSemiExpandedSemiBold,
8724 #[cfg(feature = "static")]
8725 Font::AnekLatinSemiExpandedBold,
8726 #[cfg(feature = "static")]
8727 Font::AnekLatinSemiExpandedExtraBold,
8728 #[cfg(feature = "static")]
8729 Font::AnekLatinExpandedThin,
8730 #[cfg(feature = "static")]
8731 Font::AnekLatinExpandedExtraLight,
8732 #[cfg(feature = "static")]
8733 Font::AnekLatinExpandedLight,
8734 #[cfg(feature = "static")]
8735 Font::AnekLatinExpandedRegular,
8736 #[cfg(feature = "static")]
8737 Font::AnekLatinExpandedMedium,
8738 #[cfg(feature = "static")]
8739 Font::AnekLatinExpandedSemiBold,
8740 #[cfg(feature = "static")]
8741 Font::AnekLatinExpandedBold,
8742 #[cfg(feature = "static")]
8743 Font::AnekLatinExpandedExtraBold,
8744 #[cfg(feature = "variable")]
8745 Font::AnekLatinVariable,
8746 #[cfg(feature = "static")]
8747 Font::AnekMalayalamCondensedThin,
8748 #[cfg(feature = "static")]
8749 Font::AnekMalayalamCondensedExtraLight,
8750 #[cfg(feature = "static")]
8751 Font::AnekMalayalamCondensedLight,
8752 #[cfg(feature = "static")]
8753 Font::AnekMalayalamCondensedRegular,
8754 #[cfg(feature = "static")]
8755 Font::AnekMalayalamCondensedMedium,
8756 #[cfg(feature = "static")]
8757 Font::AnekMalayalamCondensedSemiBold,
8758 #[cfg(feature = "static")]
8759 Font::AnekMalayalamCondensedBold,
8760 #[cfg(feature = "static")]
8761 Font::AnekMalayalamCondensedExtraBold,
8762 #[cfg(feature = "static")]
8763 Font::AnekMalayalamSemiCondensedThin,
8764 #[cfg(feature = "static")]
8765 Font::AnekMalayalamSemiCondensedExtraLight,
8766 #[cfg(feature = "static")]
8767 Font::AnekMalayalamSemiCondensedLight,
8768 #[cfg(feature = "static")]
8769 Font::AnekMalayalamSemiCondensedRegular,
8770 #[cfg(feature = "static")]
8771 Font::AnekMalayalamSemiCondensedMedium,
8772 #[cfg(feature = "static")]
8773 Font::AnekMalayalamSemiCondensedSemiBold,
8774 #[cfg(feature = "static")]
8775 Font::AnekMalayalamSemiCondensedBold,
8776 #[cfg(feature = "static")]
8777 Font::AnekMalayalamSemiCondensedExtraBold,
8778 #[cfg(feature = "static")]
8779 Font::AnekMalayalamThin,
8780 #[cfg(feature = "static")]
8781 Font::AnekMalayalamExtraLight,
8782 #[cfg(feature = "static")]
8783 Font::AnekMalayalamLight,
8784 #[cfg(feature = "static")]
8785 Font::AnekMalayalamRegular,
8786 #[cfg(feature = "static")]
8787 Font::AnekMalayalamMedium,
8788 #[cfg(feature = "static")]
8789 Font::AnekMalayalamSemiBold,
8790 #[cfg(feature = "static")]
8791 Font::AnekMalayalamBold,
8792 #[cfg(feature = "static")]
8793 Font::AnekMalayalamExtraBold,
8794 #[cfg(feature = "static")]
8795 Font::AnekMalayalamSemiExpandedThin,
8796 #[cfg(feature = "static")]
8797 Font::AnekMalayalamSemiExpandedExtraLight,
8798 #[cfg(feature = "static")]
8799 Font::AnekMalayalamSemiExpandedLight,
8800 #[cfg(feature = "static")]
8801 Font::AnekMalayalamSemiExpandedRegular,
8802 #[cfg(feature = "static")]
8803 Font::AnekMalayalamSemiExpandedMedium,
8804 #[cfg(feature = "static")]
8805 Font::AnekMalayalamSemiExpandedSemiBold,
8806 #[cfg(feature = "static")]
8807 Font::AnekMalayalamSemiExpandedBold,
8808 #[cfg(feature = "static")]
8809 Font::AnekMalayalamSemiExpandedExtraBold,
8810 #[cfg(feature = "static")]
8811 Font::AnekMalayalamExpandedThin,
8812 #[cfg(feature = "static")]
8813 Font::AnekMalayalamExpandedExtraLight,
8814 #[cfg(feature = "static")]
8815 Font::AnekMalayalamExpandedLight,
8816 #[cfg(feature = "static")]
8817 Font::AnekMalayalamExpandedRegular,
8818 #[cfg(feature = "static")]
8819 Font::AnekMalayalamExpandedMedium,
8820 #[cfg(feature = "static")]
8821 Font::AnekMalayalamExpandedSemiBold,
8822 #[cfg(feature = "static")]
8823 Font::AnekMalayalamExpandedBold,
8824 #[cfg(feature = "static")]
8825 Font::AnekMalayalamExpandedExtraBold,
8826 #[cfg(feature = "variable")]
8827 Font::AnekMalayalamVariable,
8828 #[cfg(feature = "static")]
8829 Font::AnekOdiaCondensedThin,
8830 #[cfg(feature = "static")]
8831 Font::AnekOdiaCondensedExtraLight,
8832 #[cfg(feature = "static")]
8833 Font::AnekOdiaCondensedLight,
8834 #[cfg(feature = "static")]
8835 Font::AnekOdiaCondensedRegular,
8836 #[cfg(feature = "static")]
8837 Font::AnekOdiaCondensedMedium,
8838 #[cfg(feature = "static")]
8839 Font::AnekOdiaCondensedSemiBold,
8840 #[cfg(feature = "static")]
8841 Font::AnekOdiaCondensedBold,
8842 #[cfg(feature = "static")]
8843 Font::AnekOdiaCondensedExtraBold,
8844 #[cfg(feature = "static")]
8845 Font::AnekOdiaSemiCondensedThin,
8846 #[cfg(feature = "static")]
8847 Font::AnekOdiaSemiCondensedExtraLight,
8848 #[cfg(feature = "static")]
8849 Font::AnekOdiaSemiCondensedLight,
8850 #[cfg(feature = "static")]
8851 Font::AnekOdiaSemiCondensedRegular,
8852 #[cfg(feature = "static")]
8853 Font::AnekOdiaSemiCondensedMedium,
8854 #[cfg(feature = "static")]
8855 Font::AnekOdiaSemiCondensedSemiBold,
8856 #[cfg(feature = "static")]
8857 Font::AnekOdiaSemiCondensedBold,
8858 #[cfg(feature = "static")]
8859 Font::AnekOdiaSemiCondensedExtraBold,
8860 #[cfg(feature = "static")]
8861 Font::AnekOdiaThin,
8862 #[cfg(feature = "static")]
8863 Font::AnekOdiaExtraLight,
8864 #[cfg(feature = "static")]
8865 Font::AnekOdiaLight,
8866 #[cfg(feature = "static")]
8867 Font::AnekOdiaRegular,
8868 #[cfg(feature = "static")]
8869 Font::AnekOdiaMedium,
8870 #[cfg(feature = "static")]
8871 Font::AnekOdiaSemiBold,
8872 #[cfg(feature = "static")]
8873 Font::AnekOdiaBold,
8874 #[cfg(feature = "static")]
8875 Font::AnekOdiaExtraBold,
8876 #[cfg(feature = "static")]
8877 Font::AnekOdiaSemiExpandedThin,
8878 #[cfg(feature = "static")]
8879 Font::AnekOdiaSemiExpandedExtraLight,
8880 #[cfg(feature = "static")]
8881 Font::AnekOdiaSemiExpandedLight,
8882 #[cfg(feature = "static")]
8883 Font::AnekOdiaSemiExpandedRegular,
8884 #[cfg(feature = "static")]
8885 Font::AnekOdiaSemiExpandedMedium,
8886 #[cfg(feature = "static")]
8887 Font::AnekOdiaSemiExpandedSemiBold,
8888 #[cfg(feature = "static")]
8889 Font::AnekOdiaSemiExpandedBold,
8890 #[cfg(feature = "static")]
8891 Font::AnekOdiaSemiExpandedExtraBold,
8892 #[cfg(feature = "static")]
8893 Font::AnekOdiaExpandedThin,
8894 #[cfg(feature = "static")]
8895 Font::AnekOdiaExpandedExtraLight,
8896 #[cfg(feature = "static")]
8897 Font::AnekOdiaExpandedLight,
8898 #[cfg(feature = "static")]
8899 Font::AnekOdiaExpandedRegular,
8900 #[cfg(feature = "static")]
8901 Font::AnekOdiaExpandedMedium,
8902 #[cfg(feature = "static")]
8903 Font::AnekOdiaExpandedSemiBold,
8904 #[cfg(feature = "static")]
8905 Font::AnekOdiaExpandedBold,
8906 #[cfg(feature = "static")]
8907 Font::AnekOdiaExpandedExtraBold,
8908 #[cfg(feature = "variable")]
8909 Font::AnekOdiaVariable,
8910 #[cfg(feature = "static")]
8911 Font::AnekTamilCondensedThin,
8912 #[cfg(feature = "static")]
8913 Font::AnekTamilCondensedExtraLight,
8914 #[cfg(feature = "static")]
8915 Font::AnekTamilCondensedLight,
8916 #[cfg(feature = "static")]
8917 Font::AnekTamilCondensedRegular,
8918 #[cfg(feature = "static")]
8919 Font::AnekTamilCondensedMedium,
8920 #[cfg(feature = "static")]
8921 Font::AnekTamilCondensedSemiBold,
8922 #[cfg(feature = "static")]
8923 Font::AnekTamilCondensedBold,
8924 #[cfg(feature = "static")]
8925 Font::AnekTamilCondensedExtraBold,
8926 #[cfg(feature = "static")]
8927 Font::AnekTamilSemiCondensedThin,
8928 #[cfg(feature = "static")]
8929 Font::AnekTamilSemiCondensedExtraLight,
8930 #[cfg(feature = "static")]
8931 Font::AnekTamilSemiCondensedLight,
8932 #[cfg(feature = "static")]
8933 Font::AnekTamilSemiCondensedRegular,
8934 #[cfg(feature = "static")]
8935 Font::AnekTamilSemiCondensedMedium,
8936 #[cfg(feature = "static")]
8937 Font::AnekTamilSemiCondensedSemiBold,
8938 #[cfg(feature = "static")]
8939 Font::AnekTamilSemiCondensedBold,
8940 #[cfg(feature = "static")]
8941 Font::AnekTamilSemiCondensedExtraBold,
8942 #[cfg(feature = "static")]
8943 Font::AnekTamilThin,
8944 #[cfg(feature = "static")]
8945 Font::AnekTamilExtraLight,
8946 #[cfg(feature = "static")]
8947 Font::AnekTamilLight,
8948 #[cfg(feature = "static")]
8949 Font::AnekTamilRegular,
8950 #[cfg(feature = "static")]
8951 Font::AnekTamilMedium,
8952 #[cfg(feature = "static")]
8953 Font::AnekTamilSemiBold,
8954 #[cfg(feature = "static")]
8955 Font::AnekTamilBold,
8956 #[cfg(feature = "static")]
8957 Font::AnekTamilExtraBold,
8958 #[cfg(feature = "static")]
8959 Font::AnekTamilSemiExpandedThin,
8960 #[cfg(feature = "static")]
8961 Font::AnekTamilSemiExpandedExtraLight,
8962 #[cfg(feature = "static")]
8963 Font::AnekTamilSemiExpandedLight,
8964 #[cfg(feature = "static")]
8965 Font::AnekTamilSemiExpandedRegular,
8966 #[cfg(feature = "static")]
8967 Font::AnekTamilSemiExpandedMedium,
8968 #[cfg(feature = "static")]
8969 Font::AnekTamilSemiExpandedSemiBold,
8970 #[cfg(feature = "static")]
8971 Font::AnekTamilSemiExpandedBold,
8972 #[cfg(feature = "static")]
8973 Font::AnekTamilSemiExpandedExtraBold,
8974 #[cfg(feature = "static")]
8975 Font::AnekTamilExpandedThin,
8976 #[cfg(feature = "static")]
8977 Font::AnekTamilExpandedExtraLight,
8978 #[cfg(feature = "static")]
8979 Font::AnekTamilExpandedLight,
8980 #[cfg(feature = "static")]
8981 Font::AnekTamilExpandedRegular,
8982 #[cfg(feature = "static")]
8983 Font::AnekTamilExpandedMedium,
8984 #[cfg(feature = "static")]
8985 Font::AnekTamilExpandedSemiBold,
8986 #[cfg(feature = "static")]
8987 Font::AnekTamilExpandedBold,
8988 #[cfg(feature = "static")]
8989 Font::AnekTamilExpandedExtraBold,
8990 #[cfg(feature = "variable")]
8991 Font::AnekTamilVariable,
8992 #[cfg(feature = "static")]
8993 Font::AnekTeluguCondensedThin,
8994 #[cfg(feature = "static")]
8995 Font::AnekTeluguCondensedExtraLight,
8996 #[cfg(feature = "static")]
8997 Font::AnekTeluguCondensedLight,
8998 #[cfg(feature = "static")]
8999 Font::AnekTeluguCondensedRegular,
9000 #[cfg(feature = "static")]
9001 Font::AnekTeluguCondensedMedium,
9002 #[cfg(feature = "static")]
9003 Font::AnekTeluguCondensedSemiBold,
9004 #[cfg(feature = "static")]
9005 Font::AnekTeluguCondensedBold,
9006 #[cfg(feature = "static")]
9007 Font::AnekTeluguCondensedExtraBold,
9008 #[cfg(feature = "static")]
9009 Font::AnekTeluguSemiCondensedThin,
9010 #[cfg(feature = "static")]
9011 Font::AnekTeluguSemiCondensedExtraLight,
9012 #[cfg(feature = "static")]
9013 Font::AnekTeluguSemiCondensedLight,
9014 #[cfg(feature = "static")]
9015 Font::AnekTeluguSemiCondensedRegular,
9016 #[cfg(feature = "static")]
9017 Font::AnekTeluguSemiCondensedMedium,
9018 #[cfg(feature = "static")]
9019 Font::AnekTeluguSemiCondensedSemiBold,
9020 #[cfg(feature = "static")]
9021 Font::AnekTeluguSemiCondensedBold,
9022 #[cfg(feature = "static")]
9023 Font::AnekTeluguSemiCondensedExtraBold,
9024 #[cfg(feature = "static")]
9025 Font::AnekTeluguThin,
9026 #[cfg(feature = "static")]
9027 Font::AnekTeluguExtraLight,
9028 #[cfg(feature = "static")]
9029 Font::AnekTeluguLight,
9030 #[cfg(feature = "static")]
9031 Font::AnekTeluguRegular,
9032 #[cfg(feature = "static")]
9033 Font::AnekTeluguMedium,
9034 #[cfg(feature = "static")]
9035 Font::AnekTeluguSemiBold,
9036 #[cfg(feature = "static")]
9037 Font::AnekTeluguBold,
9038 #[cfg(feature = "static")]
9039 Font::AnekTeluguExtraBold,
9040 #[cfg(feature = "static")]
9041 Font::AnekTeluguSemiExpandedThin,
9042 #[cfg(feature = "static")]
9043 Font::AnekTeluguSemiExpandedExtraLight,
9044 #[cfg(feature = "static")]
9045 Font::AnekTeluguSemiExpandedLight,
9046 #[cfg(feature = "static")]
9047 Font::AnekTeluguSemiExpandedRegular,
9048 #[cfg(feature = "static")]
9049 Font::AnekTeluguSemiExpandedMedium,
9050 #[cfg(feature = "static")]
9051 Font::AnekTeluguSemiExpandedSemiBold,
9052 #[cfg(feature = "static")]
9053 Font::AnekTeluguSemiExpandedBold,
9054 #[cfg(feature = "static")]
9055 Font::AnekTeluguSemiExpandedExtraBold,
9056 #[cfg(feature = "static")]
9057 Font::AnekTeluguExpandedThin,
9058 #[cfg(feature = "static")]
9059 Font::AnekTeluguExpandedExtraLight,
9060 #[cfg(feature = "static")]
9061 Font::AnekTeluguExpandedLight,
9062 #[cfg(feature = "static")]
9063 Font::AnekTeluguExpandedRegular,
9064 #[cfg(feature = "static")]
9065 Font::AnekTeluguExpandedMedium,
9066 #[cfg(feature = "static")]
9067 Font::AnekTeluguExpandedSemiBold,
9068 #[cfg(feature = "static")]
9069 Font::AnekTeluguExpandedBold,
9070 #[cfg(feature = "static")]
9071 Font::AnekTeluguExpandedExtraBold,
9072 #[cfg(feature = "variable")]
9073 Font::AnekTeluguVariable,
9074 #[cfg(feature = "static")]
9075 Font::AntaRegular,
9076 #[cfg(feature = "static")]
9077 Font::AnticRegular,
9078 #[cfg(feature = "static")]
9079 Font::AntonRegular,
9080 #[cfg(feature = "static")]
9081 Font::AntonSCRegular,
9082 #[cfg(feature = "static")]
9083 Font::AntonioThin,
9084 #[cfg(feature = "static")]
9085 Font::AntonioExtraLight,
9086 #[cfg(feature = "static")]
9087 Font::AntonioLight,
9088 #[cfg(feature = "static")]
9089 Font::AntonioRegular,
9090 #[cfg(feature = "static")]
9091 Font::AntonioMedium,
9092 #[cfg(feature = "static")]
9093 Font::AntonioSemiBold,
9094 #[cfg(feature = "static")]
9095 Font::AntonioBold,
9096 #[cfg(feature = "variable")]
9097 Font::AntonioVariable,
9098 #[cfg(feature = "static")]
9099 Font::AnuphanThin,
9100 #[cfg(feature = "static")]
9101 Font::AnuphanExtraLight,
9102 #[cfg(feature = "static")]
9103 Font::AnuphanLight,
9104 #[cfg(feature = "static")]
9105 Font::AnuphanRegular,
9106 #[cfg(feature = "static")]
9107 Font::AnuphanMedium,
9108 #[cfg(feature = "static")]
9109 Font::AnuphanSemiBold,
9110 #[cfg(feature = "static")]
9111 Font::AnuphanBold,
9112 #[cfg(feature = "variable")]
9113 Font::AnuphanVariable,
9114 #[cfg(feature = "static")]
9115 Font::ArchivoExtraCondensedThin,
9116 #[cfg(feature = "static")]
9117 Font::ArchivoExtraCondensedExtraLight,
9118 #[cfg(feature = "static")]
9119 Font::ArchivoExtraCondensedLight,
9120 #[cfg(feature = "static")]
9121 Font::ArchivoExtraCondensedRegular,
9122 #[cfg(feature = "static")]
9123 Font::ArchivoExtraCondensedMedium,
9124 #[cfg(feature = "static")]
9125 Font::ArchivoExtraCondensedSemiBold,
9126 #[cfg(feature = "static")]
9127 Font::ArchivoExtraCondensedBold,
9128 #[cfg(feature = "static")]
9129 Font::ArchivoExtraCondensedExtraBold,
9130 #[cfg(feature = "static")]
9131 Font::ArchivoExtraCondensedBlack,
9132 #[cfg(feature = "static")]
9133 Font::ArchivoCondensedThin,
9134 #[cfg(feature = "static")]
9135 Font::ArchivoCondensedExtraLight,
9136 #[cfg(feature = "static")]
9137 Font::ArchivoCondensedLight,
9138 #[cfg(feature = "static")]
9139 Font::ArchivoCondensedRegular,
9140 #[cfg(feature = "static")]
9141 Font::ArchivoCondensedMedium,
9142 #[cfg(feature = "static")]
9143 Font::ArchivoCondensedSemiBold,
9144 #[cfg(feature = "static")]
9145 Font::ArchivoCondensedBold,
9146 #[cfg(feature = "static")]
9147 Font::ArchivoCondensedExtraBold,
9148 #[cfg(feature = "static")]
9149 Font::ArchivoCondensedBlack,
9150 #[cfg(feature = "static")]
9151 Font::ArchivoSemiCondensedThin,
9152 #[cfg(feature = "static")]
9153 Font::ArchivoSemiCondensedExtraLight,
9154 #[cfg(feature = "static")]
9155 Font::ArchivoSemiCondensedLight,
9156 #[cfg(feature = "static")]
9157 Font::ArchivoSemiCondensedRegular,
9158 #[cfg(feature = "static")]
9159 Font::ArchivoSemiCondensedMedium,
9160 #[cfg(feature = "static")]
9161 Font::ArchivoSemiCondensedSemiBold,
9162 #[cfg(feature = "static")]
9163 Font::ArchivoSemiCondensedBold,
9164 #[cfg(feature = "static")]
9165 Font::ArchivoSemiCondensedExtraBold,
9166 #[cfg(feature = "static")]
9167 Font::ArchivoSemiCondensedBlack,
9168 #[cfg(feature = "static")]
9169 Font::ArchivoThin,
9170 #[cfg(feature = "static")]
9171 Font::ArchivoExtraLight,
9172 #[cfg(feature = "static")]
9173 Font::ArchivoLight,
9174 #[cfg(feature = "static")]
9175 Font::ArchivoRegular,
9176 #[cfg(feature = "static")]
9177 Font::ArchivoMedium,
9178 #[cfg(feature = "static")]
9179 Font::ArchivoSemiBold,
9180 #[cfg(feature = "static")]
9181 Font::ArchivoBold,
9182 #[cfg(feature = "static")]
9183 Font::ArchivoExtraBold,
9184 #[cfg(feature = "static")]
9185 Font::ArchivoBlack,
9186 #[cfg(feature = "static")]
9187 Font::ArchivoSemiExpandedThin,
9188 #[cfg(feature = "static")]
9189 Font::ArchivoSemiExpandedExtraLight,
9190 #[cfg(feature = "static")]
9191 Font::ArchivoSemiExpandedLight,
9192 #[cfg(feature = "static")]
9193 Font::ArchivoSemiExpandedRegular,
9194 #[cfg(feature = "static")]
9195 Font::ArchivoSemiExpandedMedium,
9196 #[cfg(feature = "static")]
9197 Font::ArchivoSemiExpandedSemiBold,
9198 #[cfg(feature = "static")]
9199 Font::ArchivoSemiExpandedBold,
9200 #[cfg(feature = "static")]
9201 Font::ArchivoSemiExpandedExtraBold,
9202 #[cfg(feature = "static")]
9203 Font::ArchivoSemiExpandedBlack,
9204 #[cfg(feature = "static")]
9205 Font::ArchivoExpandedThin,
9206 #[cfg(feature = "static")]
9207 Font::ArchivoExpandedExtraLight,
9208 #[cfg(feature = "static")]
9209 Font::ArchivoExpandedLight,
9210 #[cfg(feature = "static")]
9211 Font::ArchivoExpandedRegular,
9212 #[cfg(feature = "static")]
9213 Font::ArchivoExpandedMedium,
9214 #[cfg(feature = "static")]
9215 Font::ArchivoExpandedSemiBold,
9216 #[cfg(feature = "static")]
9217 Font::ArchivoExpandedBold,
9218 #[cfg(feature = "static")]
9219 Font::ArchivoExpandedExtraBold,
9220 #[cfg(feature = "static")]
9221 Font::ArchivoExpandedBlack,
9222 #[cfg(feature = "static")]
9223 Font::ArchivoExtraCondensedThinItalic,
9224 #[cfg(feature = "static")]
9225 Font::ArchivoExtraCondensedExtraLightItalic,
9226 #[cfg(feature = "static")]
9227 Font::ArchivoExtraCondensedLightItalic,
9228 #[cfg(feature = "static")]
9229 Font::ArchivoExtraCondensedItalic,
9230 #[cfg(feature = "static")]
9231 Font::ArchivoExtraCondensedMediumItalic,
9232 #[cfg(feature = "static")]
9233 Font::ArchivoExtraCondensedSemiBoldItalic,
9234 #[cfg(feature = "static")]
9235 Font::ArchivoExtraCondensedBoldItalic,
9236 #[cfg(feature = "static")]
9237 Font::ArchivoExtraCondensedExtraBoldItalic,
9238 #[cfg(feature = "static")]
9239 Font::ArchivoExtraCondensedBlackItalic,
9240 #[cfg(feature = "static")]
9241 Font::ArchivoCondensedThinItalic,
9242 #[cfg(feature = "static")]
9243 Font::ArchivoCondensedExtraLightItalic,
9244 #[cfg(feature = "static")]
9245 Font::ArchivoCondensedLightItalic,
9246 #[cfg(feature = "static")]
9247 Font::ArchivoCondensedItalic,
9248 #[cfg(feature = "static")]
9249 Font::ArchivoCondensedMediumItalic,
9250 #[cfg(feature = "static")]
9251 Font::ArchivoCondensedSemiBoldItalic,
9252 #[cfg(feature = "static")]
9253 Font::ArchivoCondensedBoldItalic,
9254 #[cfg(feature = "static")]
9255 Font::ArchivoCondensedExtraBoldItalic,
9256 #[cfg(feature = "static")]
9257 Font::ArchivoCondensedBlackItalic,
9258 #[cfg(feature = "static")]
9259 Font::ArchivoSemiCondensedThinItalic,
9260 #[cfg(feature = "static")]
9261 Font::ArchivoSemiCondensedExtraLightItalic,
9262 #[cfg(feature = "static")]
9263 Font::ArchivoSemiCondensedLightItalic,
9264 #[cfg(feature = "static")]
9265 Font::ArchivoSemiCondensedItalic,
9266 #[cfg(feature = "static")]
9267 Font::ArchivoSemiCondensedMediumItalic,
9268 #[cfg(feature = "static")]
9269 Font::ArchivoSemiCondensedSemiBoldItalic,
9270 #[cfg(feature = "static")]
9271 Font::ArchivoSemiCondensedBoldItalic,
9272 #[cfg(feature = "static")]
9273 Font::ArchivoSemiCondensedExtraBoldItalic,
9274 #[cfg(feature = "static")]
9275 Font::ArchivoSemiCondensedBlackItalic,
9276 #[cfg(feature = "static")]
9277 Font::ArchivoThinItalic,
9278 #[cfg(feature = "static")]
9279 Font::ArchivoExtraLightItalic,
9280 #[cfg(feature = "static")]
9281 Font::ArchivoLightItalic,
9282 #[cfg(feature = "static")]
9283 Font::ArchivoItalic,
9284 #[cfg(feature = "static")]
9285 Font::ArchivoMediumItalic,
9286 #[cfg(feature = "static")]
9287 Font::ArchivoSemiBoldItalic,
9288 #[cfg(feature = "static")]
9289 Font::ArchivoBoldItalic,
9290 #[cfg(feature = "static")]
9291 Font::ArchivoExtraBoldItalic,
9292 #[cfg(feature = "static")]
9293 Font::ArchivoBlackItalic,
9294 #[cfg(feature = "static")]
9295 Font::ArchivoSemiExpandedThinItalic,
9296 #[cfg(feature = "static")]
9297 Font::ArchivoSemiExpandedExtraLightItalic,
9298 #[cfg(feature = "static")]
9299 Font::ArchivoSemiExpandedLightItalic,
9300 #[cfg(feature = "static")]
9301 Font::ArchivoSemiExpandedItalic,
9302 #[cfg(feature = "static")]
9303 Font::ArchivoSemiExpandedMediumItalic,
9304 #[cfg(feature = "static")]
9305 Font::ArchivoSemiExpandedSemiBoldItalic,
9306 #[cfg(feature = "static")]
9307 Font::ArchivoSemiExpandedBoldItalic,
9308 #[cfg(feature = "static")]
9309 Font::ArchivoSemiExpandedExtraBoldItalic,
9310 #[cfg(feature = "static")]
9311 Font::ArchivoSemiExpandedBlackItalic,
9312 #[cfg(feature = "static")]
9313 Font::ArchivoExpandedThinItalic,
9314 #[cfg(feature = "static")]
9315 Font::ArchivoExpandedExtraLightItalic,
9316 #[cfg(feature = "static")]
9317 Font::ArchivoExpandedLightItalic,
9318 #[cfg(feature = "static")]
9319 Font::ArchivoExpandedItalic,
9320 #[cfg(feature = "static")]
9321 Font::ArchivoExpandedMediumItalic,
9322 #[cfg(feature = "static")]
9323 Font::ArchivoExpandedSemiBoldItalic,
9324 #[cfg(feature = "static")]
9325 Font::ArchivoExpandedBoldItalic,
9326 #[cfg(feature = "static")]
9327 Font::ArchivoExpandedExtraBoldItalic,
9328 #[cfg(feature = "static")]
9329 Font::ArchivoExpandedBlackItalic,
9330 #[cfg(feature = "variable")]
9331 Font::ArchivoVariable,
9332 #[cfg(feature = "variable")]
9333 Font::ArchivoItalicVariable,
9334 #[cfg(feature = "static")]
9335 Font::ArchivoBlackRegular,
9336 #[cfg(feature = "static")]
9337 Font::ArchivoNarrowRegular,
9338 #[cfg(feature = "static")]
9339 Font::ArchivoNarrowMedium,
9340 #[cfg(feature = "static")]
9341 Font::ArchivoNarrowSemiBold,
9342 #[cfg(feature = "static")]
9343 Font::ArchivoNarrowBold,
9344 #[cfg(feature = "static")]
9345 Font::ArchivoNarrowItalic,
9346 #[cfg(feature = "static")]
9347 Font::ArchivoNarrowMediumItalic,
9348 #[cfg(feature = "static")]
9349 Font::ArchivoNarrowSemiBoldItalic,
9350 #[cfg(feature = "static")]
9351 Font::ArchivoNarrowBoldItalic,
9352 #[cfg(feature = "variable")]
9353 Font::ArchivoNarrowVariable,
9354 #[cfg(feature = "variable")]
9355 Font::ArchivoNarrowItalicVariable,
9356 #[cfg(feature = "static")]
9357 Font::ArimoRegular,
9358 #[cfg(feature = "static")]
9359 Font::ArimoMedium,
9360 #[cfg(feature = "static")]
9361 Font::ArimoSemiBold,
9362 #[cfg(feature = "static")]
9363 Font::ArimoBold,
9364 #[cfg(feature = "static")]
9365 Font::ArimoItalic,
9366 #[cfg(feature = "static")]
9367 Font::ArimoMediumItalic,
9368 #[cfg(feature = "static")]
9369 Font::ArimoSemiBoldItalic,
9370 #[cfg(feature = "static")]
9371 Font::ArimoBoldItalic,
9372 #[cfg(feature = "variable")]
9373 Font::ArimoVariable,
9374 #[cfg(feature = "variable")]
9375 Font::ArimoItalicVariable,
9376 #[cfg(feature = "static")]
9377 Font::ArmataRegular,
9378 #[cfg(feature = "static")]
9379 Font::ArsenalRegular,
9380 #[cfg(feature = "static")]
9381 Font::ArsenalItalic,
9382 #[cfg(feature = "static")]
9383 Font::ArsenalBold,
9384 #[cfg(feature = "static")]
9385 Font::ArsenalBoldItalic,
9386 #[cfg(feature = "static")]
9387 Font::ArsenalSCRegular,
9388 #[cfg(feature = "static")]
9389 Font::ArsenalSCItalic,
9390 #[cfg(feature = "static")]
9391 Font::ArsenalSCBold,
9392 #[cfg(feature = "static")]
9393 Font::ArsenalSCBoldItalic,
9394 #[cfg(feature = "static")]
9395 Font::AryaRegular,
9396 #[cfg(feature = "static")]
9397 Font::AryaBold,
9398 #[cfg(feature = "static")]
9399 Font::AsapCondensedThin,
9400 #[cfg(feature = "static")]
9401 Font::AsapCondensedExtraLight,
9402 #[cfg(feature = "static")]
9403 Font::AsapCondensedLight,
9404 #[cfg(feature = "static")]
9405 Font::AsapCondensedRegular,
9406 #[cfg(feature = "static")]
9407 Font::AsapCondensedMedium,
9408 #[cfg(feature = "static")]
9409 Font::AsapCondensedSemiBold,
9410 #[cfg(feature = "static")]
9411 Font::AsapCondensedBold,
9412 #[cfg(feature = "static")]
9413 Font::AsapCondensedExtraBold,
9414 #[cfg(feature = "static")]
9415 Font::AsapCondensedBlack,
9416 #[cfg(feature = "static")]
9417 Font::AsapSemiCondensedThin,
9418 #[cfg(feature = "static")]
9419 Font::AsapSemiCondensedExtraLight,
9420 #[cfg(feature = "static")]
9421 Font::AsapSemiCondensedLight,
9422 #[cfg(feature = "static")]
9423 Font::AsapSemiCondensedRegular,
9424 #[cfg(feature = "static")]
9425 Font::AsapSemiCondensedMedium,
9426 #[cfg(feature = "static")]
9427 Font::AsapSemiCondensedSemiBold,
9428 #[cfg(feature = "static")]
9429 Font::AsapSemiCondensedBold,
9430 #[cfg(feature = "static")]
9431 Font::AsapSemiCondensedExtraBold,
9432 #[cfg(feature = "static")]
9433 Font::AsapSemiCondensedBlack,
9434 #[cfg(feature = "static")]
9435 Font::AsapThin,
9436 #[cfg(feature = "static")]
9437 Font::AsapExtraLight,
9438 #[cfg(feature = "static")]
9439 Font::AsapLight,
9440 #[cfg(feature = "static")]
9441 Font::AsapRegular,
9442 #[cfg(feature = "static")]
9443 Font::AsapMedium,
9444 #[cfg(feature = "static")]
9445 Font::AsapSemiBold,
9446 #[cfg(feature = "static")]
9447 Font::AsapBold,
9448 #[cfg(feature = "static")]
9449 Font::AsapExtraBold,
9450 #[cfg(feature = "static")]
9451 Font::AsapBlack,
9452 #[cfg(feature = "static")]
9453 Font::AsapSemiExpandedThin,
9454 #[cfg(feature = "static")]
9455 Font::AsapSemiExpandedExtraLight,
9456 #[cfg(feature = "static")]
9457 Font::AsapSemiExpandedLight,
9458 #[cfg(feature = "static")]
9459 Font::AsapSemiExpandedRegular,
9460 #[cfg(feature = "static")]
9461 Font::AsapSemiExpandedMedium,
9462 #[cfg(feature = "static")]
9463 Font::AsapSemiExpandedSemiBold,
9464 #[cfg(feature = "static")]
9465 Font::AsapSemiExpandedBold,
9466 #[cfg(feature = "static")]
9467 Font::AsapSemiExpandedExtraBold,
9468 #[cfg(feature = "static")]
9469 Font::AsapSemiExpandedBlack,
9470 #[cfg(feature = "static")]
9471 Font::AsapExpandedThin,
9472 #[cfg(feature = "static")]
9473 Font::AsapExpandedExtraLight,
9474 #[cfg(feature = "static")]
9475 Font::AsapExpandedLight,
9476 #[cfg(feature = "static")]
9477 Font::AsapExpandedRegular,
9478 #[cfg(feature = "static")]
9479 Font::AsapExpandedMedium,
9480 #[cfg(feature = "static")]
9481 Font::AsapExpandedSemiBold,
9482 #[cfg(feature = "static")]
9483 Font::AsapExpandedBold,
9484 #[cfg(feature = "static")]
9485 Font::AsapExpandedExtraBold,
9486 #[cfg(feature = "static")]
9487 Font::AsapExpandedBlack,
9488 #[cfg(feature = "static")]
9489 Font::AsapCondensedThinItalic,
9490 #[cfg(feature = "static")]
9491 Font::AsapCondensedExtraLightItalic,
9492 #[cfg(feature = "static")]
9493 Font::AsapCondensedLightItalic,
9494 #[cfg(feature = "static")]
9495 Font::AsapCondensedItalic,
9496 #[cfg(feature = "static")]
9497 Font::AsapCondensedMediumItalic,
9498 #[cfg(feature = "static")]
9499 Font::AsapCondensedSemiBoldItalic,
9500 #[cfg(feature = "static")]
9501 Font::AsapCondensedBoldItalic,
9502 #[cfg(feature = "static")]
9503 Font::AsapCondensedExtraBoldItalic,
9504 #[cfg(feature = "static")]
9505 Font::AsapCondensedBlackItalic,
9506 #[cfg(feature = "static")]
9507 Font::AsapSemiCondensedThinItalic,
9508 #[cfg(feature = "static")]
9509 Font::AsapSemiCondensedExtraLightItalic,
9510 #[cfg(feature = "static")]
9511 Font::AsapSemiCondensedLightItalic,
9512 #[cfg(feature = "static")]
9513 Font::AsapSemiCondensedItalic,
9514 #[cfg(feature = "static")]
9515 Font::AsapSemiCondensedMediumItalic,
9516 #[cfg(feature = "static")]
9517 Font::AsapSemiCondensedSemiBoldItalic,
9518 #[cfg(feature = "static")]
9519 Font::AsapSemiCondensedBoldItalic,
9520 #[cfg(feature = "static")]
9521 Font::AsapSemiCondensedExtraBoldItalic,
9522 #[cfg(feature = "static")]
9523 Font::AsapSemiCondensedBlackItalic,
9524 #[cfg(feature = "static")]
9525 Font::AsapThinItalic,
9526 #[cfg(feature = "static")]
9527 Font::AsapExtraLightItalic,
9528 #[cfg(feature = "static")]
9529 Font::AsapLightItalic,
9530 #[cfg(feature = "static")]
9531 Font::AsapItalic,
9532 #[cfg(feature = "static")]
9533 Font::AsapMediumItalic,
9534 #[cfg(feature = "static")]
9535 Font::AsapSemiBoldItalic,
9536 #[cfg(feature = "static")]
9537 Font::AsapBoldItalic,
9538 #[cfg(feature = "static")]
9539 Font::AsapExtraBoldItalic,
9540 #[cfg(feature = "static")]
9541 Font::AsapBlackItalic,
9542 #[cfg(feature = "static")]
9543 Font::AsapSemiExpandedThinItalic,
9544 #[cfg(feature = "static")]
9545 Font::AsapSemiExpandedExtraLightItalic,
9546 #[cfg(feature = "static")]
9547 Font::AsapSemiExpandedLightItalic,
9548 #[cfg(feature = "static")]
9549 Font::AsapSemiExpandedItalic,
9550 #[cfg(feature = "static")]
9551 Font::AsapSemiExpandedMediumItalic,
9552 #[cfg(feature = "static")]
9553 Font::AsapSemiExpandedSemiBoldItalic,
9554 #[cfg(feature = "static")]
9555 Font::AsapSemiExpandedBoldItalic,
9556 #[cfg(feature = "static")]
9557 Font::AsapSemiExpandedExtraBoldItalic,
9558 #[cfg(feature = "static")]
9559 Font::AsapSemiExpandedBlackItalic,
9560 #[cfg(feature = "static")]
9561 Font::AsapExpandedThinItalic,
9562 #[cfg(feature = "static")]
9563 Font::AsapExpandedExtraLightItalic,
9564 #[cfg(feature = "static")]
9565 Font::AsapExpandedLightItalic,
9566 #[cfg(feature = "static")]
9567 Font::AsapExpandedItalic,
9568 #[cfg(feature = "static")]
9569 Font::AsapExpandedMediumItalic,
9570 #[cfg(feature = "static")]
9571 Font::AsapExpandedSemiBoldItalic,
9572 #[cfg(feature = "static")]
9573 Font::AsapExpandedBoldItalic,
9574 #[cfg(feature = "static")]
9575 Font::AsapExpandedExtraBoldItalic,
9576 #[cfg(feature = "static")]
9577 Font::AsapExpandedBlackItalic,
9578 #[cfg(feature = "variable")]
9579 Font::AsapVariable,
9580 #[cfg(feature = "variable")]
9581 Font::AsapItalicVariable,
9582 #[cfg(feature = "static")]
9583 Font::AsapCondensedExtraLight2,
9584 #[cfg(feature = "static")]
9585 Font::AsapCondensedExtraLightItalic2,
9586 #[cfg(feature = "static")]
9587 Font::AsapCondensedLight2,
9588 #[cfg(feature = "static")]
9589 Font::AsapCondensedLightItalic2,
9590 #[cfg(feature = "static")]
9591 Font::AsapCondensedRegular2,
9592 #[cfg(feature = "static")]
9593 Font::AsapCondensedItalic2,
9594 #[cfg(feature = "static")]
9595 Font::AsapCondensedMedium2,
9596 #[cfg(feature = "static")]
9597 Font::AsapCondensedMediumItalic2,
9598 #[cfg(feature = "static")]
9599 Font::AsapCondensedSemiBold2,
9600 #[cfg(feature = "static")]
9601 Font::AsapCondensedSemiBoldItalic2,
9602 #[cfg(feature = "static")]
9603 Font::AsapCondensedBold2,
9604 #[cfg(feature = "static")]
9605 Font::AsapCondensedBoldItalic2,
9606 #[cfg(feature = "static")]
9607 Font::AsapCondensedExtraBold2,
9608 #[cfg(feature = "static")]
9609 Font::AsapCondensedExtraBoldItalic2,
9610 #[cfg(feature = "static")]
9611 Font::AsapCondensedBlack2,
9612 #[cfg(feature = "static")]
9613 Font::AsapCondensedBlackItalic2,
9614 #[cfg(feature = "static")]
9615 Font::AssistantExtraLight,
9616 #[cfg(feature = "static")]
9617 Font::AssistantLight,
9618 #[cfg(feature = "static")]
9619 Font::AssistantRegular,
9620 #[cfg(feature = "static")]
9621 Font::AssistantMedium,
9622 #[cfg(feature = "static")]
9623 Font::AssistantSemiBold,
9624 #[cfg(feature = "static")]
9625 Font::AssistantBold,
9626 #[cfg(feature = "static")]
9627 Font::AssistantExtraBold,
9628 #[cfg(feature = "variable")]
9629 Font::AssistantVariable,
9630 #[cfg(feature = "static")]
9631 Font::AsulRegular,
9632 #[cfg(feature = "static")]
9633 Font::AsulBold,
9634 #[cfg(feature = "static")]
9635 Font::AthitiExtraLight,
9636 #[cfg(feature = "static")]
9637 Font::AthitiLight,
9638 #[cfg(feature = "static")]
9639 Font::AthitiRegular,
9640 #[cfg(feature = "static")]
9641 Font::AthitiMedium,
9642 #[cfg(feature = "static")]
9643 Font::AthitiSemiBold,
9644 #[cfg(feature = "static")]
9645 Font::AthitiBold,
9646 #[cfg(feature = "static")]
9647 Font::AtkinsonHyperlegibleRegular,
9648 #[cfg(feature = "static")]
9649 Font::AtkinsonHyperlegibleItalic,
9650 #[cfg(feature = "static")]
9651 Font::AtkinsonHyperlegibleBold,
9652 #[cfg(feature = "static")]
9653 Font::AtkinsonHyperlegibleBoldItalic,
9654 #[cfg(feature = "static")]
9655 Font::AverageSansRegular,
9656 #[cfg(feature = "static")]
9657 Font::B612Regular,
9658 #[cfg(feature = "static")]
9659 Font::B612Italic,
9660 #[cfg(feature = "static")]
9661 Font::B612Bold,
9662 #[cfg(feature = "static")]
9663 Font::B612BoldItalic,
9664 #[cfg(feature = "static")]
9665 Font::BIZUDGothicRegular,
9666 #[cfg(feature = "static")]
9667 Font::BIZUDGothicBold,
9668 #[cfg(feature = "static")]
9669 Font::BIZUDPGothicRegular,
9670 #[cfg(feature = "static")]
9671 Font::BIZUDPGothicBold,
9672 #[cfg(feature = "static")]
9673 Font::BaiJamjureeExtraLight,
9674 #[cfg(feature = "static")]
9675 Font::BaiJamjureeExtraLightItalic,
9676 #[cfg(feature = "static")]
9677 Font::BaiJamjureeLight,
9678 #[cfg(feature = "static")]
9679 Font::BaiJamjureeLightItalic,
9680 #[cfg(feature = "static")]
9681 Font::BaiJamjureeRegular,
9682 #[cfg(feature = "static")]
9683 Font::BaiJamjureeItalic,
9684 #[cfg(feature = "static")]
9685 Font::BaiJamjureeMedium,
9686 #[cfg(feature = "static")]
9687 Font::BaiJamjureeMediumItalic,
9688 #[cfg(feature = "static")]
9689 Font::BaiJamjureeSemiBold,
9690 #[cfg(feature = "static")]
9691 Font::BaiJamjureeSemiBoldItalic,
9692 #[cfg(feature = "static")]
9693 Font::BaiJamjureeBold,
9694 #[cfg(feature = "static")]
9695 Font::BaiJamjureeBoldItalic,
9696 #[cfg(feature = "static")]
9697 Font::BarlowThin,
9698 #[cfg(feature = "static")]
9699 Font::BarlowThinItalic,
9700 #[cfg(feature = "static")]
9701 Font::BarlowExtraLight,
9702 #[cfg(feature = "static")]
9703 Font::BarlowExtraLightItalic,
9704 #[cfg(feature = "static")]
9705 Font::BarlowLight,
9706 #[cfg(feature = "static")]
9707 Font::BarlowLightItalic,
9708 #[cfg(feature = "static")]
9709 Font::BarlowRegular,
9710 #[cfg(feature = "static")]
9711 Font::BarlowItalic,
9712 #[cfg(feature = "static")]
9713 Font::BarlowMedium,
9714 #[cfg(feature = "static")]
9715 Font::BarlowMediumItalic,
9716 #[cfg(feature = "static")]
9717 Font::BarlowSemiBold,
9718 #[cfg(feature = "static")]
9719 Font::BarlowSemiBoldItalic,
9720 #[cfg(feature = "static")]
9721 Font::BarlowBold,
9722 #[cfg(feature = "static")]
9723 Font::BarlowBoldItalic,
9724 #[cfg(feature = "static")]
9725 Font::BarlowExtraBold,
9726 #[cfg(feature = "static")]
9727 Font::BarlowExtraBoldItalic,
9728 #[cfg(feature = "static")]
9729 Font::BarlowBlack,
9730 #[cfg(feature = "static")]
9731 Font::BarlowBlackItalic,
9732 #[cfg(feature = "static")]
9733 Font::BarlowCondensedThin,
9734 #[cfg(feature = "static")]
9735 Font::BarlowCondensedThinItalic,
9736 #[cfg(feature = "static")]
9737 Font::BarlowCondensedExtraLight,
9738 #[cfg(feature = "static")]
9739 Font::BarlowCondensedExtraLightItalic,
9740 #[cfg(feature = "static")]
9741 Font::BarlowCondensedLight,
9742 #[cfg(feature = "static")]
9743 Font::BarlowCondensedLightItalic,
9744 #[cfg(feature = "static")]
9745 Font::BarlowCondensedRegular,
9746 #[cfg(feature = "static")]
9747 Font::BarlowCondensedItalic,
9748 #[cfg(feature = "static")]
9749 Font::BarlowCondensedMedium,
9750 #[cfg(feature = "static")]
9751 Font::BarlowCondensedMediumItalic,
9752 #[cfg(feature = "static")]
9753 Font::BarlowCondensedSemiBold,
9754 #[cfg(feature = "static")]
9755 Font::BarlowCondensedSemiBoldItalic,
9756 #[cfg(feature = "static")]
9757 Font::BarlowCondensedBold,
9758 #[cfg(feature = "static")]
9759 Font::BarlowCondensedBoldItalic,
9760 #[cfg(feature = "static")]
9761 Font::BarlowCondensedExtraBold,
9762 #[cfg(feature = "static")]
9763 Font::BarlowCondensedExtraBoldItalic,
9764 #[cfg(feature = "static")]
9765 Font::BarlowCondensedBlack,
9766 #[cfg(feature = "static")]
9767 Font::BarlowCondensedBlackItalic,
9768 #[cfg(feature = "static")]
9769 Font::BarlowSemiCondensedThin,
9770 #[cfg(feature = "static")]
9771 Font::BarlowSemiCondensedThinItalic,
9772 #[cfg(feature = "static")]
9773 Font::BarlowSemiCondensedExtraLight,
9774 #[cfg(feature = "static")]
9775 Font::BarlowSemiCondensedExtraLightItalic,
9776 #[cfg(feature = "static")]
9777 Font::BarlowSemiCondensedLight,
9778 #[cfg(feature = "static")]
9779 Font::BarlowSemiCondensedLightItalic,
9780 #[cfg(feature = "static")]
9781 Font::BarlowSemiCondensedRegular,
9782 #[cfg(feature = "static")]
9783 Font::BarlowSemiCondensedItalic,
9784 #[cfg(feature = "static")]
9785 Font::BarlowSemiCondensedMedium,
9786 #[cfg(feature = "static")]
9787 Font::BarlowSemiCondensedMediumItalic,
9788 #[cfg(feature = "static")]
9789 Font::BarlowSemiCondensedSemiBold,
9790 #[cfg(feature = "static")]
9791 Font::BarlowSemiCondensedSemiBoldItalic,
9792 #[cfg(feature = "static")]
9793 Font::BarlowSemiCondensedBold,
9794 #[cfg(feature = "static")]
9795 Font::BarlowSemiCondensedBoldItalic,
9796 #[cfg(feature = "static")]
9797 Font::BarlowSemiCondensedExtraBold,
9798 #[cfg(feature = "static")]
9799 Font::BarlowSemiCondensedExtraBoldItalic,
9800 #[cfg(feature = "static")]
9801 Font::BarlowSemiCondensedBlack,
9802 #[cfg(feature = "static")]
9803 Font::BarlowSemiCondensedBlackItalic,
9804 #[cfg(feature = "static")]
9805 Font::BasicRegular,
9806 #[cfg(feature = "static")]
9807 Font::BayonRegular,
9808 #[cfg(feature = "static")]
9809 Font::BeVietnamProThin,
9810 #[cfg(feature = "static")]
9811 Font::BeVietnamProThinItalic,
9812 #[cfg(feature = "static")]
9813 Font::BeVietnamProExtraLight,
9814 #[cfg(feature = "static")]
9815 Font::BeVietnamProExtraLightItalic,
9816 #[cfg(feature = "static")]
9817 Font::BeVietnamProLight,
9818 #[cfg(feature = "static")]
9819 Font::BeVietnamProLightItalic,
9820 #[cfg(feature = "static")]
9821 Font::BeVietnamProRegular,
9822 #[cfg(feature = "static")]
9823 Font::BeVietnamProItalic,
9824 #[cfg(feature = "static")]
9825 Font::BeVietnamProMedium,
9826 #[cfg(feature = "static")]
9827 Font::BeVietnamProMediumItalic,
9828 #[cfg(feature = "static")]
9829 Font::BeVietnamProSemiBold,
9830 #[cfg(feature = "static")]
9831 Font::BeVietnamProSemiBoldItalic,
9832 #[cfg(feature = "static")]
9833 Font::BeVietnamProBold,
9834 #[cfg(feature = "static")]
9835 Font::BeVietnamProBoldItalic,
9836 #[cfg(feature = "static")]
9837 Font::BeVietnamProExtraBold,
9838 #[cfg(feature = "static")]
9839 Font::BeVietnamProExtraBoldItalic,
9840 #[cfg(feature = "static")]
9841 Font::BeVietnamProBlack,
9842 #[cfg(feature = "static")]
9843 Font::BeVietnamProBlackItalic,
9844 #[cfg(feature = "static")]
9845 Font::BebasNeueRegular,
9846 #[cfg(feature = "static")]
9847 Font::BeirutiExtraLight,
9848 #[cfg(feature = "static")]
9849 Font::BeirutiLight,
9850 #[cfg(feature = "static")]
9851 Font::BeirutiRegular,
9852 #[cfg(feature = "static")]
9853 Font::BeirutiMedium,
9854 #[cfg(feature = "static")]
9855 Font::BeirutiSemiBold,
9856 #[cfg(feature = "static")]
9857 Font::BeirutiBold,
9858 #[cfg(feature = "static")]
9859 Font::BeirutiExtraBold,
9860 #[cfg(feature = "static")]
9861 Font::BeirutiBlack,
9862 #[cfg(feature = "variable")]
9863 Font::BeirutiVariable,
9864 #[cfg(feature = "static")]
9865 Font::BelanosimaRegular,
9866 #[cfg(feature = "static")]
9867 Font::BelanosimaSemiBold,
9868 #[cfg(feature = "static")]
9869 Font::BelanosimaBold,
9870 #[cfg(feature = "static")]
9871 Font::BellezaRegular,
9872 #[cfg(feature = "static")]
9873 Font::BenchNineLight,
9874 #[cfg(feature = "static")]
9875 Font::BenchNineRegular,
9876 #[cfg(feature = "static")]
9877 Font::BenchNineBold,
9878 #[cfg(feature = "static")]
9879 Font::BiryaniExtraLight,
9880 #[cfg(feature = "static")]
9881 Font::BiryaniLight,
9882 #[cfg(feature = "static")]
9883 Font::BiryaniRegular,
9884 #[cfg(feature = "static")]
9885 Font::BiryaniSemiBold,
9886 #[cfg(feature = "static")]
9887 Font::BiryaniBold,
9888 #[cfg(feature = "static")]
9889 Font::BiryaniExtraBold,
9890 #[cfg(feature = "static")]
9891 Font::BiryaniBlack,
9892 #[cfg(feature = "static")]
9893 Font::BlackHanSansRegular,
9894 #[cfg(feature = "static")]
9895 Font::BlinkerThin,
9896 #[cfg(feature = "static")]
9897 Font::BlinkerExtraLight,
9898 #[cfg(feature = "static")]
9899 Font::BlinkerLight,
9900 #[cfg(feature = "static")]
9901 Font::BlinkerRegular,
9902 #[cfg(feature = "static")]
9903 Font::BlinkerSemiBold,
9904 #[cfg(feature = "static")]
9905 Font::BlinkerBold,
9906 #[cfg(feature = "static")]
9907 Font::BlinkerExtraBold,
9908 #[cfg(feature = "static")]
9909 Font::BlinkerBlack,
9910 #[cfg(feature = "static")]
9911 Font::BraahOneRegular,
9912 #[cfg(feature = "static")]
9913 Font::BricolageGrotesqueCondensedExtraLight,
9914 #[cfg(feature = "static")]
9915 Font::BricolageGrotesqueCondensedLight,
9916 #[cfg(feature = "static")]
9917 Font::BricolageGrotesqueCondensedRegular,
9918 #[cfg(feature = "static")]
9919 Font::BricolageGrotesqueCondensedMedium,
9920 #[cfg(feature = "static")]
9921 Font::BricolageGrotesqueCondensedSemiBold,
9922 #[cfg(feature = "static")]
9923 Font::BricolageGrotesqueCondensedBold,
9924 #[cfg(feature = "static")]
9925 Font::BricolageGrotesqueCondensedExtraBold,
9926 #[cfg(feature = "static")]
9927 Font::BricolageGrotesqueSemiCondensedExtraLight,
9928 #[cfg(feature = "static")]
9929 Font::BricolageGrotesqueSemiCondensedLight,
9930 #[cfg(feature = "static")]
9931 Font::BricolageGrotesqueSemiCondensedRegular,
9932 #[cfg(feature = "static")]
9933 Font::BricolageGrotesqueSemiCondensedMedium,
9934 #[cfg(feature = "static")]
9935 Font::BricolageGrotesqueSemiCondensedSemiBold,
9936 #[cfg(feature = "static")]
9937 Font::BricolageGrotesqueSemiCondensedBold,
9938 #[cfg(feature = "static")]
9939 Font::BricolageGrotesqueSemiCondensedExtraBold,
9940 #[cfg(feature = "static")]
9941 Font::BricolageGrotesqueExtraLight,
9942 #[cfg(feature = "static")]
9943 Font::BricolageGrotesqueLight,
9944 #[cfg(feature = "static")]
9945 Font::BricolageGrotesqueRegular,
9946 #[cfg(feature = "static")]
9947 Font::BricolageGrotesqueMedium,
9948 #[cfg(feature = "static")]
9949 Font::BricolageGrotesqueSemiBold,
9950 #[cfg(feature = "static")]
9951 Font::BricolageGrotesqueBold,
9952 #[cfg(feature = "static")]
9953 Font::BricolageGrotesqueExtraBold,
9954 #[cfg(feature = "static")]
9955 Font::BricolageGrotesque24ptCondensedExtraLight,
9956 #[cfg(feature = "static")]
9957 Font::BricolageGrotesque24ptCondensedLight,
9958 #[cfg(feature = "static")]
9959 Font::BricolageGrotesque24ptCondensedRegular,
9960 #[cfg(feature = "static")]
9961 Font::BricolageGrotesque24ptCondensedMedium,
9962 #[cfg(feature = "static")]
9963 Font::BricolageGrotesque24ptCondensedSemiBold,
9964 #[cfg(feature = "static")]
9965 Font::BricolageGrotesque24ptCondensedBold,
9966 #[cfg(feature = "static")]
9967 Font::BricolageGrotesque24ptCondensedExtraBold,
9968 #[cfg(feature = "static")]
9969 Font::BricolageGrotesque24ptSemiCondensedExtraLight,
9970 #[cfg(feature = "static")]
9971 Font::BricolageGrotesque24ptSemiCondensedLight,
9972 #[cfg(feature = "static")]
9973 Font::BricolageGrotesque24ptSemiCondensedRegular,
9974 #[cfg(feature = "static")]
9975 Font::BricolageGrotesque24ptSemiCondensedMedium,
9976 #[cfg(feature = "static")]
9977 Font::BricolageGrotesque24ptSemiCondensedSemiBold,
9978 #[cfg(feature = "static")]
9979 Font::BricolageGrotesque24ptSemiCondensedBold,
9980 #[cfg(feature = "static")]
9981 Font::BricolageGrotesque24ptSemiCondensedExtraBold,
9982 #[cfg(feature = "static")]
9983 Font::BricolageGrotesque24ptExtraLight,
9984 #[cfg(feature = "static")]
9985 Font::BricolageGrotesque24ptLight,
9986 #[cfg(feature = "static")]
9987 Font::BricolageGrotesque24ptRegular,
9988 #[cfg(feature = "static")]
9989 Font::BricolageGrotesque24ptMedium,
9990 #[cfg(feature = "static")]
9991 Font::BricolageGrotesque24ptSemiBold,
9992 #[cfg(feature = "static")]
9993 Font::BricolageGrotesque24ptBold,
9994 #[cfg(feature = "static")]
9995 Font::BricolageGrotesque24ptExtraBold,
9996 #[cfg(feature = "static")]
9997 Font::BricolageGrotesque36ptCondensedExtraLight,
9998 #[cfg(feature = "static")]
9999 Font::BricolageGrotesque36ptCondensedLight,
10000 #[cfg(feature = "static")]
10001 Font::BricolageGrotesque36ptCondensedRegular,
10002 #[cfg(feature = "static")]
10003 Font::BricolageGrotesque36ptCondensedMedium,
10004 #[cfg(feature = "static")]
10005 Font::BricolageGrotesque36ptCondensedSemiBold,
10006 #[cfg(feature = "static")]
10007 Font::BricolageGrotesque36ptCondensedBold,
10008 #[cfg(feature = "static")]
10009 Font::BricolageGrotesque36ptCondensedExtraBold,
10010 #[cfg(feature = "static")]
10011 Font::BricolageGrotesque36ptSemiCondensedExtraLight,
10012 #[cfg(feature = "static")]
10013 Font::BricolageGrotesque36ptSemiCondensedLight,
10014 #[cfg(feature = "static")]
10015 Font::BricolageGrotesque36ptSemiCondensedRegular,
10016 #[cfg(feature = "static")]
10017 Font::BricolageGrotesque36ptSemiCondensedMedium,
10018 #[cfg(feature = "static")]
10019 Font::BricolageGrotesque36ptSemiCondensedSemiBold,
10020 #[cfg(feature = "static")]
10021 Font::BricolageGrotesque36ptSemiCondensedBold,
10022 #[cfg(feature = "static")]
10023 Font::BricolageGrotesque36ptSemiCondensedExtraBold,
10024 #[cfg(feature = "static")]
10025 Font::BricolageGrotesque36ptExtraLight,
10026 #[cfg(feature = "static")]
10027 Font::BricolageGrotesque36ptLight,
10028 #[cfg(feature = "static")]
10029 Font::BricolageGrotesque36ptRegular,
10030 #[cfg(feature = "static")]
10031 Font::BricolageGrotesque36ptMedium,
10032 #[cfg(feature = "static")]
10033 Font::BricolageGrotesque36ptSemiBold,
10034 #[cfg(feature = "static")]
10035 Font::BricolageGrotesque36ptBold,
10036 #[cfg(feature = "static")]
10037 Font::BricolageGrotesque36ptExtraBold,
10038 #[cfg(feature = "static")]
10039 Font::BricolageGrotesque48ptCondensedExtraLight,
10040 #[cfg(feature = "static")]
10041 Font::BricolageGrotesque48ptCondensedLight,
10042 #[cfg(feature = "static")]
10043 Font::BricolageGrotesque48ptCondensedRegular,
10044 #[cfg(feature = "static")]
10045 Font::BricolageGrotesque48ptCondensedMedium,
10046 #[cfg(feature = "static")]
10047 Font::BricolageGrotesque48ptCondensedSemiBold,
10048 #[cfg(feature = "static")]
10049 Font::BricolageGrotesque48ptCondensedBold,
10050 #[cfg(feature = "static")]
10051 Font::BricolageGrotesque48ptCondensedExtraBold,
10052 #[cfg(feature = "static")]
10053 Font::BricolageGrotesque48ptSemiCondensedExtraLight,
10054 #[cfg(feature = "static")]
10055 Font::BricolageGrotesque48ptSemiCondensedLight,
10056 #[cfg(feature = "static")]
10057 Font::BricolageGrotesque48ptSemiCondensedRegular,
10058 #[cfg(feature = "static")]
10059 Font::BricolageGrotesque48ptSemiCondensedMedium,
10060 #[cfg(feature = "static")]
10061 Font::BricolageGrotesque48ptSemiCondensedSemiBold,
10062 #[cfg(feature = "static")]
10063 Font::BricolageGrotesque48ptSemiCondensedBold,
10064 #[cfg(feature = "static")]
10065 Font::BricolageGrotesque48ptSemiCondensedExtraBold,
10066 #[cfg(feature = "static")]
10067 Font::BricolageGrotesque48ptExtraLight,
10068 #[cfg(feature = "static")]
10069 Font::BricolageGrotesque48ptLight,
10070 #[cfg(feature = "static")]
10071 Font::BricolageGrotesque48ptRegular,
10072 #[cfg(feature = "static")]
10073 Font::BricolageGrotesque48ptMedium,
10074 #[cfg(feature = "static")]
10075 Font::BricolageGrotesque48ptSemiBold,
10076 #[cfg(feature = "static")]
10077 Font::BricolageGrotesque48ptBold,
10078 #[cfg(feature = "static")]
10079 Font::BricolageGrotesque48ptExtraBold,
10080 #[cfg(feature = "static")]
10081 Font::BricolageGrotesque72ptCondensedExtraLight,
10082 #[cfg(feature = "static")]
10083 Font::BricolageGrotesque72ptCondensedLight,
10084 #[cfg(feature = "static")]
10085 Font::BricolageGrotesque72ptCondensedRegular,
10086 #[cfg(feature = "static")]
10087 Font::BricolageGrotesque72ptCondensedMedium,
10088 #[cfg(feature = "static")]
10089 Font::BricolageGrotesque72ptCondensedSemiBold,
10090 #[cfg(feature = "static")]
10091 Font::BricolageGrotesque72ptCondensedBold,
10092 #[cfg(feature = "static")]
10093 Font::BricolageGrotesque72ptCondensedExtraBold,
10094 #[cfg(feature = "static")]
10095 Font::BricolageGrotesque72ptSemiCondensedExtraLight,
10096 #[cfg(feature = "static")]
10097 Font::BricolageGrotesque72ptSemiCondensedLight,
10098 #[cfg(feature = "static")]
10099 Font::BricolageGrotesque72ptSemiCondensedRegular,
10100 #[cfg(feature = "static")]
10101 Font::BricolageGrotesque72ptSemiCondensedMedium,
10102 #[cfg(feature = "static")]
10103 Font::BricolageGrotesque72ptSemiCondensedSemiBold,
10104 #[cfg(feature = "static")]
10105 Font::BricolageGrotesque72ptSemiCondensedBold,
10106 #[cfg(feature = "static")]
10107 Font::BricolageGrotesque72ptSemiCondensedExtraBold,
10108 #[cfg(feature = "static")]
10109 Font::BricolageGrotesque72ptExtraLight,
10110 #[cfg(feature = "static")]
10111 Font::BricolageGrotesque72ptLight,
10112 #[cfg(feature = "static")]
10113 Font::BricolageGrotesque72ptRegular,
10114 #[cfg(feature = "static")]
10115 Font::BricolageGrotesque72ptMedium,
10116 #[cfg(feature = "static")]
10117 Font::BricolageGrotesque72ptSemiBold,
10118 #[cfg(feature = "static")]
10119 Font::BricolageGrotesque72ptBold,
10120 #[cfg(feature = "static")]
10121 Font::BricolageGrotesque72ptExtraBold,
10122 #[cfg(feature = "variable")]
10123 Font::BricolageGrotesqueVariable,
10124 #[cfg(feature = "static")]
10125 Font::BubblerOneRegular,
10126 #[cfg(feature = "static")]
10127 Font::CabinCondensedRegular,
10128 #[cfg(feature = "static")]
10129 Font::CabinCondensedMedium,
10130 #[cfg(feature = "static")]
10131 Font::CabinCondensedSemiBold,
10132 #[cfg(feature = "static")]
10133 Font::CabinCondensedBold,
10134 #[cfg(feature = "static")]
10135 Font::CabinSemiCondensedRegular,
10136 #[cfg(feature = "static")]
10137 Font::CabinSemiCondensedMedium,
10138 #[cfg(feature = "static")]
10139 Font::CabinSemiCondensedSemiBold,
10140 #[cfg(feature = "static")]
10141 Font::CabinSemiCondensedBold,
10142 #[cfg(feature = "static")]
10143 Font::CabinRegular,
10144 #[cfg(feature = "static")]
10145 Font::CabinMedium,
10146 #[cfg(feature = "static")]
10147 Font::CabinSemiBold,
10148 #[cfg(feature = "static")]
10149 Font::CabinBold,
10150 #[cfg(feature = "static")]
10151 Font::CabinCondensedItalic,
10152 #[cfg(feature = "static")]
10153 Font::CabinCondensedMediumItalic,
10154 #[cfg(feature = "static")]
10155 Font::CabinCondensedSemiBoldItalic,
10156 #[cfg(feature = "static")]
10157 Font::CabinCondensedBoldItalic,
10158 #[cfg(feature = "static")]
10159 Font::CabinSemiCondensedItalic,
10160 #[cfg(feature = "static")]
10161 Font::CabinSemiCondensedMediumItalic,
10162 #[cfg(feature = "static")]
10163 Font::CabinSemiCondensedSemiBoldItalic,
10164 #[cfg(feature = "static")]
10165 Font::CabinSemiCondensedBoldItalic,
10166 #[cfg(feature = "static")]
10167 Font::CabinItalic,
10168 #[cfg(feature = "static")]
10169 Font::CabinMediumItalic,
10170 #[cfg(feature = "static")]
10171 Font::CabinSemiBoldItalic,
10172 #[cfg(feature = "static")]
10173 Font::CabinBoldItalic,
10174 #[cfg(feature = "variable")]
10175 Font::CabinVariable,
10176 #[cfg(feature = "variable")]
10177 Font::CabinItalicVariable,
10178 #[cfg(feature = "static")]
10179 Font::CabinCondensedRegular2,
10180 #[cfg(feature = "static")]
10181 Font::CabinCondensedMedium2,
10182 #[cfg(feature = "static")]
10183 Font::CabinCondensedSemiBold2,
10184 #[cfg(feature = "static")]
10185 Font::CabinCondensedBold2,
10186 #[cfg(feature = "static")]
10187 Font::CagliostroRegular,
10188 #[cfg(feature = "static")]
10189 Font::CairoExtraLight,
10190 #[cfg(feature = "static")]
10191 Font::CairoLight,
10192 #[cfg(feature = "static")]
10193 Font::CairoRegular,
10194 #[cfg(feature = "static")]
10195 Font::CairoMedium,
10196 #[cfg(feature = "static")]
10197 Font::CairoSemiBold,
10198 #[cfg(feature = "static")]
10199 Font::CairoBold,
10200 #[cfg(feature = "static")]
10201 Font::CairoExtraBold,
10202 #[cfg(feature = "static")]
10203 Font::CairoBlack,
10204 #[cfg(feature = "variable")]
10205 Font::CairoVariable,
10206 #[cfg(feature = "static")]
10207 Font::CairoPlayExtraLight,
10208 #[cfg(feature = "static")]
10209 Font::CairoPlayLight,
10210 #[cfg(feature = "static")]
10211 Font::CairoPlayRegular,
10212 #[cfg(feature = "static")]
10213 Font::CairoPlayMedium,
10214 #[cfg(feature = "static")]
10215 Font::CairoPlaySemiBold,
10216 #[cfg(feature = "static")]
10217 Font::CairoPlayBold,
10218 #[cfg(feature = "static")]
10219 Font::CairoPlayExtraBold,
10220 #[cfg(feature = "static")]
10221 Font::CairoPlayBlack,
10222 #[cfg(feature = "variable")]
10223 Font::CairoPlayVariable,
10224 #[cfg(feature = "static")]
10225 Font::CambayRegular,
10226 #[cfg(feature = "static")]
10227 Font::CambayItalic,
10228 #[cfg(feature = "static")]
10229 Font::CambayBold,
10230 #[cfg(feature = "static")]
10231 Font::CambayBoldItalic,
10232 #[cfg(feature = "static")]
10233 Font::CandalRegular,
10234 #[cfg(feature = "static")]
10235 Font::CantarellRegular,
10236 #[cfg(feature = "static")]
10237 Font::CantarellItalic,
10238 #[cfg(feature = "static")]
10239 Font::CantarellBold,
10240 #[cfg(feature = "static")]
10241 Font::CantarellBoldItalic,
10242 #[cfg(feature = "static")]
10243 Font::CantoraOneRegular,
10244 #[cfg(feature = "static")]
10245 Font::CapriolaRegular,
10246 #[cfg(feature = "static")]
10247 Font::CarlitoRegular,
10248 #[cfg(feature = "static")]
10249 Font::CarlitoItalic,
10250 #[cfg(feature = "static")]
10251 Font::CarlitoBold,
10252 #[cfg(feature = "static")]
10253 Font::CarlitoBoldItalic,
10254 #[cfg(feature = "static")]
10255 Font::CarmeRegular,
10256 #[cfg(feature = "static")]
10257 Font::CarroisGothicRegular,
10258 #[cfg(feature = "static")]
10259 Font::CarroisGothicSCRegular,
10260 #[cfg(feature = "static")]
10261 Font::CatamaranThin,
10262 #[cfg(feature = "static")]
10263 Font::CatamaranExtraLight,
10264 #[cfg(feature = "static")]
10265 Font::CatamaranLight,
10266 #[cfg(feature = "static")]
10267 Font::CatamaranRegular,
10268 #[cfg(feature = "static")]
10269 Font::CatamaranMedium,
10270 #[cfg(feature = "static")]
10271 Font::CatamaranSemiBold,
10272 #[cfg(feature = "static")]
10273 Font::CatamaranBold,
10274 #[cfg(feature = "static")]
10275 Font::CatamaranExtraBold,
10276 #[cfg(feature = "static")]
10277 Font::CatamaranBlack,
10278 #[cfg(feature = "variable")]
10279 Font::CatamaranVariable,
10280 #[cfg(feature = "static")]
10281 Font::ChakraPetchLight,
10282 #[cfg(feature = "static")]
10283 Font::ChakraPetchLightItalic,
10284 #[cfg(feature = "static")]
10285 Font::ChakraPetchRegular,
10286 #[cfg(feature = "static")]
10287 Font::ChakraPetchItalic,
10288 #[cfg(feature = "static")]
10289 Font::ChakraPetchMedium,
10290 #[cfg(feature = "static")]
10291 Font::ChakraPetchMediumItalic,
10292 #[cfg(feature = "static")]
10293 Font::ChakraPetchSemiBold,
10294 #[cfg(feature = "static")]
10295 Font::ChakraPetchSemiBoldItalic,
10296 #[cfg(feature = "static")]
10297 Font::ChakraPetchBold,
10298 #[cfg(feature = "static")]
10299 Font::ChakraPetchBoldItalic,
10300 #[cfg(feature = "static")]
10301 Font::ChangaExtraLight,
10302 #[cfg(feature = "static")]
10303 Font::ChangaLight,
10304 #[cfg(feature = "static")]
10305 Font::ChangaRegular,
10306 #[cfg(feature = "static")]
10307 Font::ChangaMedium,
10308 #[cfg(feature = "static")]
10309 Font::ChangaSemiBold,
10310 #[cfg(feature = "static")]
10311 Font::ChangaBold,
10312 #[cfg(feature = "static")]
10313 Font::ChangaExtraBold,
10314 #[cfg(feature = "variable")]
10315 Font::ChangaVariable,
10316 #[cfg(feature = "static")]
10317 Font::ChathuraThin,
10318 #[cfg(feature = "static")]
10319 Font::ChathuraLight,
10320 #[cfg(feature = "static")]
10321 Font::ChathuraRegular,
10322 #[cfg(feature = "static")]
10323 Font::ChathuraBold,
10324 #[cfg(feature = "static")]
10325 Font::ChathuraExtraBold,
10326 #[cfg(feature = "static")]
10327 Font::ChauPhilomeneOneRegular,
10328 #[cfg(feature = "static")]
10329 Font::ChauPhilomeneOneItalic,
10330 #[cfg(feature = "static")]
10331 Font::ChivoThin,
10332 #[cfg(feature = "static")]
10333 Font::ChivoExtraLight,
10334 #[cfg(feature = "static")]
10335 Font::ChivoLight,
10336 #[cfg(feature = "static")]
10337 Font::ChivoRegular,
10338 #[cfg(feature = "static")]
10339 Font::ChivoMedium,
10340 #[cfg(feature = "static")]
10341 Font::ChivoSemiBold,
10342 #[cfg(feature = "static")]
10343 Font::ChivoBold,
10344 #[cfg(feature = "static")]
10345 Font::ChivoExtraBold,
10346 #[cfg(feature = "static")]
10347 Font::ChivoBlack,
10348 #[cfg(feature = "static")]
10349 Font::ChivoThinItalic,
10350 #[cfg(feature = "static")]
10351 Font::ChivoExtraLightItalic,
10352 #[cfg(feature = "static")]
10353 Font::ChivoLightItalic,
10354 #[cfg(feature = "static")]
10355 Font::ChivoItalic,
10356 #[cfg(feature = "static")]
10357 Font::ChivoMediumItalic,
10358 #[cfg(feature = "static")]
10359 Font::ChivoSemiBoldItalic,
10360 #[cfg(feature = "static")]
10361 Font::ChivoBoldItalic,
10362 #[cfg(feature = "static")]
10363 Font::ChivoExtraBoldItalic,
10364 #[cfg(feature = "static")]
10365 Font::ChivoBlackItalic,
10366 #[cfg(feature = "variable")]
10367 Font::ChivoVariable,
10368 #[cfg(feature = "variable")]
10369 Font::ChivoItalicVariable,
10370 #[cfg(feature = "static")]
10371 Font::ChocolateClassicalSansRegular,
10372 #[cfg(feature = "static")]
10373 Font::CommeThin,
10374 #[cfg(feature = "static")]
10375 Font::CommeExtraLight,
10376 #[cfg(feature = "static")]
10377 Font::CommeLight,
10378 #[cfg(feature = "static")]
10379 Font::CommeRegular,
10380 #[cfg(feature = "static")]
10381 Font::CommeMedium,
10382 #[cfg(feature = "static")]
10383 Font::CommeSemiBold,
10384 #[cfg(feature = "static")]
10385 Font::CommeBold,
10386 #[cfg(feature = "static")]
10387 Font::CommeExtraBold,
10388 #[cfg(feature = "static")]
10389 Font::CommeBlack,
10390 #[cfg(feature = "variable")]
10391 Font::CommeVariable,
10392 #[cfg(feature = "static")]
10393 Font::CommissionerThin,
10394 #[cfg(feature = "static")]
10395 Font::CommissionerExtraLight,
10396 #[cfg(feature = "static")]
10397 Font::CommissionerLight,
10398 #[cfg(feature = "static")]
10399 Font::CommissionerRegular,
10400 #[cfg(feature = "static")]
10401 Font::CommissionerMedium,
10402 #[cfg(feature = "static")]
10403 Font::CommissionerSemiBold,
10404 #[cfg(feature = "static")]
10405 Font::CommissionerBold,
10406 #[cfg(feature = "static")]
10407 Font::CommissionerExtraBold,
10408 #[cfg(feature = "static")]
10409 Font::CommissionerBlack,
10410 #[cfg(feature = "variable")]
10411 Font::CommissionerVariable,
10412 #[cfg(feature = "static")]
10413 Font::ConvergenceRegular,
10414 #[cfg(feature = "static")]
10415 Font::CuprumRegular,
10416 #[cfg(feature = "static")]
10417 Font::CuprumMedium,
10418 #[cfg(feature = "static")]
10419 Font::CuprumSemiBold,
10420 #[cfg(feature = "static")]
10421 Font::CuprumBold,
10422 #[cfg(feature = "static")]
10423 Font::CuprumItalic,
10424 #[cfg(feature = "static")]
10425 Font::CuprumMediumItalic,
10426 #[cfg(feature = "static")]
10427 Font::CuprumSemiBoldItalic,
10428 #[cfg(feature = "static")]
10429 Font::CuprumBoldItalic,
10430 #[cfg(feature = "variable")]
10431 Font::CuprumVariable,
10432 #[cfg(feature = "variable")]
10433 Font::CuprumItalicVariable,
10434 #[cfg(feature = "static")]
10435 Font::DMSansThin,
10436 #[cfg(feature = "static")]
10437 Font::DMSansExtraLight,
10438 #[cfg(feature = "static")]
10439 Font::DMSansLight,
10440 #[cfg(feature = "static")]
10441 Font::DMSansRegular,
10442 #[cfg(feature = "static")]
10443 Font::DMSansMedium,
10444 #[cfg(feature = "static")]
10445 Font::DMSansSemiBold,
10446 #[cfg(feature = "static")]
10447 Font::DMSansBold,
10448 #[cfg(feature = "static")]
10449 Font::DMSansExtraBold,
10450 #[cfg(feature = "static")]
10451 Font::DMSansBlack,
10452 #[cfg(feature = "static")]
10453 Font::DMSans18ptThin,
10454 #[cfg(feature = "static")]
10455 Font::DMSans18ptExtraLight,
10456 #[cfg(feature = "static")]
10457 Font::DMSans18ptLight,
10458 #[cfg(feature = "static")]
10459 Font::DMSans18ptRegular,
10460 #[cfg(feature = "static")]
10461 Font::DMSans18ptMedium,
10462 #[cfg(feature = "static")]
10463 Font::DMSans18ptSemiBold,
10464 #[cfg(feature = "static")]
10465 Font::DMSans18ptBold,
10466 #[cfg(feature = "static")]
10467 Font::DMSans18ptExtraBold,
10468 #[cfg(feature = "static")]
10469 Font::DMSans18ptBlack,
10470 #[cfg(feature = "static")]
10471 Font::DMSans24ptThin,
10472 #[cfg(feature = "static")]
10473 Font::DMSans24ptExtraLight,
10474 #[cfg(feature = "static")]
10475 Font::DMSans24ptLight,
10476 #[cfg(feature = "static")]
10477 Font::DMSans24ptRegular,
10478 #[cfg(feature = "static")]
10479 Font::DMSans24ptMedium,
10480 #[cfg(feature = "static")]
10481 Font::DMSans24ptSemiBold,
10482 #[cfg(feature = "static")]
10483 Font::DMSans24ptBold,
10484 #[cfg(feature = "static")]
10485 Font::DMSans24ptExtraBold,
10486 #[cfg(feature = "static")]
10487 Font::DMSans24ptBlack,
10488 #[cfg(feature = "static")]
10489 Font::DMSans36ptThin,
10490 #[cfg(feature = "static")]
10491 Font::DMSans36ptExtraLight,
10492 #[cfg(feature = "static")]
10493 Font::DMSans36ptLight,
10494 #[cfg(feature = "static")]
10495 Font::DMSans36ptRegular,
10496 #[cfg(feature = "static")]
10497 Font::DMSans36ptMedium,
10498 #[cfg(feature = "static")]
10499 Font::DMSans36ptSemiBold,
10500 #[cfg(feature = "static")]
10501 Font::DMSans36ptBold,
10502 #[cfg(feature = "static")]
10503 Font::DMSans36ptExtraBold,
10504 #[cfg(feature = "static")]
10505 Font::DMSans36ptBlack,
10506 #[cfg(feature = "static")]
10507 Font::DMSansThinItalic,
10508 #[cfg(feature = "static")]
10509 Font::DMSansExtraLightItalic,
10510 #[cfg(feature = "static")]
10511 Font::DMSansLightItalic,
10512 #[cfg(feature = "static")]
10513 Font::DMSansItalic,
10514 #[cfg(feature = "static")]
10515 Font::DMSansMediumItalic,
10516 #[cfg(feature = "static")]
10517 Font::DMSansSemiBoldItalic,
10518 #[cfg(feature = "static")]
10519 Font::DMSansBoldItalic,
10520 #[cfg(feature = "static")]
10521 Font::DMSansExtraBoldItalic,
10522 #[cfg(feature = "static")]
10523 Font::DMSansBlackItalic,
10524 #[cfg(feature = "static")]
10525 Font::DMSans18ptThinItalic,
10526 #[cfg(feature = "static")]
10527 Font::DMSans18ptExtraLightItalic,
10528 #[cfg(feature = "static")]
10529 Font::DMSans18ptLightItalic,
10530 #[cfg(feature = "static")]
10531 Font::DMSans18ptItalic,
10532 #[cfg(feature = "static")]
10533 Font::DMSans18ptMediumItalic,
10534 #[cfg(feature = "static")]
10535 Font::DMSans18ptSemiBoldItalic,
10536 #[cfg(feature = "static")]
10537 Font::DMSans18ptBoldItalic,
10538 #[cfg(feature = "static")]
10539 Font::DMSans18ptExtraBoldItalic,
10540 #[cfg(feature = "static")]
10541 Font::DMSans18ptBlackItalic,
10542 #[cfg(feature = "static")]
10543 Font::DMSans24ptThinItalic,
10544 #[cfg(feature = "static")]
10545 Font::DMSans24ptExtraLightItalic,
10546 #[cfg(feature = "static")]
10547 Font::DMSans24ptLightItalic,
10548 #[cfg(feature = "static")]
10549 Font::DMSans24ptItalic,
10550 #[cfg(feature = "static")]
10551 Font::DMSans24ptMediumItalic,
10552 #[cfg(feature = "static")]
10553 Font::DMSans24ptSemiBoldItalic,
10554 #[cfg(feature = "static")]
10555 Font::DMSans24ptBoldItalic,
10556 #[cfg(feature = "static")]
10557 Font::DMSans24ptExtraBoldItalic,
10558 #[cfg(feature = "static")]
10559 Font::DMSans24ptBlackItalic,
10560 #[cfg(feature = "static")]
10561 Font::DMSans36ptThinItalic,
10562 #[cfg(feature = "static")]
10563 Font::DMSans36ptExtraLightItalic,
10564 #[cfg(feature = "static")]
10565 Font::DMSans36ptLightItalic,
10566 #[cfg(feature = "static")]
10567 Font::DMSans36ptItalic,
10568 #[cfg(feature = "static")]
10569 Font::DMSans36ptMediumItalic,
10570 #[cfg(feature = "static")]
10571 Font::DMSans36ptSemiBoldItalic,
10572 #[cfg(feature = "static")]
10573 Font::DMSans36ptBoldItalic,
10574 #[cfg(feature = "static")]
10575 Font::DMSans36ptExtraBoldItalic,
10576 #[cfg(feature = "static")]
10577 Font::DMSans36ptBlackItalic,
10578 #[cfg(feature = "variable")]
10579 Font::DMSansVariable,
10580 #[cfg(feature = "variable")]
10581 Font::DMSansItalicVariable,
10582 #[cfg(feature = "static")]
10583 Font::DarkerGrotesqueLight,
10584 #[cfg(feature = "static")]
10585 Font::DarkerGrotesqueRegular,
10586 #[cfg(feature = "static")]
10587 Font::DarkerGrotesqueMedium,
10588 #[cfg(feature = "static")]
10589 Font::DarkerGrotesqueSemiBold,
10590 #[cfg(feature = "static")]
10591 Font::DarkerGrotesqueBold,
10592 #[cfg(feature = "static")]
10593 Font::DarkerGrotesqueExtraBold,
10594 #[cfg(feature = "static")]
10595 Font::DarkerGrotesqueBlack,
10596 #[cfg(feature = "variable")]
10597 Font::DarkerGrotesqueVariable,
10598 #[cfg(feature = "static")]
10599 Font::DaysOneRegular,
10600 #[cfg(feature = "static")]
10601 Font::DenkOneRegular,
10602 #[cfg(feature = "static")]
10603 Font::DhurjatiRegular,
10604 #[cfg(feature = "static")]
10605 Font::DidactGothicRegular,
10606 #[cfg(feature = "static")]
10607 Font::DoHyeonRegular,
10608 #[cfg(feature = "static")]
10609 Font::DongleLight,
10610 #[cfg(feature = "static")]
10611 Font::DongleRegular,
10612 #[cfg(feature = "static")]
10613 Font::DongleBold,
10614 #[cfg(feature = "static")]
10615 Font::DoppioOneRegular,
10616 #[cfg(feature = "static")]
10617 Font::DorsaRegular,
10618 #[cfg(feature = "static")]
10619 Font::DosisExtraLight,
10620 #[cfg(feature = "static")]
10621 Font::DosisLight,
10622 #[cfg(feature = "static")]
10623 Font::DosisRegular,
10624 #[cfg(feature = "static")]
10625 Font::DosisMedium,
10626 #[cfg(feature = "static")]
10627 Font::DosisSemiBold,
10628 #[cfg(feature = "static")]
10629 Font::DosisBold,
10630 #[cfg(feature = "static")]
10631 Font::DosisExtraBold,
10632 #[cfg(feature = "variable")]
10633 Font::DosisVariable,
10634 #[cfg(feature = "static")]
10635 Font::DotGothic16Regular,
10636 #[cfg(feature = "static")]
10637 Font::DuruSansRegular,
10638 #[cfg(feature = "static")]
10639 Font::EconomicaRegular,
10640 #[cfg(feature = "static")]
10641 Font::EconomicaItalic,
10642 #[cfg(feature = "static")]
10643 Font::EconomicaBold,
10644 #[cfg(feature = "static")]
10645 Font::EconomicaBoldItalic,
10646 #[cfg(feature = "static")]
10647 Font::ElMessiriRegular,
10648 #[cfg(feature = "static")]
10649 Font::ElMessiriMedium,
10650 #[cfg(feature = "static")]
10651 Font::ElMessiriSemiBold,
10652 #[cfg(feature = "static")]
10653 Font::ElMessiriBold,
10654 #[cfg(feature = "variable")]
10655 Font::ElMessiriVariable,
10656 #[cfg(feature = "static")]
10657 Font::ElectrolizeRegular,
10658 #[cfg(feature = "static")]
10659 Font::EncodeSansCondensedThin,
10660 #[cfg(feature = "static")]
10661 Font::EncodeSansCondensedExtraLight,
10662 #[cfg(feature = "static")]
10663 Font::EncodeSansCondensedLight,
10664 #[cfg(feature = "static")]
10665 Font::EncodeSansCondensedRegular,
10666 #[cfg(feature = "static")]
10667 Font::EncodeSansCondensedMedium,
10668 #[cfg(feature = "static")]
10669 Font::EncodeSansCondensedSemiBold,
10670 #[cfg(feature = "static")]
10671 Font::EncodeSansCondensedBold,
10672 #[cfg(feature = "static")]
10673 Font::EncodeSansCondensedExtraBold,
10674 #[cfg(feature = "static")]
10675 Font::EncodeSansCondensedBlack,
10676 #[cfg(feature = "static")]
10677 Font::EncodeSansSemiCondensedThin,
10678 #[cfg(feature = "static")]
10679 Font::EncodeSansSemiCondensedExtraLight,
10680 #[cfg(feature = "static")]
10681 Font::EncodeSansSemiCondensedLight,
10682 #[cfg(feature = "static")]
10683 Font::EncodeSansSemiCondensedRegular,
10684 #[cfg(feature = "static")]
10685 Font::EncodeSansSemiCondensedMedium,
10686 #[cfg(feature = "static")]
10687 Font::EncodeSansSemiCondensedSemiBold,
10688 #[cfg(feature = "static")]
10689 Font::EncodeSansSemiCondensedBold,
10690 #[cfg(feature = "static")]
10691 Font::EncodeSansSemiCondensedExtraBold,
10692 #[cfg(feature = "static")]
10693 Font::EncodeSansSemiCondensedBlack,
10694 #[cfg(feature = "static")]
10695 Font::EncodeSansThin,
10696 #[cfg(feature = "static")]
10697 Font::EncodeSansExtraLight,
10698 #[cfg(feature = "static")]
10699 Font::EncodeSansLight,
10700 #[cfg(feature = "static")]
10701 Font::EncodeSansRegular,
10702 #[cfg(feature = "static")]
10703 Font::EncodeSansMedium,
10704 #[cfg(feature = "static")]
10705 Font::EncodeSansSemiBold,
10706 #[cfg(feature = "static")]
10707 Font::EncodeSansBold,
10708 #[cfg(feature = "static")]
10709 Font::EncodeSansExtraBold,
10710 #[cfg(feature = "static")]
10711 Font::EncodeSansBlack,
10712 #[cfg(feature = "static")]
10713 Font::EncodeSansSemiExpandedThin,
10714 #[cfg(feature = "static")]
10715 Font::EncodeSansSemiExpandedExtraLight,
10716 #[cfg(feature = "static")]
10717 Font::EncodeSansSemiExpandedLight,
10718 #[cfg(feature = "static")]
10719 Font::EncodeSansSemiExpandedRegular,
10720 #[cfg(feature = "static")]
10721 Font::EncodeSansSemiExpandedMedium,
10722 #[cfg(feature = "static")]
10723 Font::EncodeSansSemiExpandedSemiBold,
10724 #[cfg(feature = "static")]
10725 Font::EncodeSansSemiExpandedBold,
10726 #[cfg(feature = "static")]
10727 Font::EncodeSansSemiExpandedExtraBold,
10728 #[cfg(feature = "static")]
10729 Font::EncodeSansSemiExpandedBlack,
10730 #[cfg(feature = "static")]
10731 Font::EncodeSansExpandedThin,
10732 #[cfg(feature = "static")]
10733 Font::EncodeSansExpandedExtraLight,
10734 #[cfg(feature = "static")]
10735 Font::EncodeSansExpandedLight,
10736 #[cfg(feature = "static")]
10737 Font::EncodeSansExpandedRegular,
10738 #[cfg(feature = "static")]
10739 Font::EncodeSansExpandedMedium,
10740 #[cfg(feature = "static")]
10741 Font::EncodeSansExpandedSemiBold,
10742 #[cfg(feature = "static")]
10743 Font::EncodeSansExpandedBold,
10744 #[cfg(feature = "static")]
10745 Font::EncodeSansExpandedExtraBold,
10746 #[cfg(feature = "static")]
10747 Font::EncodeSansExpandedBlack,
10748 #[cfg(feature = "variable")]
10749 Font::EncodeSansVariable,
10750 #[cfg(feature = "static")]
10751 Font::EncodeSansCondensedThin2,
10752 #[cfg(feature = "static")]
10753 Font::EncodeSansCondensedExtraLight2,
10754 #[cfg(feature = "static")]
10755 Font::EncodeSansCondensedLight2,
10756 #[cfg(feature = "static")]
10757 Font::EncodeSansCondensedRegular2,
10758 #[cfg(feature = "static")]
10759 Font::EncodeSansCondensedMedium2,
10760 #[cfg(feature = "static")]
10761 Font::EncodeSansCondensedSemiBold2,
10762 #[cfg(feature = "static")]
10763 Font::EncodeSansCondensedBold2,
10764 #[cfg(feature = "static")]
10765 Font::EncodeSansCondensedExtraBold2,
10766 #[cfg(feature = "static")]
10767 Font::EncodeSansCondensedBlack2,
10768 #[cfg(feature = "static")]
10769 Font::EncodeSansExpandedThin2,
10770 #[cfg(feature = "static")]
10771 Font::EncodeSansExpandedExtraLight2,
10772 #[cfg(feature = "static")]
10773 Font::EncodeSansExpandedLight2,
10774 #[cfg(feature = "static")]
10775 Font::EncodeSansExpandedRegular2,
10776 #[cfg(feature = "static")]
10777 Font::EncodeSansExpandedMedium2,
10778 #[cfg(feature = "static")]
10779 Font::EncodeSansExpandedSemiBold2,
10780 #[cfg(feature = "static")]
10781 Font::EncodeSansExpandedBold2,
10782 #[cfg(feature = "static")]
10783 Font::EncodeSansExpandedExtraBold2,
10784 #[cfg(feature = "static")]
10785 Font::EncodeSansExpandedBlack2,
10786 #[cfg(feature = "static")]
10787 Font::EncodeSansSCCondensedThin,
10788 #[cfg(feature = "static")]
10789 Font::EncodeSansSCCondensedExtraLight,
10790 #[cfg(feature = "static")]
10791 Font::EncodeSansSCCondensedLight,
10792 #[cfg(feature = "static")]
10793 Font::EncodeSansSCCondensedRegular,
10794 #[cfg(feature = "static")]
10795 Font::EncodeSansSCCondensedMedium,
10796 #[cfg(feature = "static")]
10797 Font::EncodeSansSCCondensedSemiBold,
10798 #[cfg(feature = "static")]
10799 Font::EncodeSansSCCondensedBold,
10800 #[cfg(feature = "static")]
10801 Font::EncodeSansSCCondensedExtraBold,
10802 #[cfg(feature = "static")]
10803 Font::EncodeSansSCCondensedBlack,
10804 #[cfg(feature = "static")]
10805 Font::EncodeSansSCSemiCondensedThin,
10806 #[cfg(feature = "static")]
10807 Font::EncodeSansSCSemiCondensedExtraLight,
10808 #[cfg(feature = "static")]
10809 Font::EncodeSansSCSemiCondensedLight,
10810 #[cfg(feature = "static")]
10811 Font::EncodeSansSCSemiCondensedRegular,
10812 #[cfg(feature = "static")]
10813 Font::EncodeSansSCSemiCondensedMedium,
10814 #[cfg(feature = "static")]
10815 Font::EncodeSansSCSemiCondensedSemiBold,
10816 #[cfg(feature = "static")]
10817 Font::EncodeSansSCSemiCondensedBold,
10818 #[cfg(feature = "static")]
10819 Font::EncodeSansSCSemiCondensedExtraBold,
10820 #[cfg(feature = "static")]
10821 Font::EncodeSansSCSemiCondensedBlack,
10822 #[cfg(feature = "static")]
10823 Font::EncodeSansSCThin,
10824 #[cfg(feature = "static")]
10825 Font::EncodeSansSCExtraLight,
10826 #[cfg(feature = "static")]
10827 Font::EncodeSansSCLight,
10828 #[cfg(feature = "static")]
10829 Font::EncodeSansSCRegular,
10830 #[cfg(feature = "static")]
10831 Font::EncodeSansSCMedium,
10832 #[cfg(feature = "static")]
10833 Font::EncodeSansSCSemiBold,
10834 #[cfg(feature = "static")]
10835 Font::EncodeSansSCBold,
10836 #[cfg(feature = "static")]
10837 Font::EncodeSansSCExtraBold,
10838 #[cfg(feature = "static")]
10839 Font::EncodeSansSCBlack,
10840 #[cfg(feature = "static")]
10841 Font::EncodeSansSCSemiExpandedThin,
10842 #[cfg(feature = "static")]
10843 Font::EncodeSansSCSemiExpandedExtraLight,
10844 #[cfg(feature = "static")]
10845 Font::EncodeSansSCSemiExpandedLight,
10846 #[cfg(feature = "static")]
10847 Font::EncodeSansSCSemiExpandedRegular,
10848 #[cfg(feature = "static")]
10849 Font::EncodeSansSCSemiExpandedMedium,
10850 #[cfg(feature = "static")]
10851 Font::EncodeSansSCSemiExpandedSemiBold,
10852 #[cfg(feature = "static")]
10853 Font::EncodeSansSCSemiExpandedBold,
10854 #[cfg(feature = "static")]
10855 Font::EncodeSansSCSemiExpandedExtraBold,
10856 #[cfg(feature = "static")]
10857 Font::EncodeSansSCSemiExpandedBlack,
10858 #[cfg(feature = "static")]
10859 Font::EncodeSansSCExpandedThin,
10860 #[cfg(feature = "static")]
10861 Font::EncodeSansSCExpandedExtraLight,
10862 #[cfg(feature = "static")]
10863 Font::EncodeSansSCExpandedLight,
10864 #[cfg(feature = "static")]
10865 Font::EncodeSansSCExpandedRegular,
10866 #[cfg(feature = "static")]
10867 Font::EncodeSansSCExpandedMedium,
10868 #[cfg(feature = "static")]
10869 Font::EncodeSansSCExpandedSemiBold,
10870 #[cfg(feature = "static")]
10871 Font::EncodeSansSCExpandedBold,
10872 #[cfg(feature = "static")]
10873 Font::EncodeSansSCExpandedExtraBold,
10874 #[cfg(feature = "static")]
10875 Font::EncodeSansSCExpandedBlack,
10876 #[cfg(feature = "variable")]
10877 Font::EncodeSansSCVariable,
10878 #[cfg(feature = "static")]
10879 Font::EncodeSansSemiCondensedThin2,
10880 #[cfg(feature = "static")]
10881 Font::EncodeSansSemiCondensedExtraLight2,
10882 #[cfg(feature = "static")]
10883 Font::EncodeSansSemiCondensedLight2,
10884 #[cfg(feature = "static")]
10885 Font::EncodeSansSemiCondensedRegular2,
10886 #[cfg(feature = "static")]
10887 Font::EncodeSansSemiCondensedMedium2,
10888 #[cfg(feature = "static")]
10889 Font::EncodeSansSemiCondensedSemiBold2,
10890 #[cfg(feature = "static")]
10891 Font::EncodeSansSemiCondensedBold2,
10892 #[cfg(feature = "static")]
10893 Font::EncodeSansSemiCondensedExtraBold2,
10894 #[cfg(feature = "static")]
10895 Font::EncodeSansSemiCondensedBlack2,
10896 #[cfg(feature = "static")]
10897 Font::EncodeSansSemiExpandedThin2,
10898 #[cfg(feature = "static")]
10899 Font::EncodeSansSemiExpandedExtraLight2,
10900 #[cfg(feature = "static")]
10901 Font::EncodeSansSemiExpandedLight2,
10902 #[cfg(feature = "static")]
10903 Font::EncodeSansSemiExpandedRegular2,
10904 #[cfg(feature = "static")]
10905 Font::EncodeSansSemiExpandedMedium2,
10906 #[cfg(feature = "static")]
10907 Font::EncodeSansSemiExpandedSemiBold2,
10908 #[cfg(feature = "static")]
10909 Font::EncodeSansSemiExpandedBold2,
10910 #[cfg(feature = "static")]
10911 Font::EncodeSansSemiExpandedExtraBold2,
10912 #[cfg(feature = "static")]
10913 Font::EncodeSansSemiExpandedBlack2,
10914 #[cfg(feature = "static")]
10915 Font::EnglebertRegular,
10916 #[cfg(feature = "static")]
10917 Font::EpilogueThin,
10918 #[cfg(feature = "static")]
10919 Font::EpilogueExtraLight,
10920 #[cfg(feature = "static")]
10921 Font::EpilogueLight,
10922 #[cfg(feature = "static")]
10923 Font::EpilogueRegular,
10924 #[cfg(feature = "static")]
10925 Font::EpilogueMedium,
10926 #[cfg(feature = "static")]
10927 Font::EpilogueSemiBold,
10928 #[cfg(feature = "static")]
10929 Font::EpilogueBold,
10930 #[cfg(feature = "static")]
10931 Font::EpilogueExtraBold,
10932 #[cfg(feature = "static")]
10933 Font::EpilogueBlack,
10934 #[cfg(feature = "static")]
10935 Font::EpilogueThinItalic,
10936 #[cfg(feature = "static")]
10937 Font::EpilogueExtraLightItalic,
10938 #[cfg(feature = "static")]
10939 Font::EpilogueLightItalic,
10940 #[cfg(feature = "static")]
10941 Font::EpilogueItalic,
10942 #[cfg(feature = "static")]
10943 Font::EpilogueMediumItalic,
10944 #[cfg(feature = "static")]
10945 Font::EpilogueSemiBoldItalic,
10946 #[cfg(feature = "static")]
10947 Font::EpilogueBoldItalic,
10948 #[cfg(feature = "static")]
10949 Font::EpilogueExtraBoldItalic,
10950 #[cfg(feature = "static")]
10951 Font::EpilogueBlackItalic,
10952 #[cfg(feature = "variable")]
10953 Font::EpilogueVariable,
10954 #[cfg(feature = "variable")]
10955 Font::EpilogueItalicVariable,
10956 #[cfg(feature = "static")]
10957 Font::ExoThin,
10958 #[cfg(feature = "static")]
10959 Font::ExoExtraLight,
10960 #[cfg(feature = "static")]
10961 Font::ExoLight,
10962 #[cfg(feature = "static")]
10963 Font::ExoRegular,
10964 #[cfg(feature = "static")]
10965 Font::ExoMedium,
10966 #[cfg(feature = "static")]
10967 Font::ExoSemiBold,
10968 #[cfg(feature = "static")]
10969 Font::ExoBold,
10970 #[cfg(feature = "static")]
10971 Font::ExoExtraBold,
10972 #[cfg(feature = "static")]
10973 Font::ExoBlack,
10974 #[cfg(feature = "static")]
10975 Font::ExoThinItalic,
10976 #[cfg(feature = "static")]
10977 Font::ExoExtraLightItalic,
10978 #[cfg(feature = "static")]
10979 Font::ExoLightItalic,
10980 #[cfg(feature = "static")]
10981 Font::ExoItalic,
10982 #[cfg(feature = "static")]
10983 Font::ExoMediumItalic,
10984 #[cfg(feature = "static")]
10985 Font::ExoSemiBoldItalic,
10986 #[cfg(feature = "static")]
10987 Font::ExoBoldItalic,
10988 #[cfg(feature = "static")]
10989 Font::ExoExtraBoldItalic,
10990 #[cfg(feature = "static")]
10991 Font::ExoBlackItalic,
10992 #[cfg(feature = "variable")]
10993 Font::ExoVariable,
10994 #[cfg(feature = "variable")]
10995 Font::ExoItalicVariable,
10996 #[cfg(feature = "static")]
10997 Font::Exo2Thin,
10998 #[cfg(feature = "static")]
10999 Font::Exo2ExtraLight,
11000 #[cfg(feature = "static")]
11001 Font::Exo2Light,
11002 #[cfg(feature = "static")]
11003 Font::Exo2Regular,
11004 #[cfg(feature = "static")]
11005 Font::Exo2Medium,
11006 #[cfg(feature = "static")]
11007 Font::Exo2SemiBold,
11008 #[cfg(feature = "static")]
11009 Font::Exo2Bold,
11010 #[cfg(feature = "static")]
11011 Font::Exo2ExtraBold,
11012 #[cfg(feature = "static")]
11013 Font::Exo2Black,
11014 #[cfg(feature = "static")]
11015 Font::Exo2ThinItalic,
11016 #[cfg(feature = "static")]
11017 Font::Exo2ExtraLightItalic,
11018 #[cfg(feature = "static")]
11019 Font::Exo2LightItalic,
11020 #[cfg(feature = "static")]
11021 Font::Exo2Italic,
11022 #[cfg(feature = "static")]
11023 Font::Exo2MediumItalic,
11024 #[cfg(feature = "static")]
11025 Font::Exo2SemiBoldItalic,
11026 #[cfg(feature = "static")]
11027 Font::Exo2BoldItalic,
11028 #[cfg(feature = "static")]
11029 Font::Exo2ExtraBoldItalic,
11030 #[cfg(feature = "static")]
11031 Font::Exo2BlackItalic,
11032 #[cfg(feature = "variable")]
11033 Font::Exo2Variable,
11034 #[cfg(feature = "variable")]
11035 Font::Exo2ItalicVariable,
11036 #[cfg(feature = "static")]
11037 Font::FahkwangExtraLight,
11038 #[cfg(feature = "static")]
11039 Font::FahkwangExtraLightItalic,
11040 #[cfg(feature = "static")]
11041 Font::FahkwangLight,
11042 #[cfg(feature = "static")]
11043 Font::FahkwangLightItalic,
11044 #[cfg(feature = "static")]
11045 Font::FahkwangRegular,
11046 #[cfg(feature = "static")]
11047 Font::FahkwangItalic,
11048 #[cfg(feature = "static")]
11049 Font::FahkwangMedium,
11050 #[cfg(feature = "static")]
11051 Font::FahkwangMediumItalic,
11052 #[cfg(feature = "static")]
11053 Font::FahkwangSemiBold,
11054 #[cfg(feature = "static")]
11055 Font::FahkwangSemiBoldItalic,
11056 #[cfg(feature = "static")]
11057 Font::FahkwangBold,
11058 #[cfg(feature = "static")]
11059 Font::FahkwangBoldItalic,
11060 #[cfg(feature = "static")]
11061 Font::FamiljenGroteskRegular,
11062 #[cfg(feature = "static")]
11063 Font::FamiljenGroteskMedium,
11064 #[cfg(feature = "static")]
11065 Font::FamiljenGroteskSemiBold,
11066 #[cfg(feature = "static")]
11067 Font::FamiljenGroteskBold,
11068 #[cfg(feature = "static")]
11069 Font::FamiljenGroteskItalic,
11070 #[cfg(feature = "static")]
11071 Font::FamiljenGroteskMediumItalic,
11072 #[cfg(feature = "static")]
11073 Font::FamiljenGroteskSemiBoldItalic,
11074 #[cfg(feature = "static")]
11075 Font::FamiljenGroteskBoldItalic,
11076 #[cfg(feature = "variable")]
11077 Font::FamiljenGroteskVariable,
11078 #[cfg(feature = "variable")]
11079 Font::FamiljenGroteskItalicVariable,
11080 #[cfg(feature = "static")]
11081 Font::FarroLight,
11082 #[cfg(feature = "static")]
11083 Font::FarroRegular,
11084 #[cfg(feature = "static")]
11085 Font::FarroMedium,
11086 #[cfg(feature = "static")]
11087 Font::FarroBold,
11088 #[cfg(feature = "static")]
11089 Font::FederoRegular,
11090 #[cfg(feature = "static")]
11091 Font::FigtreeLight,
11092 #[cfg(feature = "static")]
11093 Font::FigtreeRegular,
11094 #[cfg(feature = "static")]
11095 Font::FigtreeMedium,
11096 #[cfg(feature = "static")]
11097 Font::FigtreeSemiBold,
11098 #[cfg(feature = "static")]
11099 Font::FigtreeBold,
11100 #[cfg(feature = "static")]
11101 Font::FigtreeExtraBold,
11102 #[cfg(feature = "static")]
11103 Font::FigtreeBlack,
11104 #[cfg(feature = "static")]
11105 Font::FigtreeLightItalic,
11106 #[cfg(feature = "static")]
11107 Font::FigtreeItalic,
11108 #[cfg(feature = "static")]
11109 Font::FigtreeMediumItalic,
11110 #[cfg(feature = "static")]
11111 Font::FigtreeSemiBoldItalic,
11112 #[cfg(feature = "static")]
11113 Font::FigtreeBoldItalic,
11114 #[cfg(feature = "static")]
11115 Font::FigtreeExtraBoldItalic,
11116 #[cfg(feature = "static")]
11117 Font::FigtreeBlackItalic,
11118 #[cfg(feature = "variable")]
11119 Font::FigtreeVariable,
11120 #[cfg(feature = "variable")]
11121 Font::FigtreeItalicVariable,
11122 #[cfg(feature = "static")]
11123 Font::FinlandicaRegular,
11124 #[cfg(feature = "static")]
11125 Font::FinlandicaMedium,
11126 #[cfg(feature = "static")]
11127 Font::FinlandicaSemiBold,
11128 #[cfg(feature = "static")]
11129 Font::FinlandicaBold,
11130 #[cfg(feature = "static")]
11131 Font::FinlandicaItalic,
11132 #[cfg(feature = "static")]
11133 Font::FinlandicaMediumItalic,
11134 #[cfg(feature = "static")]
11135 Font::FinlandicaSemiBoldItalic,
11136 #[cfg(feature = "static")]
11137 Font::FinlandicaBoldItalic,
11138 #[cfg(feature = "variable")]
11139 Font::FinlandicaVariable,
11140 #[cfg(feature = "variable")]
11141 Font::FinlandicaItalicVariable,
11142 #[cfg(feature = "static")]
11143 Font::FiraSansThin,
11144 #[cfg(feature = "static")]
11145 Font::FiraSansThinItalic,
11146 #[cfg(feature = "static")]
11147 Font::FiraSansExtraLight,
11148 #[cfg(feature = "static")]
11149 Font::FiraSansExtraLightItalic,
11150 #[cfg(feature = "static")]
11151 Font::FiraSansLight,
11152 #[cfg(feature = "static")]
11153 Font::FiraSansLightItalic,
11154 #[cfg(feature = "static")]
11155 Font::FiraSansRegular,
11156 #[cfg(feature = "static")]
11157 Font::FiraSansItalic,
11158 #[cfg(feature = "static")]
11159 Font::FiraSansMedium,
11160 #[cfg(feature = "static")]
11161 Font::FiraSansMediumItalic,
11162 #[cfg(feature = "static")]
11163 Font::FiraSansSemiBold,
11164 #[cfg(feature = "static")]
11165 Font::FiraSansSemiBoldItalic,
11166 #[cfg(feature = "static")]
11167 Font::FiraSansBold,
11168 #[cfg(feature = "static")]
11169 Font::FiraSansBoldItalic,
11170 #[cfg(feature = "static")]
11171 Font::FiraSansExtraBold,
11172 #[cfg(feature = "static")]
11173 Font::FiraSansExtraBoldItalic,
11174 #[cfg(feature = "static")]
11175 Font::FiraSansBlack,
11176 #[cfg(feature = "static")]
11177 Font::FiraSansBlackItalic,
11178 #[cfg(feature = "static")]
11179 Font::FiraSansCondensedThin,
11180 #[cfg(feature = "static")]
11181 Font::FiraSansCondensedThinItalic,
11182 #[cfg(feature = "static")]
11183 Font::FiraSansCondensedExtraLight,
11184 #[cfg(feature = "static")]
11185 Font::FiraSansCondensedExtraLightItalic,
11186 #[cfg(feature = "static")]
11187 Font::FiraSansCondensedLight,
11188 #[cfg(feature = "static")]
11189 Font::FiraSansCondensedLightItalic,
11190 #[cfg(feature = "static")]
11191 Font::FiraSansCondensedRegular,
11192 #[cfg(feature = "static")]
11193 Font::FiraSansCondensedItalic,
11194 #[cfg(feature = "static")]
11195 Font::FiraSansCondensedMedium,
11196 #[cfg(feature = "static")]
11197 Font::FiraSansCondensedMediumItalic,
11198 #[cfg(feature = "static")]
11199 Font::FiraSansCondensedSemiBold,
11200 #[cfg(feature = "static")]
11201 Font::FiraSansCondensedSemiBoldItalic,
11202 #[cfg(feature = "static")]
11203 Font::FiraSansCondensedBold,
11204 #[cfg(feature = "static")]
11205 Font::FiraSansCondensedBoldItalic,
11206 #[cfg(feature = "static")]
11207 Font::FiraSansCondensedExtraBold,
11208 #[cfg(feature = "static")]
11209 Font::FiraSansCondensedExtraBoldItalic,
11210 #[cfg(feature = "static")]
11211 Font::FiraSansCondensedBlack,
11212 #[cfg(feature = "static")]
11213 Font::FiraSansCondensedBlackItalic,
11214 #[cfg(feature = "static")]
11215 Font::FiraSansExtraCondensedThin,
11216 #[cfg(feature = "static")]
11217 Font::FiraSansExtraCondensedThinItalic,
11218 #[cfg(feature = "static")]
11219 Font::FiraSansExtraCondensedExtraLight,
11220 #[cfg(feature = "static")]
11221 Font::FiraSansExtraCondensedExtraLightItalic,
11222 #[cfg(feature = "static")]
11223 Font::FiraSansExtraCondensedLight,
11224 #[cfg(feature = "static")]
11225 Font::FiraSansExtraCondensedLightItalic,
11226 #[cfg(feature = "static")]
11227 Font::FiraSansExtraCondensedRegular,
11228 #[cfg(feature = "static")]
11229 Font::FiraSansExtraCondensedItalic,
11230 #[cfg(feature = "static")]
11231 Font::FiraSansExtraCondensedMedium,
11232 #[cfg(feature = "static")]
11233 Font::FiraSansExtraCondensedMediumItalic,
11234 #[cfg(feature = "static")]
11235 Font::FiraSansExtraCondensedSemiBold,
11236 #[cfg(feature = "static")]
11237 Font::FiraSansExtraCondensedSemiBoldItalic,
11238 #[cfg(feature = "static")]
11239 Font::FiraSansExtraCondensedBold,
11240 #[cfg(feature = "static")]
11241 Font::FiraSansExtraCondensedBoldItalic,
11242 #[cfg(feature = "static")]
11243 Font::FiraSansExtraCondensedExtraBold,
11244 #[cfg(feature = "static")]
11245 Font::FiraSansExtraCondensedExtraBoldItalic,
11246 #[cfg(feature = "static")]
11247 Font::FiraSansExtraCondensedBlack,
11248 #[cfg(feature = "static")]
11249 Font::FiraSansExtraCondensedBlackItalic,
11250 #[cfg(feature = "static")]
11251 Font::FjallaOneRegular,
11252 #[cfg(feature = "static")]
11253 Font::FrancoisOneRegular,
11254 #[cfg(feature = "static")]
11255 Font::FredokaCondensedLight,
11256 #[cfg(feature = "static")]
11257 Font::FredokaCondensedRegular,
11258 #[cfg(feature = "static")]
11259 Font::FredokaCondensedMedium,
11260 #[cfg(feature = "static")]
11261 Font::FredokaCondensedSemiBold,
11262 #[cfg(feature = "static")]
11263 Font::FredokaCondensedBold,
11264 #[cfg(feature = "static")]
11265 Font::FredokaSemiCondensedLight,
11266 #[cfg(feature = "static")]
11267 Font::FredokaSemiCondensedRegular,
11268 #[cfg(feature = "static")]
11269 Font::FredokaSemiCondensedMedium,
11270 #[cfg(feature = "static")]
11271 Font::FredokaSemiCondensedSemiBold,
11272 #[cfg(feature = "static")]
11273 Font::FredokaSemiCondensedBold,
11274 #[cfg(feature = "static")]
11275 Font::FredokaLight,
11276 #[cfg(feature = "static")]
11277 Font::FredokaRegular,
11278 #[cfg(feature = "static")]
11279 Font::FredokaMedium,
11280 #[cfg(feature = "static")]
11281 Font::FredokaSemiBold,
11282 #[cfg(feature = "static")]
11283 Font::FredokaBold,
11284 #[cfg(feature = "static")]
11285 Font::FredokaSemiExpandedLight,
11286 #[cfg(feature = "static")]
11287 Font::FredokaSemiExpandedRegular,
11288 #[cfg(feature = "static")]
11289 Font::FredokaSemiExpandedMedium,
11290 #[cfg(feature = "static")]
11291 Font::FredokaSemiExpandedSemiBold,
11292 #[cfg(feature = "static")]
11293 Font::FredokaSemiExpandedBold,
11294 #[cfg(feature = "static")]
11295 Font::FredokaExpandedLight,
11296 #[cfg(feature = "static")]
11297 Font::FredokaExpandedRegular,
11298 #[cfg(feature = "static")]
11299 Font::FredokaExpandedMedium,
11300 #[cfg(feature = "static")]
11301 Font::FredokaExpandedSemiBold,
11302 #[cfg(feature = "static")]
11303 Font::FredokaExpandedBold,
11304 #[cfg(feature = "variable")]
11305 Font::FredokaVariable,
11306 #[cfg(feature = "static")]
11307 Font::FrescaRegular,
11308 #[cfg(feature = "static")]
11309 Font::FustatExtraLight,
11310 #[cfg(feature = "static")]
11311 Font::FustatLight,
11312 #[cfg(feature = "static")]
11313 Font::FustatRegular,
11314 #[cfg(feature = "static")]
11315 Font::FustatMedium,
11316 #[cfg(feature = "static")]
11317 Font::FustatSemiBold,
11318 #[cfg(feature = "static")]
11319 Font::FustatBold,
11320 #[cfg(feature = "static")]
11321 Font::FustatExtraBold,
11322 #[cfg(feature = "variable")]
11323 Font::FustatVariable,
11324 #[cfg(feature = "static")]
11325 Font::GFSNeohellenicRegular,
11326 #[cfg(feature = "static")]
11327 Font::GFSNeohellenicItalic,
11328 #[cfg(feature = "static")]
11329 Font::GFSNeohellenicBold,
11330 #[cfg(feature = "static")]
11331 Font::GFSNeohellenicBoldItalic,
11332 #[cfg(feature = "static")]
11333 Font::GafataRegular,
11334 #[cfg(feature = "static")]
11335 Font::GaldeanoRegular,
11336 #[cfg(feature = "static")]
11337 Font::GantariThin,
11338 #[cfg(feature = "static")]
11339 Font::GantariExtraLight,
11340 #[cfg(feature = "static")]
11341 Font::GantariLight,
11342 #[cfg(feature = "static")]
11343 Font::GantariRegular,
11344 #[cfg(feature = "static")]
11345 Font::GantariMedium,
11346 #[cfg(feature = "static")]
11347 Font::GantariSemiBold,
11348 #[cfg(feature = "static")]
11349 Font::GantariBold,
11350 #[cfg(feature = "static")]
11351 Font::GantariExtraBold,
11352 #[cfg(feature = "static")]
11353 Font::GantariBlack,
11354 #[cfg(feature = "static")]
11355 Font::GantariThinItalic,
11356 #[cfg(feature = "static")]
11357 Font::GantariExtraLightItalic,
11358 #[cfg(feature = "static")]
11359 Font::GantariLightItalic,
11360 #[cfg(feature = "static")]
11361 Font::GantariItalic,
11362 #[cfg(feature = "static")]
11363 Font::GantariMediumItalic,
11364 #[cfg(feature = "static")]
11365 Font::GantariSemiBoldItalic,
11366 #[cfg(feature = "static")]
11367 Font::GantariBoldItalic,
11368 #[cfg(feature = "static")]
11369 Font::GantariExtraBoldItalic,
11370 #[cfg(feature = "static")]
11371 Font::GantariBlackItalic,
11372 #[cfg(feature = "variable")]
11373 Font::GantariVariable,
11374 #[cfg(feature = "variable")]
11375 Font::GantariItalicVariable,
11376 #[cfg(feature = "static")]
11377 Font::GasoekOneRegular,
11378 #[cfg(feature = "static")]
11379 Font::GayathriThin,
11380 #[cfg(feature = "static")]
11381 Font::GayathriRegular,
11382 #[cfg(feature = "static")]
11383 Font::GayathriBold,
11384 #[cfg(feature = "static")]
11385 Font::GemunuLibreExtraLight,
11386 #[cfg(feature = "static")]
11387 Font::GemunuLibreLight,
11388 #[cfg(feature = "static")]
11389 Font::GemunuLibreRegular,
11390 #[cfg(feature = "static")]
11391 Font::GemunuLibreMedium,
11392 #[cfg(feature = "static")]
11393 Font::GemunuLibreSemiBold,
11394 #[cfg(feature = "static")]
11395 Font::GemunuLibreBold,
11396 #[cfg(feature = "static")]
11397 Font::GemunuLibreExtraBold,
11398 #[cfg(feature = "variable")]
11399 Font::GemunuLibreVariable,
11400 #[cfg(feature = "static")]
11401 Font::GenosThin,
11402 #[cfg(feature = "static")]
11403 Font::GenosExtraLight,
11404 #[cfg(feature = "static")]
11405 Font::GenosLight,
11406 #[cfg(feature = "static")]
11407 Font::GenosRegular,
11408 #[cfg(feature = "static")]
11409 Font::GenosMedium,
11410 #[cfg(feature = "static")]
11411 Font::GenosSemiBold,
11412 #[cfg(feature = "static")]
11413 Font::GenosBold,
11414 #[cfg(feature = "static")]
11415 Font::GenosExtraBold,
11416 #[cfg(feature = "static")]
11417 Font::GenosBlack,
11418 #[cfg(feature = "static")]
11419 Font::GenosThinItalic,
11420 #[cfg(feature = "static")]
11421 Font::GenosExtraLightItalic,
11422 #[cfg(feature = "static")]
11423 Font::GenosLightItalic,
11424 #[cfg(feature = "static")]
11425 Font::GenosItalic,
11426 #[cfg(feature = "static")]
11427 Font::GenosMediumItalic,
11428 #[cfg(feature = "static")]
11429 Font::GenosSemiBoldItalic,
11430 #[cfg(feature = "static")]
11431 Font::GenosBoldItalic,
11432 #[cfg(feature = "static")]
11433 Font::GenosExtraBoldItalic,
11434 #[cfg(feature = "static")]
11435 Font::GenosBlackItalic,
11436 #[cfg(feature = "variable")]
11437 Font::GenosVariable,
11438 #[cfg(feature = "variable")]
11439 Font::GenosItalicVariable,
11440 #[cfg(feature = "static")]
11441 Font::GeoRegular,
11442 #[cfg(feature = "static")]
11443 Font::GeoItalic,
11444 #[cfg(feature = "static")]
11445 Font::GeologicaThin,
11446 #[cfg(feature = "static")]
11447 Font::GeologicaExtraLight,
11448 #[cfg(feature = "static")]
11449 Font::GeologicaLight,
11450 #[cfg(feature = "static")]
11451 Font::GeologicaRegular,
11452 #[cfg(feature = "static")]
11453 Font::GeologicaMedium,
11454 #[cfg(feature = "static")]
11455 Font::GeologicaSemiBold,
11456 #[cfg(feature = "static")]
11457 Font::GeologicaBold,
11458 #[cfg(feature = "static")]
11459 Font::GeologicaExtraBold,
11460 #[cfg(feature = "static")]
11461 Font::GeologicaBlack,
11462 #[cfg(feature = "static")]
11463 Font::GeologicaAutoThin,
11464 #[cfg(feature = "static")]
11465 Font::GeologicaAutoExtraLight,
11466 #[cfg(feature = "static")]
11467 Font::GeologicaAutoLight,
11468 #[cfg(feature = "static")]
11469 Font::GeologicaAutoRegular,
11470 #[cfg(feature = "static")]
11471 Font::GeologicaAutoMedium,
11472 #[cfg(feature = "static")]
11473 Font::GeologicaAutoSemiBold,
11474 #[cfg(feature = "static")]
11475 Font::GeologicaAutoBold,
11476 #[cfg(feature = "static")]
11477 Font::GeologicaAutoExtraBold,
11478 #[cfg(feature = "static")]
11479 Font::GeologicaAutoBlack,
11480 #[cfg(feature = "static")]
11481 Font::GeologicaCursiveThin,
11482 #[cfg(feature = "static")]
11483 Font::GeologicaCursiveExtraLight,
11484 #[cfg(feature = "static")]
11485 Font::GeologicaCursiveLight,
11486 #[cfg(feature = "static")]
11487 Font::GeologicaCursiveRegular,
11488 #[cfg(feature = "static")]
11489 Font::GeologicaCursiveMedium,
11490 #[cfg(feature = "static")]
11491 Font::GeologicaCursiveSemiBold,
11492 #[cfg(feature = "static")]
11493 Font::GeologicaCursiveBold,
11494 #[cfg(feature = "static")]
11495 Font::GeologicaCursiveExtraBold,
11496 #[cfg(feature = "static")]
11497 Font::GeologicaCursiveBlack,
11498 #[cfg(feature = "variable")]
11499 Font::GeologicaVariable,
11500 #[cfg(feature = "static")]
11501 Font::GeoramaExtraCondensedThin,
11502 #[cfg(feature = "static")]
11503 Font::GeoramaExtraCondensedExtraLight,
11504 #[cfg(feature = "static")]
11505 Font::GeoramaExtraCondensedLight,
11506 #[cfg(feature = "static")]
11507 Font::GeoramaExtraCondensedRegular,
11508 #[cfg(feature = "static")]
11509 Font::GeoramaExtraCondensedMedium,
11510 #[cfg(feature = "static")]
11511 Font::GeoramaExtraCondensedSemiBold,
11512 #[cfg(feature = "static")]
11513 Font::GeoramaExtraCondensedBold,
11514 #[cfg(feature = "static")]
11515 Font::GeoramaExtraCondensedExtraBold,
11516 #[cfg(feature = "static")]
11517 Font::GeoramaExtraCondensedBlack,
11518 #[cfg(feature = "static")]
11519 Font::GeoramaCondensedThin,
11520 #[cfg(feature = "static")]
11521 Font::GeoramaCondensedExtraLight,
11522 #[cfg(feature = "static")]
11523 Font::GeoramaCondensedLight,
11524 #[cfg(feature = "static")]
11525 Font::GeoramaCondensedRegular,
11526 #[cfg(feature = "static")]
11527 Font::GeoramaCondensedMedium,
11528 #[cfg(feature = "static")]
11529 Font::GeoramaCondensedSemiBold,
11530 #[cfg(feature = "static")]
11531 Font::GeoramaCondensedBold,
11532 #[cfg(feature = "static")]
11533 Font::GeoramaCondensedExtraBold,
11534 #[cfg(feature = "static")]
11535 Font::GeoramaCondensedBlack,
11536 #[cfg(feature = "static")]
11537 Font::GeoramaSemiCondensedThin,
11538 #[cfg(feature = "static")]
11539 Font::GeoramaSemiCondensedExtraLight,
11540 #[cfg(feature = "static")]
11541 Font::GeoramaSemiCondensedLight,
11542 #[cfg(feature = "static")]
11543 Font::GeoramaSemiCondensedRegular,
11544 #[cfg(feature = "static")]
11545 Font::GeoramaSemiCondensedMedium,
11546 #[cfg(feature = "static")]
11547 Font::GeoramaSemiCondensedSemiBold,
11548 #[cfg(feature = "static")]
11549 Font::GeoramaSemiCondensedBold,
11550 #[cfg(feature = "static")]
11551 Font::GeoramaSemiCondensedExtraBold,
11552 #[cfg(feature = "static")]
11553 Font::GeoramaSemiCondensedBlack,
11554 #[cfg(feature = "static")]
11555 Font::GeoramaThin,
11556 #[cfg(feature = "static")]
11557 Font::GeoramaExtraLight,
11558 #[cfg(feature = "static")]
11559 Font::GeoramaLight,
11560 #[cfg(feature = "static")]
11561 Font::GeoramaRegular,
11562 #[cfg(feature = "static")]
11563 Font::GeoramaMedium,
11564 #[cfg(feature = "static")]
11565 Font::GeoramaSemiBold,
11566 #[cfg(feature = "static")]
11567 Font::GeoramaBold,
11568 #[cfg(feature = "static")]
11569 Font::GeoramaExtraBold,
11570 #[cfg(feature = "static")]
11571 Font::GeoramaBlack,
11572 #[cfg(feature = "static")]
11573 Font::GeoramaSemiExpandedThin,
11574 #[cfg(feature = "static")]
11575 Font::GeoramaSemiExpandedExtraLight,
11576 #[cfg(feature = "static")]
11577 Font::GeoramaSemiExpandedLight,
11578 #[cfg(feature = "static")]
11579 Font::GeoramaSemiExpandedRegular,
11580 #[cfg(feature = "static")]
11581 Font::GeoramaSemiExpandedMedium,
11582 #[cfg(feature = "static")]
11583 Font::GeoramaSemiExpandedSemiBold,
11584 #[cfg(feature = "static")]
11585 Font::GeoramaSemiExpandedBold,
11586 #[cfg(feature = "static")]
11587 Font::GeoramaSemiExpandedExtraBold,
11588 #[cfg(feature = "static")]
11589 Font::GeoramaSemiExpandedBlack,
11590 #[cfg(feature = "static")]
11591 Font::GeoramaExpandedThin,
11592 #[cfg(feature = "static")]
11593 Font::GeoramaExpandedExtraLight,
11594 #[cfg(feature = "static")]
11595 Font::GeoramaExpandedLight,
11596 #[cfg(feature = "static")]
11597 Font::GeoramaExpandedRegular,
11598 #[cfg(feature = "static")]
11599 Font::GeoramaExpandedMedium,
11600 #[cfg(feature = "static")]
11601 Font::GeoramaExpandedSemiBold,
11602 #[cfg(feature = "static")]
11603 Font::GeoramaExpandedBold,
11604 #[cfg(feature = "static")]
11605 Font::GeoramaExpandedExtraBold,
11606 #[cfg(feature = "static")]
11607 Font::GeoramaExpandedBlack,
11608 #[cfg(feature = "static")]
11609 Font::GeoramaExtraExpandedThin,
11610 #[cfg(feature = "static")]
11611 Font::GeoramaExtraExpandedExtraLight,
11612 #[cfg(feature = "static")]
11613 Font::GeoramaExtraExpandedLight,
11614 #[cfg(feature = "static")]
11615 Font::GeoramaExtraExpandedRegular,
11616 #[cfg(feature = "static")]
11617 Font::GeoramaExtraExpandedMedium,
11618 #[cfg(feature = "static")]
11619 Font::GeoramaExtraExpandedSemiBold,
11620 #[cfg(feature = "static")]
11621 Font::GeoramaExtraExpandedBold,
11622 #[cfg(feature = "static")]
11623 Font::GeoramaExtraExpandedExtraBold,
11624 #[cfg(feature = "static")]
11625 Font::GeoramaExtraExpandedBlack,
11626 #[cfg(feature = "static")]
11627 Font::GeoramaExtraCondensedThinItalic,
11628 #[cfg(feature = "static")]
11629 Font::GeoramaExtraCondensedExtraLightItalic,
11630 #[cfg(feature = "static")]
11631 Font::GeoramaExtraCondensedLightItalic,
11632 #[cfg(feature = "static")]
11633 Font::GeoramaExtraCondensedItalic,
11634 #[cfg(feature = "static")]
11635 Font::GeoramaExtraCondensedMediumItalic,
11636 #[cfg(feature = "static")]
11637 Font::GeoramaExtraCondensedSemiBoldItalic,
11638 #[cfg(feature = "static")]
11639 Font::GeoramaExtraCondensedBoldItalic,
11640 #[cfg(feature = "static")]
11641 Font::GeoramaExtraCondensedExtraBoldItalic,
11642 #[cfg(feature = "static")]
11643 Font::GeoramaExtraCondensedBlackItalic,
11644 #[cfg(feature = "static")]
11645 Font::GeoramaCondensedThinItalic,
11646 #[cfg(feature = "static")]
11647 Font::GeoramaCondensedExtraLightItalic,
11648 #[cfg(feature = "static")]
11649 Font::GeoramaCondensedLightItalic,
11650 #[cfg(feature = "static")]
11651 Font::GeoramaCondensedItalic,
11652 #[cfg(feature = "static")]
11653 Font::GeoramaCondensedMediumItalic,
11654 #[cfg(feature = "static")]
11655 Font::GeoramaCondensedSemiBoldItalic,
11656 #[cfg(feature = "static")]
11657 Font::GeoramaCondensedBoldItalic,
11658 #[cfg(feature = "static")]
11659 Font::GeoramaCondensedExtraBoldItalic,
11660 #[cfg(feature = "static")]
11661 Font::GeoramaCondensedBlackItalic,
11662 #[cfg(feature = "static")]
11663 Font::GeoramaSemiCondensedThinItalic,
11664 #[cfg(feature = "static")]
11665 Font::GeoramaSemiCondensedExtraLightItalic,
11666 #[cfg(feature = "static")]
11667 Font::GeoramaSemiCondensedLightItalic,
11668 #[cfg(feature = "static")]
11669 Font::GeoramaSemiCondensedItalic,
11670 #[cfg(feature = "static")]
11671 Font::GeoramaSemiCondensedMediumItalic,
11672 #[cfg(feature = "static")]
11673 Font::GeoramaSemiCondensedSemiBoldItalic,
11674 #[cfg(feature = "static")]
11675 Font::GeoramaSemiCondensedBoldItalic,
11676 #[cfg(feature = "static")]
11677 Font::GeoramaSemiCondensedExtraBoldItalic,
11678 #[cfg(feature = "static")]
11679 Font::GeoramaSemiCondensedBlackItalic,
11680 #[cfg(feature = "static")]
11681 Font::GeoramaThinItalic,
11682 #[cfg(feature = "static")]
11683 Font::GeoramaExtraLightItalic,
11684 #[cfg(feature = "static")]
11685 Font::GeoramaLightItalic,
11686 #[cfg(feature = "static")]
11687 Font::GeoramaItalic,
11688 #[cfg(feature = "static")]
11689 Font::GeoramaMediumItalic,
11690 #[cfg(feature = "static")]
11691 Font::GeoramaSemiBoldItalic,
11692 #[cfg(feature = "static")]
11693 Font::GeoramaBoldItalic,
11694 #[cfg(feature = "static")]
11695 Font::GeoramaExtraBoldItalic,
11696 #[cfg(feature = "static")]
11697 Font::GeoramaBlackItalic,
11698 #[cfg(feature = "static")]
11699 Font::GeoramaSemiExpandedThinItalic,
11700 #[cfg(feature = "static")]
11701 Font::GeoramaSemiExpandedExtraLightItalic,
11702 #[cfg(feature = "static")]
11703 Font::GeoramaSemiExpandedLightItalic,
11704 #[cfg(feature = "static")]
11705 Font::GeoramaSemiExpandedItalic,
11706 #[cfg(feature = "static")]
11707 Font::GeoramaSemiExpandedMediumItalic,
11708 #[cfg(feature = "static")]
11709 Font::GeoramaSemiExpandedSemiBoldItalic,
11710 #[cfg(feature = "static")]
11711 Font::GeoramaSemiExpandedBoldItalic,
11712 #[cfg(feature = "static")]
11713 Font::GeoramaSemiExpandedExtraBoldItalic,
11714 #[cfg(feature = "static")]
11715 Font::GeoramaSemiExpandedBlackItalic,
11716 #[cfg(feature = "static")]
11717 Font::GeoramaExpandedThinItalic,
11718 #[cfg(feature = "static")]
11719 Font::GeoramaExpandedExtraLightItalic,
11720 #[cfg(feature = "static")]
11721 Font::GeoramaExpandedLightItalic,
11722 #[cfg(feature = "static")]
11723 Font::GeoramaExpandedItalic,
11724 #[cfg(feature = "static")]
11725 Font::GeoramaExpandedMediumItalic,
11726 #[cfg(feature = "static")]
11727 Font::GeoramaExpandedSemiBoldItalic,
11728 #[cfg(feature = "static")]
11729 Font::GeoramaExpandedBoldItalic,
11730 #[cfg(feature = "static")]
11731 Font::GeoramaExpandedExtraBoldItalic,
11732 #[cfg(feature = "static")]
11733 Font::GeoramaExpandedBlackItalic,
11734 #[cfg(feature = "static")]
11735 Font::GeoramaExtraExpandedThinItalic,
11736 #[cfg(feature = "static")]
11737 Font::GeoramaExtraExpandedExtraLightItalic,
11738 #[cfg(feature = "static")]
11739 Font::GeoramaExtraExpandedLightItalic,
11740 #[cfg(feature = "static")]
11741 Font::GeoramaExtraExpandedItalic,
11742 #[cfg(feature = "static")]
11743 Font::GeoramaExtraExpandedMediumItalic,
11744 #[cfg(feature = "static")]
11745 Font::GeoramaExtraExpandedSemiBoldItalic,
11746 #[cfg(feature = "static")]
11747 Font::GeoramaExtraExpandedBoldItalic,
11748 #[cfg(feature = "static")]
11749 Font::GeoramaExtraExpandedExtraBoldItalic,
11750 #[cfg(feature = "static")]
11751 Font::GeoramaExtraExpandedBlackItalic,
11752 #[cfg(feature = "variable")]
11753 Font::GeoramaVariable,
11754 #[cfg(feature = "variable")]
11755 Font::GeoramaItalicVariable,
11756 #[cfg(feature = "static")]
11757 Font::GiduguRegular,
11758 #[cfg(feature = "static")]
11759 Font::GloryThin,
11760 #[cfg(feature = "static")]
11761 Font::GloryExtraLight,
11762 #[cfg(feature = "static")]
11763 Font::GloryLight,
11764 #[cfg(feature = "static")]
11765 Font::GloryRegular,
11766 #[cfg(feature = "static")]
11767 Font::GloryMedium,
11768 #[cfg(feature = "static")]
11769 Font::GlorySemiBold,
11770 #[cfg(feature = "static")]
11771 Font::GloryBold,
11772 #[cfg(feature = "static")]
11773 Font::GloryExtraBold,
11774 #[cfg(feature = "static")]
11775 Font::GloryThinItalic,
11776 #[cfg(feature = "static")]
11777 Font::GloryExtraLightItalic,
11778 #[cfg(feature = "static")]
11779 Font::GloryLightItalic,
11780 #[cfg(feature = "static")]
11781 Font::GloryItalic,
11782 #[cfg(feature = "static")]
11783 Font::GloryMediumItalic,
11784 #[cfg(feature = "static")]
11785 Font::GlorySemiBoldItalic,
11786 #[cfg(feature = "static")]
11787 Font::GloryBoldItalic,
11788 #[cfg(feature = "static")]
11789 Font::GloryExtraBoldItalic,
11790 #[cfg(feature = "variable")]
11791 Font::GloryVariable,
11792 #[cfg(feature = "variable")]
11793 Font::GloryItalicVariable,
11794 #[cfg(feature = "static")]
11795 Font::GolosTextRegular,
11796 #[cfg(feature = "static")]
11797 Font::GolosTextMedium,
11798 #[cfg(feature = "static")]
11799 Font::GolosTextSemiBold,
11800 #[cfg(feature = "static")]
11801 Font::GolosTextBold,
11802 #[cfg(feature = "static")]
11803 Font::GolosTextExtraBold,
11804 #[cfg(feature = "static")]
11805 Font::GolosTextBlack,
11806 #[cfg(feature = "variable")]
11807 Font::GolosTextVariable,
11808 #[cfg(feature = "static")]
11809 Font::GothicA1Thin,
11810 #[cfg(feature = "static")]
11811 Font::GothicA1ExtraLight,
11812 #[cfg(feature = "static")]
11813 Font::GothicA1Light,
11814 #[cfg(feature = "static")]
11815 Font::GothicA1Regular,
11816 #[cfg(feature = "static")]
11817 Font::GothicA1Medium,
11818 #[cfg(feature = "static")]
11819 Font::GothicA1SemiBold,
11820 #[cfg(feature = "static")]
11821 Font::GothicA1Bold,
11822 #[cfg(feature = "static")]
11823 Font::GothicA1ExtraBold,
11824 #[cfg(feature = "static")]
11825 Font::GothicA1Black,
11826 #[cfg(feature = "static")]
11827 Font::GotuRegular,
11828 #[cfg(feature = "static")]
11829 Font::GowunDodumRegular,
11830 #[cfg(feature = "static")]
11831 Font::GruppoRegular,
11832 #[cfg(feature = "static")]
11833 Font::GudeaRegular,
11834 #[cfg(feature = "static")]
11835 Font::GudeaItalic,
11836 #[cfg(feature = "static")]
11837 Font::GudeaBold,
11838 #[cfg(feature = "static")]
11839 Font::HammersmithOneRegular,
11840 #[cfg(feature = "static")]
11841 Font::HankenGroteskThin,
11842 #[cfg(feature = "static")]
11843 Font::HankenGroteskExtraLight,
11844 #[cfg(feature = "static")]
11845 Font::HankenGroteskLight,
11846 #[cfg(feature = "static")]
11847 Font::HankenGroteskRegular,
11848 #[cfg(feature = "static")]
11849 Font::HankenGroteskMedium,
11850 #[cfg(feature = "static")]
11851 Font::HankenGroteskSemiBold,
11852 #[cfg(feature = "static")]
11853 Font::HankenGroteskBold,
11854 #[cfg(feature = "static")]
11855 Font::HankenGroteskExtraBold,
11856 #[cfg(feature = "static")]
11857 Font::HankenGroteskBlack,
11858 #[cfg(feature = "static")]
11859 Font::HankenGroteskThinItalic,
11860 #[cfg(feature = "static")]
11861 Font::HankenGroteskExtraLightItalic,
11862 #[cfg(feature = "static")]
11863 Font::HankenGroteskLightItalic,
11864 #[cfg(feature = "static")]
11865 Font::HankenGroteskItalic,
11866 #[cfg(feature = "static")]
11867 Font::HankenGroteskMediumItalic,
11868 #[cfg(feature = "static")]
11869 Font::HankenGroteskSemiBoldItalic,
11870 #[cfg(feature = "static")]
11871 Font::HankenGroteskBoldItalic,
11872 #[cfg(feature = "static")]
11873 Font::HankenGroteskExtraBoldItalic,
11874 #[cfg(feature = "static")]
11875 Font::HankenGroteskBlackItalic,
11876 #[cfg(feature = "variable")]
11877 Font::HankenGroteskVariable,
11878 #[cfg(feature = "variable")]
11879 Font::HankenGroteskItalicVariable,
11880 #[cfg(feature = "static")]
11881 Font::HarmattanRegular,
11882 #[cfg(feature = "static")]
11883 Font::HarmattanMedium,
11884 #[cfg(feature = "static")]
11885 Font::HarmattanSemiBold,
11886 #[cfg(feature = "static")]
11887 Font::HarmattanBold,
11888 #[cfg(feature = "static")]
11889 Font::HedvigLettersSansRegular,
11890 #[cfg(feature = "static")]
11891 Font::HeeboThin,
11892 #[cfg(feature = "static")]
11893 Font::HeeboExtraLight,
11894 #[cfg(feature = "static")]
11895 Font::HeeboLight,
11896 #[cfg(feature = "static")]
11897 Font::HeeboRegular,
11898 #[cfg(feature = "static")]
11899 Font::HeeboMedium,
11900 #[cfg(feature = "static")]
11901 Font::HeeboSemiBold,
11902 #[cfg(feature = "static")]
11903 Font::HeeboBold,
11904 #[cfg(feature = "static")]
11905 Font::HeeboExtraBold,
11906 #[cfg(feature = "static")]
11907 Font::HeeboBlack,
11908 #[cfg(feature = "variable")]
11909 Font::HeeboVariable,
11910 #[cfg(feature = "static")]
11911 Font::HindLight,
11912 #[cfg(feature = "static")]
11913 Font::HindRegular,
11914 #[cfg(feature = "static")]
11915 Font::HindMedium,
11916 #[cfg(feature = "static")]
11917 Font::HindSemiBold,
11918 #[cfg(feature = "static")]
11919 Font::HindBold,
11920 #[cfg(feature = "static")]
11921 Font::HindGunturLight,
11922 #[cfg(feature = "static")]
11923 Font::HindGunturRegular,
11924 #[cfg(feature = "static")]
11925 Font::HindGunturMedium,
11926 #[cfg(feature = "static")]
11927 Font::HindGunturSemiBold,
11928 #[cfg(feature = "static")]
11929 Font::HindGunturBold,
11930 #[cfg(feature = "static")]
11931 Font::HindMaduraiLight,
11932 #[cfg(feature = "static")]
11933 Font::HindMaduraiRegular,
11934 #[cfg(feature = "static")]
11935 Font::HindMaduraiMedium,
11936 #[cfg(feature = "static")]
11937 Font::HindMaduraiSemiBold,
11938 #[cfg(feature = "static")]
11939 Font::HindMaduraiBold,
11940 #[cfg(feature = "static")]
11941 Font::HindSiliguriLight,
11942 #[cfg(feature = "static")]
11943 Font::HindSiliguriRegular,
11944 #[cfg(feature = "static")]
11945 Font::HindSiliguriMedium,
11946 #[cfg(feature = "static")]
11947 Font::HindSiliguriSemiBold,
11948 #[cfg(feature = "static")]
11949 Font::HindSiliguriBold,
11950 #[cfg(feature = "static")]
11951 Font::HindVadodaraLight,
11952 #[cfg(feature = "static")]
11953 Font::HindVadodaraRegular,
11954 #[cfg(feature = "static")]
11955 Font::HindVadodaraMedium,
11956 #[cfg(feature = "static")]
11957 Font::HindVadodaraSemiBold,
11958 #[cfg(feature = "static")]
11959 Font::HindVadodaraBold,
11960 #[cfg(feature = "static")]
11961 Font::HomenajeRegular,
11962 #[cfg(feature = "static")]
11963 Font::HubballiRegular,
11964 #[cfg(feature = "static")]
11965 Font::IBMPlexSansThin,
11966 #[cfg(feature = "static")]
11967 Font::IBMPlexSansThinItalic,
11968 #[cfg(feature = "static")]
11969 Font::IBMPlexSansExtraLight,
11970 #[cfg(feature = "static")]
11971 Font::IBMPlexSansExtraLightItalic,
11972 #[cfg(feature = "static")]
11973 Font::IBMPlexSansLight,
11974 #[cfg(feature = "static")]
11975 Font::IBMPlexSansLightItalic,
11976 #[cfg(feature = "static")]
11977 Font::IBMPlexSansRegular,
11978 #[cfg(feature = "static")]
11979 Font::IBMPlexSansItalic,
11980 #[cfg(feature = "static")]
11981 Font::IBMPlexSansMedium,
11982 #[cfg(feature = "static")]
11983 Font::IBMPlexSansMediumItalic,
11984 #[cfg(feature = "static")]
11985 Font::IBMPlexSansSemiBold,
11986 #[cfg(feature = "static")]
11987 Font::IBMPlexSansSemiBoldItalic,
11988 #[cfg(feature = "static")]
11989 Font::IBMPlexSansBold,
11990 #[cfg(feature = "static")]
11991 Font::IBMPlexSansBoldItalic,
11992 #[cfg(feature = "static")]
11993 Font::IBMPlexSansArabicThin,
11994 #[cfg(feature = "static")]
11995 Font::IBMPlexSansArabicExtraLight,
11996 #[cfg(feature = "static")]
11997 Font::IBMPlexSansArabicLight,
11998 #[cfg(feature = "static")]
11999 Font::IBMPlexSansArabicRegular,
12000 #[cfg(feature = "static")]
12001 Font::IBMPlexSansArabicMedium,
12002 #[cfg(feature = "static")]
12003 Font::IBMPlexSansArabicSemiBold,
12004 #[cfg(feature = "static")]
12005 Font::IBMPlexSansArabicBold,
12006 #[cfg(feature = "static")]
12007 Font::IBMPlexSansCondensedThin,
12008 #[cfg(feature = "static")]
12009 Font::IBMPlexSansCondensedThinItalic,
12010 #[cfg(feature = "static")]
12011 Font::IBMPlexSansCondensedExtraLight,
12012 #[cfg(feature = "static")]
12013 Font::IBMPlexSansCondensedExtraLightItalic,
12014 #[cfg(feature = "static")]
12015 Font::IBMPlexSansCondensedLight,
12016 #[cfg(feature = "static")]
12017 Font::IBMPlexSansCondensedLightItalic,
12018 #[cfg(feature = "static")]
12019 Font::IBMPlexSansCondensedRegular,
12020 #[cfg(feature = "static")]
12021 Font::IBMPlexSansCondensedItalic,
12022 #[cfg(feature = "static")]
12023 Font::IBMPlexSansCondensedMedium,
12024 #[cfg(feature = "static")]
12025 Font::IBMPlexSansCondensedMediumItalic,
12026 #[cfg(feature = "static")]
12027 Font::IBMPlexSansCondensedSemiBold,
12028 #[cfg(feature = "static")]
12029 Font::IBMPlexSansCondensedSemiBoldItalic,
12030 #[cfg(feature = "static")]
12031 Font::IBMPlexSansCondensedBold,
12032 #[cfg(feature = "static")]
12033 Font::IBMPlexSansCondensedBoldItalic,
12034 #[cfg(feature = "static")]
12035 Font::IBMPlexSansDevanagariThin,
12036 #[cfg(feature = "static")]
12037 Font::IBMPlexSansDevanagariExtraLight,
12038 #[cfg(feature = "static")]
12039 Font::IBMPlexSansDevanagariLight,
12040 #[cfg(feature = "static")]
12041 Font::IBMPlexSansDevanagariRegular,
12042 #[cfg(feature = "static")]
12043 Font::IBMPlexSansDevanagariMedium,
12044 #[cfg(feature = "static")]
12045 Font::IBMPlexSansDevanagariSemiBold,
12046 #[cfg(feature = "static")]
12047 Font::IBMPlexSansDevanagariBold,
12048 #[cfg(feature = "static")]
12049 Font::IBMPlexSansHebrewThin,
12050 #[cfg(feature = "static")]
12051 Font::IBMPlexSansHebrewExtraLight,
12052 #[cfg(feature = "static")]
12053 Font::IBMPlexSansHebrewLight,
12054 #[cfg(feature = "static")]
12055 Font::IBMPlexSansHebrewRegular,
12056 #[cfg(feature = "static")]
12057 Font::IBMPlexSansHebrewMedium,
12058 #[cfg(feature = "static")]
12059 Font::IBMPlexSansHebrewSemiBold,
12060 #[cfg(feature = "static")]
12061 Font::IBMPlexSansHebrewBold,
12062 #[cfg(feature = "static")]
12063 Font::IBMPlexSansJPThin,
12064 #[cfg(feature = "static")]
12065 Font::IBMPlexSansJPExtraLight,
12066 #[cfg(feature = "static")]
12067 Font::IBMPlexSansJPLight,
12068 #[cfg(feature = "static")]
12069 Font::IBMPlexSansJPRegular,
12070 #[cfg(feature = "static")]
12071 Font::IBMPlexSansJPMedium,
12072 #[cfg(feature = "static")]
12073 Font::IBMPlexSansJPSemiBold,
12074 #[cfg(feature = "static")]
12075 Font::IBMPlexSansJPBold,
12076 #[cfg(feature = "static")]
12077 Font::IBMPlexSansKRThin,
12078 #[cfg(feature = "static")]
12079 Font::IBMPlexSansKRExtraLight,
12080 #[cfg(feature = "static")]
12081 Font::IBMPlexSansKRLight,
12082 #[cfg(feature = "static")]
12083 Font::IBMPlexSansKRRegular,
12084 #[cfg(feature = "static")]
12085 Font::IBMPlexSansKRMedium,
12086 #[cfg(feature = "static")]
12087 Font::IBMPlexSansKRSemiBold,
12088 #[cfg(feature = "static")]
12089 Font::IBMPlexSansKRBold,
12090 #[cfg(feature = "static")]
12091 Font::IBMPlexSansThaiThin,
12092 #[cfg(feature = "static")]
12093 Font::IBMPlexSansThaiExtraLight,
12094 #[cfg(feature = "static")]
12095 Font::IBMPlexSansThaiLight,
12096 #[cfg(feature = "static")]
12097 Font::IBMPlexSansThaiRegular,
12098 #[cfg(feature = "static")]
12099 Font::IBMPlexSansThaiMedium,
12100 #[cfg(feature = "static")]
12101 Font::IBMPlexSansThaiSemiBold,
12102 #[cfg(feature = "static")]
12103 Font::IBMPlexSansThaiBold,
12104 #[cfg(feature = "static")]
12105 Font::IBMPlexSansThaiLoopedThin,
12106 #[cfg(feature = "static")]
12107 Font::IBMPlexSansThaiLoopedExtraLight,
12108 #[cfg(feature = "static")]
12109 Font::IBMPlexSansThaiLoopedLight,
12110 #[cfg(feature = "static")]
12111 Font::IBMPlexSansThaiLoopedRegular,
12112 #[cfg(feature = "static")]
12113 Font::IBMPlexSansThaiLoopedMedium,
12114 #[cfg(feature = "static")]
12115 Font::IBMPlexSansThaiLoopedSemiBold,
12116 #[cfg(feature = "static")]
12117 Font::IBMPlexSansThaiLoopedBold,
12118 #[cfg(feature = "static")]
12119 Font::ImprimaRegular,
12120 #[cfg(feature = "static")]
12121 Font::InclusiveSansRegular,
12122 #[cfg(feature = "static")]
12123 Font::InclusiveSansItalic,
12124 #[cfg(feature = "static")]
12125 Font::InderRegular,
12126 #[cfg(feature = "static")]
12127 Font::InriaSansLight,
12128 #[cfg(feature = "static")]
12129 Font::InriaSansLightItalic,
12130 #[cfg(feature = "static")]
12131 Font::InriaSansRegular,
12132 #[cfg(feature = "static")]
12133 Font::InriaSansItalic,
12134 #[cfg(feature = "static")]
12135 Font::InriaSansBold,
12136 #[cfg(feature = "static")]
12137 Font::InriaSansBoldItalic,
12138 #[cfg(feature = "static")]
12139 Font::InstrumentSansCondensedRegular,
12140 #[cfg(feature = "static")]
12141 Font::InstrumentSansCondensedMedium,
12142 #[cfg(feature = "static")]
12143 Font::InstrumentSansCondensedSemiBold,
12144 #[cfg(feature = "static")]
12145 Font::InstrumentSansCondensedBold,
12146 #[cfg(feature = "static")]
12147 Font::InstrumentSansSemiCondensedRegular,
12148 #[cfg(feature = "static")]
12149 Font::InstrumentSansSemiCondensedMedium,
12150 #[cfg(feature = "static")]
12151 Font::InstrumentSansSemiCondensedSemiBold,
12152 #[cfg(feature = "static")]
12153 Font::InstrumentSansSemiCondensedBold,
12154 #[cfg(feature = "static")]
12155 Font::InstrumentSansRegular,
12156 #[cfg(feature = "static")]
12157 Font::InstrumentSansMedium,
12158 #[cfg(feature = "static")]
12159 Font::InstrumentSansSemiBold,
12160 #[cfg(feature = "static")]
12161 Font::InstrumentSansBold,
12162 #[cfg(feature = "static")]
12163 Font::InstrumentSansCondensedItalic,
12164 #[cfg(feature = "static")]
12165 Font::InstrumentSansCondensedMediumItalic,
12166 #[cfg(feature = "static")]
12167 Font::InstrumentSansCondensedSemiBoldItalic,
12168 #[cfg(feature = "static")]
12169 Font::InstrumentSansCondensedBoldItalic,
12170 #[cfg(feature = "static")]
12171 Font::InstrumentSansSemiCondensedItalic,
12172 #[cfg(feature = "static")]
12173 Font::InstrumentSansSemiCondensedMediumItalic,
12174 #[cfg(feature = "static")]
12175 Font::InstrumentSansSemiCondensedSemiBoldItalic,
12176 #[cfg(feature = "static")]
12177 Font::InstrumentSansSemiCondensedBoldItalic,
12178 #[cfg(feature = "static")]
12179 Font::InstrumentSansItalic,
12180 #[cfg(feature = "static")]
12181 Font::InstrumentSansMediumItalic,
12182 #[cfg(feature = "static")]
12183 Font::InstrumentSansSemiBoldItalic,
12184 #[cfg(feature = "static")]
12185 Font::InstrumentSansBoldItalic,
12186 #[cfg(feature = "variable")]
12187 Font::InstrumentSansVariable,
12188 #[cfg(feature = "variable")]
12189 Font::InstrumentSansItalicVariable,
12190 #[cfg(feature = "static")]
12191 Font::InterThin,
12192 #[cfg(feature = "static")]
12193 Font::InterExtraLight,
12194 #[cfg(feature = "static")]
12195 Font::InterLight,
12196 #[cfg(feature = "static")]
12197 Font::InterRegular,
12198 #[cfg(feature = "static")]
12199 Font::InterMedium,
12200 #[cfg(feature = "static")]
12201 Font::InterSemiBold,
12202 #[cfg(feature = "static")]
12203 Font::InterBold,
12204 #[cfg(feature = "static")]
12205 Font::InterExtraBold,
12206 #[cfg(feature = "static")]
12207 Font::InterBlack,
12208 #[cfg(feature = "variable")]
12209 Font::InterVariable,
12210 #[cfg(feature = "static")]
12211 Font::InterTightThin,
12212 #[cfg(feature = "static")]
12213 Font::InterTightExtraLight,
12214 #[cfg(feature = "static")]
12215 Font::InterTightLight,
12216 #[cfg(feature = "static")]
12217 Font::InterTightRegular,
12218 #[cfg(feature = "static")]
12219 Font::InterTightMedium,
12220 #[cfg(feature = "static")]
12221 Font::InterTightSemiBold,
12222 #[cfg(feature = "static")]
12223 Font::InterTightBold,
12224 #[cfg(feature = "static")]
12225 Font::InterTightExtraBold,
12226 #[cfg(feature = "static")]
12227 Font::InterTightBlack,
12228 #[cfg(feature = "static")]
12229 Font::InterTightThinItalic,
12230 #[cfg(feature = "static")]
12231 Font::InterTightExtraLightItalic,
12232 #[cfg(feature = "static")]
12233 Font::InterTightLightItalic,
12234 #[cfg(feature = "static")]
12235 Font::InterTightItalic,
12236 #[cfg(feature = "static")]
12237 Font::InterTightMediumItalic,
12238 #[cfg(feature = "static")]
12239 Font::InterTightSemiBoldItalic,
12240 #[cfg(feature = "static")]
12241 Font::InterTightBoldItalic,
12242 #[cfg(feature = "static")]
12243 Font::InterTightExtraBoldItalic,
12244 #[cfg(feature = "static")]
12245 Font::InterTightBlackItalic,
12246 #[cfg(feature = "variable")]
12247 Font::InterTightVariable,
12248 #[cfg(feature = "variable")]
12249 Font::InterTightItalicVariable,
12250 #[cfg(feature = "static")]
12251 Font::IstokWebRegular,
12252 #[cfg(feature = "static")]
12253 Font::IstokWebItalic,
12254 #[cfg(feature = "static")]
12255 Font::IstokWebBold,
12256 #[cfg(feature = "static")]
12257 Font::IstokWebBoldItalic,
12258 #[cfg(feature = "static")]
12259 Font::JaldiRegular,
12260 #[cfg(feature = "static")]
12261 Font::JaldiBold,
12262 #[cfg(feature = "static")]
12263 Font::Jaro9ptRegular,
12264 #[cfg(feature = "static")]
12265 Font::JaroRegular,
12266 #[cfg(feature = "static")]
12267 Font::Jaro24ptRegular,
12268 #[cfg(feature = "static")]
12269 Font::Jaro36ptRegular,
12270 #[cfg(feature = "static")]
12271 Font::Jaro60ptRegular,
12272 #[cfg(feature = "variable")]
12273 Font::JaroRegularVariable,
12274 #[cfg(feature = "static")]
12275 Font::JockeyOneRegular,
12276 #[cfg(feature = "static")]
12277 Font::JosefinSansThin,
12278 #[cfg(feature = "static")]
12279 Font::JosefinSansExtraLight,
12280 #[cfg(feature = "static")]
12281 Font::JosefinSansLight,
12282 #[cfg(feature = "static")]
12283 Font::JosefinSansRegular,
12284 #[cfg(feature = "static")]
12285 Font::JosefinSansMedium,
12286 #[cfg(feature = "static")]
12287 Font::JosefinSansSemiBold,
12288 #[cfg(feature = "static")]
12289 Font::JosefinSansBold,
12290 #[cfg(feature = "static")]
12291 Font::JosefinSansThinItalic,
12292 #[cfg(feature = "static")]
12293 Font::JosefinSansExtraLightItalic,
12294 #[cfg(feature = "static")]
12295 Font::JosefinSansLightItalic,
12296 #[cfg(feature = "static")]
12297 Font::JosefinSansItalic,
12298 #[cfg(feature = "static")]
12299 Font::JosefinSansMediumItalic,
12300 #[cfg(feature = "static")]
12301 Font::JosefinSansSemiBoldItalic,
12302 #[cfg(feature = "static")]
12303 Font::JosefinSansBoldItalic,
12304 #[cfg(feature = "variable")]
12305 Font::JosefinSansVariable,
12306 #[cfg(feature = "variable")]
12307 Font::JosefinSansItalicVariable,
12308 #[cfg(feature = "static")]
12309 Font::JostThin,
12310 #[cfg(feature = "static")]
12311 Font::JostExtraLight,
12312 #[cfg(feature = "static")]
12313 Font::JostLight,
12314 #[cfg(feature = "static")]
12315 Font::JostRegular,
12316 #[cfg(feature = "static")]
12317 Font::JostMedium,
12318 #[cfg(feature = "static")]
12319 Font::JostSemiBold,
12320 #[cfg(feature = "static")]
12321 Font::JostBold,
12322 #[cfg(feature = "static")]
12323 Font::JostExtraBold,
12324 #[cfg(feature = "static")]
12325 Font::JostBlack,
12326 #[cfg(feature = "static")]
12327 Font::JostThinItalic,
12328 #[cfg(feature = "static")]
12329 Font::JostExtraLightItalic,
12330 #[cfg(feature = "static")]
12331 Font::JostLightItalic,
12332 #[cfg(feature = "static")]
12333 Font::JostItalic,
12334 #[cfg(feature = "static")]
12335 Font::JostMediumItalic,
12336 #[cfg(feature = "static")]
12337 Font::JostSemiBoldItalic,
12338 #[cfg(feature = "static")]
12339 Font::JostBoldItalic,
12340 #[cfg(feature = "static")]
12341 Font::JostExtraBoldItalic,
12342 #[cfg(feature = "static")]
12343 Font::JostBlackItalic,
12344 #[cfg(feature = "variable")]
12345 Font::JostVariable,
12346 #[cfg(feature = "variable")]
12347 Font::JostItalicVariable,
12348 #[cfg(feature = "static")]
12349 Font::JuaRegular,
12350 #[cfg(feature = "static")]
12351 Font::JuliusSansOneRegular,
12352 #[cfg(feature = "static")]
12353 Font::JuraLight,
12354 #[cfg(feature = "static")]
12355 Font::JuraRegular,
12356 #[cfg(feature = "static")]
12357 Font::JuraMedium,
12358 #[cfg(feature = "static")]
12359 Font::JuraSemiBold,
12360 #[cfg(feature = "static")]
12361 Font::JuraBold,
12362 #[cfg(feature = "variable")]
12363 Font::JuraVariable,
12364 #[cfg(feature = "static")]
12365 Font::K2DThin,
12366 #[cfg(feature = "static")]
12367 Font::K2DThinItalic,
12368 #[cfg(feature = "static")]
12369 Font::K2DExtraLight,
12370 #[cfg(feature = "static")]
12371 Font::K2DExtraLightItalic,
12372 #[cfg(feature = "static")]
12373 Font::K2DLight,
12374 #[cfg(feature = "static")]
12375 Font::K2DLightItalic,
12376 #[cfg(feature = "static")]
12377 Font::K2DRegular,
12378 #[cfg(feature = "static")]
12379 Font::K2DItalic,
12380 #[cfg(feature = "static")]
12381 Font::K2DMedium,
12382 #[cfg(feature = "static")]
12383 Font::K2DMediumItalic,
12384 #[cfg(feature = "static")]
12385 Font::K2DSemiBold,
12386 #[cfg(feature = "static")]
12387 Font::K2DSemiBoldItalic,
12388 #[cfg(feature = "static")]
12389 Font::K2DBold,
12390 #[cfg(feature = "static")]
12391 Font::K2DBoldItalic,
12392 #[cfg(feature = "static")]
12393 Font::K2DExtraBold,
12394 #[cfg(feature = "static")]
12395 Font::K2DExtraBoldItalic,
12396 #[cfg(feature = "static")]
12397 Font::KanitThin,
12398 #[cfg(feature = "static")]
12399 Font::KanitThinItalic,
12400 #[cfg(feature = "static")]
12401 Font::KanitExtraLight,
12402 #[cfg(feature = "static")]
12403 Font::KanitExtraLightItalic,
12404 #[cfg(feature = "static")]
12405 Font::KanitLight,
12406 #[cfg(feature = "static")]
12407 Font::KanitLightItalic,
12408 #[cfg(feature = "static")]
12409 Font::KanitRegular,
12410 #[cfg(feature = "static")]
12411 Font::KanitItalic,
12412 #[cfg(feature = "static")]
12413 Font::KanitMedium,
12414 #[cfg(feature = "static")]
12415 Font::KanitMediumItalic,
12416 #[cfg(feature = "static")]
12417 Font::KanitSemiBold,
12418 #[cfg(feature = "static")]
12419 Font::KanitSemiBoldItalic,
12420 #[cfg(feature = "static")]
12421 Font::KanitBold,
12422 #[cfg(feature = "static")]
12423 Font::KanitBoldItalic,
12424 #[cfg(feature = "static")]
12425 Font::KanitExtraBold,
12426 #[cfg(feature = "static")]
12427 Font::KanitExtraBoldItalic,
12428 #[cfg(feature = "static")]
12429 Font::KanitBlack,
12430 #[cfg(feature = "static")]
12431 Font::KanitBlackItalic,
12432 #[cfg(feature = "static")]
12433 Font::KantumruyProThin,
12434 #[cfg(feature = "static")]
12435 Font::KantumruyProExtraLight,
12436 #[cfg(feature = "static")]
12437 Font::KantumruyProLight,
12438 #[cfg(feature = "static")]
12439 Font::KantumruyProRegular,
12440 #[cfg(feature = "static")]
12441 Font::KantumruyProMedium,
12442 #[cfg(feature = "static")]
12443 Font::KantumruyProSemiBold,
12444 #[cfg(feature = "static")]
12445 Font::KantumruyProBold,
12446 #[cfg(feature = "static")]
12447 Font::KantumruyProThinItalic,
12448 #[cfg(feature = "static")]
12449 Font::KantumruyProExtraLightItalic,
12450 #[cfg(feature = "static")]
12451 Font::KantumruyProLightItalic,
12452 #[cfg(feature = "static")]
12453 Font::KantumruyProItalic,
12454 #[cfg(feature = "static")]
12455 Font::KantumruyProMediumItalic,
12456 #[cfg(feature = "static")]
12457 Font::KantumruyProSemiBoldItalic,
12458 #[cfg(feature = "static")]
12459 Font::KantumruyProBoldItalic,
12460 #[cfg(feature = "variable")]
12461 Font::KantumruyProVariable,
12462 #[cfg(feature = "variable")]
12463 Font::KantumruyProItalicVariable,
12464 #[cfg(feature = "static")]
12465 Font::KarlaExtraLight,
12466 #[cfg(feature = "static")]
12467 Font::KarlaLight,
12468 #[cfg(feature = "static")]
12469 Font::KarlaRegular,
12470 #[cfg(feature = "static")]
12471 Font::KarlaMedium,
12472 #[cfg(feature = "static")]
12473 Font::KarlaSemiBold,
12474 #[cfg(feature = "static")]
12475 Font::KarlaBold,
12476 #[cfg(feature = "static")]
12477 Font::KarlaExtraBold,
12478 #[cfg(feature = "static")]
12479 Font::KarlaExtraLightItalic,
12480 #[cfg(feature = "static")]
12481 Font::KarlaLightItalic,
12482 #[cfg(feature = "static")]
12483 Font::KarlaItalic,
12484 #[cfg(feature = "static")]
12485 Font::KarlaMediumItalic,
12486 #[cfg(feature = "static")]
12487 Font::KarlaSemiBoldItalic,
12488 #[cfg(feature = "static")]
12489 Font::KarlaBoldItalic,
12490 #[cfg(feature = "static")]
12491 Font::KarlaExtraBoldItalic,
12492 #[cfg(feature = "variable")]
12493 Font::KarlaVariable,
12494 #[cfg(feature = "variable")]
12495 Font::KarlaItalicVariable,
12496 #[cfg(feature = "static")]
12497 Font::KdamThmorProRegular,
12498 #[cfg(feature = "static")]
12499 Font::KhandLight,
12500 #[cfg(feature = "static")]
12501 Font::KhandRegular,
12502 #[cfg(feature = "static")]
12503 Font::KhandMedium,
12504 #[cfg(feature = "static")]
12505 Font::KhandSemiBold,
12506 #[cfg(feature = "static")]
12507 Font::KhandBold,
12508 #[cfg(feature = "static")]
12509 Font::KhmerRegular,
12510 #[cfg(feature = "static")]
12511 Font::KhulaLight,
12512 #[cfg(feature = "static")]
12513 Font::KhulaRegular,
12514 #[cfg(feature = "static")]
12515 Font::KhulaSemiBold,
12516 #[cfg(feature = "static")]
12517 Font::KhulaBold,
12518 #[cfg(feature = "static")]
12519 Font::KhulaExtraBold,
12520 #[cfg(feature = "static")]
12521 Font::KiteOneRegular,
12522 #[cfg(feature = "static")]
12523 Font::KoHoExtraLight,
12524 #[cfg(feature = "static")]
12525 Font::KoHoExtraLightItalic,
12526 #[cfg(feature = "static")]
12527 Font::KoHoLight,
12528 #[cfg(feature = "static")]
12529 Font::KoHoLightItalic,
12530 #[cfg(feature = "static")]
12531 Font::KoHoRegular,
12532 #[cfg(feature = "static")]
12533 Font::KoHoItalic,
12534 #[cfg(feature = "static")]
12535 Font::KoHoMedium,
12536 #[cfg(feature = "static")]
12537 Font::KoHoMediumItalic,
12538 #[cfg(feature = "static")]
12539 Font::KoHoSemiBold,
12540 #[cfg(feature = "static")]
12541 Font::KoHoSemiBoldItalic,
12542 #[cfg(feature = "static")]
12543 Font::KoHoBold,
12544 #[cfg(feature = "static")]
12545 Font::KoHoBoldItalic,
12546 #[cfg(feature = "static")]
12547 Font::KodchasanExtraLight,
12548 #[cfg(feature = "static")]
12549 Font::KodchasanExtraLightItalic,
12550 #[cfg(feature = "static")]
12551 Font::KodchasanLight,
12552 #[cfg(feature = "static")]
12553 Font::KodchasanLightItalic,
12554 #[cfg(feature = "static")]
12555 Font::KodchasanRegular,
12556 #[cfg(feature = "static")]
12557 Font::KodchasanItalic,
12558 #[cfg(feature = "static")]
12559 Font::KodchasanMedium,
12560 #[cfg(feature = "static")]
12561 Font::KodchasanMediumItalic,
12562 #[cfg(feature = "static")]
12563 Font::KodchasanSemiBold,
12564 #[cfg(feature = "static")]
12565 Font::KodchasanSemiBoldItalic,
12566 #[cfg(feature = "static")]
12567 Font::KodchasanBold,
12568 #[cfg(feature = "static")]
12569 Font::KodchasanBoldItalic,
12570 #[cfg(feature = "static")]
12571 Font::KosugiRegular,
12572 #[cfg(feature = "static")]
12573 Font::KosugiMaruRegular,
12574 #[cfg(feature = "static")]
12575 Font::KronaOneRegular,
12576 #[cfg(feature = "static")]
12577 Font::KrubExtraLight,
12578 #[cfg(feature = "static")]
12579 Font::KrubExtraLightItalic,
12580 #[cfg(feature = "static")]
12581 Font::KrubLight,
12582 #[cfg(feature = "static")]
12583 Font::KrubLightItalic,
12584 #[cfg(feature = "static")]
12585 Font::KrubRegular,
12586 #[cfg(feature = "static")]
12587 Font::KrubItalic,
12588 #[cfg(feature = "static")]
12589 Font::KrubMedium,
12590 #[cfg(feature = "static")]
12591 Font::KrubMediumItalic,
12592 #[cfg(feature = "static")]
12593 Font::KrubSemiBold,
12594 #[cfg(feature = "static")]
12595 Font::KrubSemiBoldItalic,
12596 #[cfg(feature = "static")]
12597 Font::KrubBold,
12598 #[cfg(feature = "static")]
12599 Font::KrubBoldItalic,
12600 #[cfg(feature = "static")]
12601 Font::KufamRegular,
12602 #[cfg(feature = "static")]
12603 Font::KufamMedium,
12604 #[cfg(feature = "static")]
12605 Font::KufamSemiBold,
12606 #[cfg(feature = "static")]
12607 Font::KufamBold,
12608 #[cfg(feature = "static")]
12609 Font::KufamExtraBold,
12610 #[cfg(feature = "static")]
12611 Font::KufamBlack,
12612 #[cfg(feature = "static")]
12613 Font::KufamItalic,
12614 #[cfg(feature = "static")]
12615 Font::KufamMediumItalic,
12616 #[cfg(feature = "static")]
12617 Font::KufamSemiBoldItalic,
12618 #[cfg(feature = "static")]
12619 Font::KufamBoldItalic,
12620 #[cfg(feature = "static")]
12621 Font::KufamExtraBoldItalic,
12622 #[cfg(feature = "static")]
12623 Font::KufamBlackItalic,
12624 #[cfg(feature = "variable")]
12625 Font::KufamVariable,
12626 #[cfg(feature = "variable")]
12627 Font::KufamItalicVariable,
12628 #[cfg(feature = "static")]
12629 Font::KulimParkExtraLight,
12630 #[cfg(feature = "static")]
12631 Font::KulimParkExtraLightItalic,
12632 #[cfg(feature = "static")]
12633 Font::KulimParkLight,
12634 #[cfg(feature = "static")]
12635 Font::KulimParkLightItalic,
12636 #[cfg(feature = "static")]
12637 Font::KulimParkRegular,
12638 #[cfg(feature = "static")]
12639 Font::KulimParkItalic,
12640 #[cfg(feature = "static")]
12641 Font::KulimParkSemiBold,
12642 #[cfg(feature = "static")]
12643 Font::KulimParkSemiBoldItalic,
12644 #[cfg(feature = "static")]
12645 Font::KulimParkBold,
12646 #[cfg(feature = "static")]
12647 Font::KulimParkBoldItalic,
12648 #[cfg(feature = "static")]
12649 Font::KumbhSansThin,
12650 #[cfg(feature = "static")]
12651 Font::KumbhSansExtraLight,
12652 #[cfg(feature = "static")]
12653 Font::KumbhSansLight,
12654 #[cfg(feature = "static")]
12655 Font::KumbhSansRegular,
12656 #[cfg(feature = "static")]
12657 Font::KumbhSansMedium,
12658 #[cfg(feature = "static")]
12659 Font::KumbhSansSemiBold,
12660 #[cfg(feature = "static")]
12661 Font::KumbhSansBold,
12662 #[cfg(feature = "static")]
12663 Font::KumbhSansExtraBold,
12664 #[cfg(feature = "static")]
12665 Font::KumbhSansBlack,
12666 #[cfg(feature = "variable")]
12667 Font::KumbhSansVariable,
12668 #[cfg(feature = "static")]
12669 Font::LailaLight,
12670 #[cfg(feature = "static")]
12671 Font::LailaRegular,
12672 #[cfg(feature = "static")]
12673 Font::LailaMedium,
12674 #[cfg(feature = "static")]
12675 Font::LailaSemiBold,
12676 #[cfg(feature = "static")]
12677 Font::LailaBold,
12678 #[cfg(feature = "static")]
12679 Font::LatoThin,
12680 #[cfg(feature = "static")]
12681 Font::LatoThinItalic,
12682 #[cfg(feature = "static")]
12683 Font::LatoLight,
12684 #[cfg(feature = "static")]
12685 Font::LatoLightItalic,
12686 #[cfg(feature = "static")]
12687 Font::LatoRegular,
12688 #[cfg(feature = "static")]
12689 Font::LatoItalic,
12690 #[cfg(feature = "static")]
12691 Font::LatoBold,
12692 #[cfg(feature = "static")]
12693 Font::LatoBoldItalic,
12694 #[cfg(feature = "static")]
12695 Font::LatoBlack,
12696 #[cfg(feature = "static")]
12697 Font::LatoBlackItalic,
12698 #[cfg(feature = "static")]
12699 Font::LeagueGothicCondensedRegular,
12700 #[cfg(feature = "static")]
12701 Font::LeagueGothicSemiCondensedRegular,
12702 #[cfg(feature = "static")]
12703 Font::LeagueGothicRegular,
12704 #[cfg(feature = "variable")]
12705 Font::LeagueGothicRegularVariable,
12706 #[cfg(feature = "static")]
12707 Font::LeagueSpartanThin,
12708 #[cfg(feature = "static")]
12709 Font::LeagueSpartanExtraLight,
12710 #[cfg(feature = "static")]
12711 Font::LeagueSpartanLight,
12712 #[cfg(feature = "static")]
12713 Font::LeagueSpartanRegular,
12714 #[cfg(feature = "static")]
12715 Font::LeagueSpartanMedium,
12716 #[cfg(feature = "static")]
12717 Font::LeagueSpartanSemiBold,
12718 #[cfg(feature = "static")]
12719 Font::LeagueSpartanBold,
12720 #[cfg(feature = "static")]
12721 Font::LeagueSpartanExtraBold,
12722 #[cfg(feature = "static")]
12723 Font::LeagueSpartanBlack,
12724 #[cfg(feature = "variable")]
12725 Font::LeagueSpartanVariable,
12726 #[cfg(feature = "static")]
12727 Font::LexendThin,
12728 #[cfg(feature = "static")]
12729 Font::LexendExtraLight,
12730 #[cfg(feature = "static")]
12731 Font::LexendLight,
12732 #[cfg(feature = "static")]
12733 Font::LexendRegular,
12734 #[cfg(feature = "static")]
12735 Font::LexendMedium,
12736 #[cfg(feature = "static")]
12737 Font::LexendSemiBold,
12738 #[cfg(feature = "static")]
12739 Font::LexendBold,
12740 #[cfg(feature = "static")]
12741 Font::LexendExtraBold,
12742 #[cfg(feature = "static")]
12743 Font::LexendBlack,
12744 #[cfg(feature = "variable")]
12745 Font::LexendVariable,
12746 #[cfg(feature = "static")]
12747 Font::LexendDecaThin,
12748 #[cfg(feature = "static")]
12749 Font::LexendDecaExtraLight,
12750 #[cfg(feature = "static")]
12751 Font::LexendDecaLight,
12752 #[cfg(feature = "static")]
12753 Font::LexendDecaRegular,
12754 #[cfg(feature = "static")]
12755 Font::LexendDecaMedium,
12756 #[cfg(feature = "static")]
12757 Font::LexendDecaSemiBold,
12758 #[cfg(feature = "static")]
12759 Font::LexendDecaBold,
12760 #[cfg(feature = "static")]
12761 Font::LexendDecaExtraBold,
12762 #[cfg(feature = "static")]
12763 Font::LexendDecaBlack,
12764 #[cfg(feature = "variable")]
12765 Font::LexendDecaVariable,
12766 #[cfg(feature = "static")]
12767 Font::LexendExaThin,
12768 #[cfg(feature = "static")]
12769 Font::LexendExaExtraLight,
12770 #[cfg(feature = "static")]
12771 Font::LexendExaLight,
12772 #[cfg(feature = "static")]
12773 Font::LexendExaRegular,
12774 #[cfg(feature = "static")]
12775 Font::LexendExaMedium,
12776 #[cfg(feature = "static")]
12777 Font::LexendExaSemiBold,
12778 #[cfg(feature = "static")]
12779 Font::LexendExaBold,
12780 #[cfg(feature = "static")]
12781 Font::LexendExaExtraBold,
12782 #[cfg(feature = "static")]
12783 Font::LexendExaBlack,
12784 #[cfg(feature = "variable")]
12785 Font::LexendExaVariable,
12786 #[cfg(feature = "static")]
12787 Font::LexendGigaThin,
12788 #[cfg(feature = "static")]
12789 Font::LexendGigaExtraLight,
12790 #[cfg(feature = "static")]
12791 Font::LexendGigaLight,
12792 #[cfg(feature = "static")]
12793 Font::LexendGigaRegular,
12794 #[cfg(feature = "static")]
12795 Font::LexendGigaMedium,
12796 #[cfg(feature = "static")]
12797 Font::LexendGigaSemiBold,
12798 #[cfg(feature = "static")]
12799 Font::LexendGigaBold,
12800 #[cfg(feature = "static")]
12801 Font::LexendGigaExtraBold,
12802 #[cfg(feature = "static")]
12803 Font::LexendGigaBlack,
12804 #[cfg(feature = "variable")]
12805 Font::LexendGigaVariable,
12806 #[cfg(feature = "static")]
12807 Font::LexendMegaThin,
12808 #[cfg(feature = "static")]
12809 Font::LexendMegaExtraLight,
12810 #[cfg(feature = "static")]
12811 Font::LexendMegaLight,
12812 #[cfg(feature = "static")]
12813 Font::LexendMegaRegular,
12814 #[cfg(feature = "static")]
12815 Font::LexendMegaMedium,
12816 #[cfg(feature = "static")]
12817 Font::LexendMegaSemiBold,
12818 #[cfg(feature = "static")]
12819 Font::LexendMegaBold,
12820 #[cfg(feature = "static")]
12821 Font::LexendMegaExtraBold,
12822 #[cfg(feature = "static")]
12823 Font::LexendMegaBlack,
12824 #[cfg(feature = "variable")]
12825 Font::LexendMegaVariable,
12826 #[cfg(feature = "static")]
12827 Font::LexendPetaThin,
12828 #[cfg(feature = "static")]
12829 Font::LexendPetaExtraLight,
12830 #[cfg(feature = "static")]
12831 Font::LexendPetaLight,
12832 #[cfg(feature = "static")]
12833 Font::LexendPetaRegular,
12834 #[cfg(feature = "static")]
12835 Font::LexendPetaMedium,
12836 #[cfg(feature = "static")]
12837 Font::LexendPetaSemiBold,
12838 #[cfg(feature = "static")]
12839 Font::LexendPetaBold,
12840 #[cfg(feature = "static")]
12841 Font::LexendPetaExtraBold,
12842 #[cfg(feature = "static")]
12843 Font::LexendPetaBlack,
12844 #[cfg(feature = "variable")]
12845 Font::LexendPetaVariable,
12846 #[cfg(feature = "static")]
12847 Font::LexendTeraThin,
12848 #[cfg(feature = "static")]
12849 Font::LexendTeraExtraLight,
12850 #[cfg(feature = "static")]
12851 Font::LexendTeraLight,
12852 #[cfg(feature = "static")]
12853 Font::LexendTeraRegular,
12854 #[cfg(feature = "static")]
12855 Font::LexendTeraMedium,
12856 #[cfg(feature = "static")]
12857 Font::LexendTeraSemiBold,
12858 #[cfg(feature = "static")]
12859 Font::LexendTeraBold,
12860 #[cfg(feature = "static")]
12861 Font::LexendTeraExtraBold,
12862 #[cfg(feature = "static")]
12863 Font::LexendTeraBlack,
12864 #[cfg(feature = "variable")]
12865 Font::LexendTeraVariable,
12866 #[cfg(feature = "static")]
12867 Font::LexendZettaThin,
12868 #[cfg(feature = "static")]
12869 Font::LexendZettaExtraLight,
12870 #[cfg(feature = "static")]
12871 Font::LexendZettaLight,
12872 #[cfg(feature = "static")]
12873 Font::LexendZettaRegular,
12874 #[cfg(feature = "static")]
12875 Font::LexendZettaMedium,
12876 #[cfg(feature = "static")]
12877 Font::LexendZettaSemiBold,
12878 #[cfg(feature = "static")]
12879 Font::LexendZettaBold,
12880 #[cfg(feature = "static")]
12881 Font::LexendZettaExtraBold,
12882 #[cfg(feature = "static")]
12883 Font::LexendZettaBlack,
12884 #[cfg(feature = "variable")]
12885 Font::LexendZettaVariable,
12886 #[cfg(feature = "static")]
12887 Font::LibreFranklinThin,
12888 #[cfg(feature = "static")]
12889 Font::LibreFranklinExtraLight,
12890 #[cfg(feature = "static")]
12891 Font::LibreFranklinLight,
12892 #[cfg(feature = "static")]
12893 Font::LibreFranklinRegular,
12894 #[cfg(feature = "static")]
12895 Font::LibreFranklinMedium,
12896 #[cfg(feature = "static")]
12897 Font::LibreFranklinSemiBold,
12898 #[cfg(feature = "static")]
12899 Font::LibreFranklinBold,
12900 #[cfg(feature = "static")]
12901 Font::LibreFranklinExtraBold,
12902 #[cfg(feature = "static")]
12903 Font::LibreFranklinBlack,
12904 #[cfg(feature = "static")]
12905 Font::LibreFranklinThinItalic,
12906 #[cfg(feature = "static")]
12907 Font::LibreFranklinExtraLightItalic,
12908 #[cfg(feature = "static")]
12909 Font::LibreFranklinLightItalic,
12910 #[cfg(feature = "static")]
12911 Font::LibreFranklinItalic,
12912 #[cfg(feature = "static")]
12913 Font::LibreFranklinMediumItalic,
12914 #[cfg(feature = "static")]
12915 Font::LibreFranklinSemiBoldItalic,
12916 #[cfg(feature = "static")]
12917 Font::LibreFranklinBoldItalic,
12918 #[cfg(feature = "static")]
12919 Font::LibreFranklinExtraBoldItalic,
12920 #[cfg(feature = "static")]
12921 Font::LibreFranklinBlackItalic,
12922 #[cfg(feature = "variable")]
12923 Font::LibreFranklinVariable,
12924 #[cfg(feature = "variable")]
12925 Font::LibreFranklinItalicVariable,
12926 #[cfg(feature = "static")]
12927 Font::LivvicThin,
12928 #[cfg(feature = "static")]
12929 Font::LivvicThinItalic,
12930 #[cfg(feature = "static")]
12931 Font::LivvicExtraLight,
12932 #[cfg(feature = "static")]
12933 Font::LivvicExtraLightItalic,
12934 #[cfg(feature = "static")]
12935 Font::LivvicLight,
12936 #[cfg(feature = "static")]
12937 Font::LivvicLightItalic,
12938 #[cfg(feature = "static")]
12939 Font::LivvicRegular,
12940 #[cfg(feature = "static")]
12941 Font::LivvicItalic,
12942 #[cfg(feature = "static")]
12943 Font::LivvicMedium,
12944 #[cfg(feature = "static")]
12945 Font::LivvicMediumItalic,
12946 #[cfg(feature = "static")]
12947 Font::LivvicSemiBold,
12948 #[cfg(feature = "static")]
12949 Font::LivvicSemiBoldItalic,
12950 #[cfg(feature = "static")]
12951 Font::LivvicBold,
12952 #[cfg(feature = "static")]
12953 Font::LivvicBoldItalic,
12954 #[cfg(feature = "static")]
12955 Font::LivvicBlack,
12956 #[cfg(feature = "static")]
12957 Font::LivvicBlackItalic,
12958 #[cfg(feature = "static")]
12959 Font::LunasimaRegular,
12960 #[cfg(feature = "static")]
12961 Font::LunasimaBold,
12962 #[cfg(feature = "static")]
12963 Font::MPLUS1Thin,
12964 #[cfg(feature = "static")]
12965 Font::MPLUS1ExtraLight,
12966 #[cfg(feature = "static")]
12967 Font::MPLUS1Light,
12968 #[cfg(feature = "static")]
12969 Font::MPLUS1Regular,
12970 #[cfg(feature = "static")]
12971 Font::MPLUS1Medium,
12972 #[cfg(feature = "static")]
12973 Font::MPLUS1SemiBold,
12974 #[cfg(feature = "static")]
12975 Font::MPLUS1Bold,
12976 #[cfg(feature = "static")]
12977 Font::MPLUS1ExtraBold,
12978 #[cfg(feature = "static")]
12979 Font::MPLUS1Black,
12980 #[cfg(feature = "variable")]
12981 Font::MPLUS1Variable,
12982 #[cfg(feature = "static")]
12983 Font::MPLUS1pThin,
12984 #[cfg(feature = "static")]
12985 Font::MPLUS1pLight,
12986 #[cfg(feature = "static")]
12987 Font::MPLUS1pRegular,
12988 #[cfg(feature = "static")]
12989 Font::MPLUS1pMedium,
12990 #[cfg(feature = "static")]
12991 Font::MPLUS1pBold,
12992 #[cfg(feature = "static")]
12993 Font::MPLUS1pExtraBold,
12994 #[cfg(feature = "static")]
12995 Font::MPLUS1pBlack,
12996 #[cfg(feature = "static")]
12997 Font::MPLUS2Thin,
12998 #[cfg(feature = "static")]
12999 Font::MPLUS2ExtraLight,
13000 #[cfg(feature = "static")]
13001 Font::MPLUS2Light,
13002 #[cfg(feature = "static")]
13003 Font::MPLUS2Regular,
13004 #[cfg(feature = "static")]
13005 Font::MPLUS2Medium,
13006 #[cfg(feature = "static")]
13007 Font::MPLUS2SemiBold,
13008 #[cfg(feature = "static")]
13009 Font::MPLUS2Bold,
13010 #[cfg(feature = "static")]
13011 Font::MPLUS2ExtraBold,
13012 #[cfg(feature = "static")]
13013 Font::MPLUS2Black,
13014 #[cfg(feature = "variable")]
13015 Font::MPLUS2Variable,
13016 #[cfg(feature = "static")]
13017 Font::MPLUSCodeLatinThin,
13018 #[cfg(feature = "static")]
13019 Font::MPLUSCodeLatinExtraLight,
13020 #[cfg(feature = "static")]
13021 Font::MPLUSCodeLatinLight,
13022 #[cfg(feature = "static")]
13023 Font::MPLUSCodeLatinRegular,
13024 #[cfg(feature = "static")]
13025 Font::MPLUSCodeLatinMedium,
13026 #[cfg(feature = "static")]
13027 Font::MPLUSCodeLatinSemiBold,
13028 #[cfg(feature = "static")]
13029 Font::MPLUSCodeLatinBold,
13030 #[cfg(feature = "static")]
13031 Font::MPLUSCodeLatinSemiExpandedThin,
13032 #[cfg(feature = "static")]
13033 Font::MPLUSCodeLatinSemiExpandedExtraLight,
13034 #[cfg(feature = "static")]
13035 Font::MPLUSCodeLatinSemiExpandedLight,
13036 #[cfg(feature = "static")]
13037 Font::MPLUSCodeLatinSemiExpandedRegular,
13038 #[cfg(feature = "static")]
13039 Font::MPLUSCodeLatinSemiExpandedMedium,
13040 #[cfg(feature = "static")]
13041 Font::MPLUSCodeLatinSemiExpandedSemiBold,
13042 #[cfg(feature = "static")]
13043 Font::MPLUSCodeLatinSemiExpandedBold,
13044 #[cfg(feature = "static")]
13045 Font::MPLUSCodeLatinExpandedThin,
13046 #[cfg(feature = "static")]
13047 Font::MPLUSCodeLatinExpandedExtraLight,
13048 #[cfg(feature = "static")]
13049 Font::MPLUSCodeLatinExpandedLight,
13050 #[cfg(feature = "static")]
13051 Font::MPLUSCodeLatinExpandedRegular,
13052 #[cfg(feature = "static")]
13053 Font::MPLUSCodeLatinExpandedMedium,
13054 #[cfg(feature = "static")]
13055 Font::MPLUSCodeLatinExpandedSemiBold,
13056 #[cfg(feature = "static")]
13057 Font::MPLUSCodeLatinExpandedBold,
13058 #[cfg(feature = "variable")]
13059 Font::MPLUSCodeLatinVariable,
13060 #[cfg(feature = "static")]
13061 Font::MPLUSRounded1cThin,
13062 #[cfg(feature = "static")]
13063 Font::MPLUSRounded1cLight,
13064 #[cfg(feature = "static")]
13065 Font::MPLUSRounded1cRegular,
13066 #[cfg(feature = "static")]
13067 Font::MPLUSRounded1cMedium,
13068 #[cfg(feature = "static")]
13069 Font::MPLUSRounded1cBold,
13070 #[cfg(feature = "static")]
13071 Font::MPLUSRounded1cExtraBold,
13072 #[cfg(feature = "static")]
13073 Font::MPLUSRounded1cBlack,
13074 #[cfg(feature = "static")]
13075 Font::MadaExtraLight,
13076 #[cfg(feature = "static")]
13077 Font::MadaLight,
13078 #[cfg(feature = "static")]
13079 Font::MadaRegular,
13080 #[cfg(feature = "static")]
13081 Font::MadaMedium,
13082 #[cfg(feature = "static")]
13083 Font::MadaSemiBold,
13084 #[cfg(feature = "static")]
13085 Font::MadaBold,
13086 #[cfg(feature = "static")]
13087 Font::MadaExtraBold,
13088 #[cfg(feature = "static")]
13089 Font::MadaBlack,
13090 #[cfg(feature = "variable")]
13091 Font::MadaVariable,
13092 #[cfg(feature = "static")]
13093 Font::MadimiOneRegular,
13094 #[cfg(feature = "static")]
13095 Font::MagraRegular,
13096 #[cfg(feature = "static")]
13097 Font::MagraBold,
13098 #[cfg(feature = "static")]
13099 Font::MakoRegular,
13100 #[cfg(feature = "static")]
13101 Font::MallannaRegular,
13102 #[cfg(feature = "static")]
13103 Font::MandaliRegular,
13104 #[cfg(feature = "static")]
13105 Font::ManjariThin,
13106 #[cfg(feature = "static")]
13107 Font::ManjariRegular,
13108 #[cfg(feature = "static")]
13109 Font::ManjariBold,
13110 #[cfg(feature = "static")]
13111 Font::ManropeExtraLight,
13112 #[cfg(feature = "static")]
13113 Font::ManropeLight,
13114 #[cfg(feature = "static")]
13115 Font::ManropeRegular,
13116 #[cfg(feature = "static")]
13117 Font::ManropeMedium,
13118 #[cfg(feature = "static")]
13119 Font::ManropeSemiBold,
13120 #[cfg(feature = "static")]
13121 Font::ManropeBold,
13122 #[cfg(feature = "static")]
13123 Font::ManropeExtraBold,
13124 #[cfg(feature = "variable")]
13125 Font::ManropeVariable,
13126 #[cfg(feature = "static")]
13127 Font::MarmeladRegular,
13128 #[cfg(feature = "static")]
13129 Font::MartelSansExtraLight,
13130 #[cfg(feature = "static")]
13131 Font::MartelSansLight,
13132 #[cfg(feature = "static")]
13133 Font::MartelSansRegular,
13134 #[cfg(feature = "static")]
13135 Font::MartelSansSemiBold,
13136 #[cfg(feature = "static")]
13137 Font::MartelSansBold,
13138 #[cfg(feature = "static")]
13139 Font::MartelSansExtraBold,
13140 #[cfg(feature = "static")]
13141 Font::MartelSansBlack,
13142 #[cfg(feature = "static")]
13143 Font::MarvelRegular,
13144 #[cfg(feature = "static")]
13145 Font::MarvelItalic,
13146 #[cfg(feature = "static")]
13147 Font::MarvelBold,
13148 #[cfg(feature = "static")]
13149 Font::MarvelBoldItalic,
13150 #[cfg(feature = "static")]
13151 Font::MavenProRegular,
13152 #[cfg(feature = "static")]
13153 Font::MavenProMedium,
13154 #[cfg(feature = "static")]
13155 Font::MavenProSemiBold,
13156 #[cfg(feature = "static")]
13157 Font::MavenProBold,
13158 #[cfg(feature = "static")]
13159 Font::MavenProExtraBold,
13160 #[cfg(feature = "static")]
13161 Font::MavenProBlack,
13162 #[cfg(feature = "variable")]
13163 Font::MavenProVariable,
13164 #[cfg(feature = "static")]
13165 Font::MeeraInimaiRegular,
13166 #[cfg(feature = "static")]
13167 Font::MerriweatherSansLight,
13168 #[cfg(feature = "static")]
13169 Font::MerriweatherSansRegular,
13170 #[cfg(feature = "static")]
13171 Font::MerriweatherSansMedium,
13172 #[cfg(feature = "static")]
13173 Font::MerriweatherSansSemiBold,
13174 #[cfg(feature = "static")]
13175 Font::MerriweatherSansBold,
13176 #[cfg(feature = "static")]
13177 Font::MerriweatherSansExtraBold,
13178 #[cfg(feature = "static")]
13179 Font::MerriweatherSansLightItalic,
13180 #[cfg(feature = "static")]
13181 Font::MerriweatherSansItalic,
13182 #[cfg(feature = "static")]
13183 Font::MerriweatherSansMediumItalic,
13184 #[cfg(feature = "static")]
13185 Font::MerriweatherSansSemiBoldItalic,
13186 #[cfg(feature = "static")]
13187 Font::MerriweatherSansBoldItalic,
13188 #[cfg(feature = "static")]
13189 Font::MerriweatherSansExtraBoldItalic,
13190 #[cfg(feature = "variable")]
13191 Font::MerriweatherSansVariable,
13192 #[cfg(feature = "variable")]
13193 Font::MerriweatherSansItalicVariable,
13194 #[cfg(feature = "static")]
13195 Font::MetrophobicRegular,
13196 #[cfg(feature = "static")]
13197 Font::MichromaRegular,
13198 #[cfg(feature = "static")]
13199 Font::MinaRegular,
13200 #[cfg(feature = "static")]
13201 Font::MinaBold,
13202 #[cfg(feature = "static")]
13203 Font::MingzatRegular,
13204 #[cfg(feature = "static")]
13205 Font::MiriamLibreRegular,
13206 #[cfg(feature = "static")]
13207 Font::MiriamLibreBold,
13208 #[cfg(feature = "static")]
13209 Font::MitrExtraLight,
13210 #[cfg(feature = "static")]
13211 Font::MitrLight,
13212 #[cfg(feature = "static")]
13213 Font::MitrRegular,
13214 #[cfg(feature = "static")]
13215 Font::MitrMedium,
13216 #[cfg(feature = "static")]
13217 Font::MitrSemiBold,
13218 #[cfg(feature = "static")]
13219 Font::MitrBold,
13220 #[cfg(feature = "static")]
13221 Font::MochiyPopOneRegular,
13222 #[cfg(feature = "static")]
13223 Font::MochiyPopPOneRegular,
13224 #[cfg(feature = "static")]
13225 Font::MohaveLight,
13226 #[cfg(feature = "static")]
13227 Font::MohaveRegular,
13228 #[cfg(feature = "static")]
13229 Font::MohaveMedium,
13230 #[cfg(feature = "static")]
13231 Font::MohaveSemiBold,
13232 #[cfg(feature = "static")]
13233 Font::MohaveBold,
13234 #[cfg(feature = "static")]
13235 Font::MohaveLightItalic,
13236 #[cfg(feature = "static")]
13237 Font::MohaveItalic,
13238 #[cfg(feature = "static")]
13239 Font::MohaveMediumItalic,
13240 #[cfg(feature = "static")]
13241 Font::MohaveSemiBoldItalic,
13242 #[cfg(feature = "static")]
13243 Font::MohaveBoldItalic,
13244 #[cfg(feature = "variable")]
13245 Font::MohaveVariable,
13246 #[cfg(feature = "variable")]
13247 Font::MohaveItalicVariable,
13248 #[cfg(feature = "static")]
13249 Font::MolengoRegular,
13250 #[cfg(feature = "static")]
13251 Font::MondaRegular,
13252 #[cfg(feature = "static")]
13253 Font::MondaMedium,
13254 #[cfg(feature = "static")]
13255 Font::MondaSemiBold,
13256 #[cfg(feature = "static")]
13257 Font::MondaBold,
13258 #[cfg(feature = "variable")]
13259 Font::MondaVariable,
13260 #[cfg(feature = "static")]
13261 Font::MonomaniacOneRegular,
13262 #[cfg(feature = "static")]
13263 Font::MontserratThin,
13264 #[cfg(feature = "static")]
13265 Font::MontserratExtraLight,
13266 #[cfg(feature = "static")]
13267 Font::MontserratLight,
13268 #[cfg(feature = "static")]
13269 Font::MontserratRegular,
13270 #[cfg(feature = "static")]
13271 Font::MontserratMedium,
13272 #[cfg(feature = "static")]
13273 Font::MontserratSemiBold,
13274 #[cfg(feature = "static")]
13275 Font::MontserratBold,
13276 #[cfg(feature = "static")]
13277 Font::MontserratExtraBold,
13278 #[cfg(feature = "static")]
13279 Font::MontserratBlack,
13280 #[cfg(feature = "static")]
13281 Font::MontserratThinItalic,
13282 #[cfg(feature = "static")]
13283 Font::MontserratExtraLightItalic,
13284 #[cfg(feature = "static")]
13285 Font::MontserratLightItalic,
13286 #[cfg(feature = "static")]
13287 Font::MontserratItalic,
13288 #[cfg(feature = "static")]
13289 Font::MontserratMediumItalic,
13290 #[cfg(feature = "static")]
13291 Font::MontserratSemiBoldItalic,
13292 #[cfg(feature = "static")]
13293 Font::MontserratBoldItalic,
13294 #[cfg(feature = "static")]
13295 Font::MontserratExtraBoldItalic,
13296 #[cfg(feature = "static")]
13297 Font::MontserratBlackItalic,
13298 #[cfg(feature = "variable")]
13299 Font::MontserratVariable,
13300 #[cfg(feature = "variable")]
13301 Font::MontserratItalicVariable,
13302 #[cfg(feature = "static")]
13303 Font::MontserratAlternatesThin,
13304 #[cfg(feature = "static")]
13305 Font::MontserratAlternatesThinItalic,
13306 #[cfg(feature = "static")]
13307 Font::MontserratAlternatesExtraLight,
13308 #[cfg(feature = "static")]
13309 Font::MontserratAlternatesExtraLightItalic,
13310 #[cfg(feature = "static")]
13311 Font::MontserratAlternatesLight,
13312 #[cfg(feature = "static")]
13313 Font::MontserratAlternatesLightItalic,
13314 #[cfg(feature = "static")]
13315 Font::MontserratAlternatesRegular,
13316 #[cfg(feature = "static")]
13317 Font::MontserratAlternatesItalic,
13318 #[cfg(feature = "static")]
13319 Font::MontserratAlternatesMedium,
13320 #[cfg(feature = "static")]
13321 Font::MontserratAlternatesMediumItalic,
13322 #[cfg(feature = "static")]
13323 Font::MontserratAlternatesSemiBold,
13324 #[cfg(feature = "static")]
13325 Font::MontserratAlternatesSemiBoldItalic,
13326 #[cfg(feature = "static")]
13327 Font::MontserratAlternatesBold,
13328 #[cfg(feature = "static")]
13329 Font::MontserratAlternatesBoldItalic,
13330 #[cfg(feature = "static")]
13331 Font::MontserratAlternatesExtraBold,
13332 #[cfg(feature = "static")]
13333 Font::MontserratAlternatesExtraBoldItalic,
13334 #[cfg(feature = "static")]
13335 Font::MontserratAlternatesBlack,
13336 #[cfg(feature = "static")]
13337 Font::MontserratAlternatesBlackItalic,
13338 #[cfg(feature = "static")]
13339 Font::MontserratSubrayadaRegular,
13340 #[cfg(feature = "static")]
13341 Font::MontserratSubrayadaBold,
13342 #[cfg(feature = "static")]
13343 Font::MooliRegular,
13344 #[cfg(feature = "static")]
13345 Font::MoulpaliRegular,
13346 #[cfg(feature = "static")]
13347 Font::MouseMemoirsRegular,
13348 #[cfg(feature = "static")]
13349 Font::MuktaExtraLight,
13350 #[cfg(feature = "static")]
13351 Font::MuktaLight,
13352 #[cfg(feature = "static")]
13353 Font::MuktaRegular,
13354 #[cfg(feature = "static")]
13355 Font::MuktaMedium,
13356 #[cfg(feature = "static")]
13357 Font::MuktaSemiBold,
13358 #[cfg(feature = "static")]
13359 Font::MuktaBold,
13360 #[cfg(feature = "static")]
13361 Font::MuktaExtraBold,
13362 #[cfg(feature = "static")]
13363 Font::MuktaMaheeExtraLight,
13364 #[cfg(feature = "static")]
13365 Font::MuktaMaheeLight,
13366 #[cfg(feature = "static")]
13367 Font::MuktaMaheeRegular,
13368 #[cfg(feature = "static")]
13369 Font::MuktaMaheeMedium,
13370 #[cfg(feature = "static")]
13371 Font::MuktaMaheeSemiBold,
13372 #[cfg(feature = "static")]
13373 Font::MuktaMaheeBold,
13374 #[cfg(feature = "static")]
13375 Font::MuktaMaheeExtraBold,
13376 #[cfg(feature = "static")]
13377 Font::MuktaMalarExtraLight,
13378 #[cfg(feature = "static")]
13379 Font::MuktaMalarLight,
13380 #[cfg(feature = "static")]
13381 Font::MuktaMalarRegular,
13382 #[cfg(feature = "static")]
13383 Font::MuktaMalarMedium,
13384 #[cfg(feature = "static")]
13385 Font::MuktaMalarSemiBold,
13386 #[cfg(feature = "static")]
13387 Font::MuktaMalarBold,
13388 #[cfg(feature = "static")]
13389 Font::MuktaMalarExtraBold,
13390 #[cfg(feature = "static")]
13391 Font::MuktaVaaniExtraLight,
13392 #[cfg(feature = "static")]
13393 Font::MuktaVaaniLight,
13394 #[cfg(feature = "static")]
13395 Font::MuktaVaaniRegular,
13396 #[cfg(feature = "static")]
13397 Font::MuktaVaaniMedium,
13398 #[cfg(feature = "static")]
13399 Font::MuktaVaaniSemiBold,
13400 #[cfg(feature = "static")]
13401 Font::MuktaVaaniBold,
13402 #[cfg(feature = "static")]
13403 Font::MuktaVaaniExtraBold,
13404 #[cfg(feature = "static")]
13405 Font::MulishExtraLight,
13406 #[cfg(feature = "static")]
13407 Font::MulishLight,
13408 #[cfg(feature = "static")]
13409 Font::MulishRegular,
13410 #[cfg(feature = "static")]
13411 Font::MulishMedium,
13412 #[cfg(feature = "static")]
13413 Font::MulishSemiBold,
13414 #[cfg(feature = "static")]
13415 Font::MulishBold,
13416 #[cfg(feature = "static")]
13417 Font::MulishExtraBold,
13418 #[cfg(feature = "static")]
13419 Font::MulishBlack,
13420 #[cfg(feature = "static")]
13421 Font::MulishExtraLightItalic,
13422 #[cfg(feature = "static")]
13423 Font::MulishLightItalic,
13424 #[cfg(feature = "static")]
13425 Font::MulishItalic,
13426 #[cfg(feature = "static")]
13427 Font::MulishMediumItalic,
13428 #[cfg(feature = "static")]
13429 Font::MulishSemiBoldItalic,
13430 #[cfg(feature = "static")]
13431 Font::MulishBoldItalic,
13432 #[cfg(feature = "static")]
13433 Font::MulishExtraBoldItalic,
13434 #[cfg(feature = "static")]
13435 Font::MulishBlackItalic,
13436 #[cfg(feature = "variable")]
13437 Font::MulishVariable,
13438 #[cfg(feature = "variable")]
13439 Font::MulishItalicVariable,
13440 #[cfg(feature = "static")]
13441 Font::MurechoThin,
13442 #[cfg(feature = "static")]
13443 Font::MurechoExtraLight,
13444 #[cfg(feature = "static")]
13445 Font::MurechoLight,
13446 #[cfg(feature = "static")]
13447 Font::MurechoRegular,
13448 #[cfg(feature = "static")]
13449 Font::MurechoMedium,
13450 #[cfg(feature = "static")]
13451 Font::MurechoSemiBold,
13452 #[cfg(feature = "static")]
13453 Font::MurechoBold,
13454 #[cfg(feature = "static")]
13455 Font::MurechoExtraBold,
13456 #[cfg(feature = "static")]
13457 Font::MurechoBlack,
13458 #[cfg(feature = "variable")]
13459 Font::MurechoVariable,
13460 #[cfg(feature = "static")]
13461 Font::NTRRegular,
13462 #[cfg(feature = "static")]
13463 Font::NanumGothicRegular,
13464 #[cfg(feature = "static")]
13465 Font::NanumGothicBold,
13466 #[cfg(feature = "static")]
13467 Font::NanumGothicExtraBold,
13468 #[cfg(feature = "static")]
13469 Font::NewsCycleRegular,
13470 #[cfg(feature = "static")]
13471 Font::NewsCycleBold,
13472 #[cfg(feature = "static")]
13473 Font::NiramitExtraLight,
13474 #[cfg(feature = "static")]
13475 Font::NiramitExtraLightItalic,
13476 #[cfg(feature = "static")]
13477 Font::NiramitLight,
13478 #[cfg(feature = "static")]
13479 Font::NiramitLightItalic,
13480 #[cfg(feature = "static")]
13481 Font::NiramitRegular,
13482 #[cfg(feature = "static")]
13483 Font::NiramitItalic,
13484 #[cfg(feature = "static")]
13485 Font::NiramitMedium,
13486 #[cfg(feature = "static")]
13487 Font::NiramitMediumItalic,
13488 #[cfg(feature = "static")]
13489 Font::NiramitSemiBold,
13490 #[cfg(feature = "static")]
13491 Font::NiramitSemiBoldItalic,
13492 #[cfg(feature = "static")]
13493 Font::NiramitBold,
13494 #[cfg(feature = "static")]
13495 Font::NiramitBoldItalic,
13496 #[cfg(feature = "static")]
13497 Font::NobileRegular,
13498 #[cfg(feature = "static")]
13499 Font::NobileItalic,
13500 #[cfg(feature = "static")]
13501 Font::NobileMedium,
13502 #[cfg(feature = "static")]
13503 Font::NobileMediumItalic,
13504 #[cfg(feature = "static")]
13505 Font::NobileBold,
13506 #[cfg(feature = "static")]
13507 Font::NobileBoldItalic,
13508 #[cfg(feature = "static")]
13509 Font::NokoraThin,
13510 #[cfg(feature = "static")]
13511 Font::NokoraLight,
13512 #[cfg(feature = "static")]
13513 Font::NokoraRegular,
13514 #[cfg(feature = "static")]
13515 Font::NokoraBold,
13516 #[cfg(feature = "static")]
13517 Font::NokoraBlack,
13518 #[cfg(feature = "static")]
13519 Font::NotableRegular,
13520 #[cfg(feature = "static")]
13521 Font::NotoColorEmojiRegular,
13522 #[cfg(feature = "static")]
13523 Font::NotoEmojiLight,
13524 #[cfg(feature = "static")]
13525 Font::NotoEmojiRegular,
13526 #[cfg(feature = "static")]
13527 Font::NotoEmojiMedium,
13528 #[cfg(feature = "static")]
13529 Font::NotoEmojiSemiBold,
13530 #[cfg(feature = "static")]
13531 Font::NotoEmojiBold,
13532 #[cfg(feature = "variable")]
13533 Font::NotoEmojiVariable,
13534 #[cfg(feature = "static")]
13535 Font::NotoKufiArabicThin,
13536 #[cfg(feature = "static")]
13537 Font::NotoKufiArabicExtraLight,
13538 #[cfg(feature = "static")]
13539 Font::NotoKufiArabicLight,
13540 #[cfg(feature = "static")]
13541 Font::NotoKufiArabicRegular,
13542 #[cfg(feature = "static")]
13543 Font::NotoKufiArabicMedium,
13544 #[cfg(feature = "static")]
13545 Font::NotoKufiArabicSemiBold,
13546 #[cfg(feature = "static")]
13547 Font::NotoKufiArabicBold,
13548 #[cfg(feature = "static")]
13549 Font::NotoKufiArabicExtraBold,
13550 #[cfg(feature = "static")]
13551 Font::NotoKufiArabicBlack,
13552 #[cfg(feature = "variable")]
13553 Font::NotoKufiArabicVariable,
13554 #[cfg(feature = "static")]
13555 Font::NotoMusicRegular,
13556 #[cfg(feature = "static")]
13557 Font::NotoSansExtraCondensedThin,
13558 #[cfg(feature = "static")]
13559 Font::NotoSansExtraCondensedExtraLight,
13560 #[cfg(feature = "static")]
13561 Font::NotoSansExtraCondensedLight,
13562 #[cfg(feature = "static")]
13563 Font::NotoSansExtraCondensedRegular,
13564 #[cfg(feature = "static")]
13565 Font::NotoSansExtraCondensedMedium,
13566 #[cfg(feature = "static")]
13567 Font::NotoSansExtraCondensedSemiBold,
13568 #[cfg(feature = "static")]
13569 Font::NotoSansExtraCondensedBold,
13570 #[cfg(feature = "static")]
13571 Font::NotoSansExtraCondensedExtraBold,
13572 #[cfg(feature = "static")]
13573 Font::NotoSansExtraCondensedBlack,
13574 #[cfg(feature = "static")]
13575 Font::NotoSansCondensedThin,
13576 #[cfg(feature = "static")]
13577 Font::NotoSansCondensedExtraLight,
13578 #[cfg(feature = "static")]
13579 Font::NotoSansCondensedLight,
13580 #[cfg(feature = "static")]
13581 Font::NotoSansCondensedRegular,
13582 #[cfg(feature = "static")]
13583 Font::NotoSansCondensedMedium,
13584 #[cfg(feature = "static")]
13585 Font::NotoSansCondensedSemiBold,
13586 #[cfg(feature = "static")]
13587 Font::NotoSansCondensedBold,
13588 #[cfg(feature = "static")]
13589 Font::NotoSansCondensedExtraBold,
13590 #[cfg(feature = "static")]
13591 Font::NotoSansCondensedBlack,
13592 #[cfg(feature = "static")]
13593 Font::NotoSansSemiCondensedThin,
13594 #[cfg(feature = "static")]
13595 Font::NotoSansSemiCondensedExtraLight,
13596 #[cfg(feature = "static")]
13597 Font::NotoSansSemiCondensedLight,
13598 #[cfg(feature = "static")]
13599 Font::NotoSansSemiCondensedRegular,
13600 #[cfg(feature = "static")]
13601 Font::NotoSansSemiCondensedMedium,
13602 #[cfg(feature = "static")]
13603 Font::NotoSansSemiCondensedSemiBold,
13604 #[cfg(feature = "static")]
13605 Font::NotoSansSemiCondensedBold,
13606 #[cfg(feature = "static")]
13607 Font::NotoSansSemiCondensedExtraBold,
13608 #[cfg(feature = "static")]
13609 Font::NotoSansSemiCondensedBlack,
13610 #[cfg(feature = "static")]
13611 Font::NotoSansThin,
13612 #[cfg(feature = "static")]
13613 Font::NotoSansExtraLight,
13614 #[cfg(feature = "static")]
13615 Font::NotoSansLight,
13616 #[cfg(feature = "static")]
13617 Font::NotoSansRegular,
13618 #[cfg(feature = "static")]
13619 Font::NotoSansMedium,
13620 #[cfg(feature = "static")]
13621 Font::NotoSansSemiBold,
13622 #[cfg(feature = "static")]
13623 Font::NotoSansBold,
13624 #[cfg(feature = "static")]
13625 Font::NotoSansExtraBold,
13626 #[cfg(feature = "static")]
13627 Font::NotoSansBlack,
13628 #[cfg(feature = "static")]
13629 Font::NotoSansExtraCondensedThinItalic,
13630 #[cfg(feature = "static")]
13631 Font::NotoSansExtraCondensedExtraLightItalic,
13632 #[cfg(feature = "static")]
13633 Font::NotoSansExtraCondensedLightItalic,
13634 #[cfg(feature = "static")]
13635 Font::NotoSansExtraCondensedItalic,
13636 #[cfg(feature = "static")]
13637 Font::NotoSansExtraCondensedMediumItalic,
13638 #[cfg(feature = "static")]
13639 Font::NotoSansExtraCondensedSemiBoldItalic,
13640 #[cfg(feature = "static")]
13641 Font::NotoSansExtraCondensedBoldItalic,
13642 #[cfg(feature = "static")]
13643 Font::NotoSansExtraCondensedExtraBoldItalic,
13644 #[cfg(feature = "static")]
13645 Font::NotoSansExtraCondensedBlackItalic,
13646 #[cfg(feature = "static")]
13647 Font::NotoSansCondensedThinItalic,
13648 #[cfg(feature = "static")]
13649 Font::NotoSansCondensedExtraLightItalic,
13650 #[cfg(feature = "static")]
13651 Font::NotoSansCondensedLightItalic,
13652 #[cfg(feature = "static")]
13653 Font::NotoSansCondensedItalic,
13654 #[cfg(feature = "static")]
13655 Font::NotoSansCondensedMediumItalic,
13656 #[cfg(feature = "static")]
13657 Font::NotoSansCondensedSemiBoldItalic,
13658 #[cfg(feature = "static")]
13659 Font::NotoSansCondensedBoldItalic,
13660 #[cfg(feature = "static")]
13661 Font::NotoSansCondensedExtraBoldItalic,
13662 #[cfg(feature = "static")]
13663 Font::NotoSansCondensedBlackItalic,
13664 #[cfg(feature = "static")]
13665 Font::NotoSansSemiCondensedThinItalic,
13666 #[cfg(feature = "static")]
13667 Font::NotoSansSemiCondensedExtraLightItalic,
13668 #[cfg(feature = "static")]
13669 Font::NotoSansSemiCondensedLightItalic,
13670 #[cfg(feature = "static")]
13671 Font::NotoSansSemiCondensedItalic,
13672 #[cfg(feature = "static")]
13673 Font::NotoSansSemiCondensedMediumItalic,
13674 #[cfg(feature = "static")]
13675 Font::NotoSansSemiCondensedSemiBoldItalic,
13676 #[cfg(feature = "static")]
13677 Font::NotoSansSemiCondensedBoldItalic,
13678 #[cfg(feature = "static")]
13679 Font::NotoSansSemiCondensedExtraBoldItalic,
13680 #[cfg(feature = "static")]
13681 Font::NotoSansSemiCondensedBlackItalic,
13682 #[cfg(feature = "static")]
13683 Font::NotoSansThinItalic,
13684 #[cfg(feature = "static")]
13685 Font::NotoSansExtraLightItalic,
13686 #[cfg(feature = "static")]
13687 Font::NotoSansLightItalic,
13688 #[cfg(feature = "static")]
13689 Font::NotoSansItalic,
13690 #[cfg(feature = "static")]
13691 Font::NotoSansMediumItalic,
13692 #[cfg(feature = "static")]
13693 Font::NotoSansSemiBoldItalic,
13694 #[cfg(feature = "static")]
13695 Font::NotoSansBoldItalic,
13696 #[cfg(feature = "static")]
13697 Font::NotoSansExtraBoldItalic,
13698 #[cfg(feature = "static")]
13699 Font::NotoSansBlackItalic,
13700 #[cfg(feature = "variable")]
13701 Font::NotoSansVariable,
13702 #[cfg(feature = "variable")]
13703 Font::NotoSansItalicVariable,
13704 #[cfg(feature = "static")]
13705 Font::NotoSansAdlamRegular,
13706 #[cfg(feature = "static")]
13707 Font::NotoSansAdlamMedium,
13708 #[cfg(feature = "static")]
13709 Font::NotoSansAdlamSemiBold,
13710 #[cfg(feature = "static")]
13711 Font::NotoSansAdlamBold,
13712 #[cfg(feature = "variable")]
13713 Font::NotoSansAdlamVariable,
13714 #[cfg(feature = "static")]
13715 Font::NotoSansAdlamUnjoinedRegular,
13716 #[cfg(feature = "static")]
13717 Font::NotoSansAdlamUnjoinedMedium,
13718 #[cfg(feature = "static")]
13719 Font::NotoSansAdlamUnjoinedSemiBold,
13720 #[cfg(feature = "static")]
13721 Font::NotoSansAdlamUnjoinedBold,
13722 #[cfg(feature = "variable")]
13723 Font::NotoSansAdlamUnjoinedVariable,
13724 #[cfg(feature = "static")]
13725 Font::NotoSansAnatolianHieroglyphsRegular,
13726 #[cfg(feature = "static")]
13727 Font::NotoSansArabicExtraCondensedThin,
13728 #[cfg(feature = "static")]
13729 Font::NotoSansArabicExtraCondensedExtraLight,
13730 #[cfg(feature = "static")]
13731 Font::NotoSansArabicExtraCondensedLight,
13732 #[cfg(feature = "static")]
13733 Font::NotoSansArabicExtraCondensedRegular,
13734 #[cfg(feature = "static")]
13735 Font::NotoSansArabicExtraCondensedMedium,
13736 #[cfg(feature = "static")]
13737 Font::NotoSansArabicExtraCondensedSemiBold,
13738 #[cfg(feature = "static")]
13739 Font::NotoSansArabicExtraCondensedBold,
13740 #[cfg(feature = "static")]
13741 Font::NotoSansArabicExtraCondensedExtraBold,
13742 #[cfg(feature = "static")]
13743 Font::NotoSansArabicExtraCondensedBlack,
13744 #[cfg(feature = "static")]
13745 Font::NotoSansArabicCondensedThin,
13746 #[cfg(feature = "static")]
13747 Font::NotoSansArabicCondensedExtraLight,
13748 #[cfg(feature = "static")]
13749 Font::NotoSansArabicCondensedLight,
13750 #[cfg(feature = "static")]
13751 Font::NotoSansArabicCondensedRegular,
13752 #[cfg(feature = "static")]
13753 Font::NotoSansArabicCondensedMedium,
13754 #[cfg(feature = "static")]
13755 Font::NotoSansArabicCondensedSemiBold,
13756 #[cfg(feature = "static")]
13757 Font::NotoSansArabicCondensedBold,
13758 #[cfg(feature = "static")]
13759 Font::NotoSansArabicCondensedExtraBold,
13760 #[cfg(feature = "static")]
13761 Font::NotoSansArabicCondensedBlack,
13762 #[cfg(feature = "static")]
13763 Font::NotoSansArabicSemiCondensedThin,
13764 #[cfg(feature = "static")]
13765 Font::NotoSansArabicSemiCondensedExtraLight,
13766 #[cfg(feature = "static")]
13767 Font::NotoSansArabicSemiCondensedLight,
13768 #[cfg(feature = "static")]
13769 Font::NotoSansArabicSemiCondensedRegular,
13770 #[cfg(feature = "static")]
13771 Font::NotoSansArabicSemiCondensedMedium,
13772 #[cfg(feature = "static")]
13773 Font::NotoSansArabicSemiCondensedSemiBold,
13774 #[cfg(feature = "static")]
13775 Font::NotoSansArabicSemiCondensedBold,
13776 #[cfg(feature = "static")]
13777 Font::NotoSansArabicSemiCondensedExtraBold,
13778 #[cfg(feature = "static")]
13779 Font::NotoSansArabicSemiCondensedBlack,
13780 #[cfg(feature = "static")]
13781 Font::NotoSansArabicThin,
13782 #[cfg(feature = "static")]
13783 Font::NotoSansArabicExtraLight,
13784 #[cfg(feature = "static")]
13785 Font::NotoSansArabicLight,
13786 #[cfg(feature = "static")]
13787 Font::NotoSansArabicRegular,
13788 #[cfg(feature = "static")]
13789 Font::NotoSansArabicMedium,
13790 #[cfg(feature = "static")]
13791 Font::NotoSansArabicSemiBold,
13792 #[cfg(feature = "static")]
13793 Font::NotoSansArabicBold,
13794 #[cfg(feature = "static")]
13795 Font::NotoSansArabicExtraBold,
13796 #[cfg(feature = "static")]
13797 Font::NotoSansArabicBlack,
13798 #[cfg(feature = "variable")]
13799 Font::NotoSansArabicVariable,
13800 #[cfg(feature = "static")]
13801 Font::NotoSansArmenianExtraCondensedThin,
13802 #[cfg(feature = "static")]
13803 Font::NotoSansArmenianExtraCondensedExtraLight,
13804 #[cfg(feature = "static")]
13805 Font::NotoSansArmenianExtraCondensedLight,
13806 #[cfg(feature = "static")]
13807 Font::NotoSansArmenianExtraCondensedRegular,
13808 #[cfg(feature = "static")]
13809 Font::NotoSansArmenianExtraCondensedMedium,
13810 #[cfg(feature = "static")]
13811 Font::NotoSansArmenianExtraCondensedSemiBold,
13812 #[cfg(feature = "static")]
13813 Font::NotoSansArmenianExtraCondensedBold,
13814 #[cfg(feature = "static")]
13815 Font::NotoSansArmenianExtraCondensedExtraBold,
13816 #[cfg(feature = "static")]
13817 Font::NotoSansArmenianExtraCondensedBlack,
13818 #[cfg(feature = "static")]
13819 Font::NotoSansArmenianCondensedThin,
13820 #[cfg(feature = "static")]
13821 Font::NotoSansArmenianCondensedExtraLight,
13822 #[cfg(feature = "static")]
13823 Font::NotoSansArmenianCondensedLight,
13824 #[cfg(feature = "static")]
13825 Font::NotoSansArmenianCondensedRegular,
13826 #[cfg(feature = "static")]
13827 Font::NotoSansArmenianCondensedMedium,
13828 #[cfg(feature = "static")]
13829 Font::NotoSansArmenianCondensedSemiBold,
13830 #[cfg(feature = "static")]
13831 Font::NotoSansArmenianCondensedBold,
13832 #[cfg(feature = "static")]
13833 Font::NotoSansArmenianCondensedExtraBold,
13834 #[cfg(feature = "static")]
13835 Font::NotoSansArmenianCondensedBlack,
13836 #[cfg(feature = "static")]
13837 Font::NotoSansArmenianSemiCondensedThin,
13838 #[cfg(feature = "static")]
13839 Font::NotoSansArmenianSemiCondensedExtraLight,
13840 #[cfg(feature = "static")]
13841 Font::NotoSansArmenianSemiCondensedLight,
13842 #[cfg(feature = "static")]
13843 Font::NotoSansArmenianSemiCondensedRegular,
13844 #[cfg(feature = "static")]
13845 Font::NotoSansArmenianSemiCondensedMedium,
13846 #[cfg(feature = "static")]
13847 Font::NotoSansArmenianSemiCondensedSemiBold,
13848 #[cfg(feature = "static")]
13849 Font::NotoSansArmenianSemiCondensedBold,
13850 #[cfg(feature = "static")]
13851 Font::NotoSansArmenianSemiCondensedExtraBold,
13852 #[cfg(feature = "static")]
13853 Font::NotoSansArmenianSemiCondensedBlack,
13854 #[cfg(feature = "static")]
13855 Font::NotoSansArmenianThin,
13856 #[cfg(feature = "static")]
13857 Font::NotoSansArmenianExtraLight,
13858 #[cfg(feature = "static")]
13859 Font::NotoSansArmenianLight,
13860 #[cfg(feature = "static")]
13861 Font::NotoSansArmenianRegular,
13862 #[cfg(feature = "static")]
13863 Font::NotoSansArmenianMedium,
13864 #[cfg(feature = "static")]
13865 Font::NotoSansArmenianSemiBold,
13866 #[cfg(feature = "static")]
13867 Font::NotoSansArmenianBold,
13868 #[cfg(feature = "static")]
13869 Font::NotoSansArmenianExtraBold,
13870 #[cfg(feature = "static")]
13871 Font::NotoSansArmenianBlack,
13872 #[cfg(feature = "variable")]
13873 Font::NotoSansArmenianVariable,
13874 #[cfg(feature = "static")]
13875 Font::NotoSansAvestanRegular,
13876 #[cfg(feature = "static")]
13877 Font::NotoSansBalineseRegular,
13878 #[cfg(feature = "static")]
13879 Font::NotoSansBalineseMedium,
13880 #[cfg(feature = "static")]
13881 Font::NotoSansBalineseSemiBold,
13882 #[cfg(feature = "static")]
13883 Font::NotoSansBalineseBold,
13884 #[cfg(feature = "variable")]
13885 Font::NotoSansBalineseVariable,
13886 #[cfg(feature = "static")]
13887 Font::NotoSansBamumRegular,
13888 #[cfg(feature = "static")]
13889 Font::NotoSansBamumMedium,
13890 #[cfg(feature = "static")]
13891 Font::NotoSansBamumSemiBold,
13892 #[cfg(feature = "static")]
13893 Font::NotoSansBamumBold,
13894 #[cfg(feature = "variable")]
13895 Font::NotoSansBamumVariable,
13896 #[cfg(feature = "static")]
13897 Font::NotoSansBassaVahRegular,
13898 #[cfg(feature = "static")]
13899 Font::NotoSansBassaVahMedium,
13900 #[cfg(feature = "static")]
13901 Font::NotoSansBassaVahSemiBold,
13902 #[cfg(feature = "static")]
13903 Font::NotoSansBassaVahBold,
13904 #[cfg(feature = "variable")]
13905 Font::NotoSansBassaVahVariable,
13906 #[cfg(feature = "static")]
13907 Font::NotoSansBatakRegular,
13908 #[cfg(feature = "static")]
13909 Font::NotoSansBengaliExtraCondensedThin,
13910 #[cfg(feature = "static")]
13911 Font::NotoSansBengaliExtraCondensedExtraLight,
13912 #[cfg(feature = "static")]
13913 Font::NotoSansBengaliExtraCondensedLight,
13914 #[cfg(feature = "static")]
13915 Font::NotoSansBengaliExtraCondensedRegular,
13916 #[cfg(feature = "static")]
13917 Font::NotoSansBengaliExtraCondensedMedium,
13918 #[cfg(feature = "static")]
13919 Font::NotoSansBengaliExtraCondensedSemiBold,
13920 #[cfg(feature = "static")]
13921 Font::NotoSansBengaliExtraCondensedBold,
13922 #[cfg(feature = "static")]
13923 Font::NotoSansBengaliExtraCondensedExtraBold,
13924 #[cfg(feature = "static")]
13925 Font::NotoSansBengaliExtraCondensedBlack,
13926 #[cfg(feature = "static")]
13927 Font::NotoSansBengaliCondensedThin,
13928 #[cfg(feature = "static")]
13929 Font::NotoSansBengaliCondensedExtraLight,
13930 #[cfg(feature = "static")]
13931 Font::NotoSansBengaliCondensedLight,
13932 #[cfg(feature = "static")]
13933 Font::NotoSansBengaliCondensedRegular,
13934 #[cfg(feature = "static")]
13935 Font::NotoSansBengaliCondensedMedium,
13936 #[cfg(feature = "static")]
13937 Font::NotoSansBengaliCondensedSemiBold,
13938 #[cfg(feature = "static")]
13939 Font::NotoSansBengaliCondensedBold,
13940 #[cfg(feature = "static")]
13941 Font::NotoSansBengaliCondensedExtraBold,
13942 #[cfg(feature = "static")]
13943 Font::NotoSansBengaliCondensedBlack,
13944 #[cfg(feature = "static")]
13945 Font::NotoSansBengaliSemiCondensedThin,
13946 #[cfg(feature = "static")]
13947 Font::NotoSansBengaliSemiCondensedExtraLight,
13948 #[cfg(feature = "static")]
13949 Font::NotoSansBengaliSemiCondensedLight,
13950 #[cfg(feature = "static")]
13951 Font::NotoSansBengaliSemiCondensedRegular,
13952 #[cfg(feature = "static")]
13953 Font::NotoSansBengaliSemiCondensedMedium,
13954 #[cfg(feature = "static")]
13955 Font::NotoSansBengaliSemiCondensedSemiBold,
13956 #[cfg(feature = "static")]
13957 Font::NotoSansBengaliSemiCondensedBold,
13958 #[cfg(feature = "static")]
13959 Font::NotoSansBengaliSemiCondensedExtraBold,
13960 #[cfg(feature = "static")]
13961 Font::NotoSansBengaliSemiCondensedBlack,
13962 #[cfg(feature = "static")]
13963 Font::NotoSansBengaliThin,
13964 #[cfg(feature = "static")]
13965 Font::NotoSansBengaliExtraLight,
13966 #[cfg(feature = "static")]
13967 Font::NotoSansBengaliLight,
13968 #[cfg(feature = "static")]
13969 Font::NotoSansBengaliRegular,
13970 #[cfg(feature = "static")]
13971 Font::NotoSansBengaliMedium,
13972 #[cfg(feature = "static")]
13973 Font::NotoSansBengaliSemiBold,
13974 #[cfg(feature = "static")]
13975 Font::NotoSansBengaliBold,
13976 #[cfg(feature = "static")]
13977 Font::NotoSansBengaliExtraBold,
13978 #[cfg(feature = "static")]
13979 Font::NotoSansBengaliBlack,
13980 #[cfg(feature = "variable")]
13981 Font::NotoSansBengaliVariable,
13982 #[cfg(feature = "static")]
13983 Font::NotoSansBhaiksukiRegular,
13984 #[cfg(feature = "static")]
13985 Font::NotoSansBrahmiRegular,
13986 #[cfg(feature = "static")]
13987 Font::NotoSansBugineseRegular,
13988 #[cfg(feature = "static")]
13989 Font::NotoSansBuhidRegular,
13990 #[cfg(feature = "static")]
13991 Font::NotoSansCanadianAboriginalThin,
13992 #[cfg(feature = "static")]
13993 Font::NotoSansCanadianAboriginalExtraLight,
13994 #[cfg(feature = "static")]
13995 Font::NotoSansCanadianAboriginalLight,
13996 #[cfg(feature = "static")]
13997 Font::NotoSansCanadianAboriginalRegular,
13998 #[cfg(feature = "static")]
13999 Font::NotoSansCanadianAboriginalMedium,
14000 #[cfg(feature = "static")]
14001 Font::NotoSansCanadianAboriginalSemiBold,
14002 #[cfg(feature = "static")]
14003 Font::NotoSansCanadianAboriginalBold,
14004 #[cfg(feature = "static")]
14005 Font::NotoSansCanadianAboriginalExtraBold,
14006 #[cfg(feature = "static")]
14007 Font::NotoSansCanadianAboriginalBlack,
14008 #[cfg(feature = "variable")]
14009 Font::NotoSansCanadianAboriginalVariable,
14010 #[cfg(feature = "static")]
14011 Font::NotoSansCarianRegular,
14012 #[cfg(feature = "static")]
14013 Font::NotoSansCaucasianAlbanianRegular,
14014 #[cfg(feature = "static")]
14015 Font::NotoSansChakmaRegular,
14016 #[cfg(feature = "static")]
14017 Font::NotoSansChamThin,
14018 #[cfg(feature = "static")]
14019 Font::NotoSansChamExtraLight,
14020 #[cfg(feature = "static")]
14021 Font::NotoSansChamLight,
14022 #[cfg(feature = "static")]
14023 Font::NotoSansChamRegular,
14024 #[cfg(feature = "static")]
14025 Font::NotoSansChamMedium,
14026 #[cfg(feature = "static")]
14027 Font::NotoSansChamSemiBold,
14028 #[cfg(feature = "static")]
14029 Font::NotoSansChamBold,
14030 #[cfg(feature = "static")]
14031 Font::NotoSansChamExtraBold,
14032 #[cfg(feature = "static")]
14033 Font::NotoSansChamBlack,
14034 #[cfg(feature = "variable")]
14035 Font::NotoSansChamVariable,
14036 #[cfg(feature = "static")]
14037 Font::NotoSansCherokeeThin,
14038 #[cfg(feature = "static")]
14039 Font::NotoSansCherokeeExtraLight,
14040 #[cfg(feature = "static")]
14041 Font::NotoSansCherokeeLight,
14042 #[cfg(feature = "static")]
14043 Font::NotoSansCherokeeRegular,
14044 #[cfg(feature = "static")]
14045 Font::NotoSansCherokeeMedium,
14046 #[cfg(feature = "static")]
14047 Font::NotoSansCherokeeSemiBold,
14048 #[cfg(feature = "static")]
14049 Font::NotoSansCherokeeBold,
14050 #[cfg(feature = "static")]
14051 Font::NotoSansCherokeeExtraBold,
14052 #[cfg(feature = "static")]
14053 Font::NotoSansCherokeeBlack,
14054 #[cfg(feature = "variable")]
14055 Font::NotoSansCherokeeVariable,
14056 #[cfg(feature = "static")]
14057 Font::NotoSansChorasmianRegular,
14058 #[cfg(feature = "static")]
14059 Font::NotoSansCopticRegular,
14060 #[cfg(feature = "static")]
14061 Font::NotoSansCuneiformRegular,
14062 #[cfg(feature = "static")]
14063 Font::NotoSansCypriotRegular,
14064 #[cfg(feature = "static")]
14065 Font::NotoSansCyproMinoanRegular,
14066 #[cfg(feature = "static")]
14067 Font::NotoSansDeseretRegular,
14068 #[cfg(feature = "static")]
14069 Font::NotoSansDevanagariExtraCondensedThin,
14070 #[cfg(feature = "static")]
14071 Font::NotoSansDevanagariExtraCondensedExtraLight,
14072 #[cfg(feature = "static")]
14073 Font::NotoSansDevanagariExtraCondensedLight,
14074 #[cfg(feature = "static")]
14075 Font::NotoSansDevanagariExtraCondensedRegular,
14076 #[cfg(feature = "static")]
14077 Font::NotoSansDevanagariExtraCondensedMedium,
14078 #[cfg(feature = "static")]
14079 Font::NotoSansDevanagariExtraCondensedSemiBold,
14080 #[cfg(feature = "static")]
14081 Font::NotoSansDevanagariExtraCondensedBold,
14082 #[cfg(feature = "static")]
14083 Font::NotoSansDevanagariExtraCondensedExtraBold,
14084 #[cfg(feature = "static")]
14085 Font::NotoSansDevanagariExtraCondensedBlack,
14086 #[cfg(feature = "static")]
14087 Font::NotoSansDevanagariCondensedThin,
14088 #[cfg(feature = "static")]
14089 Font::NotoSansDevanagariCondensedExtraLight,
14090 #[cfg(feature = "static")]
14091 Font::NotoSansDevanagariCondensedLight,
14092 #[cfg(feature = "static")]
14093 Font::NotoSansDevanagariCondensedRegular,
14094 #[cfg(feature = "static")]
14095 Font::NotoSansDevanagariCondensedMedium,
14096 #[cfg(feature = "static")]
14097 Font::NotoSansDevanagariCondensedSemiBold,
14098 #[cfg(feature = "static")]
14099 Font::NotoSansDevanagariCondensedBold,
14100 #[cfg(feature = "static")]
14101 Font::NotoSansDevanagariCondensedExtraBold,
14102 #[cfg(feature = "static")]
14103 Font::NotoSansDevanagariCondensedBlack,
14104 #[cfg(feature = "static")]
14105 Font::NotoSansDevanagariSemiCondensedThin,
14106 #[cfg(feature = "static")]
14107 Font::NotoSansDevanagariSemiCondensedExtraLight,
14108 #[cfg(feature = "static")]
14109 Font::NotoSansDevanagariSemiCondensedLight,
14110 #[cfg(feature = "static")]
14111 Font::NotoSansDevanagariSemiCondensedRegular,
14112 #[cfg(feature = "static")]
14113 Font::NotoSansDevanagariSemiCondensedMedium,
14114 #[cfg(feature = "static")]
14115 Font::NotoSansDevanagariSemiCondensedSemiBold,
14116 #[cfg(feature = "static")]
14117 Font::NotoSansDevanagariSemiCondensedBold,
14118 #[cfg(feature = "static")]
14119 Font::NotoSansDevanagariSemiCondensedExtraBold,
14120 #[cfg(feature = "static")]
14121 Font::NotoSansDevanagariSemiCondensedBlack,
14122 #[cfg(feature = "static")]
14123 Font::NotoSansDevanagariThin,
14124 #[cfg(feature = "static")]
14125 Font::NotoSansDevanagariExtraLight,
14126 #[cfg(feature = "static")]
14127 Font::NotoSansDevanagariLight,
14128 #[cfg(feature = "static")]
14129 Font::NotoSansDevanagariRegular,
14130 #[cfg(feature = "static")]
14131 Font::NotoSansDevanagariMedium,
14132 #[cfg(feature = "static")]
14133 Font::NotoSansDevanagariSemiBold,
14134 #[cfg(feature = "static")]
14135 Font::NotoSansDevanagariBold,
14136 #[cfg(feature = "static")]
14137 Font::NotoSansDevanagariExtraBold,
14138 #[cfg(feature = "static")]
14139 Font::NotoSansDevanagariBlack,
14140 #[cfg(feature = "variable")]
14141 Font::NotoSansDevanagariVariable,
14142 #[cfg(feature = "static")]
14143 Font::NotoSansDisplayExtraCondensedThin,
14144 #[cfg(feature = "static")]
14145 Font::NotoSansDisplayExtraCondensedExtraLight,
14146 #[cfg(feature = "static")]
14147 Font::NotoSansDisplayExtraCondensedLight,
14148 #[cfg(feature = "static")]
14149 Font::NotoSansDisplayExtraCondensedRegular,
14150 #[cfg(feature = "static")]
14151 Font::NotoSansDisplayExtraCondensedMedium,
14152 #[cfg(feature = "static")]
14153 Font::NotoSansDisplayExtraCondensedSemiBold,
14154 #[cfg(feature = "static")]
14155 Font::NotoSansDisplayExtraCondensedBold,
14156 #[cfg(feature = "static")]
14157 Font::NotoSansDisplayExtraCondensedExtraBold,
14158 #[cfg(feature = "static")]
14159 Font::NotoSansDisplayExtraCondensedBlack,
14160 #[cfg(feature = "static")]
14161 Font::NotoSansDisplayCondensedThin,
14162 #[cfg(feature = "static")]
14163 Font::NotoSansDisplayCondensedExtraLight,
14164 #[cfg(feature = "static")]
14165 Font::NotoSansDisplayCondensedLight,
14166 #[cfg(feature = "static")]
14167 Font::NotoSansDisplayCondensedRegular,
14168 #[cfg(feature = "static")]
14169 Font::NotoSansDisplayCondensedMedium,
14170 #[cfg(feature = "static")]
14171 Font::NotoSansDisplayCondensedSemiBold,
14172 #[cfg(feature = "static")]
14173 Font::NotoSansDisplayCondensedBold,
14174 #[cfg(feature = "static")]
14175 Font::NotoSansDisplayCondensedExtraBold,
14176 #[cfg(feature = "static")]
14177 Font::NotoSansDisplayCondensedBlack,
14178 #[cfg(feature = "static")]
14179 Font::NotoSansDisplaySemiCondensedThin,
14180 #[cfg(feature = "static")]
14181 Font::NotoSansDisplaySemiCondensedExtraLight,
14182 #[cfg(feature = "static")]
14183 Font::NotoSansDisplaySemiCondensedLight,
14184 #[cfg(feature = "static")]
14185 Font::NotoSansDisplaySemiCondensedRegular,
14186 #[cfg(feature = "static")]
14187 Font::NotoSansDisplaySemiCondensedMedium,
14188 #[cfg(feature = "static")]
14189 Font::NotoSansDisplaySemiCondensedSemiBold,
14190 #[cfg(feature = "static")]
14191 Font::NotoSansDisplaySemiCondensedBold,
14192 #[cfg(feature = "static")]
14193 Font::NotoSansDisplaySemiCondensedExtraBold,
14194 #[cfg(feature = "static")]
14195 Font::NotoSansDisplaySemiCondensedBlack,
14196 #[cfg(feature = "static")]
14197 Font::NotoSansDisplayThin,
14198 #[cfg(feature = "static")]
14199 Font::NotoSansDisplayExtraLight,
14200 #[cfg(feature = "static")]
14201 Font::NotoSansDisplayLight,
14202 #[cfg(feature = "static")]
14203 Font::NotoSansDisplayRegular,
14204 #[cfg(feature = "static")]
14205 Font::NotoSansDisplayMedium,
14206 #[cfg(feature = "static")]
14207 Font::NotoSansDisplaySemiBold,
14208 #[cfg(feature = "static")]
14209 Font::NotoSansDisplayBold,
14210 #[cfg(feature = "static")]
14211 Font::NotoSansDisplayExtraBold,
14212 #[cfg(feature = "static")]
14213 Font::NotoSansDisplayBlack,
14214 #[cfg(feature = "static")]
14215 Font::NotoSansDisplayExtraCondensedThinItalic,
14216 #[cfg(feature = "static")]
14217 Font::NotoSansDisplayExtraCondensedExtraLightItalic,
14218 #[cfg(feature = "static")]
14219 Font::NotoSansDisplayExtraCondensedLightItalic,
14220 #[cfg(feature = "static")]
14221 Font::NotoSansDisplayExtraCondensedItalic,
14222 #[cfg(feature = "static")]
14223 Font::NotoSansDisplayExtraCondensedMediumItalic,
14224 #[cfg(feature = "static")]
14225 Font::NotoSansDisplayExtraCondensedSemiBoldItalic,
14226 #[cfg(feature = "static")]
14227 Font::NotoSansDisplayExtraCondensedBoldItalic,
14228 #[cfg(feature = "static")]
14229 Font::NotoSansDisplayExtraCondensedExtraBoldItalic,
14230 #[cfg(feature = "static")]
14231 Font::NotoSansDisplayExtraCondensedBlackItalic,
14232 #[cfg(feature = "static")]
14233 Font::NotoSansDisplayCondensedThinItalic,
14234 #[cfg(feature = "static")]
14235 Font::NotoSansDisplayCondensedExtraLightItalic,
14236 #[cfg(feature = "static")]
14237 Font::NotoSansDisplayCondensedLightItalic,
14238 #[cfg(feature = "static")]
14239 Font::NotoSansDisplayCondensedItalic,
14240 #[cfg(feature = "static")]
14241 Font::NotoSansDisplayCondensedMediumItalic,
14242 #[cfg(feature = "static")]
14243 Font::NotoSansDisplayCondensedSemiBoldItalic,
14244 #[cfg(feature = "static")]
14245 Font::NotoSansDisplayCondensedBoldItalic,
14246 #[cfg(feature = "static")]
14247 Font::NotoSansDisplayCondensedExtraBoldItalic,
14248 #[cfg(feature = "static")]
14249 Font::NotoSansDisplayCondensedBlackItalic,
14250 #[cfg(feature = "static")]
14251 Font::NotoSansDisplaySemiCondensedThinItalic,
14252 #[cfg(feature = "static")]
14253 Font::NotoSansDisplaySemiCondensedExtraLightItalic,
14254 #[cfg(feature = "static")]
14255 Font::NotoSansDisplaySemiCondensedLightItalic,
14256 #[cfg(feature = "static")]
14257 Font::NotoSansDisplaySemiCondensedItalic,
14258 #[cfg(feature = "static")]
14259 Font::NotoSansDisplaySemiCondensedMediumItalic,
14260 #[cfg(feature = "static")]
14261 Font::NotoSansDisplaySemiCondensedSemiBoldItalic,
14262 #[cfg(feature = "static")]
14263 Font::NotoSansDisplaySemiCondensedBoldItalic,
14264 #[cfg(feature = "static")]
14265 Font::NotoSansDisplaySemiCondensedExtraBoldItalic,
14266 #[cfg(feature = "static")]
14267 Font::NotoSansDisplaySemiCondensedBlackItalic,
14268 #[cfg(feature = "static")]
14269 Font::NotoSansDisplayThinItalic,
14270 #[cfg(feature = "static")]
14271 Font::NotoSansDisplayExtraLightItalic,
14272 #[cfg(feature = "static")]
14273 Font::NotoSansDisplayLightItalic,
14274 #[cfg(feature = "static")]
14275 Font::NotoSansDisplayItalic,
14276 #[cfg(feature = "static")]
14277 Font::NotoSansDisplayMediumItalic,
14278 #[cfg(feature = "static")]
14279 Font::NotoSansDisplaySemiBoldItalic,
14280 #[cfg(feature = "static")]
14281 Font::NotoSansDisplayBoldItalic,
14282 #[cfg(feature = "static")]
14283 Font::NotoSansDisplayExtraBoldItalic,
14284 #[cfg(feature = "static")]
14285 Font::NotoSansDisplayBlackItalic,
14286 #[cfg(feature = "variable")]
14287 Font::NotoSansDisplayVariable,
14288 #[cfg(feature = "variable")]
14289 Font::NotoSansDisplayItalicVariable,
14290 #[cfg(feature = "static")]
14291 Font::NotoSansDuployanRegular,
14292 #[cfg(feature = "static")]
14293 Font::NotoSansDuployanBold,
14294 #[cfg(feature = "static")]
14295 Font::NotoSansEgyptianHieroglyphsRegular,
14296 #[cfg(feature = "static")]
14297 Font::NotoSansElbasanRegular,
14298 #[cfg(feature = "static")]
14299 Font::NotoSansElymaicRegular,
14300 #[cfg(feature = "static")]
14301 Font::NotoSansEthiopicExtraCondensedThin,
14302 #[cfg(feature = "static")]
14303 Font::NotoSansEthiopicExtraCondensedExtraLight,
14304 #[cfg(feature = "static")]
14305 Font::NotoSansEthiopicExtraCondensedLight,
14306 #[cfg(feature = "static")]
14307 Font::NotoSansEthiopicExtraCondensedRegular,
14308 #[cfg(feature = "static")]
14309 Font::NotoSansEthiopicExtraCondensedMedium,
14310 #[cfg(feature = "static")]
14311 Font::NotoSansEthiopicExtraCondensedSemiBold,
14312 #[cfg(feature = "static")]
14313 Font::NotoSansEthiopicExtraCondensedBold,
14314 #[cfg(feature = "static")]
14315 Font::NotoSansEthiopicExtraCondensedExtraBold,
14316 #[cfg(feature = "static")]
14317 Font::NotoSansEthiopicExtraCondensedBlack,
14318 #[cfg(feature = "static")]
14319 Font::NotoSansEthiopicCondensedThin,
14320 #[cfg(feature = "static")]
14321 Font::NotoSansEthiopicCondensedExtraLight,
14322 #[cfg(feature = "static")]
14323 Font::NotoSansEthiopicCondensedLight,
14324 #[cfg(feature = "static")]
14325 Font::NotoSansEthiopicCondensedRegular,
14326 #[cfg(feature = "static")]
14327 Font::NotoSansEthiopicCondensedMedium,
14328 #[cfg(feature = "static")]
14329 Font::NotoSansEthiopicCondensedSemiBold,
14330 #[cfg(feature = "static")]
14331 Font::NotoSansEthiopicCondensedBold,
14332 #[cfg(feature = "static")]
14333 Font::NotoSansEthiopicCondensedExtraBold,
14334 #[cfg(feature = "static")]
14335 Font::NotoSansEthiopicCondensedBlack,
14336 #[cfg(feature = "static")]
14337 Font::NotoSansEthiopicSemiCondensedThin,
14338 #[cfg(feature = "static")]
14339 Font::NotoSansEthiopicSemiCondensedExtraLight,
14340 #[cfg(feature = "static")]
14341 Font::NotoSansEthiopicSemiCondensedLight,
14342 #[cfg(feature = "static")]
14343 Font::NotoSansEthiopicSemiCondensedRegular,
14344 #[cfg(feature = "static")]
14345 Font::NotoSansEthiopicSemiCondensedMedium,
14346 #[cfg(feature = "static")]
14347 Font::NotoSansEthiopicSemiCondensedSemiBold,
14348 #[cfg(feature = "static")]
14349 Font::NotoSansEthiopicSemiCondensedBold,
14350 #[cfg(feature = "static")]
14351 Font::NotoSansEthiopicSemiCondensedExtraBold,
14352 #[cfg(feature = "static")]
14353 Font::NotoSansEthiopicSemiCondensedBlack,
14354 #[cfg(feature = "static")]
14355 Font::NotoSansEthiopicThin,
14356 #[cfg(feature = "static")]
14357 Font::NotoSansEthiopicExtraLight,
14358 #[cfg(feature = "static")]
14359 Font::NotoSansEthiopicLight,
14360 #[cfg(feature = "static")]
14361 Font::NotoSansEthiopicRegular,
14362 #[cfg(feature = "static")]
14363 Font::NotoSansEthiopicMedium,
14364 #[cfg(feature = "static")]
14365 Font::NotoSansEthiopicSemiBold,
14366 #[cfg(feature = "static")]
14367 Font::NotoSansEthiopicBold,
14368 #[cfg(feature = "static")]
14369 Font::NotoSansEthiopicExtraBold,
14370 #[cfg(feature = "static")]
14371 Font::NotoSansEthiopicBlack,
14372 #[cfg(feature = "variable")]
14373 Font::NotoSansEthiopicVariable,
14374 #[cfg(feature = "static")]
14375 Font::NotoSansGeorgianExtraCondensedThin,
14376 #[cfg(feature = "static")]
14377 Font::NotoSansGeorgianExtraCondensedExtraLight,
14378 #[cfg(feature = "static")]
14379 Font::NotoSansGeorgianExtraCondensedLight,
14380 #[cfg(feature = "static")]
14381 Font::NotoSansGeorgianExtraCondensedRegular,
14382 #[cfg(feature = "static")]
14383 Font::NotoSansGeorgianExtraCondensedMedium,
14384 #[cfg(feature = "static")]
14385 Font::NotoSansGeorgianExtraCondensedSemiBold,
14386 #[cfg(feature = "static")]
14387 Font::NotoSansGeorgianExtraCondensedBold,
14388 #[cfg(feature = "static")]
14389 Font::NotoSansGeorgianExtraCondensedExtraBold,
14390 #[cfg(feature = "static")]
14391 Font::NotoSansGeorgianExtraCondensedBlack,
14392 #[cfg(feature = "static")]
14393 Font::NotoSansGeorgianCondensedThin,
14394 #[cfg(feature = "static")]
14395 Font::NotoSansGeorgianCondensedExtraLight,
14396 #[cfg(feature = "static")]
14397 Font::NotoSansGeorgianCondensedLight,
14398 #[cfg(feature = "static")]
14399 Font::NotoSansGeorgianCondensedRegular,
14400 #[cfg(feature = "static")]
14401 Font::NotoSansGeorgianCondensedMedium,
14402 #[cfg(feature = "static")]
14403 Font::NotoSansGeorgianCondensedSemiBold,
14404 #[cfg(feature = "static")]
14405 Font::NotoSansGeorgianCondensedBold,
14406 #[cfg(feature = "static")]
14407 Font::NotoSansGeorgianCondensedExtraBold,
14408 #[cfg(feature = "static")]
14409 Font::NotoSansGeorgianCondensedBlack,
14410 #[cfg(feature = "static")]
14411 Font::NotoSansGeorgianSemiCondensedThin,
14412 #[cfg(feature = "static")]
14413 Font::NotoSansGeorgianSemiCondensedExtraLight,
14414 #[cfg(feature = "static")]
14415 Font::NotoSansGeorgianSemiCondensedLight,
14416 #[cfg(feature = "static")]
14417 Font::NotoSansGeorgianSemiCondensedRegular,
14418 #[cfg(feature = "static")]
14419 Font::NotoSansGeorgianSemiCondensedMedium,
14420 #[cfg(feature = "static")]
14421 Font::NotoSansGeorgianSemiCondensedSemiBold,
14422 #[cfg(feature = "static")]
14423 Font::NotoSansGeorgianSemiCondensedBold,
14424 #[cfg(feature = "static")]
14425 Font::NotoSansGeorgianSemiCondensedExtraBold,
14426 #[cfg(feature = "static")]
14427 Font::NotoSansGeorgianSemiCondensedBlack,
14428 #[cfg(feature = "static")]
14429 Font::NotoSansGeorgianThin,
14430 #[cfg(feature = "static")]
14431 Font::NotoSansGeorgianExtraLight,
14432 #[cfg(feature = "static")]
14433 Font::NotoSansGeorgianLight,
14434 #[cfg(feature = "static")]
14435 Font::NotoSansGeorgianRegular,
14436 #[cfg(feature = "static")]
14437 Font::NotoSansGeorgianMedium,
14438 #[cfg(feature = "static")]
14439 Font::NotoSansGeorgianSemiBold,
14440 #[cfg(feature = "static")]
14441 Font::NotoSansGeorgianBold,
14442 #[cfg(feature = "static")]
14443 Font::NotoSansGeorgianExtraBold,
14444 #[cfg(feature = "static")]
14445 Font::NotoSansGeorgianBlack,
14446 #[cfg(feature = "variable")]
14447 Font::NotoSansGeorgianVariable,
14448 #[cfg(feature = "static")]
14449 Font::NotoSansGlagoliticRegular,
14450 #[cfg(feature = "static")]
14451 Font::NotoSansGothicRegular,
14452 #[cfg(feature = "static")]
14453 Font::NotoSansGranthaRegular,
14454 #[cfg(feature = "static")]
14455 Font::NotoSansGujaratiExtraCondensedThin,
14456 #[cfg(feature = "static")]
14457 Font::NotoSansGujaratiExtraCondensedExtraLight,
14458 #[cfg(feature = "static")]
14459 Font::NotoSansGujaratiExtraCondensedLight,
14460 #[cfg(feature = "static")]
14461 Font::NotoSansGujaratiExtraCondensedRegular,
14462 #[cfg(feature = "static")]
14463 Font::NotoSansGujaratiExtraCondensedMedium,
14464 #[cfg(feature = "static")]
14465 Font::NotoSansGujaratiExtraCondensedSemiBold,
14466 #[cfg(feature = "static")]
14467 Font::NotoSansGujaratiExtraCondensedBold,
14468 #[cfg(feature = "static")]
14469 Font::NotoSansGujaratiExtraCondensedExtraBold,
14470 #[cfg(feature = "static")]
14471 Font::NotoSansGujaratiExtraCondensedBlack,
14472 #[cfg(feature = "static")]
14473 Font::NotoSansGujaratiCondensedThin,
14474 #[cfg(feature = "static")]
14475 Font::NotoSansGujaratiCondensedExtraLight,
14476 #[cfg(feature = "static")]
14477 Font::NotoSansGujaratiCondensedLight,
14478 #[cfg(feature = "static")]
14479 Font::NotoSansGujaratiCondensedRegular,
14480 #[cfg(feature = "static")]
14481 Font::NotoSansGujaratiCondensedMedium,
14482 #[cfg(feature = "static")]
14483 Font::NotoSansGujaratiCondensedSemiBold,
14484 #[cfg(feature = "static")]
14485 Font::NotoSansGujaratiCondensedBold,
14486 #[cfg(feature = "static")]
14487 Font::NotoSansGujaratiCondensedExtraBold,
14488 #[cfg(feature = "static")]
14489 Font::NotoSansGujaratiCondensedBlack,
14490 #[cfg(feature = "static")]
14491 Font::NotoSansGujaratiSemiCondensedThin,
14492 #[cfg(feature = "static")]
14493 Font::NotoSansGujaratiSemiCondensedExtraLight,
14494 #[cfg(feature = "static")]
14495 Font::NotoSansGujaratiSemiCondensedLight,
14496 #[cfg(feature = "static")]
14497 Font::NotoSansGujaratiSemiCondensedRegular,
14498 #[cfg(feature = "static")]
14499 Font::NotoSansGujaratiSemiCondensedMedium,
14500 #[cfg(feature = "static")]
14501 Font::NotoSansGujaratiSemiCondensedSemiBold,
14502 #[cfg(feature = "static")]
14503 Font::NotoSansGujaratiSemiCondensedBold,
14504 #[cfg(feature = "static")]
14505 Font::NotoSansGujaratiSemiCondensedExtraBold,
14506 #[cfg(feature = "static")]
14507 Font::NotoSansGujaratiSemiCondensedBlack,
14508 #[cfg(feature = "static")]
14509 Font::NotoSansGujaratiThin,
14510 #[cfg(feature = "static")]
14511 Font::NotoSansGujaratiExtraLight,
14512 #[cfg(feature = "static")]
14513 Font::NotoSansGujaratiLight,
14514 #[cfg(feature = "static")]
14515 Font::NotoSansGujaratiRegular,
14516 #[cfg(feature = "static")]
14517 Font::NotoSansGujaratiMedium,
14518 #[cfg(feature = "static")]
14519 Font::NotoSansGujaratiSemiBold,
14520 #[cfg(feature = "static")]
14521 Font::NotoSansGujaratiBold,
14522 #[cfg(feature = "static")]
14523 Font::NotoSansGujaratiExtraBold,
14524 #[cfg(feature = "static")]
14525 Font::NotoSansGujaratiBlack,
14526 #[cfg(feature = "variable")]
14527 Font::NotoSansGujaratiVariable,
14528 #[cfg(feature = "static")]
14529 Font::NotoSansGunjalaGondiRegular,
14530 #[cfg(feature = "static")]
14531 Font::NotoSansGunjalaGondiMedium,
14532 #[cfg(feature = "static")]
14533 Font::NotoSansGunjalaGondiSemiBold,
14534 #[cfg(feature = "static")]
14535 Font::NotoSansGunjalaGondiBold,
14536 #[cfg(feature = "variable")]
14537 Font::NotoSansGunjalaGondiVariable,
14538 #[cfg(feature = "static")]
14539 Font::NotoSansGurmukhiExtraCondensedThin,
14540 #[cfg(feature = "static")]
14541 Font::NotoSansGurmukhiExtraCondensedExtraLight,
14542 #[cfg(feature = "static")]
14543 Font::NotoSansGurmukhiExtraCondensedLight,
14544 #[cfg(feature = "static")]
14545 Font::NotoSansGurmukhiExtraCondensedRegular,
14546 #[cfg(feature = "static")]
14547 Font::NotoSansGurmukhiExtraCondensedMedium,
14548 #[cfg(feature = "static")]
14549 Font::NotoSansGurmukhiExtraCondensedSemiBold,
14550 #[cfg(feature = "static")]
14551 Font::NotoSansGurmukhiExtraCondensedBold,
14552 #[cfg(feature = "static")]
14553 Font::NotoSansGurmukhiExtraCondensedExtraBold,
14554 #[cfg(feature = "static")]
14555 Font::NotoSansGurmukhiExtraCondensedBlack,
14556 #[cfg(feature = "static")]
14557 Font::NotoSansGurmukhiCondensedThin,
14558 #[cfg(feature = "static")]
14559 Font::NotoSansGurmukhiCondensedExtraLight,
14560 #[cfg(feature = "static")]
14561 Font::NotoSansGurmukhiCondensedLight,
14562 #[cfg(feature = "static")]
14563 Font::NotoSansGurmukhiCondensedRegular,
14564 #[cfg(feature = "static")]
14565 Font::NotoSansGurmukhiCondensedMedium,
14566 #[cfg(feature = "static")]
14567 Font::NotoSansGurmukhiCondensedSemiBold,
14568 #[cfg(feature = "static")]
14569 Font::NotoSansGurmukhiCondensedBold,
14570 #[cfg(feature = "static")]
14571 Font::NotoSansGurmukhiCondensedExtraBold,
14572 #[cfg(feature = "static")]
14573 Font::NotoSansGurmukhiCondensedBlack,
14574 #[cfg(feature = "static")]
14575 Font::NotoSansGurmukhiSemiCondensedThin,
14576 #[cfg(feature = "static")]
14577 Font::NotoSansGurmukhiSemiCondensedExtraLight,
14578 #[cfg(feature = "static")]
14579 Font::NotoSansGurmukhiSemiCondensedLight,
14580 #[cfg(feature = "static")]
14581 Font::NotoSansGurmukhiSemiCondensedRegular,
14582 #[cfg(feature = "static")]
14583 Font::NotoSansGurmukhiSemiCondensedMedium,
14584 #[cfg(feature = "static")]
14585 Font::NotoSansGurmukhiSemiCondensedSemiBold,
14586 #[cfg(feature = "static")]
14587 Font::NotoSansGurmukhiSemiCondensedBold,
14588 #[cfg(feature = "static")]
14589 Font::NotoSansGurmukhiSemiCondensedExtraBold,
14590 #[cfg(feature = "static")]
14591 Font::NotoSansGurmukhiSemiCondensedBlack,
14592 #[cfg(feature = "static")]
14593 Font::NotoSansGurmukhiThin,
14594 #[cfg(feature = "static")]
14595 Font::NotoSansGurmukhiExtraLight,
14596 #[cfg(feature = "static")]
14597 Font::NotoSansGurmukhiLight,
14598 #[cfg(feature = "static")]
14599 Font::NotoSansGurmukhiRegular,
14600 #[cfg(feature = "static")]
14601 Font::NotoSansGurmukhiMedium,
14602 #[cfg(feature = "static")]
14603 Font::NotoSansGurmukhiSemiBold,
14604 #[cfg(feature = "static")]
14605 Font::NotoSansGurmukhiBold,
14606 #[cfg(feature = "static")]
14607 Font::NotoSansGurmukhiExtraBold,
14608 #[cfg(feature = "static")]
14609 Font::NotoSansGurmukhiBlack,
14610 #[cfg(feature = "variable")]
14611 Font::NotoSansGurmukhiVariable,
14612 #[cfg(feature = "static")]
14613 Font::NotoSansHKThin,
14614 #[cfg(feature = "static")]
14615 Font::NotoSansHKExtraLight,
14616 #[cfg(feature = "static")]
14617 Font::NotoSansHKLight,
14618 #[cfg(feature = "static")]
14619 Font::NotoSansHKRegular,
14620 #[cfg(feature = "static")]
14621 Font::NotoSansHKMedium,
14622 #[cfg(feature = "static")]
14623 Font::NotoSansHKSemiBold,
14624 #[cfg(feature = "static")]
14625 Font::NotoSansHKBold,
14626 #[cfg(feature = "static")]
14627 Font::NotoSansHKExtraBold,
14628 #[cfg(feature = "static")]
14629 Font::NotoSansHKBlack,
14630 #[cfg(feature = "variable")]
14631 Font::NotoSansHKVariable,
14632 #[cfg(feature = "static")]
14633 Font::NotoSansHanifiRohingyaRegular,
14634 #[cfg(feature = "static")]
14635 Font::NotoSansHanifiRohingyaMedium,
14636 #[cfg(feature = "static")]
14637 Font::NotoSansHanifiRohingyaSemiBold,
14638 #[cfg(feature = "static")]
14639 Font::NotoSansHanifiRohingyaBold,
14640 #[cfg(feature = "variable")]
14641 Font::NotoSansHanifiRohingyaVariable,
14642 #[cfg(feature = "static")]
14643 Font::NotoSansHanunooRegular,
14644 #[cfg(feature = "static")]
14645 Font::NotoSansHatranRegular,
14646 #[cfg(feature = "static")]
14647 Font::NotoSansHebrewExtraCondensedThin,
14648 #[cfg(feature = "static")]
14649 Font::NotoSansHebrewExtraCondensedExtraLight,
14650 #[cfg(feature = "static")]
14651 Font::NotoSansHebrewExtraCondensedLight,
14652 #[cfg(feature = "static")]
14653 Font::NotoSansHebrewExtraCondensedRegular,
14654 #[cfg(feature = "static")]
14655 Font::NotoSansHebrewExtraCondensedMedium,
14656 #[cfg(feature = "static")]
14657 Font::NotoSansHebrewExtraCondensedSemiBold,
14658 #[cfg(feature = "static")]
14659 Font::NotoSansHebrewExtraCondensedBold,
14660 #[cfg(feature = "static")]
14661 Font::NotoSansHebrewExtraCondensedExtraBold,
14662 #[cfg(feature = "static")]
14663 Font::NotoSansHebrewExtraCondensedBlack,
14664 #[cfg(feature = "static")]
14665 Font::NotoSansHebrewCondensedThin,
14666 #[cfg(feature = "static")]
14667 Font::NotoSansHebrewCondensedExtraLight,
14668 #[cfg(feature = "static")]
14669 Font::NotoSansHebrewCondensedLight,
14670 #[cfg(feature = "static")]
14671 Font::NotoSansHebrewCondensedRegular,
14672 #[cfg(feature = "static")]
14673 Font::NotoSansHebrewCondensedMedium,
14674 #[cfg(feature = "static")]
14675 Font::NotoSansHebrewCondensedSemiBold,
14676 #[cfg(feature = "static")]
14677 Font::NotoSansHebrewCondensedBold,
14678 #[cfg(feature = "static")]
14679 Font::NotoSansHebrewCondensedExtraBold,
14680 #[cfg(feature = "static")]
14681 Font::NotoSansHebrewCondensedBlack,
14682 #[cfg(feature = "static")]
14683 Font::NotoSansHebrewSemiCondensedThin,
14684 #[cfg(feature = "static")]
14685 Font::NotoSansHebrewSemiCondensedExtraLight,
14686 #[cfg(feature = "static")]
14687 Font::NotoSansHebrewSemiCondensedLight,
14688 #[cfg(feature = "static")]
14689 Font::NotoSansHebrewSemiCondensedRegular,
14690 #[cfg(feature = "static")]
14691 Font::NotoSansHebrewSemiCondensedMedium,
14692 #[cfg(feature = "static")]
14693 Font::NotoSansHebrewSemiCondensedSemiBold,
14694 #[cfg(feature = "static")]
14695 Font::NotoSansHebrewSemiCondensedBold,
14696 #[cfg(feature = "static")]
14697 Font::NotoSansHebrewSemiCondensedExtraBold,
14698 #[cfg(feature = "static")]
14699 Font::NotoSansHebrewSemiCondensedBlack,
14700 #[cfg(feature = "static")]
14701 Font::NotoSansHebrewThin,
14702 #[cfg(feature = "static")]
14703 Font::NotoSansHebrewExtraLight,
14704 #[cfg(feature = "static")]
14705 Font::NotoSansHebrewLight,
14706 #[cfg(feature = "static")]
14707 Font::NotoSansHebrewRegular,
14708 #[cfg(feature = "static")]
14709 Font::NotoSansHebrewMedium,
14710 #[cfg(feature = "static")]
14711 Font::NotoSansHebrewSemiBold,
14712 #[cfg(feature = "static")]
14713 Font::NotoSansHebrewBold,
14714 #[cfg(feature = "static")]
14715 Font::NotoSansHebrewExtraBold,
14716 #[cfg(feature = "static")]
14717 Font::NotoSansHebrewBlack,
14718 #[cfg(feature = "variable")]
14719 Font::NotoSansHebrewVariable,
14720 #[cfg(feature = "static")]
14721 Font::NotoSansImperialAramaicRegular,
14722 #[cfg(feature = "static")]
14723 Font::NotoSansIndicSiyaqNumbersRegular,
14724 #[cfg(feature = "static")]
14725 Font::NotoSansInscriptionalPahlaviRegular,
14726 #[cfg(feature = "static")]
14727 Font::NotoSansInscriptionalParthianRegular,
14728 #[cfg(feature = "static")]
14729 Font::NotoSansJPThin,
14730 #[cfg(feature = "static")]
14731 Font::NotoSansJPExtraLight,
14732 #[cfg(feature = "static")]
14733 Font::NotoSansJPLight,
14734 #[cfg(feature = "static")]
14735 Font::NotoSansJPRegular,
14736 #[cfg(feature = "static")]
14737 Font::NotoSansJPMedium,
14738 #[cfg(feature = "static")]
14739 Font::NotoSansJPSemiBold,
14740 #[cfg(feature = "static")]
14741 Font::NotoSansJPBold,
14742 #[cfg(feature = "static")]
14743 Font::NotoSansJPExtraBold,
14744 #[cfg(feature = "static")]
14745 Font::NotoSansJPBlack,
14746 #[cfg(feature = "variable")]
14747 Font::NotoSansJPVariable,
14748 #[cfg(feature = "static")]
14749 Font::NotoSansJavaneseRegular,
14750 #[cfg(feature = "static")]
14751 Font::NotoSansJavaneseMedium,
14752 #[cfg(feature = "static")]
14753 Font::NotoSansJavaneseSemiBold,
14754 #[cfg(feature = "static")]
14755 Font::NotoSansJavaneseBold,
14756 #[cfg(feature = "variable")]
14757 Font::NotoSansJavaneseVariable,
14758 #[cfg(feature = "static")]
14759 Font::NotoSansKRThin,
14760 #[cfg(feature = "static")]
14761 Font::NotoSansKRExtraLight,
14762 #[cfg(feature = "static")]
14763 Font::NotoSansKRLight,
14764 #[cfg(feature = "static")]
14765 Font::NotoSansKRRegular,
14766 #[cfg(feature = "static")]
14767 Font::NotoSansKRMedium,
14768 #[cfg(feature = "static")]
14769 Font::NotoSansKRSemiBold,
14770 #[cfg(feature = "static")]
14771 Font::NotoSansKRBold,
14772 #[cfg(feature = "static")]
14773 Font::NotoSansKRExtraBold,
14774 #[cfg(feature = "static")]
14775 Font::NotoSansKRBlack,
14776 #[cfg(feature = "variable")]
14777 Font::NotoSansKRVariable,
14778 #[cfg(feature = "static")]
14779 Font::NotoSansKaithiRegular,
14780 #[cfg(feature = "static")]
14781 Font::NotoSansKannadaExtraCondensedThin,
14782 #[cfg(feature = "static")]
14783 Font::NotoSansKannadaExtraCondensedExtraLight,
14784 #[cfg(feature = "static")]
14785 Font::NotoSansKannadaExtraCondensedLight,
14786 #[cfg(feature = "static")]
14787 Font::NotoSansKannadaExtraCondensedRegular,
14788 #[cfg(feature = "static")]
14789 Font::NotoSansKannadaExtraCondensedMedium,
14790 #[cfg(feature = "static")]
14791 Font::NotoSansKannadaExtraCondensedSemiBold,
14792 #[cfg(feature = "static")]
14793 Font::NotoSansKannadaExtraCondensedBold,
14794 #[cfg(feature = "static")]
14795 Font::NotoSansKannadaExtraCondensedExtraBold,
14796 #[cfg(feature = "static")]
14797 Font::NotoSansKannadaExtraCondensedBlack,
14798 #[cfg(feature = "static")]
14799 Font::NotoSansKannadaCondensedThin,
14800 #[cfg(feature = "static")]
14801 Font::NotoSansKannadaCondensedExtraLight,
14802 #[cfg(feature = "static")]
14803 Font::NotoSansKannadaCondensedLight,
14804 #[cfg(feature = "static")]
14805 Font::NotoSansKannadaCondensedRegular,
14806 #[cfg(feature = "static")]
14807 Font::NotoSansKannadaCondensedMedium,
14808 #[cfg(feature = "static")]
14809 Font::NotoSansKannadaCondensedSemiBold,
14810 #[cfg(feature = "static")]
14811 Font::NotoSansKannadaCondensedBold,
14812 #[cfg(feature = "static")]
14813 Font::NotoSansKannadaCondensedExtraBold,
14814 #[cfg(feature = "static")]
14815 Font::NotoSansKannadaCondensedBlack,
14816 #[cfg(feature = "static")]
14817 Font::NotoSansKannadaSemiCondensedThin,
14818 #[cfg(feature = "static")]
14819 Font::NotoSansKannadaSemiCondensedExtraLight,
14820 #[cfg(feature = "static")]
14821 Font::NotoSansKannadaSemiCondensedLight,
14822 #[cfg(feature = "static")]
14823 Font::NotoSansKannadaSemiCondensedRegular,
14824 #[cfg(feature = "static")]
14825 Font::NotoSansKannadaSemiCondensedMedium,
14826 #[cfg(feature = "static")]
14827 Font::NotoSansKannadaSemiCondensedSemiBold,
14828 #[cfg(feature = "static")]
14829 Font::NotoSansKannadaSemiCondensedBold,
14830 #[cfg(feature = "static")]
14831 Font::NotoSansKannadaSemiCondensedExtraBold,
14832 #[cfg(feature = "static")]
14833 Font::NotoSansKannadaSemiCondensedBlack,
14834 #[cfg(feature = "static")]
14835 Font::NotoSansKannadaThin,
14836 #[cfg(feature = "static")]
14837 Font::NotoSansKannadaExtraLight,
14838 #[cfg(feature = "static")]
14839 Font::NotoSansKannadaLight,
14840 #[cfg(feature = "static")]
14841 Font::NotoSansKannadaRegular,
14842 #[cfg(feature = "static")]
14843 Font::NotoSansKannadaMedium,
14844 #[cfg(feature = "static")]
14845 Font::NotoSansKannadaSemiBold,
14846 #[cfg(feature = "static")]
14847 Font::NotoSansKannadaBold,
14848 #[cfg(feature = "static")]
14849 Font::NotoSansKannadaExtraBold,
14850 #[cfg(feature = "static")]
14851 Font::NotoSansKannadaBlack,
14852 #[cfg(feature = "variable")]
14853 Font::NotoSansKannadaVariable,
14854 #[cfg(feature = "static")]
14855 Font::NotoSansKawiRegular,
14856 #[cfg(feature = "static")]
14857 Font::NotoSansKawiMedium,
14858 #[cfg(feature = "static")]
14859 Font::NotoSansKawiSemiBold,
14860 #[cfg(feature = "static")]
14861 Font::NotoSansKawiBold,
14862 #[cfg(feature = "variable")]
14863 Font::NotoSansKawiVariable,
14864 #[cfg(feature = "static")]
14865 Font::NotoSansKayahLiRegular,
14866 #[cfg(feature = "static")]
14867 Font::NotoSansKayahLiMedium,
14868 #[cfg(feature = "static")]
14869 Font::NotoSansKayahLiSemiBold,
14870 #[cfg(feature = "static")]
14871 Font::NotoSansKayahLiBold,
14872 #[cfg(feature = "variable")]
14873 Font::NotoSansKayahLiVariable,
14874 #[cfg(feature = "static")]
14875 Font::NotoSansKharoshthiRegular,
14876 #[cfg(feature = "static")]
14877 Font::NotoSansKhmerExtraCondensedThin,
14878 #[cfg(feature = "static")]
14879 Font::NotoSansKhmerExtraCondensedExtraLight,
14880 #[cfg(feature = "static")]
14881 Font::NotoSansKhmerExtraCondensedLight,
14882 #[cfg(feature = "static")]
14883 Font::NotoSansKhmerExtraCondensedRegular,
14884 #[cfg(feature = "static")]
14885 Font::NotoSansKhmerExtraCondensedMedium,
14886 #[cfg(feature = "static")]
14887 Font::NotoSansKhmerExtraCondensedSemiBold,
14888 #[cfg(feature = "static")]
14889 Font::NotoSansKhmerExtraCondensedBold,
14890 #[cfg(feature = "static")]
14891 Font::NotoSansKhmerExtraCondensedExtraBold,
14892 #[cfg(feature = "static")]
14893 Font::NotoSansKhmerExtraCondensedBlack,
14894 #[cfg(feature = "static")]
14895 Font::NotoSansKhmerCondensedThin,
14896 #[cfg(feature = "static")]
14897 Font::NotoSansKhmerCondensedExtraLight,
14898 #[cfg(feature = "static")]
14899 Font::NotoSansKhmerCondensedLight,
14900 #[cfg(feature = "static")]
14901 Font::NotoSansKhmerCondensedRegular,
14902 #[cfg(feature = "static")]
14903 Font::NotoSansKhmerCondensedMedium,
14904 #[cfg(feature = "static")]
14905 Font::NotoSansKhmerCondensedSemiBold,
14906 #[cfg(feature = "static")]
14907 Font::NotoSansKhmerCondensedBold,
14908 #[cfg(feature = "static")]
14909 Font::NotoSansKhmerCondensedExtraBold,
14910 #[cfg(feature = "static")]
14911 Font::NotoSansKhmerCondensedBlack,
14912 #[cfg(feature = "static")]
14913 Font::NotoSansKhmerSemiCondensedThin,
14914 #[cfg(feature = "static")]
14915 Font::NotoSansKhmerSemiCondensedExtraLight,
14916 #[cfg(feature = "static")]
14917 Font::NotoSansKhmerSemiCondensedLight,
14918 #[cfg(feature = "static")]
14919 Font::NotoSansKhmerSemiCondensedRegular,
14920 #[cfg(feature = "static")]
14921 Font::NotoSansKhmerSemiCondensedMedium,
14922 #[cfg(feature = "static")]
14923 Font::NotoSansKhmerSemiCondensedSemiBold,
14924 #[cfg(feature = "static")]
14925 Font::NotoSansKhmerSemiCondensedBold,
14926 #[cfg(feature = "static")]
14927 Font::NotoSansKhmerSemiCondensedExtraBold,
14928 #[cfg(feature = "static")]
14929 Font::NotoSansKhmerSemiCondensedBlack,
14930 #[cfg(feature = "static")]
14931 Font::NotoSansKhmerThin,
14932 #[cfg(feature = "static")]
14933 Font::NotoSansKhmerExtraLight,
14934 #[cfg(feature = "static")]
14935 Font::NotoSansKhmerLight,
14936 #[cfg(feature = "static")]
14937 Font::NotoSansKhmerRegular,
14938 #[cfg(feature = "static")]
14939 Font::NotoSansKhmerMedium,
14940 #[cfg(feature = "static")]
14941 Font::NotoSansKhmerSemiBold,
14942 #[cfg(feature = "static")]
14943 Font::NotoSansKhmerBold,
14944 #[cfg(feature = "static")]
14945 Font::NotoSansKhmerExtraBold,
14946 #[cfg(feature = "static")]
14947 Font::NotoSansKhmerBlack,
14948 #[cfg(feature = "variable")]
14949 Font::NotoSansKhmerVariable,
14950 #[cfg(feature = "static")]
14951 Font::NotoSansKhojkiRegular,
14952 #[cfg(feature = "static")]
14953 Font::NotoSansKhudawadiRegular,
14954 #[cfg(feature = "static")]
14955 Font::NotoSansLaoExtraCondensedThin,
14956 #[cfg(feature = "static")]
14957 Font::NotoSansLaoExtraCondensedExtraLight,
14958 #[cfg(feature = "static")]
14959 Font::NotoSansLaoExtraCondensedLight,
14960 #[cfg(feature = "static")]
14961 Font::NotoSansLaoExtraCondensedRegular,
14962 #[cfg(feature = "static")]
14963 Font::NotoSansLaoExtraCondensedMedium,
14964 #[cfg(feature = "static")]
14965 Font::NotoSansLaoExtraCondensedSemiBold,
14966 #[cfg(feature = "static")]
14967 Font::NotoSansLaoExtraCondensedBold,
14968 #[cfg(feature = "static")]
14969 Font::NotoSansLaoExtraCondensedExtraBold,
14970 #[cfg(feature = "static")]
14971 Font::NotoSansLaoExtraCondensedBlack,
14972 #[cfg(feature = "static")]
14973 Font::NotoSansLaoCondensedThin,
14974 #[cfg(feature = "static")]
14975 Font::NotoSansLaoCondensedExtraLight,
14976 #[cfg(feature = "static")]
14977 Font::NotoSansLaoCondensedLight,
14978 #[cfg(feature = "static")]
14979 Font::NotoSansLaoCondensedRegular,
14980 #[cfg(feature = "static")]
14981 Font::NotoSansLaoCondensedMedium,
14982 #[cfg(feature = "static")]
14983 Font::NotoSansLaoCondensedSemiBold,
14984 #[cfg(feature = "static")]
14985 Font::NotoSansLaoCondensedBold,
14986 #[cfg(feature = "static")]
14987 Font::NotoSansLaoCondensedExtraBold,
14988 #[cfg(feature = "static")]
14989 Font::NotoSansLaoCondensedBlack,
14990 #[cfg(feature = "static")]
14991 Font::NotoSansLaoSemiCondensedThin,
14992 #[cfg(feature = "static")]
14993 Font::NotoSansLaoSemiCondensedExtraLight,
14994 #[cfg(feature = "static")]
14995 Font::NotoSansLaoSemiCondensedLight,
14996 #[cfg(feature = "static")]
14997 Font::NotoSansLaoSemiCondensedRegular,
14998 #[cfg(feature = "static")]
14999 Font::NotoSansLaoSemiCondensedMedium,
15000 #[cfg(feature = "static")]
15001 Font::NotoSansLaoSemiCondensedSemiBold,
15002 #[cfg(feature = "static")]
15003 Font::NotoSansLaoSemiCondensedBold,
15004 #[cfg(feature = "static")]
15005 Font::NotoSansLaoSemiCondensedExtraBold,
15006 #[cfg(feature = "static")]
15007 Font::NotoSansLaoSemiCondensedBlack,
15008 #[cfg(feature = "static")]
15009 Font::NotoSansLaoThin,
15010 #[cfg(feature = "static")]
15011 Font::NotoSansLaoExtraLight,
15012 #[cfg(feature = "static")]
15013 Font::NotoSansLaoLight,
15014 #[cfg(feature = "static")]
15015 Font::NotoSansLaoRegular,
15016 #[cfg(feature = "static")]
15017 Font::NotoSansLaoMedium,
15018 #[cfg(feature = "static")]
15019 Font::NotoSansLaoSemiBold,
15020 #[cfg(feature = "static")]
15021 Font::NotoSansLaoBold,
15022 #[cfg(feature = "static")]
15023 Font::NotoSansLaoExtraBold,
15024 #[cfg(feature = "static")]
15025 Font::NotoSansLaoBlack,
15026 #[cfg(feature = "variable")]
15027 Font::NotoSansLaoVariable,
15028 #[cfg(feature = "static")]
15029 Font::NotoSansLaoLoopedExtraCondensedThin,
15030 #[cfg(feature = "static")]
15031 Font::NotoSansLaoLoopedExtraCondensedExtraLight,
15032 #[cfg(feature = "static")]
15033 Font::NotoSansLaoLoopedExtraCondensedLight,
15034 #[cfg(feature = "static")]
15035 Font::NotoSansLaoLoopedExtraCondensedRegular,
15036 #[cfg(feature = "static")]
15037 Font::NotoSansLaoLoopedExtraCondensedMedium,
15038 #[cfg(feature = "static")]
15039 Font::NotoSansLaoLoopedExtraCondensedSemiBold,
15040 #[cfg(feature = "static")]
15041 Font::NotoSansLaoLoopedExtraCondensedBold,
15042 #[cfg(feature = "static")]
15043 Font::NotoSansLaoLoopedExtraCondensedExtraBold,
15044 #[cfg(feature = "static")]
15045 Font::NotoSansLaoLoopedExtraCondensedBlack,
15046 #[cfg(feature = "static")]
15047 Font::NotoSansLaoLoopedCondensedThin,
15048 #[cfg(feature = "static")]
15049 Font::NotoSansLaoLoopedCondensedExtraLight,
15050 #[cfg(feature = "static")]
15051 Font::NotoSansLaoLoopedCondensedLight,
15052 #[cfg(feature = "static")]
15053 Font::NotoSansLaoLoopedCondensedRegular,
15054 #[cfg(feature = "static")]
15055 Font::NotoSansLaoLoopedCondensedMedium,
15056 #[cfg(feature = "static")]
15057 Font::NotoSansLaoLoopedCondensedSemiBold,
15058 #[cfg(feature = "static")]
15059 Font::NotoSansLaoLoopedCondensedBold,
15060 #[cfg(feature = "static")]
15061 Font::NotoSansLaoLoopedCondensedExtraBold,
15062 #[cfg(feature = "static")]
15063 Font::NotoSansLaoLoopedCondensedBlack,
15064 #[cfg(feature = "static")]
15065 Font::NotoSansLaoLoopedSemiCondensedThin,
15066 #[cfg(feature = "static")]
15067 Font::NotoSansLaoLoopedSemiCondensedExtraLight,
15068 #[cfg(feature = "static")]
15069 Font::NotoSansLaoLoopedSemiCondensedLight,
15070 #[cfg(feature = "static")]
15071 Font::NotoSansLaoLoopedSemiCondensedRegular,
15072 #[cfg(feature = "static")]
15073 Font::NotoSansLaoLoopedSemiCondensedMedium,
15074 #[cfg(feature = "static")]
15075 Font::NotoSansLaoLoopedSemiCondensedSemiBold,
15076 #[cfg(feature = "static")]
15077 Font::NotoSansLaoLoopedSemiCondensedBold,
15078 #[cfg(feature = "static")]
15079 Font::NotoSansLaoLoopedSemiCondensedExtraBold,
15080 #[cfg(feature = "static")]
15081 Font::NotoSansLaoLoopedSemiCondensedBlack,
15082 #[cfg(feature = "static")]
15083 Font::NotoSansLaoLoopedThin,
15084 #[cfg(feature = "static")]
15085 Font::NotoSansLaoLoopedExtraLight,
15086 #[cfg(feature = "static")]
15087 Font::NotoSansLaoLoopedLight,
15088 #[cfg(feature = "static")]
15089 Font::NotoSansLaoLoopedRegular,
15090 #[cfg(feature = "static")]
15091 Font::NotoSansLaoLoopedMedium,
15092 #[cfg(feature = "static")]
15093 Font::NotoSansLaoLoopedSemiBold,
15094 #[cfg(feature = "static")]
15095 Font::NotoSansLaoLoopedBold,
15096 #[cfg(feature = "static")]
15097 Font::NotoSansLaoLoopedExtraBold,
15098 #[cfg(feature = "static")]
15099 Font::NotoSansLaoLoopedBlack,
15100 #[cfg(feature = "variable")]
15101 Font::NotoSansLaoLoopedVariable,
15102 #[cfg(feature = "static")]
15103 Font::NotoSansLepchaRegular,
15104 #[cfg(feature = "static")]
15105 Font::NotoSansLimbuRegular,
15106 #[cfg(feature = "static")]
15107 Font::NotoSansLinearARegular,
15108 #[cfg(feature = "static")]
15109 Font::NotoSansLinearBRegular,
15110 #[cfg(feature = "static")]
15111 Font::NotoSansLisuRegular,
15112 #[cfg(feature = "static")]
15113 Font::NotoSansLisuMedium,
15114 #[cfg(feature = "static")]
15115 Font::NotoSansLisuSemiBold,
15116 #[cfg(feature = "static")]
15117 Font::NotoSansLisuBold,
15118 #[cfg(feature = "variable")]
15119 Font::NotoSansLisuVariable,
15120 #[cfg(feature = "static")]
15121 Font::NotoSansLycianRegular,
15122 #[cfg(feature = "static")]
15123 Font::NotoSansLydianRegular,
15124 #[cfg(feature = "static")]
15125 Font::NotoSansMahajaniRegular,
15126 #[cfg(feature = "static")]
15127 Font::NotoSansMalayalamExtraCondensedThin,
15128 #[cfg(feature = "static")]
15129 Font::NotoSansMalayalamExtraCondensedExtraLight,
15130 #[cfg(feature = "static")]
15131 Font::NotoSansMalayalamExtraCondensedLight,
15132 #[cfg(feature = "static")]
15133 Font::NotoSansMalayalamExtraCondensedRegular,
15134 #[cfg(feature = "static")]
15135 Font::NotoSansMalayalamExtraCondensedMedium,
15136 #[cfg(feature = "static")]
15137 Font::NotoSansMalayalamExtraCondensedSemiBold,
15138 #[cfg(feature = "static")]
15139 Font::NotoSansMalayalamExtraCondensedBold,
15140 #[cfg(feature = "static")]
15141 Font::NotoSansMalayalamExtraCondensedExtraBold,
15142 #[cfg(feature = "static")]
15143 Font::NotoSansMalayalamExtraCondensedBlack,
15144 #[cfg(feature = "static")]
15145 Font::NotoSansMalayalamCondensedThin,
15146 #[cfg(feature = "static")]
15147 Font::NotoSansMalayalamCondensedExtraLight,
15148 #[cfg(feature = "static")]
15149 Font::NotoSansMalayalamCondensedLight,
15150 #[cfg(feature = "static")]
15151 Font::NotoSansMalayalamCondensedRegular,
15152 #[cfg(feature = "static")]
15153 Font::NotoSansMalayalamCondensedMedium,
15154 #[cfg(feature = "static")]
15155 Font::NotoSansMalayalamCondensedSemiBold,
15156 #[cfg(feature = "static")]
15157 Font::NotoSansMalayalamCondensedBold,
15158 #[cfg(feature = "static")]
15159 Font::NotoSansMalayalamCondensedExtraBold,
15160 #[cfg(feature = "static")]
15161 Font::NotoSansMalayalamCondensedBlack,
15162 #[cfg(feature = "static")]
15163 Font::NotoSansMalayalamSemiCondensedThin,
15164 #[cfg(feature = "static")]
15165 Font::NotoSansMalayalamSemiCondensedExtraLight,
15166 #[cfg(feature = "static")]
15167 Font::NotoSansMalayalamSemiCondensedLight,
15168 #[cfg(feature = "static")]
15169 Font::NotoSansMalayalamSemiCondensedRegular,
15170 #[cfg(feature = "static")]
15171 Font::NotoSansMalayalamSemiCondensedMedium,
15172 #[cfg(feature = "static")]
15173 Font::NotoSansMalayalamSemiCondensedSemiBold,
15174 #[cfg(feature = "static")]
15175 Font::NotoSansMalayalamSemiCondensedBold,
15176 #[cfg(feature = "static")]
15177 Font::NotoSansMalayalamSemiCondensedExtraBold,
15178 #[cfg(feature = "static")]
15179 Font::NotoSansMalayalamSemiCondensedBlack,
15180 #[cfg(feature = "static")]
15181 Font::NotoSansMalayalamThin,
15182 #[cfg(feature = "static")]
15183 Font::NotoSansMalayalamExtraLight,
15184 #[cfg(feature = "static")]
15185 Font::NotoSansMalayalamLight,
15186 #[cfg(feature = "static")]
15187 Font::NotoSansMalayalamRegular,
15188 #[cfg(feature = "static")]
15189 Font::NotoSansMalayalamMedium,
15190 #[cfg(feature = "static")]
15191 Font::NotoSansMalayalamSemiBold,
15192 #[cfg(feature = "static")]
15193 Font::NotoSansMalayalamBold,
15194 #[cfg(feature = "static")]
15195 Font::NotoSansMalayalamExtraBold,
15196 #[cfg(feature = "static")]
15197 Font::NotoSansMalayalamBlack,
15198 #[cfg(feature = "variable")]
15199 Font::NotoSansMalayalamVariable,
15200 #[cfg(feature = "static")]
15201 Font::NotoSansMandaicRegular,
15202 #[cfg(feature = "static")]
15203 Font::NotoSansManichaeanRegular,
15204 #[cfg(feature = "static")]
15205 Font::NotoSansMarchenRegular,
15206 #[cfg(feature = "static")]
15207 Font::NotoSansMasaramGondiRegular,
15208 #[cfg(feature = "static")]
15209 Font::NotoSansMathRegular,
15210 #[cfg(feature = "static")]
15211 Font::NotoSansMayanNumeralsRegular,
15212 #[cfg(feature = "static")]
15213 Font::NotoSansMedefaidrinRegular,
15214 #[cfg(feature = "static")]
15215 Font::NotoSansMedefaidrinMedium,
15216 #[cfg(feature = "static")]
15217 Font::NotoSansMedefaidrinSemiBold,
15218 #[cfg(feature = "static")]
15219 Font::NotoSansMedefaidrinBold,
15220 #[cfg(feature = "variable")]
15221 Font::NotoSansMedefaidrinVariable,
15222 #[cfg(feature = "static")]
15223 Font::NotoSansMeeteiMayekThin,
15224 #[cfg(feature = "static")]
15225 Font::NotoSansMeeteiMayekExtraLight,
15226 #[cfg(feature = "static")]
15227 Font::NotoSansMeeteiMayekLight,
15228 #[cfg(feature = "static")]
15229 Font::NotoSansMeeteiMayekRegular,
15230 #[cfg(feature = "static")]
15231 Font::NotoSansMeeteiMayekMedium,
15232 #[cfg(feature = "static")]
15233 Font::NotoSansMeeteiMayekSemiBold,
15234 #[cfg(feature = "static")]
15235 Font::NotoSansMeeteiMayekBold,
15236 #[cfg(feature = "static")]
15237 Font::NotoSansMeeteiMayekExtraBold,
15238 #[cfg(feature = "static")]
15239 Font::NotoSansMeeteiMayekBlack,
15240 #[cfg(feature = "variable")]
15241 Font::NotoSansMeeteiMayekVariable,
15242 #[cfg(feature = "static")]
15243 Font::NotoSansMendeKikakuiRegular,
15244 #[cfg(feature = "static")]
15245 Font::NotoSansMeroiticRegular,
15246 #[cfg(feature = "static")]
15247 Font::NotoSansMiaoRegular,
15248 #[cfg(feature = "static")]
15249 Font::NotoSansModiRegular,
15250 #[cfg(feature = "static")]
15251 Font::NotoSansMongolianRegular,
15252 #[cfg(feature = "static")]
15253 Font::NotoSansMonoExtraCondensedThin,
15254 #[cfg(feature = "static")]
15255 Font::NotoSansMonoExtraCondensedExtraLight,
15256 #[cfg(feature = "static")]
15257 Font::NotoSansMonoExtraCondensedLight,
15258 #[cfg(feature = "static")]
15259 Font::NotoSansMonoExtraCondensedRegular,
15260 #[cfg(feature = "static")]
15261 Font::NotoSansMonoExtraCondensedMedium,
15262 #[cfg(feature = "static")]
15263 Font::NotoSansMonoExtraCondensedSemiBold,
15264 #[cfg(feature = "static")]
15265 Font::NotoSansMonoExtraCondensedBold,
15266 #[cfg(feature = "static")]
15267 Font::NotoSansMonoExtraCondensedExtraBold,
15268 #[cfg(feature = "static")]
15269 Font::NotoSansMonoExtraCondensedBlack,
15270 #[cfg(feature = "static")]
15271 Font::NotoSansMonoCondensedThin,
15272 #[cfg(feature = "static")]
15273 Font::NotoSansMonoCondensedExtraLight,
15274 #[cfg(feature = "static")]
15275 Font::NotoSansMonoCondensedLight,
15276 #[cfg(feature = "static")]
15277 Font::NotoSansMonoCondensedRegular,
15278 #[cfg(feature = "static")]
15279 Font::NotoSansMonoCondensedMedium,
15280 #[cfg(feature = "static")]
15281 Font::NotoSansMonoCondensedSemiBold,
15282 #[cfg(feature = "static")]
15283 Font::NotoSansMonoCondensedBold,
15284 #[cfg(feature = "static")]
15285 Font::NotoSansMonoCondensedExtraBold,
15286 #[cfg(feature = "static")]
15287 Font::NotoSansMonoCondensedBlack,
15288 #[cfg(feature = "static")]
15289 Font::NotoSansMonoSemiCondensedThin,
15290 #[cfg(feature = "static")]
15291 Font::NotoSansMonoSemiCondensedExtraLight,
15292 #[cfg(feature = "static")]
15293 Font::NotoSansMonoSemiCondensedLight,
15294 #[cfg(feature = "static")]
15295 Font::NotoSansMonoSemiCondensedRegular,
15296 #[cfg(feature = "static")]
15297 Font::NotoSansMonoSemiCondensedMedium,
15298 #[cfg(feature = "static")]
15299 Font::NotoSansMonoSemiCondensedSemiBold,
15300 #[cfg(feature = "static")]
15301 Font::NotoSansMonoSemiCondensedBold,
15302 #[cfg(feature = "static")]
15303 Font::NotoSansMonoSemiCondensedExtraBold,
15304 #[cfg(feature = "static")]
15305 Font::NotoSansMonoSemiCondensedBlack,
15306 #[cfg(feature = "static")]
15307 Font::NotoSansMonoThin,
15308 #[cfg(feature = "static")]
15309 Font::NotoSansMonoExtraLight,
15310 #[cfg(feature = "static")]
15311 Font::NotoSansMonoLight,
15312 #[cfg(feature = "static")]
15313 Font::NotoSansMonoRegular,
15314 #[cfg(feature = "static")]
15315 Font::NotoSansMonoMedium,
15316 #[cfg(feature = "static")]
15317 Font::NotoSansMonoSemiBold,
15318 #[cfg(feature = "static")]
15319 Font::NotoSansMonoBold,
15320 #[cfg(feature = "static")]
15321 Font::NotoSansMonoExtraBold,
15322 #[cfg(feature = "static")]
15323 Font::NotoSansMonoBlack,
15324 #[cfg(feature = "variable")]
15325 Font::NotoSansMonoVariable,
15326 #[cfg(feature = "static")]
15327 Font::NotoSansMroRegular,
15328 #[cfg(feature = "static")]
15329 Font::NotoSansMultaniRegular,
15330 #[cfg(feature = "static")]
15331 Font::NotoSansMyanmarThin,
15332 #[cfg(feature = "static")]
15333 Font::NotoSansMyanmarExtraLight,
15334 #[cfg(feature = "static")]
15335 Font::NotoSansMyanmarLight,
15336 #[cfg(feature = "static")]
15337 Font::NotoSansMyanmarRegular,
15338 #[cfg(feature = "static")]
15339 Font::NotoSansMyanmarMedium,
15340 #[cfg(feature = "static")]
15341 Font::NotoSansMyanmarSemiBold,
15342 #[cfg(feature = "static")]
15343 Font::NotoSansMyanmarBold,
15344 #[cfg(feature = "static")]
15345 Font::NotoSansMyanmarExtraBold,
15346 #[cfg(feature = "static")]
15347 Font::NotoSansMyanmarBlack,
15348 #[cfg(feature = "static")]
15349 Font::NotoSansNKoRegular,
15350 #[cfg(feature = "static")]
15351 Font::NotoSansNKoUnjoinedRegular,
15352 #[cfg(feature = "static")]
15353 Font::NotoSansNKoUnjoinedMedium,
15354 #[cfg(feature = "static")]
15355 Font::NotoSansNKoUnjoinedSemiBold,
15356 #[cfg(feature = "static")]
15357 Font::NotoSansNKoUnjoinedBold,
15358 #[cfg(feature = "variable")]
15359 Font::NotoSansNKoUnjoinedVariable,
15360 #[cfg(feature = "static")]
15361 Font::NotoSansNabataeanRegular,
15362 #[cfg(feature = "static")]
15363 Font::NotoSansNagMundariRegular,
15364 #[cfg(feature = "static")]
15365 Font::NotoSansNagMundariMedium,
15366 #[cfg(feature = "static")]
15367 Font::NotoSansNagMundariSemiBold,
15368 #[cfg(feature = "static")]
15369 Font::NotoSansNagMundariBold,
15370 #[cfg(feature = "variable")]
15371 Font::NotoSansNagMundariVariable,
15372 #[cfg(feature = "static")]
15373 Font::NotoSansNandinagariRegular,
15374 #[cfg(feature = "static")]
15375 Font::NotoSansNewTaiLueRegular,
15376 #[cfg(feature = "static")]
15377 Font::NotoSansNewTaiLueMedium,
15378 #[cfg(feature = "static")]
15379 Font::NotoSansNewTaiLueSemiBold,
15380 #[cfg(feature = "static")]
15381 Font::NotoSansNewTaiLueBold,
15382 #[cfg(feature = "variable")]
15383 Font::NotoSansNewTaiLueVariable,
15384 #[cfg(feature = "static")]
15385 Font::NotoSansNewaRegular,
15386 #[cfg(feature = "static")]
15387 Font::NotoSansNushuRegular,
15388 #[cfg(feature = "static")]
15389 Font::NotoSansOghamRegular,
15390 #[cfg(feature = "static")]
15391 Font::NotoSansOlChikiRegular,
15392 #[cfg(feature = "static")]
15393 Font::NotoSansOlChikiMedium,
15394 #[cfg(feature = "static")]
15395 Font::NotoSansOlChikiSemiBold,
15396 #[cfg(feature = "static")]
15397 Font::NotoSansOlChikiBold,
15398 #[cfg(feature = "variable")]
15399 Font::NotoSansOlChikiVariable,
15400 #[cfg(feature = "static")]
15401 Font::NotoSansOldHungarianRegular,
15402 #[cfg(feature = "static")]
15403 Font::NotoSansOldItalicRegular,
15404 #[cfg(feature = "static")]
15405 Font::NotoSansOldNorthArabianRegular,
15406 #[cfg(feature = "static")]
15407 Font::NotoSansOldPermicRegular,
15408 #[cfg(feature = "static")]
15409 Font::NotoSansOldPersianRegular,
15410 #[cfg(feature = "static")]
15411 Font::NotoSansOldSogdianRegular,
15412 #[cfg(feature = "static")]
15413 Font::NotoSansOldSouthArabianRegular,
15414 #[cfg(feature = "static")]
15415 Font::NotoSansOldTurkicRegular,
15416 #[cfg(feature = "static")]
15417 Font::NotoSansOriyaExtraCondensedThin,
15418 #[cfg(feature = "static")]
15419 Font::NotoSansOriyaExtraCondensedExtraLight,
15420 #[cfg(feature = "static")]
15421 Font::NotoSansOriyaExtraCondensedLight,
15422 #[cfg(feature = "static")]
15423 Font::NotoSansOriyaExtraCondensedRegular,
15424 #[cfg(feature = "static")]
15425 Font::NotoSansOriyaExtraCondensedMedium,
15426 #[cfg(feature = "static")]
15427 Font::NotoSansOriyaExtraCondensedSemiBold,
15428 #[cfg(feature = "static")]
15429 Font::NotoSansOriyaExtraCondensedBold,
15430 #[cfg(feature = "static")]
15431 Font::NotoSansOriyaExtraCondensedExtraBold,
15432 #[cfg(feature = "static")]
15433 Font::NotoSansOriyaExtraCondensedBlack,
15434 #[cfg(feature = "static")]
15435 Font::NotoSansOriyaCondensedThin,
15436 #[cfg(feature = "static")]
15437 Font::NotoSansOriyaCondensedExtraLight,
15438 #[cfg(feature = "static")]
15439 Font::NotoSansOriyaCondensedLight,
15440 #[cfg(feature = "static")]
15441 Font::NotoSansOriyaCondensedRegular,
15442 #[cfg(feature = "static")]
15443 Font::NotoSansOriyaCondensedMedium,
15444 #[cfg(feature = "static")]
15445 Font::NotoSansOriyaCondensedSemiBold,
15446 #[cfg(feature = "static")]
15447 Font::NotoSansOriyaCondensedBold,
15448 #[cfg(feature = "static")]
15449 Font::NotoSansOriyaCondensedExtraBold,
15450 #[cfg(feature = "static")]
15451 Font::NotoSansOriyaCondensedBlack,
15452 #[cfg(feature = "static")]
15453 Font::NotoSansOriyaSemiCondensedThin,
15454 #[cfg(feature = "static")]
15455 Font::NotoSansOriyaSemiCondensedExtraLight,
15456 #[cfg(feature = "static")]
15457 Font::NotoSansOriyaSemiCondensedLight,
15458 #[cfg(feature = "static")]
15459 Font::NotoSansOriyaSemiCondensedRegular,
15460 #[cfg(feature = "static")]
15461 Font::NotoSansOriyaSemiCondensedMedium,
15462 #[cfg(feature = "static")]
15463 Font::NotoSansOriyaSemiCondensedSemiBold,
15464 #[cfg(feature = "static")]
15465 Font::NotoSansOriyaSemiCondensedBold,
15466 #[cfg(feature = "static")]
15467 Font::NotoSansOriyaSemiCondensedExtraBold,
15468 #[cfg(feature = "static")]
15469 Font::NotoSansOriyaSemiCondensedBlack,
15470 #[cfg(feature = "static")]
15471 Font::NotoSansOriyaThin,
15472 #[cfg(feature = "static")]
15473 Font::NotoSansOriyaExtraLight,
15474 #[cfg(feature = "static")]
15475 Font::NotoSansOriyaLight,
15476 #[cfg(feature = "static")]
15477 Font::NotoSansOriyaRegular,
15478 #[cfg(feature = "static")]
15479 Font::NotoSansOriyaMedium,
15480 #[cfg(feature = "static")]
15481 Font::NotoSansOriyaSemiBold,
15482 #[cfg(feature = "static")]
15483 Font::NotoSansOriyaBold,
15484 #[cfg(feature = "static")]
15485 Font::NotoSansOriyaExtraBold,
15486 #[cfg(feature = "static")]
15487 Font::NotoSansOriyaBlack,
15488 #[cfg(feature = "variable")]
15489 Font::NotoSansOriyaVariable,
15490 #[cfg(feature = "static")]
15491 Font::NotoSansOsageRegular,
15492 #[cfg(feature = "static")]
15493 Font::NotoSansOsmanyaRegular,
15494 #[cfg(feature = "static")]
15495 Font::NotoSansPahawhHmongRegular,
15496 #[cfg(feature = "static")]
15497 Font::NotoSansPalmyreneRegular,
15498 #[cfg(feature = "static")]
15499 Font::NotoSansPauCinHauRegular,
15500 #[cfg(feature = "static")]
15501 Font::NotoSansPhagsPaRegular,
15502 #[cfg(feature = "static")]
15503 Font::NotoSansPhoenicianRegular,
15504 #[cfg(feature = "static")]
15505 Font::NotoSansPsalterPahlaviRegular,
15506 #[cfg(feature = "static")]
15507 Font::NotoSansRejangRegular,
15508 #[cfg(feature = "static")]
15509 Font::NotoSansRunicRegular,
15510 #[cfg(feature = "static")]
15511 Font::NotoSansSCThin,
15512 #[cfg(feature = "static")]
15513 Font::NotoSansSCExtraLight,
15514 #[cfg(feature = "static")]
15515 Font::NotoSansSCLight,
15516 #[cfg(feature = "static")]
15517 Font::NotoSansSCRegular,
15518 #[cfg(feature = "static")]
15519 Font::NotoSansSCMedium,
15520 #[cfg(feature = "static")]
15521 Font::NotoSansSCSemiBold,
15522 #[cfg(feature = "static")]
15523 Font::NotoSansSCBold,
15524 #[cfg(feature = "static")]
15525 Font::NotoSansSCExtraBold,
15526 #[cfg(feature = "static")]
15527 Font::NotoSansSCBlack,
15528 #[cfg(feature = "variable")]
15529 Font::NotoSansSCVariable,
15530 #[cfg(feature = "static")]
15531 Font::NotoSansSamaritanRegular,
15532 #[cfg(feature = "static")]
15533 Font::NotoSansSaurashtraRegular,
15534 #[cfg(feature = "static")]
15535 Font::NotoSansSharadaRegular,
15536 #[cfg(feature = "static")]
15537 Font::NotoSansShavianRegular,
15538 #[cfg(feature = "static")]
15539 Font::NotoSansSiddhamRegular,
15540 #[cfg(feature = "static")]
15541 Font::NotoSansSignWritingRegular,
15542 #[cfg(feature = "static")]
15543 Font::NotoSansSinhalaExtraCondensedThin,
15544 #[cfg(feature = "static")]
15545 Font::NotoSansSinhalaExtraCondensedExtraLight,
15546 #[cfg(feature = "static")]
15547 Font::NotoSansSinhalaExtraCondensedLight,
15548 #[cfg(feature = "static")]
15549 Font::NotoSansSinhalaExtraCondensedRegular,
15550 #[cfg(feature = "static")]
15551 Font::NotoSansSinhalaExtraCondensedMedium,
15552 #[cfg(feature = "static")]
15553 Font::NotoSansSinhalaExtraCondensedSemiBold,
15554 #[cfg(feature = "static")]
15555 Font::NotoSansSinhalaExtraCondensedBold,
15556 #[cfg(feature = "static")]
15557 Font::NotoSansSinhalaExtraCondensedExtraBold,
15558 #[cfg(feature = "static")]
15559 Font::NotoSansSinhalaExtraCondensedBlack,
15560 #[cfg(feature = "static")]
15561 Font::NotoSansSinhalaCondensedThin,
15562 #[cfg(feature = "static")]
15563 Font::NotoSansSinhalaCondensedExtraLight,
15564 #[cfg(feature = "static")]
15565 Font::NotoSansSinhalaCondensedLight,
15566 #[cfg(feature = "static")]
15567 Font::NotoSansSinhalaCondensedRegular,
15568 #[cfg(feature = "static")]
15569 Font::NotoSansSinhalaCondensedMedium,
15570 #[cfg(feature = "static")]
15571 Font::NotoSansSinhalaCondensedSemiBold,
15572 #[cfg(feature = "static")]
15573 Font::NotoSansSinhalaCondensedBold,
15574 #[cfg(feature = "static")]
15575 Font::NotoSansSinhalaCondensedExtraBold,
15576 #[cfg(feature = "static")]
15577 Font::NotoSansSinhalaCondensedBlack,
15578 #[cfg(feature = "static")]
15579 Font::NotoSansSinhalaSemiCondensedThin,
15580 #[cfg(feature = "static")]
15581 Font::NotoSansSinhalaSemiCondensedExtraLight,
15582 #[cfg(feature = "static")]
15583 Font::NotoSansSinhalaSemiCondensedLight,
15584 #[cfg(feature = "static")]
15585 Font::NotoSansSinhalaSemiCondensedRegular,
15586 #[cfg(feature = "static")]
15587 Font::NotoSansSinhalaSemiCondensedMedium,
15588 #[cfg(feature = "static")]
15589 Font::NotoSansSinhalaSemiCondensedSemiBold,
15590 #[cfg(feature = "static")]
15591 Font::NotoSansSinhalaSemiCondensedBold,
15592 #[cfg(feature = "static")]
15593 Font::NotoSansSinhalaSemiCondensedExtraBold,
15594 #[cfg(feature = "static")]
15595 Font::NotoSansSinhalaSemiCondensedBlack,
15596 #[cfg(feature = "static")]
15597 Font::NotoSansSinhalaThin,
15598 #[cfg(feature = "static")]
15599 Font::NotoSansSinhalaExtraLight,
15600 #[cfg(feature = "static")]
15601 Font::NotoSansSinhalaLight,
15602 #[cfg(feature = "static")]
15603 Font::NotoSansSinhalaRegular,
15604 #[cfg(feature = "static")]
15605 Font::NotoSansSinhalaMedium,
15606 #[cfg(feature = "static")]
15607 Font::NotoSansSinhalaSemiBold,
15608 #[cfg(feature = "static")]
15609 Font::NotoSansSinhalaBold,
15610 #[cfg(feature = "static")]
15611 Font::NotoSansSinhalaExtraBold,
15612 #[cfg(feature = "static")]
15613 Font::NotoSansSinhalaBlack,
15614 #[cfg(feature = "variable")]
15615 Font::NotoSansSinhalaVariable,
15616 #[cfg(feature = "static")]
15617 Font::NotoSansSogdianRegular,
15618 #[cfg(feature = "static")]
15619 Font::NotoSansSoraSompengRegular,
15620 #[cfg(feature = "static")]
15621 Font::NotoSansSoraSompengMedium,
15622 #[cfg(feature = "static")]
15623 Font::NotoSansSoraSompengSemiBold,
15624 #[cfg(feature = "static")]
15625 Font::NotoSansSoraSompengBold,
15626 #[cfg(feature = "variable")]
15627 Font::NotoSansSoraSompengVariable,
15628 #[cfg(feature = "static")]
15629 Font::NotoSansSoyomboRegular,
15630 #[cfg(feature = "static")]
15631 Font::NotoSansSundaneseRegular,
15632 #[cfg(feature = "static")]
15633 Font::NotoSansSundaneseMedium,
15634 #[cfg(feature = "static")]
15635 Font::NotoSansSundaneseSemiBold,
15636 #[cfg(feature = "static")]
15637 Font::NotoSansSundaneseBold,
15638 #[cfg(feature = "variable")]
15639 Font::NotoSansSundaneseVariable,
15640 #[cfg(feature = "static")]
15641 Font::NotoSansSylotiNagriRegular,
15642 #[cfg(feature = "static")]
15643 Font::NotoSansSymbolsThin,
15644 #[cfg(feature = "static")]
15645 Font::NotoSansSymbolsExtraLight,
15646 #[cfg(feature = "static")]
15647 Font::NotoSansSymbolsLight,
15648 #[cfg(feature = "static")]
15649 Font::NotoSansSymbolsRegular,
15650 #[cfg(feature = "static")]
15651 Font::NotoSansSymbolsMedium,
15652 #[cfg(feature = "static")]
15653 Font::NotoSansSymbolsSemiBold,
15654 #[cfg(feature = "static")]
15655 Font::NotoSansSymbolsBold,
15656 #[cfg(feature = "static")]
15657 Font::NotoSansSymbolsExtraBold,
15658 #[cfg(feature = "static")]
15659 Font::NotoSansSymbolsBlack,
15660 #[cfg(feature = "variable")]
15661 Font::NotoSansSymbolsVariable,
15662 #[cfg(feature = "static")]
15663 Font::NotoSansSymbols2Regular,
15664 #[cfg(feature = "static")]
15665 Font::NotoSansSyriacThin,
15666 #[cfg(feature = "static")]
15667 Font::NotoSansSyriacExtraLight,
15668 #[cfg(feature = "static")]
15669 Font::NotoSansSyriacLight,
15670 #[cfg(feature = "static")]
15671 Font::NotoSansSyriacRegular,
15672 #[cfg(feature = "static")]
15673 Font::NotoSansSyriacMedium,
15674 #[cfg(feature = "static")]
15675 Font::NotoSansSyriacSemiBold,
15676 #[cfg(feature = "static")]
15677 Font::NotoSansSyriacBold,
15678 #[cfg(feature = "static")]
15679 Font::NotoSansSyriacExtraBold,
15680 #[cfg(feature = "static")]
15681 Font::NotoSansSyriacBlack,
15682 #[cfg(feature = "variable")]
15683 Font::NotoSansSyriacVariable,
15684 #[cfg(feature = "static")]
15685 Font::NotoSansSyriacEasternThin,
15686 #[cfg(feature = "static")]
15687 Font::NotoSansSyriacEasternExtraLight,
15688 #[cfg(feature = "static")]
15689 Font::NotoSansSyriacEasternLight,
15690 #[cfg(feature = "static")]
15691 Font::NotoSansSyriacEasternRegular,
15692 #[cfg(feature = "static")]
15693 Font::NotoSansSyriacEasternMedium,
15694 #[cfg(feature = "static")]
15695 Font::NotoSansSyriacEasternSemiBold,
15696 #[cfg(feature = "static")]
15697 Font::NotoSansSyriacEasternBold,
15698 #[cfg(feature = "static")]
15699 Font::NotoSansSyriacEasternExtraBold,
15700 #[cfg(feature = "static")]
15701 Font::NotoSansSyriacEasternBlack,
15702 #[cfg(feature = "variable")]
15703 Font::NotoSansSyriacEasternVariable,
15704 #[cfg(feature = "static")]
15705 Font::NotoSansTCThin,
15706 #[cfg(feature = "static")]
15707 Font::NotoSansTCExtraLight,
15708 #[cfg(feature = "static")]
15709 Font::NotoSansTCLight,
15710 #[cfg(feature = "static")]
15711 Font::NotoSansTCRegular,
15712 #[cfg(feature = "static")]
15713 Font::NotoSansTCMedium,
15714 #[cfg(feature = "static")]
15715 Font::NotoSansTCSemiBold,
15716 #[cfg(feature = "static")]
15717 Font::NotoSansTCBold,
15718 #[cfg(feature = "static")]
15719 Font::NotoSansTCExtraBold,
15720 #[cfg(feature = "static")]
15721 Font::NotoSansTCBlack,
15722 #[cfg(feature = "variable")]
15723 Font::NotoSansTCVariable,
15724 #[cfg(feature = "static")]
15725 Font::NotoSansTagalogRegular,
15726 #[cfg(feature = "static")]
15727 Font::NotoSansTagbanwaRegular,
15728 #[cfg(feature = "static")]
15729 Font::NotoSansTaiLeRegular,
15730 #[cfg(feature = "static")]
15731 Font::NotoSansTaiThamRegular,
15732 #[cfg(feature = "static")]
15733 Font::NotoSansTaiThamMedium,
15734 #[cfg(feature = "static")]
15735 Font::NotoSansTaiThamSemiBold,
15736 #[cfg(feature = "static")]
15737 Font::NotoSansTaiThamBold,
15738 #[cfg(feature = "variable")]
15739 Font::NotoSansTaiThamVariable,
15740 #[cfg(feature = "static")]
15741 Font::NotoSansTaiVietRegular,
15742 #[cfg(feature = "static")]
15743 Font::NotoSansTakriRegular,
15744 #[cfg(feature = "static")]
15745 Font::NotoSansTamilExtraCondensedThin,
15746 #[cfg(feature = "static")]
15747 Font::NotoSansTamilExtraCondensedExtraLight,
15748 #[cfg(feature = "static")]
15749 Font::NotoSansTamilExtraCondensedLight,
15750 #[cfg(feature = "static")]
15751 Font::NotoSansTamilExtraCondensedRegular,
15752 #[cfg(feature = "static")]
15753 Font::NotoSansTamilExtraCondensedMedium,
15754 #[cfg(feature = "static")]
15755 Font::NotoSansTamilExtraCondensedSemiBold,
15756 #[cfg(feature = "static")]
15757 Font::NotoSansTamilExtraCondensedBold,
15758 #[cfg(feature = "static")]
15759 Font::NotoSansTamilExtraCondensedExtraBold,
15760 #[cfg(feature = "static")]
15761 Font::NotoSansTamilExtraCondensedBlack,
15762 #[cfg(feature = "static")]
15763 Font::NotoSansTamilCondensedThin,
15764 #[cfg(feature = "static")]
15765 Font::NotoSansTamilCondensedExtraLight,
15766 #[cfg(feature = "static")]
15767 Font::NotoSansTamilCondensedLight,
15768 #[cfg(feature = "static")]
15769 Font::NotoSansTamilCondensedRegular,
15770 #[cfg(feature = "static")]
15771 Font::NotoSansTamilCondensedMedium,
15772 #[cfg(feature = "static")]
15773 Font::NotoSansTamilCondensedSemiBold,
15774 #[cfg(feature = "static")]
15775 Font::NotoSansTamilCondensedBold,
15776 #[cfg(feature = "static")]
15777 Font::NotoSansTamilCondensedExtraBold,
15778 #[cfg(feature = "static")]
15779 Font::NotoSansTamilCondensedBlack,
15780 #[cfg(feature = "static")]
15781 Font::NotoSansTamilSemiCondensedThin,
15782 #[cfg(feature = "static")]
15783 Font::NotoSansTamilSemiCondensedExtraLight,
15784 #[cfg(feature = "static")]
15785 Font::NotoSansTamilSemiCondensedLight,
15786 #[cfg(feature = "static")]
15787 Font::NotoSansTamilSemiCondensedRegular,
15788 #[cfg(feature = "static")]
15789 Font::NotoSansTamilSemiCondensedMedium,
15790 #[cfg(feature = "static")]
15791 Font::NotoSansTamilSemiCondensedSemiBold,
15792 #[cfg(feature = "static")]
15793 Font::NotoSansTamilSemiCondensedBold,
15794 #[cfg(feature = "static")]
15795 Font::NotoSansTamilSemiCondensedExtraBold,
15796 #[cfg(feature = "static")]
15797 Font::NotoSansTamilSemiCondensedBlack,
15798 #[cfg(feature = "static")]
15799 Font::NotoSansTamilThin,
15800 #[cfg(feature = "static")]
15801 Font::NotoSansTamilExtraLight,
15802 #[cfg(feature = "static")]
15803 Font::NotoSansTamilLight,
15804 #[cfg(feature = "static")]
15805 Font::NotoSansTamilRegular,
15806 #[cfg(feature = "static")]
15807 Font::NotoSansTamilMedium,
15808 #[cfg(feature = "static")]
15809 Font::NotoSansTamilSemiBold,
15810 #[cfg(feature = "static")]
15811 Font::NotoSansTamilBold,
15812 #[cfg(feature = "static")]
15813 Font::NotoSansTamilExtraBold,
15814 #[cfg(feature = "static")]
15815 Font::NotoSansTamilBlack,
15816 #[cfg(feature = "variable")]
15817 Font::NotoSansTamilVariable,
15818 #[cfg(feature = "static")]
15819 Font::NotoSansTamilSupplementRegular,
15820 #[cfg(feature = "static")]
15821 Font::NotoSansTangsaRegular,
15822 #[cfg(feature = "static")]
15823 Font::NotoSansTangsaMedium,
15824 #[cfg(feature = "static")]
15825 Font::NotoSansTangsaSemiBold,
15826 #[cfg(feature = "static")]
15827 Font::NotoSansTangsaBold,
15828 #[cfg(feature = "variable")]
15829 Font::NotoSansTangsaVariable,
15830 #[cfg(feature = "static")]
15831 Font::NotoSansTeluguExtraCondensedThin,
15832 #[cfg(feature = "static")]
15833 Font::NotoSansTeluguExtraCondensedExtraLight,
15834 #[cfg(feature = "static")]
15835 Font::NotoSansTeluguExtraCondensedLight,
15836 #[cfg(feature = "static")]
15837 Font::NotoSansTeluguExtraCondensedRegular,
15838 #[cfg(feature = "static")]
15839 Font::NotoSansTeluguExtraCondensedMedium,
15840 #[cfg(feature = "static")]
15841 Font::NotoSansTeluguExtraCondensedSemiBold,
15842 #[cfg(feature = "static")]
15843 Font::NotoSansTeluguExtraCondensedBold,
15844 #[cfg(feature = "static")]
15845 Font::NotoSansTeluguExtraCondensedExtraBold,
15846 #[cfg(feature = "static")]
15847 Font::NotoSansTeluguExtraCondensedBlack,
15848 #[cfg(feature = "static")]
15849 Font::NotoSansTeluguCondensedThin,
15850 #[cfg(feature = "static")]
15851 Font::NotoSansTeluguCondensedExtraLight,
15852 #[cfg(feature = "static")]
15853 Font::NotoSansTeluguCondensedLight,
15854 #[cfg(feature = "static")]
15855 Font::NotoSansTeluguCondensedRegular,
15856 #[cfg(feature = "static")]
15857 Font::NotoSansTeluguCondensedMedium,
15858 #[cfg(feature = "static")]
15859 Font::NotoSansTeluguCondensedSemiBold,
15860 #[cfg(feature = "static")]
15861 Font::NotoSansTeluguCondensedBold,
15862 #[cfg(feature = "static")]
15863 Font::NotoSansTeluguCondensedExtraBold,
15864 #[cfg(feature = "static")]
15865 Font::NotoSansTeluguCondensedBlack,
15866 #[cfg(feature = "static")]
15867 Font::NotoSansTeluguSemiCondensedThin,
15868 #[cfg(feature = "static")]
15869 Font::NotoSansTeluguSemiCondensedExtraLight,
15870 #[cfg(feature = "static")]
15871 Font::NotoSansTeluguSemiCondensedLight,
15872 #[cfg(feature = "static")]
15873 Font::NotoSansTeluguSemiCondensedRegular,
15874 #[cfg(feature = "static")]
15875 Font::NotoSansTeluguSemiCondensedMedium,
15876 #[cfg(feature = "static")]
15877 Font::NotoSansTeluguSemiCondensedSemiBold,
15878 #[cfg(feature = "static")]
15879 Font::NotoSansTeluguSemiCondensedBold,
15880 #[cfg(feature = "static")]
15881 Font::NotoSansTeluguSemiCondensedExtraBold,
15882 #[cfg(feature = "static")]
15883 Font::NotoSansTeluguSemiCondensedBlack,
15884 #[cfg(feature = "static")]
15885 Font::NotoSansTeluguThin,
15886 #[cfg(feature = "static")]
15887 Font::NotoSansTeluguExtraLight,
15888 #[cfg(feature = "static")]
15889 Font::NotoSansTeluguLight,
15890 #[cfg(feature = "static")]
15891 Font::NotoSansTeluguRegular,
15892 #[cfg(feature = "static")]
15893 Font::NotoSansTeluguMedium,
15894 #[cfg(feature = "static")]
15895 Font::NotoSansTeluguSemiBold,
15896 #[cfg(feature = "static")]
15897 Font::NotoSansTeluguBold,
15898 #[cfg(feature = "static")]
15899 Font::NotoSansTeluguExtraBold,
15900 #[cfg(feature = "static")]
15901 Font::NotoSansTeluguBlack,
15902 #[cfg(feature = "variable")]
15903 Font::NotoSansTeluguVariable,
15904 #[cfg(feature = "static")]
15905 Font::NotoSansThaanaThin,
15906 #[cfg(feature = "static")]
15907 Font::NotoSansThaanaExtraLight,
15908 #[cfg(feature = "static")]
15909 Font::NotoSansThaanaLight,
15910 #[cfg(feature = "static")]
15911 Font::NotoSansThaanaRegular,
15912 #[cfg(feature = "static")]
15913 Font::NotoSansThaanaMedium,
15914 #[cfg(feature = "static")]
15915 Font::NotoSansThaanaSemiBold,
15916 #[cfg(feature = "static")]
15917 Font::NotoSansThaanaBold,
15918 #[cfg(feature = "static")]
15919 Font::NotoSansThaanaExtraBold,
15920 #[cfg(feature = "static")]
15921 Font::NotoSansThaanaBlack,
15922 #[cfg(feature = "variable")]
15923 Font::NotoSansThaanaVariable,
15924 #[cfg(feature = "static")]
15925 Font::NotoSansThaiExtraCondensedThin,
15926 #[cfg(feature = "static")]
15927 Font::NotoSansThaiExtraCondensedExtraLight,
15928 #[cfg(feature = "static")]
15929 Font::NotoSansThaiExtraCondensedLight,
15930 #[cfg(feature = "static")]
15931 Font::NotoSansThaiExtraCondensedRegular,
15932 #[cfg(feature = "static")]
15933 Font::NotoSansThaiExtraCondensedMedium,
15934 #[cfg(feature = "static")]
15935 Font::NotoSansThaiExtraCondensedSemiBold,
15936 #[cfg(feature = "static")]
15937 Font::NotoSansThaiExtraCondensedBold,
15938 #[cfg(feature = "static")]
15939 Font::NotoSansThaiExtraCondensedExtraBold,
15940 #[cfg(feature = "static")]
15941 Font::NotoSansThaiExtraCondensedBlack,
15942 #[cfg(feature = "static")]
15943 Font::NotoSansThaiCondensedThin,
15944 #[cfg(feature = "static")]
15945 Font::NotoSansThaiCondensedExtraLight,
15946 #[cfg(feature = "static")]
15947 Font::NotoSansThaiCondensedLight,
15948 #[cfg(feature = "static")]
15949 Font::NotoSansThaiCondensedRegular,
15950 #[cfg(feature = "static")]
15951 Font::NotoSansThaiCondensedMedium,
15952 #[cfg(feature = "static")]
15953 Font::NotoSansThaiCondensedSemiBold,
15954 #[cfg(feature = "static")]
15955 Font::NotoSansThaiCondensedBold,
15956 #[cfg(feature = "static")]
15957 Font::NotoSansThaiCondensedExtraBold,
15958 #[cfg(feature = "static")]
15959 Font::NotoSansThaiCondensedBlack,
15960 #[cfg(feature = "static")]
15961 Font::NotoSansThaiSemiCondensedThin,
15962 #[cfg(feature = "static")]
15963 Font::NotoSansThaiSemiCondensedExtraLight,
15964 #[cfg(feature = "static")]
15965 Font::NotoSansThaiSemiCondensedLight,
15966 #[cfg(feature = "static")]
15967 Font::NotoSansThaiSemiCondensedRegular,
15968 #[cfg(feature = "static")]
15969 Font::NotoSansThaiSemiCondensedMedium,
15970 #[cfg(feature = "static")]
15971 Font::NotoSansThaiSemiCondensedSemiBold,
15972 #[cfg(feature = "static")]
15973 Font::NotoSansThaiSemiCondensedBold,
15974 #[cfg(feature = "static")]
15975 Font::NotoSansThaiSemiCondensedExtraBold,
15976 #[cfg(feature = "static")]
15977 Font::NotoSansThaiSemiCondensedBlack,
15978 #[cfg(feature = "static")]
15979 Font::NotoSansThaiThin,
15980 #[cfg(feature = "static")]
15981 Font::NotoSansThaiExtraLight,
15982 #[cfg(feature = "static")]
15983 Font::NotoSansThaiLight,
15984 #[cfg(feature = "static")]
15985 Font::NotoSansThaiRegular,
15986 #[cfg(feature = "static")]
15987 Font::NotoSansThaiMedium,
15988 #[cfg(feature = "static")]
15989 Font::NotoSansThaiSemiBold,
15990 #[cfg(feature = "static")]
15991 Font::NotoSansThaiBold,
15992 #[cfg(feature = "static")]
15993 Font::NotoSansThaiExtraBold,
15994 #[cfg(feature = "static")]
15995 Font::NotoSansThaiBlack,
15996 #[cfg(feature = "variable")]
15997 Font::NotoSansThaiVariable,
15998 #[cfg(feature = "static")]
15999 Font::NotoSansThaiLoopedThin,
16000 #[cfg(feature = "static")]
16001 Font::NotoSansThaiLoopedExtraLight,
16002 #[cfg(feature = "static")]
16003 Font::NotoSansThaiLoopedLight,
16004 #[cfg(feature = "static")]
16005 Font::NotoSansThaiLoopedRegular,
16006 #[cfg(feature = "static")]
16007 Font::NotoSansThaiLoopedMedium,
16008 #[cfg(feature = "static")]
16009 Font::NotoSansThaiLoopedSemiBold,
16010 #[cfg(feature = "static")]
16011 Font::NotoSansThaiLoopedBold,
16012 #[cfg(feature = "static")]
16013 Font::NotoSansThaiLoopedExtraBold,
16014 #[cfg(feature = "static")]
16015 Font::NotoSansThaiLoopedBlack,
16016 #[cfg(feature = "static")]
16017 Font::NotoSansTifinaghRegular,
16018 #[cfg(feature = "static")]
16019 Font::NotoSansTirhutaRegular,
16020 #[cfg(feature = "static")]
16021 Font::NotoSansUgariticRegular,
16022 #[cfg(feature = "static")]
16023 Font::NotoSansVaiRegular,
16024 #[cfg(feature = "static")]
16025 Font::NotoSansVithkuqiRegular,
16026 #[cfg(feature = "static")]
16027 Font::NotoSansVithkuqiMedium,
16028 #[cfg(feature = "static")]
16029 Font::NotoSansVithkuqiSemiBold,
16030 #[cfg(feature = "static")]
16031 Font::NotoSansVithkuqiBold,
16032 #[cfg(feature = "variable")]
16033 Font::NotoSansVithkuqiVariable,
16034 #[cfg(feature = "static")]
16035 Font::NotoSansWanchoRegular,
16036 #[cfg(feature = "static")]
16037 Font::NotoSansWarangCitiRegular,
16038 #[cfg(feature = "static")]
16039 Font::NotoSansYiRegular,
16040 #[cfg(feature = "static")]
16041 Font::NotoSansZanabazarSquareRegular,
16042 #[cfg(feature = "static")]
16043 Font::NotoTraditionalNushuLight,
16044 #[cfg(feature = "static")]
16045 Font::NotoTraditionalNushuRegular,
16046 #[cfg(feature = "static")]
16047 Font::NotoTraditionalNushuMedium,
16048 #[cfg(feature = "static")]
16049 Font::NotoTraditionalNushuSemiBold,
16050 #[cfg(feature = "static")]
16051 Font::NotoTraditionalNushuBold,
16052 #[cfg(feature = "variable")]
16053 Font::NotoTraditionalNushuVariable,
16054 #[cfg(feature = "static")]
16055 Font::NotoZnamennyMusicalNotationRegular,
16056 #[cfg(feature = "static")]
16057 Font::NumansRegular,
16058 #[cfg(feature = "static")]
16059 Font::NunitoExtraLight,
16060 #[cfg(feature = "static")]
16061 Font::NunitoLight,
16062 #[cfg(feature = "static")]
16063 Font::NunitoRegular,
16064 #[cfg(feature = "static")]
16065 Font::NunitoMedium,
16066 #[cfg(feature = "static")]
16067 Font::NunitoSemiBold,
16068 #[cfg(feature = "static")]
16069 Font::NunitoBold,
16070 #[cfg(feature = "static")]
16071 Font::NunitoExtraBold,
16072 #[cfg(feature = "static")]
16073 Font::NunitoBlack,
16074 #[cfg(feature = "static")]
16075 Font::NunitoExtraLightItalic,
16076 #[cfg(feature = "static")]
16077 Font::NunitoLightItalic,
16078 #[cfg(feature = "static")]
16079 Font::NunitoItalic,
16080 #[cfg(feature = "static")]
16081 Font::NunitoMediumItalic,
16082 #[cfg(feature = "static")]
16083 Font::NunitoSemiBoldItalic,
16084 #[cfg(feature = "static")]
16085 Font::NunitoBoldItalic,
16086 #[cfg(feature = "static")]
16087 Font::NunitoExtraBoldItalic,
16088 #[cfg(feature = "static")]
16089 Font::NunitoBlackItalic,
16090 #[cfg(feature = "variable")]
16091 Font::NunitoVariable,
16092 #[cfg(feature = "variable")]
16093 Font::NunitoItalicVariable,
16094 #[cfg(feature = "static")]
16095 Font::NunitoSans7ptCondensedExtraLight,
16096 #[cfg(feature = "static")]
16097 Font::NunitoSans7ptCondensedLight,
16098 #[cfg(feature = "static")]
16099 Font::NunitoSans7ptCondensedRegular,
16100 #[cfg(feature = "static")]
16101 Font::NunitoSans7ptCondensedMedium,
16102 #[cfg(feature = "static")]
16103 Font::NunitoSans7ptCondensedSemiBold,
16104 #[cfg(feature = "static")]
16105 Font::NunitoSans7ptCondensedBold,
16106 #[cfg(feature = "static")]
16107 Font::NunitoSans7ptCondensedExtraBold,
16108 #[cfg(feature = "static")]
16109 Font::NunitoSans7ptCondensedBlack,
16110 #[cfg(feature = "static")]
16111 Font::NunitoSans7ptSemiCondensedExtraLight,
16112 #[cfg(feature = "static")]
16113 Font::NunitoSans7ptSemiCondensedLight,
16114 #[cfg(feature = "static")]
16115 Font::NunitoSans7ptSemiCondensedRegular,
16116 #[cfg(feature = "static")]
16117 Font::NunitoSans7ptSemiCondensedMedium,
16118 #[cfg(feature = "static")]
16119 Font::NunitoSans7ptSemiCondensedSemiBold,
16120 #[cfg(feature = "static")]
16121 Font::NunitoSans7ptSemiCondensedBold,
16122 #[cfg(feature = "static")]
16123 Font::NunitoSans7ptSemiCondensedExtraBold,
16124 #[cfg(feature = "static")]
16125 Font::NunitoSans7ptSemiCondensedBlack,
16126 #[cfg(feature = "static")]
16127 Font::NunitoSans7ptExtraLight,
16128 #[cfg(feature = "static")]
16129 Font::NunitoSans7ptLight,
16130 #[cfg(feature = "static")]
16131 Font::NunitoSans7ptRegular,
16132 #[cfg(feature = "static")]
16133 Font::NunitoSans7ptMedium,
16134 #[cfg(feature = "static")]
16135 Font::NunitoSans7ptSemiBold,
16136 #[cfg(feature = "static")]
16137 Font::NunitoSans7ptBold,
16138 #[cfg(feature = "static")]
16139 Font::NunitoSans7ptExtraBold,
16140 #[cfg(feature = "static")]
16141 Font::NunitoSans7ptBlack,
16142 #[cfg(feature = "static")]
16143 Font::NunitoSans7ptSemiExpandedExtraLight,
16144 #[cfg(feature = "static")]
16145 Font::NunitoSans7ptSemiExpandedLight,
16146 #[cfg(feature = "static")]
16147 Font::NunitoSans7ptSemiExpandedRegular,
16148 #[cfg(feature = "static")]
16149 Font::NunitoSans7ptSemiExpandedMedium,
16150 #[cfg(feature = "static")]
16151 Font::NunitoSans7ptSemiExpandedSemiBold,
16152 #[cfg(feature = "static")]
16153 Font::NunitoSans7ptSemiExpandedBold,
16154 #[cfg(feature = "static")]
16155 Font::NunitoSans7ptSemiExpandedExtraBold,
16156 #[cfg(feature = "static")]
16157 Font::NunitoSans7ptSemiExpandedBlack,
16158 #[cfg(feature = "static")]
16159 Font::NunitoSans7ptExpandedExtraLight,
16160 #[cfg(feature = "static")]
16161 Font::NunitoSans7ptExpandedLight,
16162 #[cfg(feature = "static")]
16163 Font::NunitoSans7ptExpandedRegular,
16164 #[cfg(feature = "static")]
16165 Font::NunitoSans7ptExpandedMedium,
16166 #[cfg(feature = "static")]
16167 Font::NunitoSans7ptExpandedSemiBold,
16168 #[cfg(feature = "static")]
16169 Font::NunitoSans7ptExpandedBold,
16170 #[cfg(feature = "static")]
16171 Font::NunitoSans7ptExpandedExtraBold,
16172 #[cfg(feature = "static")]
16173 Font::NunitoSans7ptExpandedBlack,
16174 #[cfg(feature = "static")]
16175 Font::NunitoSans10ptCondensedExtraLight,
16176 #[cfg(feature = "static")]
16177 Font::NunitoSans10ptCondensedLight,
16178 #[cfg(feature = "static")]
16179 Font::NunitoSans10ptCondensedRegular,
16180 #[cfg(feature = "static")]
16181 Font::NunitoSans10ptCondensedMedium,
16182 #[cfg(feature = "static")]
16183 Font::NunitoSans10ptCondensedSemiBold,
16184 #[cfg(feature = "static")]
16185 Font::NunitoSans10ptCondensedBold,
16186 #[cfg(feature = "static")]
16187 Font::NunitoSans10ptCondensedExtraBold,
16188 #[cfg(feature = "static")]
16189 Font::NunitoSans10ptCondensedBlack,
16190 #[cfg(feature = "static")]
16191 Font::NunitoSans10ptSemiCondensedExtraLight,
16192 #[cfg(feature = "static")]
16193 Font::NunitoSans10ptSemiCondensedLight,
16194 #[cfg(feature = "static")]
16195 Font::NunitoSans10ptSemiCondensedRegular,
16196 #[cfg(feature = "static")]
16197 Font::NunitoSans10ptSemiCondensedMedium,
16198 #[cfg(feature = "static")]
16199 Font::NunitoSans10ptSemiCondensedSemiBold,
16200 #[cfg(feature = "static")]
16201 Font::NunitoSans10ptSemiCondensedBold,
16202 #[cfg(feature = "static")]
16203 Font::NunitoSans10ptSemiCondensedExtraBold,
16204 #[cfg(feature = "static")]
16205 Font::NunitoSans10ptSemiCondensedBlack,
16206 #[cfg(feature = "static")]
16207 Font::NunitoSans10ptExtraLight,
16208 #[cfg(feature = "static")]
16209 Font::NunitoSans10ptLight,
16210 #[cfg(feature = "static")]
16211 Font::NunitoSans10ptRegular,
16212 #[cfg(feature = "static")]
16213 Font::NunitoSans10ptMedium,
16214 #[cfg(feature = "static")]
16215 Font::NunitoSans10ptSemiBold,
16216 #[cfg(feature = "static")]
16217 Font::NunitoSans10ptBold,
16218 #[cfg(feature = "static")]
16219 Font::NunitoSans10ptExtraBold,
16220 #[cfg(feature = "static")]
16221 Font::NunitoSans10ptBlack,
16222 #[cfg(feature = "static")]
16223 Font::NunitoSans10ptSemiExpandedExtraLight,
16224 #[cfg(feature = "static")]
16225 Font::NunitoSans10ptSemiExpandedLight,
16226 #[cfg(feature = "static")]
16227 Font::NunitoSans10ptSemiExpandedRegular,
16228 #[cfg(feature = "static")]
16229 Font::NunitoSans10ptSemiExpandedMedium,
16230 #[cfg(feature = "static")]
16231 Font::NunitoSans10ptSemiExpandedSemiBold,
16232 #[cfg(feature = "static")]
16233 Font::NunitoSans10ptSemiExpandedBold,
16234 #[cfg(feature = "static")]
16235 Font::NunitoSans10ptSemiExpandedExtraBold,
16236 #[cfg(feature = "static")]
16237 Font::NunitoSans10ptSemiExpandedBlack,
16238 #[cfg(feature = "static")]
16239 Font::NunitoSans10ptExpandedExtraLight,
16240 #[cfg(feature = "static")]
16241 Font::NunitoSans10ptExpandedLight,
16242 #[cfg(feature = "static")]
16243 Font::NunitoSans10ptExpandedRegular,
16244 #[cfg(feature = "static")]
16245 Font::NunitoSans10ptExpandedMedium,
16246 #[cfg(feature = "static")]
16247 Font::NunitoSans10ptExpandedSemiBold,
16248 #[cfg(feature = "static")]
16249 Font::NunitoSans10ptExpandedBold,
16250 #[cfg(feature = "static")]
16251 Font::NunitoSans10ptExpandedExtraBold,
16252 #[cfg(feature = "static")]
16253 Font::NunitoSans10ptExpandedBlack,
16254 #[cfg(feature = "static")]
16255 Font::NunitoSans7ptCondensedExtraLightItalic,
16256 #[cfg(feature = "static")]
16257 Font::NunitoSans7ptCondensedLightItalic,
16258 #[cfg(feature = "static")]
16259 Font::NunitoSans7ptCondensedItalic,
16260 #[cfg(feature = "static")]
16261 Font::NunitoSans7ptCondensedMediumItalic,
16262 #[cfg(feature = "static")]
16263 Font::NunitoSans7ptCondensedSemiBoldItalic,
16264 #[cfg(feature = "static")]
16265 Font::NunitoSans7ptCondensedBoldItalic,
16266 #[cfg(feature = "static")]
16267 Font::NunitoSans7ptCondensedExtraBoldItalic,
16268 #[cfg(feature = "static")]
16269 Font::NunitoSans7ptCondensedBlackItalic,
16270 #[cfg(feature = "static")]
16271 Font::NunitoSans7ptSemiCondensedExtraLightItalic,
16272 #[cfg(feature = "static")]
16273 Font::NunitoSans7ptSemiCondensedLightItalic,
16274 #[cfg(feature = "static")]
16275 Font::NunitoSans7ptSemiCondensedItalic,
16276 #[cfg(feature = "static")]
16277 Font::NunitoSans7ptSemiCondensedMediumItalic,
16278 #[cfg(feature = "static")]
16279 Font::NunitoSans7ptSemiCondensedSemiBoldItalic,
16280 #[cfg(feature = "static")]
16281 Font::NunitoSans7ptSemiCondensedBoldItalic,
16282 #[cfg(feature = "static")]
16283 Font::NunitoSans7ptSemiCondensedExtraBoldItalic,
16284 #[cfg(feature = "static")]
16285 Font::NunitoSans7ptSemiCondensedBlackItalic,
16286 #[cfg(feature = "static")]
16287 Font::NunitoSans7ptExtraLightItalic,
16288 #[cfg(feature = "static")]
16289 Font::NunitoSans7ptLightItalic,
16290 #[cfg(feature = "static")]
16291 Font::NunitoSans7ptItalic,
16292 #[cfg(feature = "static")]
16293 Font::NunitoSans7ptMediumItalic,
16294 #[cfg(feature = "static")]
16295 Font::NunitoSans7ptSemiBoldItalic,
16296 #[cfg(feature = "static")]
16297 Font::NunitoSans7ptBoldItalic,
16298 #[cfg(feature = "static")]
16299 Font::NunitoSans7ptExtraBoldItalic,
16300 #[cfg(feature = "static")]
16301 Font::NunitoSans7ptBlackItalic,
16302 #[cfg(feature = "static")]
16303 Font::NunitoSans7ptSemiExpandedExtraLightItalic,
16304 #[cfg(feature = "static")]
16305 Font::NunitoSans7ptSemiExpandedLightItalic,
16306 #[cfg(feature = "static")]
16307 Font::NunitoSans7ptSemiExpandedItalic,
16308 #[cfg(feature = "static")]
16309 Font::NunitoSans7ptSemiExpandedMediumItalic,
16310 #[cfg(feature = "static")]
16311 Font::NunitoSans7ptSemiExpandedSemiBoldItalic,
16312 #[cfg(feature = "static")]
16313 Font::NunitoSans7ptSemiExpandedBoldItalic,
16314 #[cfg(feature = "static")]
16315 Font::NunitoSans7ptSemiExpandedExtraBoldItalic,
16316 #[cfg(feature = "static")]
16317 Font::NunitoSans7ptSemiExpandedBlackItalic,
16318 #[cfg(feature = "static")]
16319 Font::NunitoSans7ptExpandedExtraLightItalic,
16320 #[cfg(feature = "static")]
16321 Font::NunitoSans7ptExpandedLightItalic,
16322 #[cfg(feature = "static")]
16323 Font::NunitoSans7ptExpandedItalic,
16324 #[cfg(feature = "static")]
16325 Font::NunitoSans7ptExpandedMediumItalic,
16326 #[cfg(feature = "static")]
16327 Font::NunitoSans7ptExpandedSemiBoldItalic,
16328 #[cfg(feature = "static")]
16329 Font::NunitoSans7ptExpandedBoldItalic,
16330 #[cfg(feature = "static")]
16331 Font::NunitoSans7ptExpandedExtraBoldItalic,
16332 #[cfg(feature = "static")]
16333 Font::NunitoSans7ptExpandedBlackItalic,
16334 #[cfg(feature = "static")]
16335 Font::NunitoSans10ptCondensedExtraLightItalic,
16336 #[cfg(feature = "static")]
16337 Font::NunitoSans10ptCondensedLightItalic,
16338 #[cfg(feature = "static")]
16339 Font::NunitoSans10ptCondensedItalic,
16340 #[cfg(feature = "static")]
16341 Font::NunitoSans10ptCondensedMediumItalic,
16342 #[cfg(feature = "static")]
16343 Font::NunitoSans10ptCondensedSemiBoldItalic,
16344 #[cfg(feature = "static")]
16345 Font::NunitoSans10ptCondensedBoldItalic,
16346 #[cfg(feature = "static")]
16347 Font::NunitoSans10ptCondensedExtraBoldItalic,
16348 #[cfg(feature = "static")]
16349 Font::NunitoSans10ptCondensedBlackItalic,
16350 #[cfg(feature = "static")]
16351 Font::NunitoSans10ptSemiCondensedExtraLightItalic,
16352 #[cfg(feature = "static")]
16353 Font::NunitoSans10ptSemiCondensedLightItalic,
16354 #[cfg(feature = "static")]
16355 Font::NunitoSans10ptSemiCondensedItalic,
16356 #[cfg(feature = "static")]
16357 Font::NunitoSans10ptSemiCondensedMediumItalic,
16358 #[cfg(feature = "static")]
16359 Font::NunitoSans10ptSemiCondensedSemiBoldItalic,
16360 #[cfg(feature = "static")]
16361 Font::NunitoSans10ptSemiCondensedBoldItalic,
16362 #[cfg(feature = "static")]
16363 Font::NunitoSans10ptSemiCondensedExtraBoldItalic,
16364 #[cfg(feature = "static")]
16365 Font::NunitoSans10ptSemiCondensedBlackItalic,
16366 #[cfg(feature = "static")]
16367 Font::NunitoSans10ptExtraLightItalic,
16368 #[cfg(feature = "static")]
16369 Font::NunitoSans10ptLightItalic,
16370 #[cfg(feature = "static")]
16371 Font::NunitoSans10ptItalic,
16372 #[cfg(feature = "static")]
16373 Font::NunitoSans10ptMediumItalic,
16374 #[cfg(feature = "static")]
16375 Font::NunitoSans10ptSemiBoldItalic,
16376 #[cfg(feature = "static")]
16377 Font::NunitoSans10ptBoldItalic,
16378 #[cfg(feature = "static")]
16379 Font::NunitoSans10ptExtraBoldItalic,
16380 #[cfg(feature = "static")]
16381 Font::NunitoSans10ptBlackItalic,
16382 #[cfg(feature = "static")]
16383 Font::NunitoSans10ptSemiExpandedExtraLightItalic,
16384 #[cfg(feature = "static")]
16385 Font::NunitoSans10ptSemiExpandedLightItalic,
16386 #[cfg(feature = "static")]
16387 Font::NunitoSans10ptSemiExpandedItalic,
16388 #[cfg(feature = "static")]
16389 Font::NunitoSans10ptSemiExpandedMediumItalic,
16390 #[cfg(feature = "static")]
16391 Font::NunitoSans10ptSemiExpandedSemiBoldItalic,
16392 #[cfg(feature = "static")]
16393 Font::NunitoSans10ptSemiExpandedBoldItalic,
16394 #[cfg(feature = "static")]
16395 Font::NunitoSans10ptSemiExpandedExtraBoldItalic,
16396 #[cfg(feature = "static")]
16397 Font::NunitoSans10ptSemiExpandedBlackItalic,
16398 #[cfg(feature = "static")]
16399 Font::NunitoSans10ptExpandedExtraLightItalic,
16400 #[cfg(feature = "static")]
16401 Font::NunitoSans10ptExpandedLightItalic,
16402 #[cfg(feature = "static")]
16403 Font::NunitoSans10ptExpandedItalic,
16404 #[cfg(feature = "static")]
16405 Font::NunitoSans10ptExpandedMediumItalic,
16406 #[cfg(feature = "static")]
16407 Font::NunitoSans10ptExpandedSemiBoldItalic,
16408 #[cfg(feature = "static")]
16409 Font::NunitoSans10ptExpandedBoldItalic,
16410 #[cfg(feature = "static")]
16411 Font::NunitoSans10ptExpandedExtraBoldItalic,
16412 #[cfg(feature = "static")]
16413 Font::NunitoSans10ptExpandedBlackItalic,
16414 #[cfg(feature = "variable")]
16415 Font::NunitoSansVariable,
16416 #[cfg(feature = "variable")]
16417 Font::NunitoSansItalicVariable,
16418 #[cfg(feature = "static")]
16419 Font::NuosuSILRegular,
16420 #[cfg(feature = "static")]
16421 Font::OjujuExtraLight,
16422 #[cfg(feature = "static")]
16423 Font::OjujuLight,
16424 #[cfg(feature = "static")]
16425 Font::OjujuRegular,
16426 #[cfg(feature = "static")]
16427 Font::OjujuMedium,
16428 #[cfg(feature = "static")]
16429 Font::OjujuSemiBold,
16430 #[cfg(feature = "static")]
16431 Font::OjujuBold,
16432 #[cfg(feature = "static")]
16433 Font::OjujuExtraBold,
16434 #[cfg(feature = "variable")]
16435 Font::OjujuVariable,
16436 #[cfg(feature = "static")]
16437 Font::OnestThin,
16438 #[cfg(feature = "static")]
16439 Font::OnestExtraLight,
16440 #[cfg(feature = "static")]
16441 Font::OnestLight,
16442 #[cfg(feature = "static")]
16443 Font::OnestRegular,
16444 #[cfg(feature = "static")]
16445 Font::OnestMedium,
16446 #[cfg(feature = "static")]
16447 Font::OnestSemiBold,
16448 #[cfg(feature = "static")]
16449 Font::OnestBold,
16450 #[cfg(feature = "static")]
16451 Font::OnestExtraBold,
16452 #[cfg(feature = "static")]
16453 Font::OnestBlack,
16454 #[cfg(feature = "variable")]
16455 Font::OnestVariable,
16456 #[cfg(feature = "static")]
16457 Font::OpenSansCondensedLight,
16458 #[cfg(feature = "static")]
16459 Font::OpenSansCondensedRegular,
16460 #[cfg(feature = "static")]
16461 Font::OpenSansCondensedMedium,
16462 #[cfg(feature = "static")]
16463 Font::OpenSansCondensedSemiBold,
16464 #[cfg(feature = "static")]
16465 Font::OpenSansCondensedBold,
16466 #[cfg(feature = "static")]
16467 Font::OpenSansCondensedExtraBold,
16468 #[cfg(feature = "static")]
16469 Font::OpenSansSemiCondensedLight,
16470 #[cfg(feature = "static")]
16471 Font::OpenSansSemiCondensedRegular,
16472 #[cfg(feature = "static")]
16473 Font::OpenSansSemiCondensedMedium,
16474 #[cfg(feature = "static")]
16475 Font::OpenSansSemiCondensedSemiBold,
16476 #[cfg(feature = "static")]
16477 Font::OpenSansSemiCondensedBold,
16478 #[cfg(feature = "static")]
16479 Font::OpenSansSemiCondensedExtraBold,
16480 #[cfg(feature = "static")]
16481 Font::OpenSansLight,
16482 #[cfg(feature = "static")]
16483 Font::OpenSansRegular,
16484 #[cfg(feature = "static")]
16485 Font::OpenSansMedium,
16486 #[cfg(feature = "static")]
16487 Font::OpenSansSemiBold,
16488 #[cfg(feature = "static")]
16489 Font::OpenSansBold,
16490 #[cfg(feature = "static")]
16491 Font::OpenSansExtraBold,
16492 #[cfg(feature = "static")]
16493 Font::OpenSansCondensedLightItalic,
16494 #[cfg(feature = "static")]
16495 Font::OpenSansCondensedItalic,
16496 #[cfg(feature = "static")]
16497 Font::OpenSansCondensedMediumItalic,
16498 #[cfg(feature = "static")]
16499 Font::OpenSansCondensedSemiBoldItalic,
16500 #[cfg(feature = "static")]
16501 Font::OpenSansCondensedBoldItalic,
16502 #[cfg(feature = "static")]
16503 Font::OpenSansCondensedExtraBoldItalic,
16504 #[cfg(feature = "static")]
16505 Font::OpenSansSemiCondensedLightItalic,
16506 #[cfg(feature = "static")]
16507 Font::OpenSansSemiCondensedItalic,
16508 #[cfg(feature = "static")]
16509 Font::OpenSansSemiCondensedMediumItalic,
16510 #[cfg(feature = "static")]
16511 Font::OpenSansSemiCondensedSemiBoldItalic,
16512 #[cfg(feature = "static")]
16513 Font::OpenSansSemiCondensedBoldItalic,
16514 #[cfg(feature = "static")]
16515 Font::OpenSansSemiCondensedExtraBoldItalic,
16516 #[cfg(feature = "static")]
16517 Font::OpenSansLightItalic,
16518 #[cfg(feature = "static")]
16519 Font::OpenSansItalic,
16520 #[cfg(feature = "static")]
16521 Font::OpenSansMediumItalic,
16522 #[cfg(feature = "static")]
16523 Font::OpenSansSemiBoldItalic,
16524 #[cfg(feature = "static")]
16525 Font::OpenSansBoldItalic,
16526 #[cfg(feature = "static")]
16527 Font::OpenSansExtraBoldItalic,
16528 #[cfg(feature = "variable")]
16529 Font::OpenSansVariable,
16530 #[cfg(feature = "variable")]
16531 Font::OpenSansItalicVariable,
16532 #[cfg(feature = "static")]
16533 Font::OrbitRegular,
16534 #[cfg(feature = "static")]
16535 Font::OrbitronRegular,
16536 #[cfg(feature = "static")]
16537 Font::OrbitronMedium,
16538 #[cfg(feature = "static")]
16539 Font::OrbitronSemiBold,
16540 #[cfg(feature = "static")]
16541 Font::OrbitronBold,
16542 #[cfg(feature = "static")]
16543 Font::OrbitronExtraBold,
16544 #[cfg(feature = "static")]
16545 Font::OrbitronBlack,
16546 #[cfg(feature = "variable")]
16547 Font::OrbitronVariable,
16548 #[cfg(feature = "static")]
16549 Font::OrientaRegular,
16550 #[cfg(feature = "static")]
16551 Font::OswaldExtraLight,
16552 #[cfg(feature = "static")]
16553 Font::OswaldLight,
16554 #[cfg(feature = "static")]
16555 Font::OswaldRegular,
16556 #[cfg(feature = "static")]
16557 Font::OswaldMedium,
16558 #[cfg(feature = "static")]
16559 Font::OswaldSemiBold,
16560 #[cfg(feature = "static")]
16561 Font::OswaldBold,
16562 #[cfg(feature = "variable")]
16563 Font::OswaldVariable,
16564 #[cfg(feature = "static")]
16565 Font::OutfitThin,
16566 #[cfg(feature = "static")]
16567 Font::OutfitExtraLight,
16568 #[cfg(feature = "static")]
16569 Font::OutfitLight,
16570 #[cfg(feature = "static")]
16571 Font::OutfitRegular,
16572 #[cfg(feature = "static")]
16573 Font::OutfitMedium,
16574 #[cfg(feature = "static")]
16575 Font::OutfitSemiBold,
16576 #[cfg(feature = "static")]
16577 Font::OutfitBold,
16578 #[cfg(feature = "static")]
16579 Font::OutfitExtraBold,
16580 #[cfg(feature = "static")]
16581 Font::OutfitBlack,
16582 #[cfg(feature = "variable")]
16583 Font::OutfitVariable,
16584 #[cfg(feature = "static")]
16585 Font::OverpassThin,
16586 #[cfg(feature = "static")]
16587 Font::OverpassExtraLight,
16588 #[cfg(feature = "static")]
16589 Font::OverpassLight,
16590 #[cfg(feature = "static")]
16591 Font::OverpassRegular,
16592 #[cfg(feature = "static")]
16593 Font::OverpassMedium,
16594 #[cfg(feature = "static")]
16595 Font::OverpassSemiBold,
16596 #[cfg(feature = "static")]
16597 Font::OverpassBold,
16598 #[cfg(feature = "static")]
16599 Font::OverpassExtraBold,
16600 #[cfg(feature = "static")]
16601 Font::OverpassBlack,
16602 #[cfg(feature = "static")]
16603 Font::OverpassThinItalic,
16604 #[cfg(feature = "static")]
16605 Font::OverpassExtraLightItalic,
16606 #[cfg(feature = "static")]
16607 Font::OverpassLightItalic,
16608 #[cfg(feature = "static")]
16609 Font::OverpassItalic,
16610 #[cfg(feature = "static")]
16611 Font::OverpassMediumItalic,
16612 #[cfg(feature = "static")]
16613 Font::OverpassSemiBoldItalic,
16614 #[cfg(feature = "static")]
16615 Font::OverpassBoldItalic,
16616 #[cfg(feature = "static")]
16617 Font::OverpassExtraBoldItalic,
16618 #[cfg(feature = "static")]
16619 Font::OverpassBlackItalic,
16620 #[cfg(feature = "variable")]
16621 Font::OverpassVariable,
16622 #[cfg(feature = "variable")]
16623 Font::OverpassItalicVariable,
16624 #[cfg(feature = "static")]
16625 Font::OxygenLight,
16626 #[cfg(feature = "static")]
16627 Font::OxygenRegular,
16628 #[cfg(feature = "static")]
16629 Font::OxygenBold,
16630 #[cfg(feature = "static")]
16631 Font::PTSansRegular,
16632 #[cfg(feature = "static")]
16633 Font::PTSansItalic,
16634 #[cfg(feature = "static")]
16635 Font::PTSansBold,
16636 #[cfg(feature = "static")]
16637 Font::PTSansBoldItalic,
16638 #[cfg(feature = "static")]
16639 Font::PTSansCaptionRegular,
16640 #[cfg(feature = "static")]
16641 Font::PTSansCaptionBold,
16642 #[cfg(feature = "static")]
16643 Font::PTSansNarrowRegular,
16644 #[cfg(feature = "static")]
16645 Font::PTSansNarrowBold,
16646 #[cfg(feature = "static")]
16647 Font::PadaukRegular,
16648 #[cfg(feature = "static")]
16649 Font::PadaukBold,
16650 #[cfg(feature = "static")]
16651 Font::PalanquinThin,
16652 #[cfg(feature = "static")]
16653 Font::PalanquinExtraLight,
16654 #[cfg(feature = "static")]
16655 Font::PalanquinLight,
16656 #[cfg(feature = "static")]
16657 Font::PalanquinRegular,
16658 #[cfg(feature = "static")]
16659 Font::PalanquinMedium,
16660 #[cfg(feature = "static")]
16661 Font::PalanquinSemiBold,
16662 #[cfg(feature = "static")]
16663 Font::PalanquinBold,
16664 #[cfg(feature = "static")]
16665 Font::PalanquinDarkRegular,
16666 #[cfg(feature = "static")]
16667 Font::PalanquinDarkMedium,
16668 #[cfg(feature = "static")]
16669 Font::PalanquinDarkSemiBold,
16670 #[cfg(feature = "static")]
16671 Font::PalanquinDarkBold,
16672 #[cfg(feature = "static")]
16673 Font::PathwayExtreme14ptCondensedThin,
16674 #[cfg(feature = "static")]
16675 Font::PathwayExtreme14ptCondensedExtraLight,
16676 #[cfg(feature = "static")]
16677 Font::PathwayExtreme14ptCondensedLight,
16678 #[cfg(feature = "static")]
16679 Font::PathwayExtreme14ptCondensedRegular,
16680 #[cfg(feature = "static")]
16681 Font::PathwayExtreme14ptCondensedMedium,
16682 #[cfg(feature = "static")]
16683 Font::PathwayExtreme14ptCondensedSemiBold,
16684 #[cfg(feature = "static")]
16685 Font::PathwayExtreme14ptCondensedBold,
16686 #[cfg(feature = "static")]
16687 Font::PathwayExtreme14ptCondensedExtraBold,
16688 #[cfg(feature = "static")]
16689 Font::PathwayExtreme14ptCondensedBlack,
16690 #[cfg(feature = "static")]
16691 Font::PathwayExtreme14ptSemiCondensedThin,
16692 #[cfg(feature = "static")]
16693 Font::PathwayExtreme14ptSemiCondensedExtraLight,
16694 #[cfg(feature = "static")]
16695 Font::PathwayExtreme14ptSemiCondensedLight,
16696 #[cfg(feature = "static")]
16697 Font::PathwayExtreme14ptSemiCondensedRegular,
16698 #[cfg(feature = "static")]
16699 Font::PathwayExtreme14ptSemiCondensedMedium,
16700 #[cfg(feature = "static")]
16701 Font::PathwayExtreme14ptSemiCondensedSemiBold,
16702 #[cfg(feature = "static")]
16703 Font::PathwayExtreme14ptSemiCondensedBold,
16704 #[cfg(feature = "static")]
16705 Font::PathwayExtreme14ptSemiCondensedExtraBold,
16706 #[cfg(feature = "static")]
16707 Font::PathwayExtreme14ptSemiCondensedBlack,
16708 #[cfg(feature = "static")]
16709 Font::PathwayExtreme14ptThin,
16710 #[cfg(feature = "static")]
16711 Font::PathwayExtreme14ptExtraLight,
16712 #[cfg(feature = "static")]
16713 Font::PathwayExtreme14ptLight,
16714 #[cfg(feature = "static")]
16715 Font::PathwayExtreme14ptRegular,
16716 #[cfg(feature = "static")]
16717 Font::PathwayExtreme14ptMedium,
16718 #[cfg(feature = "static")]
16719 Font::PathwayExtreme14ptSemiBold,
16720 #[cfg(feature = "static")]
16721 Font::PathwayExtreme14ptBold,
16722 #[cfg(feature = "static")]
16723 Font::PathwayExtreme14ptExtraBold,
16724 #[cfg(feature = "static")]
16725 Font::PathwayExtreme14ptBlack,
16726 #[cfg(feature = "static")]
16727 Font::PathwayExtreme28ptCondensedThin,
16728 #[cfg(feature = "static")]
16729 Font::PathwayExtreme28ptCondensedExtraLight,
16730 #[cfg(feature = "static")]
16731 Font::PathwayExtreme28ptCondensedLight,
16732 #[cfg(feature = "static")]
16733 Font::PathwayExtreme28ptCondensedRegular,
16734 #[cfg(feature = "static")]
16735 Font::PathwayExtreme28ptCondensedMedium,
16736 #[cfg(feature = "static")]
16737 Font::PathwayExtreme28ptCondensedSemiBold,
16738 #[cfg(feature = "static")]
16739 Font::PathwayExtreme28ptCondensedBold,
16740 #[cfg(feature = "static")]
16741 Font::PathwayExtreme28ptCondensedExtraBold,
16742 #[cfg(feature = "static")]
16743 Font::PathwayExtreme28ptCondensedBlack,
16744 #[cfg(feature = "static")]
16745 Font::PathwayExtreme28ptSemiCondensedThin,
16746 #[cfg(feature = "static")]
16747 Font::PathwayExtreme28ptSemiCondensedExtraLight,
16748 #[cfg(feature = "static")]
16749 Font::PathwayExtreme28ptSemiCondensedLight,
16750 #[cfg(feature = "static")]
16751 Font::PathwayExtreme28ptSemiCondensedRegular,
16752 #[cfg(feature = "static")]
16753 Font::PathwayExtreme28ptSemiCondensedMedium,
16754 #[cfg(feature = "static")]
16755 Font::PathwayExtreme28ptSemiCondensedSemiBold,
16756 #[cfg(feature = "static")]
16757 Font::PathwayExtreme28ptSemiCondensedBold,
16758 #[cfg(feature = "static")]
16759 Font::PathwayExtreme28ptSemiCondensedExtraBold,
16760 #[cfg(feature = "static")]
16761 Font::PathwayExtreme28ptSemiCondensedBlack,
16762 #[cfg(feature = "static")]
16763 Font::PathwayExtreme28ptThin,
16764 #[cfg(feature = "static")]
16765 Font::PathwayExtreme28ptExtraLight,
16766 #[cfg(feature = "static")]
16767 Font::PathwayExtreme28ptLight,
16768 #[cfg(feature = "static")]
16769 Font::PathwayExtreme28ptRegular,
16770 #[cfg(feature = "static")]
16771 Font::PathwayExtreme28ptMedium,
16772 #[cfg(feature = "static")]
16773 Font::PathwayExtreme28ptSemiBold,
16774 #[cfg(feature = "static")]
16775 Font::PathwayExtreme28ptBold,
16776 #[cfg(feature = "static")]
16777 Font::PathwayExtreme28ptExtraBold,
16778 #[cfg(feature = "static")]
16779 Font::PathwayExtreme28ptBlack,
16780 #[cfg(feature = "static")]
16781 Font::PathwayExtreme36ptCondensedThin,
16782 #[cfg(feature = "static")]
16783 Font::PathwayExtreme36ptCondensedExtraLight,
16784 #[cfg(feature = "static")]
16785 Font::PathwayExtreme36ptCondensedLight,
16786 #[cfg(feature = "static")]
16787 Font::PathwayExtreme36ptCondensedRegular,
16788 #[cfg(feature = "static")]
16789 Font::PathwayExtreme36ptCondensedMedium,
16790 #[cfg(feature = "static")]
16791 Font::PathwayExtreme36ptCondensedSemiBold,
16792 #[cfg(feature = "static")]
16793 Font::PathwayExtreme36ptCondensedBold,
16794 #[cfg(feature = "static")]
16795 Font::PathwayExtreme36ptCondensedExtraBold,
16796 #[cfg(feature = "static")]
16797 Font::PathwayExtreme36ptCondensedBlack,
16798 #[cfg(feature = "static")]
16799 Font::PathwayExtreme36ptSemiCondensedThin,
16800 #[cfg(feature = "static")]
16801 Font::PathwayExtreme36ptSemiCondensedExtraLight,
16802 #[cfg(feature = "static")]
16803 Font::PathwayExtreme36ptSemiCondensedLight,
16804 #[cfg(feature = "static")]
16805 Font::PathwayExtreme36ptSemiCondensedRegular,
16806 #[cfg(feature = "static")]
16807 Font::PathwayExtreme36ptSemiCondensedMedium,
16808 #[cfg(feature = "static")]
16809 Font::PathwayExtreme36ptSemiCondensedSemiBold,
16810 #[cfg(feature = "static")]
16811 Font::PathwayExtreme36ptSemiCondensedBold,
16812 #[cfg(feature = "static")]
16813 Font::PathwayExtreme36ptSemiCondensedExtraBold,
16814 #[cfg(feature = "static")]
16815 Font::PathwayExtreme36ptSemiCondensedBlack,
16816 #[cfg(feature = "static")]
16817 Font::PathwayExtreme36ptThin,
16818 #[cfg(feature = "static")]
16819 Font::PathwayExtreme36ptExtraLight,
16820 #[cfg(feature = "static")]
16821 Font::PathwayExtreme36ptLight,
16822 #[cfg(feature = "static")]
16823 Font::PathwayExtreme36ptRegular,
16824 #[cfg(feature = "static")]
16825 Font::PathwayExtreme36ptMedium,
16826 #[cfg(feature = "static")]
16827 Font::PathwayExtreme36ptSemiBold,
16828 #[cfg(feature = "static")]
16829 Font::PathwayExtreme36ptBold,
16830 #[cfg(feature = "static")]
16831 Font::PathwayExtreme36ptExtraBold,
16832 #[cfg(feature = "static")]
16833 Font::PathwayExtreme36ptBlack,
16834 #[cfg(feature = "static")]
16835 Font::PathwayExtreme72ptCondensedThin,
16836 #[cfg(feature = "static")]
16837 Font::PathwayExtreme72ptCondensedExtraLight,
16838 #[cfg(feature = "static")]
16839 Font::PathwayExtreme72ptCondensedLight,
16840 #[cfg(feature = "static")]
16841 Font::PathwayExtreme72ptCondensedRegular,
16842 #[cfg(feature = "static")]
16843 Font::PathwayExtreme72ptCondensedMedium,
16844 #[cfg(feature = "static")]
16845 Font::PathwayExtreme72ptCondensedSemiBold,
16846 #[cfg(feature = "static")]
16847 Font::PathwayExtreme72ptCondensedBold,
16848 #[cfg(feature = "static")]
16849 Font::PathwayExtreme72ptCondensedExtraBold,
16850 #[cfg(feature = "static")]
16851 Font::PathwayExtreme72ptCondensedBlack,
16852 #[cfg(feature = "static")]
16853 Font::PathwayExtreme72ptSemiCondensedThin,
16854 #[cfg(feature = "static")]
16855 Font::PathwayExtreme72ptSemiCondensedExtraLight,
16856 #[cfg(feature = "static")]
16857 Font::PathwayExtreme72ptSemiCondensedLight,
16858 #[cfg(feature = "static")]
16859 Font::PathwayExtreme72ptSemiCondensedRegular,
16860 #[cfg(feature = "static")]
16861 Font::PathwayExtreme72ptSemiCondensedMedium,
16862 #[cfg(feature = "static")]
16863 Font::PathwayExtreme72ptSemiCondensedSemiBold,
16864 #[cfg(feature = "static")]
16865 Font::PathwayExtreme72ptSemiCondensedBold,
16866 #[cfg(feature = "static")]
16867 Font::PathwayExtreme72ptSemiCondensedExtraBold,
16868 #[cfg(feature = "static")]
16869 Font::PathwayExtreme72ptSemiCondensedBlack,
16870 #[cfg(feature = "static")]
16871 Font::PathwayExtreme72ptThin,
16872 #[cfg(feature = "static")]
16873 Font::PathwayExtreme72ptExtraLight,
16874 #[cfg(feature = "static")]
16875 Font::PathwayExtreme72ptLight,
16876 #[cfg(feature = "static")]
16877 Font::PathwayExtreme72ptRegular,
16878 #[cfg(feature = "static")]
16879 Font::PathwayExtreme72ptMedium,
16880 #[cfg(feature = "static")]
16881 Font::PathwayExtreme72ptSemiBold,
16882 #[cfg(feature = "static")]
16883 Font::PathwayExtreme72ptBold,
16884 #[cfg(feature = "static")]
16885 Font::PathwayExtreme72ptExtraBold,
16886 #[cfg(feature = "static")]
16887 Font::PathwayExtreme72ptBlack,
16888 #[cfg(feature = "static")]
16889 Font::PathwayExtreme120ptCondensedThin,
16890 #[cfg(feature = "static")]
16891 Font::PathwayExtreme120ptCondensedExtraLight,
16892 #[cfg(feature = "static")]
16893 Font::PathwayExtreme120ptCondensedLight,
16894 #[cfg(feature = "static")]
16895 Font::PathwayExtreme120ptCondensedRegular,
16896 #[cfg(feature = "static")]
16897 Font::PathwayExtreme120ptCondensedMedium,
16898 #[cfg(feature = "static")]
16899 Font::PathwayExtreme120ptCondensedSemiBold,
16900 #[cfg(feature = "static")]
16901 Font::PathwayExtreme120ptCondensedBold,
16902 #[cfg(feature = "static")]
16903 Font::PathwayExtreme120ptCondensedExtraBold,
16904 #[cfg(feature = "static")]
16905 Font::PathwayExtreme120ptCondensedBlack,
16906 #[cfg(feature = "static")]
16907 Font::PathwayExtreme120ptSemiCondensedThin,
16908 #[cfg(feature = "static")]
16909 Font::PathwayExtreme120ptSemiCondensedExtraLight,
16910 #[cfg(feature = "static")]
16911 Font::PathwayExtreme120ptSemiCondensedLight,
16912 #[cfg(feature = "static")]
16913 Font::PathwayExtreme120ptSemiCondensedRegular,
16914 #[cfg(feature = "static")]
16915 Font::PathwayExtreme120ptSemiCondensedMedium,
16916 #[cfg(feature = "static")]
16917 Font::PathwayExtreme120ptSemiCondensedSemiBold,
16918 #[cfg(feature = "static")]
16919 Font::PathwayExtreme120ptSemiCondensedBold,
16920 #[cfg(feature = "static")]
16921 Font::PathwayExtreme120ptSemiCondensedExtraBold,
16922 #[cfg(feature = "static")]
16923 Font::PathwayExtreme120ptSemiCondensedBlack,
16924 #[cfg(feature = "static")]
16925 Font::PathwayExtreme120ptThin,
16926 #[cfg(feature = "static")]
16927 Font::PathwayExtreme120ptExtraLight,
16928 #[cfg(feature = "static")]
16929 Font::PathwayExtreme120ptLight,
16930 #[cfg(feature = "static")]
16931 Font::PathwayExtreme120ptRegular,
16932 #[cfg(feature = "static")]
16933 Font::PathwayExtreme120ptMedium,
16934 #[cfg(feature = "static")]
16935 Font::PathwayExtreme120ptSemiBold,
16936 #[cfg(feature = "static")]
16937 Font::PathwayExtreme120ptBold,
16938 #[cfg(feature = "static")]
16939 Font::PathwayExtreme120ptExtraBold,
16940 #[cfg(feature = "static")]
16941 Font::PathwayExtreme120ptBlack,
16942 #[cfg(feature = "static")]
16943 Font::PathwayExtreme14ptCondensedThinItalic,
16944 #[cfg(feature = "static")]
16945 Font::PathwayExtreme14ptCondensedExtraLightItalic,
16946 #[cfg(feature = "static")]
16947 Font::PathwayExtreme14ptCondensedLightItalic,
16948 #[cfg(feature = "static")]
16949 Font::PathwayExtreme14ptCondensedItalic,
16950 #[cfg(feature = "static")]
16951 Font::PathwayExtreme14ptCondensedMediumItalic,
16952 #[cfg(feature = "static")]
16953 Font::PathwayExtreme14ptCondensedSemiBoldItalic,
16954 #[cfg(feature = "static")]
16955 Font::PathwayExtreme14ptCondensedBoldItalic,
16956 #[cfg(feature = "static")]
16957 Font::PathwayExtreme14ptCondensedExtraBoldItalic,
16958 #[cfg(feature = "static")]
16959 Font::PathwayExtreme14ptCondensedBlackItalic,
16960 #[cfg(feature = "static")]
16961 Font::PathwayExtreme14ptSemiCondensedThinItalic,
16962 #[cfg(feature = "static")]
16963 Font::PathwayExtreme14ptSemiCondensedExtraLightItalic,
16964 #[cfg(feature = "static")]
16965 Font::PathwayExtreme14ptSemiCondensedLightItalic,
16966 #[cfg(feature = "static")]
16967 Font::PathwayExtreme14ptSemiCondensedItalic,
16968 #[cfg(feature = "static")]
16969 Font::PathwayExtreme14ptSemiCondensedMediumItalic,
16970 #[cfg(feature = "static")]
16971 Font::PathwayExtreme14ptSemiCondensedSemiBoldItalic,
16972 #[cfg(feature = "static")]
16973 Font::PathwayExtreme14ptSemiCondensedBoldItalic,
16974 #[cfg(feature = "static")]
16975 Font::PathwayExtreme14ptSemiCondensedExtraBoldItalic,
16976 #[cfg(feature = "static")]
16977 Font::PathwayExtreme14ptSemiCondensedBlackItalic,
16978 #[cfg(feature = "static")]
16979 Font::PathwayExtreme14ptThinItalic,
16980 #[cfg(feature = "static")]
16981 Font::PathwayExtreme14ptExtraLightItalic,
16982 #[cfg(feature = "static")]
16983 Font::PathwayExtreme14ptLightItalic,
16984 #[cfg(feature = "static")]
16985 Font::PathwayExtreme14ptItalic,
16986 #[cfg(feature = "static")]
16987 Font::PathwayExtreme14ptMediumItalic,
16988 #[cfg(feature = "static")]
16989 Font::PathwayExtreme14ptSemiBoldItalic,
16990 #[cfg(feature = "static")]
16991 Font::PathwayExtreme14ptBoldItalic,
16992 #[cfg(feature = "static")]
16993 Font::PathwayExtreme14ptExtraBoldItalic,
16994 #[cfg(feature = "static")]
16995 Font::PathwayExtreme14ptBlackItalic,
16996 #[cfg(feature = "static")]
16997 Font::PathwayExtreme28ptCondensedThinItalic,
16998 #[cfg(feature = "static")]
16999 Font::PathwayExtreme28ptCondensedExtraLightItalic,
17000 #[cfg(feature = "static")]
17001 Font::PathwayExtreme28ptCondensedLightItalic,
17002 #[cfg(feature = "static")]
17003 Font::PathwayExtreme28ptCondensedItalic,
17004 #[cfg(feature = "static")]
17005 Font::PathwayExtreme28ptCondensedMediumItalic,
17006 #[cfg(feature = "static")]
17007 Font::PathwayExtreme28ptCondensedSemiBoldItalic,
17008 #[cfg(feature = "static")]
17009 Font::PathwayExtreme28ptCondensedBoldItalic,
17010 #[cfg(feature = "static")]
17011 Font::PathwayExtreme28ptCondensedExtraBoldItalic,
17012 #[cfg(feature = "static")]
17013 Font::PathwayExtreme28ptCondensedBlackItalic,
17014 #[cfg(feature = "static")]
17015 Font::PathwayExtreme28ptSemiCondensedThinItalic,
17016 #[cfg(feature = "static")]
17017 Font::PathwayExtreme28ptSemiCondensedExtraLightItalic,
17018 #[cfg(feature = "static")]
17019 Font::PathwayExtreme28ptSemiCondensedLightItalic,
17020 #[cfg(feature = "static")]
17021 Font::PathwayExtreme28ptSemiCondensedItalic,
17022 #[cfg(feature = "static")]
17023 Font::PathwayExtreme28ptSemiCondensedMediumItalic,
17024 #[cfg(feature = "static")]
17025 Font::PathwayExtreme28ptSemiCondensedSemiBoldItalic,
17026 #[cfg(feature = "static")]
17027 Font::PathwayExtreme28ptSemiCondensedBoldItalic,
17028 #[cfg(feature = "static")]
17029 Font::PathwayExtreme28ptSemiCondensedExtraBoldItalic,
17030 #[cfg(feature = "static")]
17031 Font::PathwayExtreme28ptSemiCondensedBlackItalic,
17032 #[cfg(feature = "static")]
17033 Font::PathwayExtreme28ptThinItalic,
17034 #[cfg(feature = "static")]
17035 Font::PathwayExtreme28ptExtraLightItalic,
17036 #[cfg(feature = "static")]
17037 Font::PathwayExtreme28ptLightItalic,
17038 #[cfg(feature = "static")]
17039 Font::PathwayExtreme28ptItalic,
17040 #[cfg(feature = "static")]
17041 Font::PathwayExtreme28ptMediumItalic,
17042 #[cfg(feature = "static")]
17043 Font::PathwayExtreme28ptSemiBoldItalic,
17044 #[cfg(feature = "static")]
17045 Font::PathwayExtreme28ptBoldItalic,
17046 #[cfg(feature = "static")]
17047 Font::PathwayExtreme28ptExtraBoldItalic,
17048 #[cfg(feature = "static")]
17049 Font::PathwayExtreme28ptBlackItalic,
17050 #[cfg(feature = "static")]
17051 Font::PathwayExtreme36ptCondensedThinItalic,
17052 #[cfg(feature = "static")]
17053 Font::PathwayExtreme36ptCondensedExtraLightItalic,
17054 #[cfg(feature = "static")]
17055 Font::PathwayExtreme36ptCondensedLightItalic,
17056 #[cfg(feature = "static")]
17057 Font::PathwayExtreme36ptCondensedItalic,
17058 #[cfg(feature = "static")]
17059 Font::PathwayExtreme36ptCondensedMediumItalic,
17060 #[cfg(feature = "static")]
17061 Font::PathwayExtreme36ptCondensedSemiBoldItalic,
17062 #[cfg(feature = "static")]
17063 Font::PathwayExtreme36ptCondensedBoldItalic,
17064 #[cfg(feature = "static")]
17065 Font::PathwayExtreme36ptCondensedExtraBoldItalic,
17066 #[cfg(feature = "static")]
17067 Font::PathwayExtreme36ptCondensedBlackItalic,
17068 #[cfg(feature = "static")]
17069 Font::PathwayExtreme36ptSemiCondensedThinItalic,
17070 #[cfg(feature = "static")]
17071 Font::PathwayExtreme36ptSemiCondensedExtraLightItalic,
17072 #[cfg(feature = "static")]
17073 Font::PathwayExtreme36ptSemiCondensedLightItalic,
17074 #[cfg(feature = "static")]
17075 Font::PathwayExtreme36ptSemiCondensedItalic,
17076 #[cfg(feature = "static")]
17077 Font::PathwayExtreme36ptSemiCondensedMediumItalic,
17078 #[cfg(feature = "static")]
17079 Font::PathwayExtreme36ptSemiCondensedSemiBoldItalic,
17080 #[cfg(feature = "static")]
17081 Font::PathwayExtreme36ptSemiCondensedBoldItalic,
17082 #[cfg(feature = "static")]
17083 Font::PathwayExtreme36ptSemiCondensedExtraBoldItalic,
17084 #[cfg(feature = "static")]
17085 Font::PathwayExtreme36ptSemiCondensedBlackItalic,
17086 #[cfg(feature = "static")]
17087 Font::PathwayExtreme36ptThinItalic,
17088 #[cfg(feature = "static")]
17089 Font::PathwayExtreme36ptExtraLightItalic,
17090 #[cfg(feature = "static")]
17091 Font::PathwayExtreme36ptLightItalic,
17092 #[cfg(feature = "static")]
17093 Font::PathwayExtreme36ptItalic,
17094 #[cfg(feature = "static")]
17095 Font::PathwayExtreme36ptMediumItalic,
17096 #[cfg(feature = "static")]
17097 Font::PathwayExtreme36ptSemiBoldItalic,
17098 #[cfg(feature = "static")]
17099 Font::PathwayExtreme36ptBoldItalic,
17100 #[cfg(feature = "static")]
17101 Font::PathwayExtreme36ptExtraBoldItalic,
17102 #[cfg(feature = "static")]
17103 Font::PathwayExtreme36ptBlackItalic,
17104 #[cfg(feature = "static")]
17105 Font::PathwayExtreme72ptCondensedThinItalic,
17106 #[cfg(feature = "static")]
17107 Font::PathwayExtreme72ptCondensedExtraLightItalic,
17108 #[cfg(feature = "static")]
17109 Font::PathwayExtreme72ptCondensedLightItalic,
17110 #[cfg(feature = "static")]
17111 Font::PathwayExtreme72ptCondensedItalic,
17112 #[cfg(feature = "static")]
17113 Font::PathwayExtreme72ptCondensedMediumItalic,
17114 #[cfg(feature = "static")]
17115 Font::PathwayExtreme72ptCondensedSemiBoldItalic,
17116 #[cfg(feature = "static")]
17117 Font::PathwayExtreme72ptCondensedBoldItalic,
17118 #[cfg(feature = "static")]
17119 Font::PathwayExtreme72ptCondensedExtraBoldItalic,
17120 #[cfg(feature = "static")]
17121 Font::PathwayExtreme72ptCondensedBlackItalic,
17122 #[cfg(feature = "static")]
17123 Font::PathwayExtreme72ptSemiCondensedThinItalic,
17124 #[cfg(feature = "static")]
17125 Font::PathwayExtreme72ptSemiCondensedExtraLightItalic,
17126 #[cfg(feature = "static")]
17127 Font::PathwayExtreme72ptSemiCondensedLightItalic,
17128 #[cfg(feature = "static")]
17129 Font::PathwayExtreme72ptSemiCondensedItalic,
17130 #[cfg(feature = "static")]
17131 Font::PathwayExtreme72ptSemiCondensedMediumItalic,
17132 #[cfg(feature = "static")]
17133 Font::PathwayExtreme72ptSemiCondensedSemiBoldItalic,
17134 #[cfg(feature = "static")]
17135 Font::PathwayExtreme72ptSemiCondensedBoldItalic,
17136 #[cfg(feature = "static")]
17137 Font::PathwayExtreme72ptSemiCondensedExtraBoldItalic,
17138 #[cfg(feature = "static")]
17139 Font::PathwayExtreme72ptSemiCondensedBlackItalic,
17140 #[cfg(feature = "static")]
17141 Font::PathwayExtreme72ptThinItalic,
17142 #[cfg(feature = "static")]
17143 Font::PathwayExtreme72ptExtraLightItalic,
17144 #[cfg(feature = "static")]
17145 Font::PathwayExtreme72ptLightItalic,
17146 #[cfg(feature = "static")]
17147 Font::PathwayExtreme72ptItalic,
17148 #[cfg(feature = "static")]
17149 Font::PathwayExtreme72ptMediumItalic,
17150 #[cfg(feature = "static")]
17151 Font::PathwayExtreme72ptSemiBoldItalic,
17152 #[cfg(feature = "static")]
17153 Font::PathwayExtreme72ptBoldItalic,
17154 #[cfg(feature = "static")]
17155 Font::PathwayExtreme72ptExtraBoldItalic,
17156 #[cfg(feature = "static")]
17157 Font::PathwayExtreme72ptBlackItalic,
17158 #[cfg(feature = "static")]
17159 Font::PathwayExtreme120ptCondensedThinItalic,
17160 #[cfg(feature = "static")]
17161 Font::PathwayExtreme120ptCondensedExtraLightItalic,
17162 #[cfg(feature = "static")]
17163 Font::PathwayExtreme120ptCondensedLightItalic,
17164 #[cfg(feature = "static")]
17165 Font::PathwayExtreme120ptCondensedItalic,
17166 #[cfg(feature = "static")]
17167 Font::PathwayExtreme120ptCondensedMediumItalic,
17168 #[cfg(feature = "static")]
17169 Font::PathwayExtreme120ptCondensedSemiBoldItalic,
17170 #[cfg(feature = "static")]
17171 Font::PathwayExtreme120ptCondensedBoldItalic,
17172 #[cfg(feature = "static")]
17173 Font::PathwayExtreme120ptCondensedExtraBoldItalic,
17174 #[cfg(feature = "static")]
17175 Font::PathwayExtreme120ptCondensedBlackItalic,
17176 #[cfg(feature = "static")]
17177 Font::PathwayExtreme120ptSemiCondensedThinItalic,
17178 #[cfg(feature = "static")]
17179 Font::PathwayExtreme120ptSemiCondensedExtraLightItalic,
17180 #[cfg(feature = "static")]
17181 Font::PathwayExtreme120ptSemiCondensedLightItalic,
17182 #[cfg(feature = "static")]
17183 Font::PathwayExtreme120ptSemiCondensedItalic,
17184 #[cfg(feature = "static")]
17185 Font::PathwayExtreme120ptSemiCondensedMediumItalic,
17186 #[cfg(feature = "static")]
17187 Font::PathwayExtreme120ptSemiCondensedSemiBoldItalic,
17188 #[cfg(feature = "static")]
17189 Font::PathwayExtreme120ptSemiCondensedBoldItalic,
17190 #[cfg(feature = "static")]
17191 Font::PathwayExtreme120ptSemiCondensedExtraBoldItalic,
17192 #[cfg(feature = "static")]
17193 Font::PathwayExtreme120ptSemiCondensedBlackItalic,
17194 #[cfg(feature = "static")]
17195 Font::PathwayExtreme120ptThinItalic,
17196 #[cfg(feature = "static")]
17197 Font::PathwayExtreme120ptExtraLightItalic,
17198 #[cfg(feature = "static")]
17199 Font::PathwayExtreme120ptLightItalic,
17200 #[cfg(feature = "static")]
17201 Font::PathwayExtreme120ptItalic,
17202 #[cfg(feature = "static")]
17203 Font::PathwayExtreme120ptMediumItalic,
17204 #[cfg(feature = "static")]
17205 Font::PathwayExtreme120ptSemiBoldItalic,
17206 #[cfg(feature = "static")]
17207 Font::PathwayExtreme120ptBoldItalic,
17208 #[cfg(feature = "static")]
17209 Font::PathwayExtreme120ptExtraBoldItalic,
17210 #[cfg(feature = "static")]
17211 Font::PathwayExtreme120ptBlackItalic,
17212 #[cfg(feature = "variable")]
17213 Font::PathwayExtremeVariable,
17214 #[cfg(feature = "variable")]
17215 Font::PathwayExtremeItalicVariable,
17216 #[cfg(feature = "static")]
17217 Font::PathwayGothicOneRegular,
17218 #[cfg(feature = "static")]
17219 Font::PattayaRegular,
17220 #[cfg(feature = "static")]
17221 Font::PavanamRegular,
17222 #[cfg(feature = "static")]
17223 Font::PaytoneOneRegular,
17224 #[cfg(feature = "static")]
17225 Font::PhilosopherRegular,
17226 #[cfg(feature = "static")]
17227 Font::PhilosopherItalic,
17228 #[cfg(feature = "static")]
17229 Font::PhilosopherBold,
17230 #[cfg(feature = "static")]
17231 Font::PhilosopherBoldItalic,
17232 #[cfg(feature = "static")]
17233 Font::PlayRegular,
17234 #[cfg(feature = "static")]
17235 Font::PlayBold,
17236 #[cfg(feature = "static")]
17237 Font::PlusJakartaSansExtraLight,
17238 #[cfg(feature = "static")]
17239 Font::PlusJakartaSansLight,
17240 #[cfg(feature = "static")]
17241 Font::PlusJakartaSansRegular,
17242 #[cfg(feature = "static")]
17243 Font::PlusJakartaSansMedium,
17244 #[cfg(feature = "static")]
17245 Font::PlusJakartaSansSemiBold,
17246 #[cfg(feature = "static")]
17247 Font::PlusJakartaSansBold,
17248 #[cfg(feature = "static")]
17249 Font::PlusJakartaSansExtraBold,
17250 #[cfg(feature = "static")]
17251 Font::PlusJakartaSansExtraLightItalic,
17252 #[cfg(feature = "static")]
17253 Font::PlusJakartaSansLightItalic,
17254 #[cfg(feature = "static")]
17255 Font::PlusJakartaSansItalic,
17256 #[cfg(feature = "static")]
17257 Font::PlusJakartaSansMediumItalic,
17258 #[cfg(feature = "static")]
17259 Font::PlusJakartaSansSemiBoldItalic,
17260 #[cfg(feature = "static")]
17261 Font::PlusJakartaSansBoldItalic,
17262 #[cfg(feature = "static")]
17263 Font::PlusJakartaSansExtraBoldItalic,
17264 #[cfg(feature = "variable")]
17265 Font::PlusJakartaSansVariable,
17266 #[cfg(feature = "variable")]
17267 Font::PlusJakartaSansItalicVariable,
17268 #[cfg(feature = "static")]
17269 Font::PontanoSansLight,
17270 #[cfg(feature = "static")]
17271 Font::PontanoSansRegular,
17272 #[cfg(feature = "static")]
17273 Font::PontanoSansMedium,
17274 #[cfg(feature = "static")]
17275 Font::PontanoSansSemiBold,
17276 #[cfg(feature = "static")]
17277 Font::PontanoSansBold,
17278 #[cfg(feature = "variable")]
17279 Font::PontanoSansVariable,
17280 #[cfg(feature = "static")]
17281 Font::PoppinsThin,
17282 #[cfg(feature = "static")]
17283 Font::PoppinsThinItalic,
17284 #[cfg(feature = "static")]
17285 Font::PoppinsExtraLight,
17286 #[cfg(feature = "static")]
17287 Font::PoppinsExtraLightItalic,
17288 #[cfg(feature = "static")]
17289 Font::PoppinsLight,
17290 #[cfg(feature = "static")]
17291 Font::PoppinsLightItalic,
17292 #[cfg(feature = "static")]
17293 Font::PoppinsRegular,
17294 #[cfg(feature = "static")]
17295 Font::PoppinsItalic,
17296 #[cfg(feature = "static")]
17297 Font::PoppinsMedium,
17298 #[cfg(feature = "static")]
17299 Font::PoppinsMediumItalic,
17300 #[cfg(feature = "static")]
17301 Font::PoppinsSemiBold,
17302 #[cfg(feature = "static")]
17303 Font::PoppinsSemiBoldItalic,
17304 #[cfg(feature = "static")]
17305 Font::PoppinsBold,
17306 #[cfg(feature = "static")]
17307 Font::PoppinsBoldItalic,
17308 #[cfg(feature = "static")]
17309 Font::PoppinsExtraBold,
17310 #[cfg(feature = "static")]
17311 Font::PoppinsExtraBoldItalic,
17312 #[cfg(feature = "static")]
17313 Font::PoppinsBlack,
17314 #[cfg(feature = "static")]
17315 Font::PoppinsBlackItalic,
17316 #[cfg(feature = "static")]
17317 Font::PortLligatSansRegular,
17318 #[cfg(feature = "static")]
17319 Font::PragatiNarrowRegular,
17320 #[cfg(feature = "static")]
17321 Font::PragatiNarrowBold,
17322 #[cfg(feature = "static")]
17323 Font::PreahvihearRegular,
17324 #[cfg(feature = "static")]
17325 Font::PromptThin,
17326 #[cfg(feature = "static")]
17327 Font::PromptThinItalic,
17328 #[cfg(feature = "static")]
17329 Font::PromptExtraLight,
17330 #[cfg(feature = "static")]
17331 Font::PromptExtraLightItalic,
17332 #[cfg(feature = "static")]
17333 Font::PromptLight,
17334 #[cfg(feature = "static")]
17335 Font::PromptLightItalic,
17336 #[cfg(feature = "static")]
17337 Font::PromptRegular,
17338 #[cfg(feature = "static")]
17339 Font::PromptItalic,
17340 #[cfg(feature = "static")]
17341 Font::PromptMedium,
17342 #[cfg(feature = "static")]
17343 Font::PromptMediumItalic,
17344 #[cfg(feature = "static")]
17345 Font::PromptSemiBold,
17346 #[cfg(feature = "static")]
17347 Font::PromptSemiBoldItalic,
17348 #[cfg(feature = "static")]
17349 Font::PromptBold,
17350 #[cfg(feature = "static")]
17351 Font::PromptBoldItalic,
17352 #[cfg(feature = "static")]
17353 Font::PromptExtraBold,
17354 #[cfg(feature = "static")]
17355 Font::PromptExtraBoldItalic,
17356 #[cfg(feature = "static")]
17357 Font::PromptBlack,
17358 #[cfg(feature = "static")]
17359 Font::PromptBlackItalic,
17360 #[cfg(feature = "static")]
17361 Font::ProzaLibreRegular,
17362 #[cfg(feature = "static")]
17363 Font::ProzaLibreItalic,
17364 #[cfg(feature = "static")]
17365 Font::ProzaLibreMedium,
17366 #[cfg(feature = "static")]
17367 Font::ProzaLibreMediumItalic,
17368 #[cfg(feature = "static")]
17369 Font::ProzaLibreSemiBold,
17370 #[cfg(feature = "static")]
17371 Font::ProzaLibreSemiBoldItalic,
17372 #[cfg(feature = "static")]
17373 Font::ProzaLibreBold,
17374 #[cfg(feature = "static")]
17375 Font::ProzaLibreBoldItalic,
17376 #[cfg(feature = "static")]
17377 Font::ProzaLibreExtraBold,
17378 #[cfg(feature = "static")]
17379 Font::ProzaLibreExtraBoldItalic,
17380 #[cfg(feature = "static")]
17381 Font::PublicSansThin,
17382 #[cfg(feature = "static")]
17383 Font::PublicSansExtraLight,
17384 #[cfg(feature = "static")]
17385 Font::PublicSansLight,
17386 #[cfg(feature = "static")]
17387 Font::PublicSansRegular,
17388 #[cfg(feature = "static")]
17389 Font::PublicSansMedium,
17390 #[cfg(feature = "static")]
17391 Font::PublicSansSemiBold,
17392 #[cfg(feature = "static")]
17393 Font::PublicSansBold,
17394 #[cfg(feature = "static")]
17395 Font::PublicSansExtraBold,
17396 #[cfg(feature = "static")]
17397 Font::PublicSansBlack,
17398 #[cfg(feature = "static")]
17399 Font::PublicSansThinItalic,
17400 #[cfg(feature = "static")]
17401 Font::PublicSansExtraLightItalic,
17402 #[cfg(feature = "static")]
17403 Font::PublicSansLightItalic,
17404 #[cfg(feature = "static")]
17405 Font::PublicSansItalic,
17406 #[cfg(feature = "static")]
17407 Font::PublicSansMediumItalic,
17408 #[cfg(feature = "static")]
17409 Font::PublicSansSemiBoldItalic,
17410 #[cfg(feature = "static")]
17411 Font::PublicSansBoldItalic,
17412 #[cfg(feature = "static")]
17413 Font::PublicSansExtraBoldItalic,
17414 #[cfg(feature = "static")]
17415 Font::PublicSansBlackItalic,
17416 #[cfg(feature = "variable")]
17417 Font::PublicSansVariable,
17418 #[cfg(feature = "variable")]
17419 Font::PublicSansItalicVariable,
17420 #[cfg(feature = "static")]
17421 Font::PuritanRegular,
17422 #[cfg(feature = "static")]
17423 Font::PuritanItalic,
17424 #[cfg(feature = "static")]
17425 Font::PuritanBold,
17426 #[cfg(feature = "static")]
17427 Font::PuritanBoldItalic,
17428 #[cfg(feature = "static")]
17429 Font::QahiriRegular,
17430 #[cfg(feature = "static")]
17431 Font::QuanticoRegular,
17432 #[cfg(feature = "static")]
17433 Font::QuanticoItalic,
17434 #[cfg(feature = "static")]
17435 Font::QuanticoBold,
17436 #[cfg(feature = "static")]
17437 Font::QuanticoBoldItalic,
17438 #[cfg(feature = "static")]
17439 Font::QuattrocentoSansRegular,
17440 #[cfg(feature = "static")]
17441 Font::QuattrocentoSansItalic,
17442 #[cfg(feature = "static")]
17443 Font::QuattrocentoSansBold,
17444 #[cfg(feature = "static")]
17445 Font::QuattrocentoSansBoldItalic,
17446 #[cfg(feature = "static")]
17447 Font::QuestrialRegular,
17448 #[cfg(feature = "static")]
17449 Font::QuicksandLight,
17450 #[cfg(feature = "static")]
17451 Font::QuicksandRegular,
17452 #[cfg(feature = "static")]
17453 Font::QuicksandMedium,
17454 #[cfg(feature = "static")]
17455 Font::QuicksandSemiBold,
17456 #[cfg(feature = "static")]
17457 Font::QuicksandBold,
17458 #[cfg(feature = "variable")]
17459 Font::QuicksandVariable,
17460 #[cfg(feature = "static")]
17461 Font::REMThin,
17462 #[cfg(feature = "static")]
17463 Font::REMExtraLight,
17464 #[cfg(feature = "static")]
17465 Font::REMLight,
17466 #[cfg(feature = "static")]
17467 Font::REMRegular,
17468 #[cfg(feature = "static")]
17469 Font::REMMedium,
17470 #[cfg(feature = "static")]
17471 Font::REMSemiBold,
17472 #[cfg(feature = "static")]
17473 Font::REMBold,
17474 #[cfg(feature = "static")]
17475 Font::REMExtraBold,
17476 #[cfg(feature = "static")]
17477 Font::REMBlack,
17478 #[cfg(feature = "static")]
17479 Font::REMThinItalic,
17480 #[cfg(feature = "static")]
17481 Font::REMExtraLightItalic,
17482 #[cfg(feature = "static")]
17483 Font::REMLightItalic,
17484 #[cfg(feature = "static")]
17485 Font::REMItalic,
17486 #[cfg(feature = "static")]
17487 Font::REMMediumItalic,
17488 #[cfg(feature = "static")]
17489 Font::REMSemiBoldItalic,
17490 #[cfg(feature = "static")]
17491 Font::REMBoldItalic,
17492 #[cfg(feature = "static")]
17493 Font::REMExtraBoldItalic,
17494 #[cfg(feature = "static")]
17495 Font::REMBlackItalic,
17496 #[cfg(feature = "variable")]
17497 Font::REMVariable,
17498 #[cfg(feature = "variable")]
17499 Font::REMItalicVariable,
17500 #[cfg(feature = "static")]
17501 Font::RadioCanadaCondensedLight,
17502 #[cfg(feature = "static")]
17503 Font::RadioCanadaCondensedRegular,
17504 #[cfg(feature = "static")]
17505 Font::RadioCanadaCondensedMedium,
17506 #[cfg(feature = "static")]
17507 Font::RadioCanadaCondensedSemiBold,
17508 #[cfg(feature = "static")]
17509 Font::RadioCanadaCondensedBold,
17510 #[cfg(feature = "static")]
17511 Font::RadioCanadaSemiCondensedLight,
17512 #[cfg(feature = "static")]
17513 Font::RadioCanadaSemiCondensedRegular,
17514 #[cfg(feature = "static")]
17515 Font::RadioCanadaSemiCondensedMedium,
17516 #[cfg(feature = "static")]
17517 Font::RadioCanadaSemiCondensedSemiBold,
17518 #[cfg(feature = "static")]
17519 Font::RadioCanadaSemiCondensedBold,
17520 #[cfg(feature = "static")]
17521 Font::RadioCanadaLight,
17522 #[cfg(feature = "static")]
17523 Font::RadioCanadaRegular,
17524 #[cfg(feature = "static")]
17525 Font::RadioCanadaMedium,
17526 #[cfg(feature = "static")]
17527 Font::RadioCanadaSemiBold,
17528 #[cfg(feature = "static")]
17529 Font::RadioCanadaBold,
17530 #[cfg(feature = "static")]
17531 Font::RadioCanadaCondensedLightItalic,
17532 #[cfg(feature = "static")]
17533 Font::RadioCanadaCondensedItalic,
17534 #[cfg(feature = "static")]
17535 Font::RadioCanadaCondensedMediumItalic,
17536 #[cfg(feature = "static")]
17537 Font::RadioCanadaCondensedSemiBoldItalic,
17538 #[cfg(feature = "static")]
17539 Font::RadioCanadaCondensedBoldItalic,
17540 #[cfg(feature = "static")]
17541 Font::RadioCanadaSemiCondensedLightItalic,
17542 #[cfg(feature = "static")]
17543 Font::RadioCanadaSemiCondensedItalic,
17544 #[cfg(feature = "static")]
17545 Font::RadioCanadaSemiCondensedMediumItalic,
17546 #[cfg(feature = "static")]
17547 Font::RadioCanadaSemiCondensedSemiBoldItalic,
17548 #[cfg(feature = "static")]
17549 Font::RadioCanadaSemiCondensedBoldItalic,
17550 #[cfg(feature = "static")]
17551 Font::RadioCanadaLightItalic,
17552 #[cfg(feature = "static")]
17553 Font::RadioCanadaItalic,
17554 #[cfg(feature = "static")]
17555 Font::RadioCanadaMediumItalic,
17556 #[cfg(feature = "static")]
17557 Font::RadioCanadaSemiBoldItalic,
17558 #[cfg(feature = "static")]
17559 Font::RadioCanadaBoldItalic,
17560 #[cfg(feature = "variable")]
17561 Font::RadioCanadaVariable,
17562 #[cfg(feature = "variable")]
17563 Font::RadioCanadaItalicVariable,
17564 #[cfg(feature = "static")]
17565 Font::RadioCanadaBigRegular,
17566 #[cfg(feature = "static")]
17567 Font::RadioCanadaBigMedium,
17568 #[cfg(feature = "static")]
17569 Font::RadioCanadaBigSemiBold,
17570 #[cfg(feature = "static")]
17571 Font::RadioCanadaBigBold,
17572 #[cfg(feature = "static")]
17573 Font::RadioCanadaBigItalic,
17574 #[cfg(feature = "static")]
17575 Font::RadioCanadaBigMediumItalic,
17576 #[cfg(feature = "static")]
17577 Font::RadioCanadaBigSemiBoldItalic,
17578 #[cfg(feature = "static")]
17579 Font::RadioCanadaBigBoldItalic,
17580 #[cfg(feature = "variable")]
17581 Font::RadioCanadaBigVariable,
17582 #[cfg(feature = "variable")]
17583 Font::RadioCanadaBigItalicVariable,
17584 #[cfg(feature = "static")]
17585 Font::RajdhaniLight,
17586 #[cfg(feature = "static")]
17587 Font::RajdhaniRegular,
17588 #[cfg(feature = "static")]
17589 Font::RajdhaniMedium,
17590 #[cfg(feature = "static")]
17591 Font::RajdhaniSemiBold,
17592 #[cfg(feature = "static")]
17593 Font::RajdhaniBold,
17594 #[cfg(feature = "static")]
17595 Font::RalewayThin,
17596 #[cfg(feature = "static")]
17597 Font::RalewayExtraLight,
17598 #[cfg(feature = "static")]
17599 Font::RalewayLight,
17600 #[cfg(feature = "static")]
17601 Font::RalewayRegular,
17602 #[cfg(feature = "static")]
17603 Font::RalewayMedium,
17604 #[cfg(feature = "static")]
17605 Font::RalewaySemiBold,
17606 #[cfg(feature = "static")]
17607 Font::RalewayBold,
17608 #[cfg(feature = "static")]
17609 Font::RalewayExtraBold,
17610 #[cfg(feature = "static")]
17611 Font::RalewayBlack,
17612 #[cfg(feature = "static")]
17613 Font::RalewayThinItalic,
17614 #[cfg(feature = "static")]
17615 Font::RalewayExtraLightItalic,
17616 #[cfg(feature = "static")]
17617 Font::RalewayLightItalic,
17618 #[cfg(feature = "static")]
17619 Font::RalewayItalic,
17620 #[cfg(feature = "static")]
17621 Font::RalewayMediumItalic,
17622 #[cfg(feature = "static")]
17623 Font::RalewaySemiBoldItalic,
17624 #[cfg(feature = "static")]
17625 Font::RalewayBoldItalic,
17626 #[cfg(feature = "static")]
17627 Font::RalewayExtraBoldItalic,
17628 #[cfg(feature = "static")]
17629 Font::RalewayBlackItalic,
17630 #[cfg(feature = "variable")]
17631 Font::RalewayVariable,
17632 #[cfg(feature = "variable")]
17633 Font::RalewayItalicVariable,
17634 #[cfg(feature = "static")]
17635 Font::RamabhadraRegular,
17636 #[cfg(feature = "static")]
17637 Font::RamblaRegular,
17638 #[cfg(feature = "static")]
17639 Font::RamblaItalic,
17640 #[cfg(feature = "static")]
17641 Font::RamblaBold,
17642 #[cfg(feature = "static")]
17643 Font::RamblaBoldItalic,
17644 #[cfg(feature = "static")]
17645 Font::RationaleRegular,
17646 #[cfg(feature = "static")]
17647 Font::ReadexProExtraLight,
17648 #[cfg(feature = "static")]
17649 Font::ReadexProLight,
17650 #[cfg(feature = "static")]
17651 Font::ReadexProRegular,
17652 #[cfg(feature = "static")]
17653 Font::ReadexProMedium,
17654 #[cfg(feature = "static")]
17655 Font::ReadexProSemiBold,
17656 #[cfg(feature = "static")]
17657 Font::ReadexProBold,
17658 #[cfg(feature = "variable")]
17659 Font::ReadexProVariable,
17660 #[cfg(feature = "static")]
17661 Font::RecursiveLight,
17662 #[cfg(feature = "static")]
17663 Font::RecursiveRegular,
17664 #[cfg(feature = "static")]
17665 Font::RecursiveMedium,
17666 #[cfg(feature = "static")]
17667 Font::RecursiveSemiBold,
17668 #[cfg(feature = "static")]
17669 Font::RecursiveBold,
17670 #[cfg(feature = "static")]
17671 Font::RecursiveExtraBold,
17672 #[cfg(feature = "static")]
17673 Font::RecursiveBlack,
17674 #[cfg(feature = "static")]
17675 Font::RecursiveMonospaceLight,
17676 #[cfg(feature = "static")]
17677 Font::RecursiveMonospaceRegular,
17678 #[cfg(feature = "static")]
17679 Font::RecursiveMonospaceMedium,
17680 #[cfg(feature = "static")]
17681 Font::RecursiveMonospaceSemiBold,
17682 #[cfg(feature = "static")]
17683 Font::RecursiveMonospaceBold,
17684 #[cfg(feature = "static")]
17685 Font::RecursiveMonospaceExtraBold,
17686 #[cfg(feature = "static")]
17687 Font::RecursiveMonospaceBlack,
17688 #[cfg(feature = "static")]
17689 Font::RecursiveCasualLight,
17690 #[cfg(feature = "static")]
17691 Font::RecursiveCasualRegular,
17692 #[cfg(feature = "static")]
17693 Font::RecursiveCasualMedium,
17694 #[cfg(feature = "static")]
17695 Font::RecursiveCasualSemiBold,
17696 #[cfg(feature = "static")]
17697 Font::RecursiveCasualBold,
17698 #[cfg(feature = "static")]
17699 Font::RecursiveCasualExtraBold,
17700 #[cfg(feature = "static")]
17701 Font::RecursiveCasualBlack,
17702 #[cfg(feature = "static")]
17703 Font::RecursiveMonospaceCasualLight,
17704 #[cfg(feature = "static")]
17705 Font::RecursiveMonospaceCasualRegular,
17706 #[cfg(feature = "static")]
17707 Font::RecursiveMonospaceCasualMedium,
17708 #[cfg(feature = "static")]
17709 Font::RecursiveMonospaceCasualSemiBold,
17710 #[cfg(feature = "static")]
17711 Font::RecursiveMonospaceCasualBold,
17712 #[cfg(feature = "static")]
17713 Font::RecursiveMonospaceCasualExtraBold,
17714 #[cfg(feature = "static")]
17715 Font::RecursiveMonospaceCasualBlack,
17716 #[cfg(feature = "variable")]
17717 Font::RecursiveVariable,
17718 #[cfg(feature = "static")]
17719 Font::RedHatDisplayLight,
17720 #[cfg(feature = "static")]
17721 Font::RedHatDisplayRegular,
17722 #[cfg(feature = "static")]
17723 Font::RedHatDisplayMedium,
17724 #[cfg(feature = "static")]
17725 Font::RedHatDisplaySemiBold,
17726 #[cfg(feature = "static")]
17727 Font::RedHatDisplayBold,
17728 #[cfg(feature = "static")]
17729 Font::RedHatDisplayExtraBold,
17730 #[cfg(feature = "static")]
17731 Font::RedHatDisplayBlack,
17732 #[cfg(feature = "static")]
17733 Font::RedHatDisplayLightItalic,
17734 #[cfg(feature = "static")]
17735 Font::RedHatDisplayItalic,
17736 #[cfg(feature = "static")]
17737 Font::RedHatDisplayMediumItalic,
17738 #[cfg(feature = "static")]
17739 Font::RedHatDisplaySemiBoldItalic,
17740 #[cfg(feature = "static")]
17741 Font::RedHatDisplayBoldItalic,
17742 #[cfg(feature = "static")]
17743 Font::RedHatDisplayExtraBoldItalic,
17744 #[cfg(feature = "static")]
17745 Font::RedHatDisplayBlackItalic,
17746 #[cfg(feature = "variable")]
17747 Font::RedHatDisplayVariable,
17748 #[cfg(feature = "variable")]
17749 Font::RedHatDisplayItalicVariable,
17750 #[cfg(feature = "static")]
17751 Font::RedHatTextLight,
17752 #[cfg(feature = "static")]
17753 Font::RedHatTextRegular,
17754 #[cfg(feature = "static")]
17755 Font::RedHatTextMedium,
17756 #[cfg(feature = "static")]
17757 Font::RedHatTextSemiBold,
17758 #[cfg(feature = "static")]
17759 Font::RedHatTextBold,
17760 #[cfg(feature = "static")]
17761 Font::RedHatTextLightItalic,
17762 #[cfg(feature = "static")]
17763 Font::RedHatTextItalic,
17764 #[cfg(feature = "static")]
17765 Font::RedHatTextMediumItalic,
17766 #[cfg(feature = "static")]
17767 Font::RedHatTextSemiBoldItalic,
17768 #[cfg(feature = "static")]
17769 Font::RedHatTextBoldItalic,
17770 #[cfg(feature = "variable")]
17771 Font::RedHatTextVariable,
17772 #[cfg(feature = "variable")]
17773 Font::RedHatTextItalicVariable,
17774 #[cfg(feature = "static")]
17775 Font::RedditSansExtraLight,
17776 #[cfg(feature = "static")]
17777 Font::RedditSansLight,
17778 #[cfg(feature = "static")]
17779 Font::RedditSansRegular,
17780 #[cfg(feature = "static")]
17781 Font::RedditSansMedium,
17782 #[cfg(feature = "static")]
17783 Font::RedditSansSemiBold,
17784 #[cfg(feature = "static")]
17785 Font::RedditSansBold,
17786 #[cfg(feature = "static")]
17787 Font::RedditSansExtraBold,
17788 #[cfg(feature = "static")]
17789 Font::RedditSansBlack,
17790 #[cfg(feature = "static")]
17791 Font::RedditSansExtraLightItalic,
17792 #[cfg(feature = "static")]
17793 Font::RedditSansLightItalic,
17794 #[cfg(feature = "static")]
17795 Font::RedditSansItalic,
17796 #[cfg(feature = "static")]
17797 Font::RedditSansMediumItalic,
17798 #[cfg(feature = "static")]
17799 Font::RedditSansSemiBoldItalic,
17800 #[cfg(feature = "static")]
17801 Font::RedditSansBoldItalic,
17802 #[cfg(feature = "static")]
17803 Font::RedditSansExtraBoldItalic,
17804 #[cfg(feature = "static")]
17805 Font::RedditSansBlackItalic,
17806 #[cfg(feature = "variable")]
17807 Font::RedditSansVariable,
17808 #[cfg(feature = "variable")]
17809 Font::RedditSansItalicVariable,
17810 #[cfg(feature = "static")]
17811 Font::RedditSansCondensedExtraLight,
17812 #[cfg(feature = "static")]
17813 Font::RedditSansCondensedLight,
17814 #[cfg(feature = "static")]
17815 Font::RedditSansCondensedRegular,
17816 #[cfg(feature = "static")]
17817 Font::RedditSansCondensedMedium,
17818 #[cfg(feature = "static")]
17819 Font::RedditSansCondensedSemiBold,
17820 #[cfg(feature = "static")]
17821 Font::RedditSansCondensedBold,
17822 #[cfg(feature = "static")]
17823 Font::RedditSansCondensedExtraBold,
17824 #[cfg(feature = "static")]
17825 Font::RedditSansCondensedBlack,
17826 #[cfg(feature = "variable")]
17827 Font::RedditSansCondensedVariable,
17828 #[cfg(feature = "static")]
17829 Font::ReemKufiRegular,
17830 #[cfg(feature = "static")]
17831 Font::ReemKufiMedium,
17832 #[cfg(feature = "static")]
17833 Font::ReemKufiSemiBold,
17834 #[cfg(feature = "static")]
17835 Font::ReemKufiBold,
17836 #[cfg(feature = "variable")]
17837 Font::ReemKufiVariable,
17838 #[cfg(feature = "static")]
17839 Font::ReemKufiFunRegular,
17840 #[cfg(feature = "static")]
17841 Font::ReemKufiFunMedium,
17842 #[cfg(feature = "static")]
17843 Font::ReemKufiFunSemiBold,
17844 #[cfg(feature = "static")]
17845 Font::ReemKufiFunBold,
17846 #[cfg(feature = "variable")]
17847 Font::ReemKufiFunVariable,
17848 #[cfg(feature = "static")]
17849 Font::ReemKufiInkRegular,
17850 #[cfg(feature = "static")]
17851 Font::RethinkSansRegular,
17852 #[cfg(feature = "static")]
17853 Font::RethinkSansMedium,
17854 #[cfg(feature = "static")]
17855 Font::RethinkSansSemiBold,
17856 #[cfg(feature = "static")]
17857 Font::RethinkSansBold,
17858 #[cfg(feature = "static")]
17859 Font::RethinkSansExtraBold,
17860 #[cfg(feature = "static")]
17861 Font::RethinkSansItalic,
17862 #[cfg(feature = "static")]
17863 Font::RethinkSansMediumItalic,
17864 #[cfg(feature = "static")]
17865 Font::RethinkSansSemiBoldItalic,
17866 #[cfg(feature = "static")]
17867 Font::RethinkSansBoldItalic,
17868 #[cfg(feature = "static")]
17869 Font::RethinkSansExtraBoldItalic,
17870 #[cfg(feature = "variable")]
17871 Font::RethinkSansVariable,
17872 #[cfg(feature = "variable")]
17873 Font::RethinkSansItalicVariable,
17874 #[cfg(feature = "static")]
17875 Font::RobotoThin,
17876 #[cfg(feature = "static")]
17877 Font::RobotoThinItalic,
17878 #[cfg(feature = "static")]
17879 Font::RobotoLight,
17880 #[cfg(feature = "static")]
17881 Font::RobotoLightItalic,
17882 #[cfg(feature = "static")]
17883 Font::RobotoRegular,
17884 #[cfg(feature = "static")]
17885 Font::RobotoItalic,
17886 #[cfg(feature = "static")]
17887 Font::RobotoMedium,
17888 #[cfg(feature = "static")]
17889 Font::RobotoMediumItalic,
17890 #[cfg(feature = "static")]
17891 Font::RobotoBold,
17892 #[cfg(feature = "static")]
17893 Font::RobotoBoldItalic,
17894 #[cfg(feature = "static")]
17895 Font::RobotoBlack,
17896 #[cfg(feature = "static")]
17897 Font::RobotoBlackItalic,
17898 #[cfg(feature = "static")]
17899 Font::RobotoCondensedThin,
17900 #[cfg(feature = "static")]
17901 Font::RobotoCondensedExtraLight,
17902 #[cfg(feature = "static")]
17903 Font::RobotoCondensedLight,
17904 #[cfg(feature = "static")]
17905 Font::RobotoCondensedRegular,
17906 #[cfg(feature = "static")]
17907 Font::RobotoCondensedMedium,
17908 #[cfg(feature = "static")]
17909 Font::RobotoCondensedSemiBold,
17910 #[cfg(feature = "static")]
17911 Font::RobotoCondensedBold,
17912 #[cfg(feature = "static")]
17913 Font::RobotoCondensedExtraBold,
17914 #[cfg(feature = "static")]
17915 Font::RobotoCondensedBlack,
17916 #[cfg(feature = "static")]
17917 Font::RobotoCondensedThinItalic,
17918 #[cfg(feature = "static")]
17919 Font::RobotoCondensedExtraLightItalic,
17920 #[cfg(feature = "static")]
17921 Font::RobotoCondensedLightItalic,
17922 #[cfg(feature = "static")]
17923 Font::RobotoCondensedItalic,
17924 #[cfg(feature = "static")]
17925 Font::RobotoCondensedMediumItalic,
17926 #[cfg(feature = "static")]
17927 Font::RobotoCondensedSemiBoldItalic,
17928 #[cfg(feature = "static")]
17929 Font::RobotoCondensedBoldItalic,
17930 #[cfg(feature = "static")]
17931 Font::RobotoCondensedExtraBoldItalic,
17932 #[cfg(feature = "static")]
17933 Font::RobotoCondensedBlackItalic,
17934 #[cfg(feature = "variable")]
17935 Font::RobotoCondensedVariable,
17936 #[cfg(feature = "variable")]
17937 Font::RobotoCondensedItalicVariable,
17938 #[cfg(feature = "static")]
17939 Font::RobotoFlexRegular,
17940 #[cfg(feature = "variable")]
17941 Font::RobotoFlexVariable,
17942 #[cfg(feature = "static")]
17943 Font::RocknRollOneRegular,
17944 #[cfg(feature = "static")]
17945 Font::RopaSansRegular,
17946 #[cfg(feature = "static")]
17947 Font::RopaSansItalic,
17948 #[cfg(feature = "static")]
17949 Font::RosarioLight,
17950 #[cfg(feature = "static")]
17951 Font::RosarioRegular,
17952 #[cfg(feature = "static")]
17953 Font::RosarioMedium,
17954 #[cfg(feature = "static")]
17955 Font::RosarioSemiBold,
17956 #[cfg(feature = "static")]
17957 Font::RosarioBold,
17958 #[cfg(feature = "static")]
17959 Font::RosarioLightItalic,
17960 #[cfg(feature = "static")]
17961 Font::RosarioItalic,
17962 #[cfg(feature = "static")]
17963 Font::RosarioMediumItalic,
17964 #[cfg(feature = "static")]
17965 Font::RosarioSemiBoldItalic,
17966 #[cfg(feature = "static")]
17967 Font::RosarioBoldItalic,
17968 #[cfg(feature = "variable")]
17969 Font::RosarioVariable,
17970 #[cfg(feature = "variable")]
17971 Font::RosarioItalicVariable,
17972 #[cfg(feature = "static")]
17973 Font::RubikLight,
17974 #[cfg(feature = "static")]
17975 Font::RubikRegular,
17976 #[cfg(feature = "static")]
17977 Font::RubikMedium,
17978 #[cfg(feature = "static")]
17979 Font::RubikSemiBold,
17980 #[cfg(feature = "static")]
17981 Font::RubikBold,
17982 #[cfg(feature = "static")]
17983 Font::RubikExtraBold,
17984 #[cfg(feature = "static")]
17985 Font::RubikBlack,
17986 #[cfg(feature = "static")]
17987 Font::RubikLightItalic,
17988 #[cfg(feature = "static")]
17989 Font::RubikItalic,
17990 #[cfg(feature = "static")]
17991 Font::RubikMediumItalic,
17992 #[cfg(feature = "static")]
17993 Font::RubikSemiBoldItalic,
17994 #[cfg(feature = "static")]
17995 Font::RubikBoldItalic,
17996 #[cfg(feature = "static")]
17997 Font::RubikExtraBoldItalic,
17998 #[cfg(feature = "static")]
17999 Font::RubikBlackItalic,
18000 #[cfg(feature = "variable")]
18001 Font::RubikVariable,
18002 #[cfg(feature = "variable")]
18003 Font::RubikItalicVariable,
18004 #[cfg(feature = "static")]
18005 Font::RubikMonoOneRegular,
18006 #[cfg(feature = "static")]
18007 Font::RudaRegular,
18008 #[cfg(feature = "static")]
18009 Font::RudaMedium,
18010 #[cfg(feature = "static")]
18011 Font::RudaSemiBold,
18012 #[cfg(feature = "static")]
18013 Font::RudaBold,
18014 #[cfg(feature = "static")]
18015 Font::RudaExtraBold,
18016 #[cfg(feature = "static")]
18017 Font::RudaBlack,
18018 #[cfg(feature = "variable")]
18019 Font::RudaVariable,
18020 #[cfg(feature = "static")]
18021 Font::RulukoRegular,
18022 #[cfg(feature = "static")]
18023 Font::RumRaisinRegular,
18024 #[cfg(feature = "static")]
18025 Font::RussoOneRegular,
18026 #[cfg(feature = "static")]
18027 Font::SairaUltraCondensedThin,
18028 #[cfg(feature = "static")]
18029 Font::SairaUltraCondensedExtraLight,
18030 #[cfg(feature = "static")]
18031 Font::SairaUltraCondensedLight,
18032 #[cfg(feature = "static")]
18033 Font::SairaUltraCondensedRegular,
18034 #[cfg(feature = "static")]
18035 Font::SairaUltraCondensedMedium,
18036 #[cfg(feature = "static")]
18037 Font::SairaUltraCondensedSemiBold,
18038 #[cfg(feature = "static")]
18039 Font::SairaUltraCondensedBold,
18040 #[cfg(feature = "static")]
18041 Font::SairaUltraCondensedExtraBold,
18042 #[cfg(feature = "static")]
18043 Font::SairaUltraCondensedBlack,
18044 #[cfg(feature = "static")]
18045 Font::SairaExtraCondensedThin,
18046 #[cfg(feature = "static")]
18047 Font::SairaExtraCondensedExtraLight,
18048 #[cfg(feature = "static")]
18049 Font::SairaExtraCondensedLight,
18050 #[cfg(feature = "static")]
18051 Font::SairaExtraCondensedRegular,
18052 #[cfg(feature = "static")]
18053 Font::SairaExtraCondensedMedium,
18054 #[cfg(feature = "static")]
18055 Font::SairaExtraCondensedSemiBold,
18056 #[cfg(feature = "static")]
18057 Font::SairaExtraCondensedBold,
18058 #[cfg(feature = "static")]
18059 Font::SairaExtraCondensedExtraBold,
18060 #[cfg(feature = "static")]
18061 Font::SairaExtraCondensedBlack,
18062 #[cfg(feature = "static")]
18063 Font::SairaCondensedThin,
18064 #[cfg(feature = "static")]
18065 Font::SairaCondensedExtraLight,
18066 #[cfg(feature = "static")]
18067 Font::SairaCondensedLight,
18068 #[cfg(feature = "static")]
18069 Font::SairaCondensedRegular,
18070 #[cfg(feature = "static")]
18071 Font::SairaCondensedMedium,
18072 #[cfg(feature = "static")]
18073 Font::SairaCondensedSemiBold,
18074 #[cfg(feature = "static")]
18075 Font::SairaCondensedBold,
18076 #[cfg(feature = "static")]
18077 Font::SairaCondensedExtraBold,
18078 #[cfg(feature = "static")]
18079 Font::SairaCondensedBlack,
18080 #[cfg(feature = "static")]
18081 Font::SairaSemiCondensedThin,
18082 #[cfg(feature = "static")]
18083 Font::SairaSemiCondensedExtraLight,
18084 #[cfg(feature = "static")]
18085 Font::SairaSemiCondensedLight,
18086 #[cfg(feature = "static")]
18087 Font::SairaSemiCondensedRegular,
18088 #[cfg(feature = "static")]
18089 Font::SairaSemiCondensedMedium,
18090 #[cfg(feature = "static")]
18091 Font::SairaSemiCondensedSemiBold,
18092 #[cfg(feature = "static")]
18093 Font::SairaSemiCondensedBold,
18094 #[cfg(feature = "static")]
18095 Font::SairaSemiCondensedExtraBold,
18096 #[cfg(feature = "static")]
18097 Font::SairaSemiCondensedBlack,
18098 #[cfg(feature = "static")]
18099 Font::SairaThin,
18100 #[cfg(feature = "static")]
18101 Font::SairaExtraLight,
18102 #[cfg(feature = "static")]
18103 Font::SairaLight,
18104 #[cfg(feature = "static")]
18105 Font::SairaRegular,
18106 #[cfg(feature = "static")]
18107 Font::SairaMedium,
18108 #[cfg(feature = "static")]
18109 Font::SairaSemiBold,
18110 #[cfg(feature = "static")]
18111 Font::SairaBold,
18112 #[cfg(feature = "static")]
18113 Font::SairaExtraBold,
18114 #[cfg(feature = "static")]
18115 Font::SairaBlack,
18116 #[cfg(feature = "static")]
18117 Font::SairaSemiExpandedThin,
18118 #[cfg(feature = "static")]
18119 Font::SairaSemiExpandedExtraLight,
18120 #[cfg(feature = "static")]
18121 Font::SairaSemiExpandedLight,
18122 #[cfg(feature = "static")]
18123 Font::SairaSemiExpandedRegular,
18124 #[cfg(feature = "static")]
18125 Font::SairaSemiExpandedMedium,
18126 #[cfg(feature = "static")]
18127 Font::SairaSemiExpandedSemiBold,
18128 #[cfg(feature = "static")]
18129 Font::SairaSemiExpandedBold,
18130 #[cfg(feature = "static")]
18131 Font::SairaSemiExpandedExtraBold,
18132 #[cfg(feature = "static")]
18133 Font::SairaSemiExpandedBlack,
18134 #[cfg(feature = "static")]
18135 Font::SairaExpandedThin,
18136 #[cfg(feature = "static")]
18137 Font::SairaExpandedExtraLight,
18138 #[cfg(feature = "static")]
18139 Font::SairaExpandedLight,
18140 #[cfg(feature = "static")]
18141 Font::SairaExpandedRegular,
18142 #[cfg(feature = "static")]
18143 Font::SairaExpandedMedium,
18144 #[cfg(feature = "static")]
18145 Font::SairaExpandedSemiBold,
18146 #[cfg(feature = "static")]
18147 Font::SairaExpandedBold,
18148 #[cfg(feature = "static")]
18149 Font::SairaExpandedExtraBold,
18150 #[cfg(feature = "static")]
18151 Font::SairaExpandedBlack,
18152 #[cfg(feature = "static")]
18153 Font::SairaUltraCondensedThinItalic,
18154 #[cfg(feature = "static")]
18155 Font::SairaUltraCondensedExtraLightItalic,
18156 #[cfg(feature = "static")]
18157 Font::SairaUltraCondensedLightItalic,
18158 #[cfg(feature = "static")]
18159 Font::SairaUltraCondensedItalic,
18160 #[cfg(feature = "static")]
18161 Font::SairaUltraCondensedMediumItalic,
18162 #[cfg(feature = "static")]
18163 Font::SairaUltraCondensedSemiBoldItalic,
18164 #[cfg(feature = "static")]
18165 Font::SairaUltraCondensedBoldItalic,
18166 #[cfg(feature = "static")]
18167 Font::SairaUltraCondensedExtraBoldItalic,
18168 #[cfg(feature = "static")]
18169 Font::SairaUltraCondensedBlackItalic,
18170 #[cfg(feature = "static")]
18171 Font::SairaExtraCondensedThinItalic,
18172 #[cfg(feature = "static")]
18173 Font::SairaExtraCondensedExtraLightItalic,
18174 #[cfg(feature = "static")]
18175 Font::SairaExtraCondensedLightItalic,
18176 #[cfg(feature = "static")]
18177 Font::SairaExtraCondensedItalic,
18178 #[cfg(feature = "static")]
18179 Font::SairaExtraCondensedMediumItalic,
18180 #[cfg(feature = "static")]
18181 Font::SairaExtraCondensedSemiBoldItalic,
18182 #[cfg(feature = "static")]
18183 Font::SairaExtraCondensedBoldItalic,
18184 #[cfg(feature = "static")]
18185 Font::SairaExtraCondensedExtraBoldItalic,
18186 #[cfg(feature = "static")]
18187 Font::SairaExtraCondensedBlackItalic,
18188 #[cfg(feature = "static")]
18189 Font::SairaCondensedThinItalic,
18190 #[cfg(feature = "static")]
18191 Font::SairaCondensedExtraLightItalic,
18192 #[cfg(feature = "static")]
18193 Font::SairaCondensedLightItalic,
18194 #[cfg(feature = "static")]
18195 Font::SairaCondensedItalic,
18196 #[cfg(feature = "static")]
18197 Font::SairaCondensedMediumItalic,
18198 #[cfg(feature = "static")]
18199 Font::SairaCondensedSemiBoldItalic,
18200 #[cfg(feature = "static")]
18201 Font::SairaCondensedBoldItalic,
18202 #[cfg(feature = "static")]
18203 Font::SairaCondensedExtraBoldItalic,
18204 #[cfg(feature = "static")]
18205 Font::SairaCondensedBlackItalic,
18206 #[cfg(feature = "static")]
18207 Font::SairaSemiCondensedThinItalic,
18208 #[cfg(feature = "static")]
18209 Font::SairaSemiCondensedExtraLightItalic,
18210 #[cfg(feature = "static")]
18211 Font::SairaSemiCondensedLightItalic,
18212 #[cfg(feature = "static")]
18213 Font::SairaSemiCondensedItalic,
18214 #[cfg(feature = "static")]
18215 Font::SairaSemiCondensedMediumItalic,
18216 #[cfg(feature = "static")]
18217 Font::SairaSemiCondensedSemiBoldItalic,
18218 #[cfg(feature = "static")]
18219 Font::SairaSemiCondensedBoldItalic,
18220 #[cfg(feature = "static")]
18221 Font::SairaSemiCondensedExtraBoldItalic,
18222 #[cfg(feature = "static")]
18223 Font::SairaSemiCondensedBlackItalic,
18224 #[cfg(feature = "static")]
18225 Font::SairaThinItalic,
18226 #[cfg(feature = "static")]
18227 Font::SairaExtraLightItalic,
18228 #[cfg(feature = "static")]
18229 Font::SairaLightItalic,
18230 #[cfg(feature = "static")]
18231 Font::SairaItalic,
18232 #[cfg(feature = "static")]
18233 Font::SairaMediumItalic,
18234 #[cfg(feature = "static")]
18235 Font::SairaSemiBoldItalic,
18236 #[cfg(feature = "static")]
18237 Font::SairaBoldItalic,
18238 #[cfg(feature = "static")]
18239 Font::SairaExtraBoldItalic,
18240 #[cfg(feature = "static")]
18241 Font::SairaBlackItalic,
18242 #[cfg(feature = "static")]
18243 Font::SairaSemiExpandedThinItalic,
18244 #[cfg(feature = "static")]
18245 Font::SairaSemiExpandedExtraLightItalic,
18246 #[cfg(feature = "static")]
18247 Font::SairaSemiExpandedLightItalic,
18248 #[cfg(feature = "static")]
18249 Font::SairaSemiExpandedItalic,
18250 #[cfg(feature = "static")]
18251 Font::SairaSemiExpandedMediumItalic,
18252 #[cfg(feature = "static")]
18253 Font::SairaSemiExpandedSemiBoldItalic,
18254 #[cfg(feature = "static")]
18255 Font::SairaSemiExpandedBoldItalic,
18256 #[cfg(feature = "static")]
18257 Font::SairaSemiExpandedExtraBoldItalic,
18258 #[cfg(feature = "static")]
18259 Font::SairaSemiExpandedBlackItalic,
18260 #[cfg(feature = "static")]
18261 Font::SairaExpandedThinItalic,
18262 #[cfg(feature = "static")]
18263 Font::SairaExpandedExtraLightItalic,
18264 #[cfg(feature = "static")]
18265 Font::SairaExpandedLightItalic,
18266 #[cfg(feature = "static")]
18267 Font::SairaExpandedItalic,
18268 #[cfg(feature = "static")]
18269 Font::SairaExpandedMediumItalic,
18270 #[cfg(feature = "static")]
18271 Font::SairaExpandedSemiBoldItalic,
18272 #[cfg(feature = "static")]
18273 Font::SairaExpandedBoldItalic,
18274 #[cfg(feature = "static")]
18275 Font::SairaExpandedExtraBoldItalic,
18276 #[cfg(feature = "static")]
18277 Font::SairaExpandedBlackItalic,
18278 #[cfg(feature = "variable")]
18279 Font::SairaVariable,
18280 #[cfg(feature = "variable")]
18281 Font::SairaItalicVariable,
18282 #[cfg(feature = "static")]
18283 Font::SairaCondensedThin2,
18284 #[cfg(feature = "static")]
18285 Font::SairaCondensedExtraLight2,
18286 #[cfg(feature = "static")]
18287 Font::SairaCondensedLight2,
18288 #[cfg(feature = "static")]
18289 Font::SairaCondensedRegular2,
18290 #[cfg(feature = "static")]
18291 Font::SairaCondensedMedium2,
18292 #[cfg(feature = "static")]
18293 Font::SairaCondensedSemiBold2,
18294 #[cfg(feature = "static")]
18295 Font::SairaCondensedBold2,
18296 #[cfg(feature = "static")]
18297 Font::SairaCondensedExtraBold2,
18298 #[cfg(feature = "static")]
18299 Font::SairaCondensedBlack2,
18300 #[cfg(feature = "static")]
18301 Font::SairaExtraCondensedThin2,
18302 #[cfg(feature = "static")]
18303 Font::SairaExtraCondensedExtraLight2,
18304 #[cfg(feature = "static")]
18305 Font::SairaExtraCondensedLight2,
18306 #[cfg(feature = "static")]
18307 Font::SairaExtraCondensedRegular2,
18308 #[cfg(feature = "static")]
18309 Font::SairaExtraCondensedMedium2,
18310 #[cfg(feature = "static")]
18311 Font::SairaExtraCondensedSemiBold2,
18312 #[cfg(feature = "static")]
18313 Font::SairaExtraCondensedBold2,
18314 #[cfg(feature = "static")]
18315 Font::SairaExtraCondensedExtraBold2,
18316 #[cfg(feature = "static")]
18317 Font::SairaExtraCondensedBlack2,
18318 #[cfg(feature = "static")]
18319 Font::SairaSemiCondensedThin2,
18320 #[cfg(feature = "static")]
18321 Font::SairaSemiCondensedExtraLight2,
18322 #[cfg(feature = "static")]
18323 Font::SairaSemiCondensedLight2,
18324 #[cfg(feature = "static")]
18325 Font::SairaSemiCondensedRegular2,
18326 #[cfg(feature = "static")]
18327 Font::SairaSemiCondensedMedium2,
18328 #[cfg(feature = "static")]
18329 Font::SairaSemiCondensedSemiBold2,
18330 #[cfg(feature = "static")]
18331 Font::SairaSemiCondensedBold2,
18332 #[cfg(feature = "static")]
18333 Font::SairaSemiCondensedExtraBold2,
18334 #[cfg(feature = "static")]
18335 Font::SairaSemiCondensedBlack2,
18336 #[cfg(feature = "static")]
18337 Font::SansitaRegular,
18338 #[cfg(feature = "static")]
18339 Font::SansitaItalic,
18340 #[cfg(feature = "static")]
18341 Font::SansitaBold,
18342 #[cfg(feature = "static")]
18343 Font::SansitaBoldItalic,
18344 #[cfg(feature = "static")]
18345 Font::SansitaExtraBold,
18346 #[cfg(feature = "static")]
18347 Font::SansitaExtraBoldItalic,
18348 #[cfg(feature = "static")]
18349 Font::SansitaBlack,
18350 #[cfg(feature = "static")]
18351 Font::SansitaBlackItalic,
18352 #[cfg(feature = "static")]
18353 Font::SarabunThin,
18354 #[cfg(feature = "static")]
18355 Font::SarabunThinItalic,
18356 #[cfg(feature = "static")]
18357 Font::SarabunExtraLight,
18358 #[cfg(feature = "static")]
18359 Font::SarabunExtraLightItalic,
18360 #[cfg(feature = "static")]
18361 Font::SarabunLight,
18362 #[cfg(feature = "static")]
18363 Font::SarabunLightItalic,
18364 #[cfg(feature = "static")]
18365 Font::SarabunRegular,
18366 #[cfg(feature = "static")]
18367 Font::SarabunItalic,
18368 #[cfg(feature = "static")]
18369 Font::SarabunMedium,
18370 #[cfg(feature = "static")]
18371 Font::SarabunMediumItalic,
18372 #[cfg(feature = "static")]
18373 Font::SarabunSemiBold,
18374 #[cfg(feature = "static")]
18375 Font::SarabunSemiBoldItalic,
18376 #[cfg(feature = "static")]
18377 Font::SarabunBold,
18378 #[cfg(feature = "static")]
18379 Font::SarabunBoldItalic,
18380 #[cfg(feature = "static")]
18381 Font::SarabunExtraBold,
18382 #[cfg(feature = "static")]
18383 Font::SarabunExtraBoldItalic,
18384 #[cfg(feature = "static")]
18385 Font::SaralaRegular,
18386 #[cfg(feature = "static")]
18387 Font::SaralaBold,
18388 #[cfg(feature = "static")]
18389 Font::SarpanchRegular,
18390 #[cfg(feature = "static")]
18391 Font::SarpanchMedium,
18392 #[cfg(feature = "static")]
18393 Font::SarpanchSemiBold,
18394 #[cfg(feature = "static")]
18395 Font::SarpanchBold,
18396 #[cfg(feature = "static")]
18397 Font::SarpanchExtraBold,
18398 #[cfg(feature = "static")]
18399 Font::SarpanchBlack,
18400 #[cfg(feature = "static")]
18401 Font::SawarabiGothicRegular,
18402 #[cfg(feature = "static")]
18403 Font::ScadaRegular,
18404 #[cfg(feature = "static")]
18405 Font::ScadaItalic,
18406 #[cfg(feature = "static")]
18407 Font::ScadaBold,
18408 #[cfg(feature = "static")]
18409 Font::ScadaBoldItalic,
18410 #[cfg(feature = "static")]
18411 Font::SchibstedGroteskRegular,
18412 #[cfg(feature = "static")]
18413 Font::SchibstedGroteskMedium,
18414 #[cfg(feature = "static")]
18415 Font::SchibstedGroteskSemiBold,
18416 #[cfg(feature = "static")]
18417 Font::SchibstedGroteskBold,
18418 #[cfg(feature = "static")]
18419 Font::SchibstedGroteskExtraBold,
18420 #[cfg(feature = "static")]
18421 Font::SchibstedGroteskBlack,
18422 #[cfg(feature = "static")]
18423 Font::SchibstedGroteskItalic,
18424 #[cfg(feature = "static")]
18425 Font::SchibstedGroteskMediumItalic,
18426 #[cfg(feature = "static")]
18427 Font::SchibstedGroteskSemiBoldItalic,
18428 #[cfg(feature = "static")]
18429 Font::SchibstedGroteskBoldItalic,
18430 #[cfg(feature = "static")]
18431 Font::SchibstedGroteskExtraBoldItalic,
18432 #[cfg(feature = "static")]
18433 Font::SchibstedGroteskBlackItalic,
18434 #[cfg(feature = "variable")]
18435 Font::SchibstedGroteskVariable,
18436 #[cfg(feature = "variable")]
18437 Font::SchibstedGroteskItalicVariable,
18438 #[cfg(feature = "static")]
18439 Font::SecularOneRegular,
18440 #[cfg(feature = "static")]
18441 Font::SenRegular,
18442 #[cfg(feature = "static")]
18443 Font::SenMedium,
18444 #[cfg(feature = "static")]
18445 Font::SenSemiBold,
18446 #[cfg(feature = "static")]
18447 Font::SenBold,
18448 #[cfg(feature = "static")]
18449 Font::SenExtraBold,
18450 #[cfg(feature = "variable")]
18451 Font::SenVariable,
18452 #[cfg(feature = "static")]
18453 Font::SeymourOneRegular,
18454 #[cfg(feature = "static")]
18455 Font::ShantiRegular,
18456 #[cfg(feature = "static")]
18457 Font::ShareRegular,
18458 #[cfg(feature = "static")]
18459 Font::ShareItalic,
18460 #[cfg(feature = "static")]
18461 Font::ShareBold,
18462 #[cfg(feature = "static")]
18463 Font::ShareBoldItalic,
18464 #[cfg(feature = "static")]
18465 Font::ShareTechRegular,
18466 #[cfg(feature = "static")]
18467 Font::ShipporiAntiqueRegular,
18468 #[cfg(feature = "static")]
18469 Font::ShipporiAntiqueB1Regular,
18470 #[cfg(feature = "static")]
18471 Font::SiemreapRegular,
18472 #[cfg(feature = "static")]
18473 Font::SignikaLight,
18474 #[cfg(feature = "static")]
18475 Font::SignikaRegular,
18476 #[cfg(feature = "static")]
18477 Font::SignikaMedium,
18478 #[cfg(feature = "static")]
18479 Font::SignikaSemiBold,
18480 #[cfg(feature = "static")]
18481 Font::SignikaBold,
18482 #[cfg(feature = "variable")]
18483 Font::SignikaVariable,
18484 #[cfg(feature = "static")]
18485 Font::SignikaNegativeLight,
18486 #[cfg(feature = "static")]
18487 Font::SignikaNegativeRegular,
18488 #[cfg(feature = "static")]
18489 Font::SignikaNegativeMedium,
18490 #[cfg(feature = "static")]
18491 Font::SignikaNegativeSemiBold,
18492 #[cfg(feature = "static")]
18493 Font::SignikaNegativeBold,
18494 #[cfg(feature = "variable")]
18495 Font::SignikaNegativeVariable,
18496 #[cfg(feature = "static")]
18497 Font::SintonyRegular,
18498 #[cfg(feature = "static")]
18499 Font::SintonyBold,
18500 #[cfg(feature = "static")]
18501 Font::SixCapsRegular,
18502 #[cfg(feature = "static")]
18503 Font::SmoochSansThin,
18504 #[cfg(feature = "static")]
18505 Font::SmoochSansExtraLight,
18506 #[cfg(feature = "static")]
18507 Font::SmoochSansLight,
18508 #[cfg(feature = "static")]
18509 Font::SmoochSansRegular,
18510 #[cfg(feature = "static")]
18511 Font::SmoochSansMedium,
18512 #[cfg(feature = "static")]
18513 Font::SmoochSansSemiBold,
18514 #[cfg(feature = "static")]
18515 Font::SmoochSansBold,
18516 #[cfg(feature = "static")]
18517 Font::SmoochSansExtraBold,
18518 #[cfg(feature = "static")]
18519 Font::SmoochSansBlack,
18520 #[cfg(feature = "variable")]
18521 Font::SmoochSansVariable,
18522 #[cfg(feature = "static")]
18523 Font::SnippetRegular,
18524 #[cfg(feature = "static")]
18525 Font::SofiaSansThin,
18526 #[cfg(feature = "static")]
18527 Font::SofiaSansExtraLight,
18528 #[cfg(feature = "static")]
18529 Font::SofiaSansLight,
18530 #[cfg(feature = "static")]
18531 Font::SofiaSansRegular,
18532 #[cfg(feature = "static")]
18533 Font::SofiaSansMedium,
18534 #[cfg(feature = "static")]
18535 Font::SofiaSansSemiBold,
18536 #[cfg(feature = "static")]
18537 Font::SofiaSansBold,
18538 #[cfg(feature = "static")]
18539 Font::SofiaSansExtraBold,
18540 #[cfg(feature = "static")]
18541 Font::SofiaSansBlack,
18542 #[cfg(feature = "static")]
18543 Font::SofiaSansThinItalic,
18544 #[cfg(feature = "static")]
18545 Font::SofiaSansExtraLightItalic,
18546 #[cfg(feature = "static")]
18547 Font::SofiaSansLightItalic,
18548 #[cfg(feature = "static")]
18549 Font::SofiaSansItalic,
18550 #[cfg(feature = "static")]
18551 Font::SofiaSansMediumItalic,
18552 #[cfg(feature = "static")]
18553 Font::SofiaSansSemiBoldItalic,
18554 #[cfg(feature = "static")]
18555 Font::SofiaSansBoldItalic,
18556 #[cfg(feature = "static")]
18557 Font::SofiaSansExtraBoldItalic,
18558 #[cfg(feature = "static")]
18559 Font::SofiaSansBlackItalic,
18560 #[cfg(feature = "variable")]
18561 Font::SofiaSansVariable,
18562 #[cfg(feature = "variable")]
18563 Font::SofiaSansItalicVariable,
18564 #[cfg(feature = "static")]
18565 Font::SofiaSansCondensedThin,
18566 #[cfg(feature = "static")]
18567 Font::SofiaSansCondensedExtraLight,
18568 #[cfg(feature = "static")]
18569 Font::SofiaSansCondensedLight,
18570 #[cfg(feature = "static")]
18571 Font::SofiaSansCondensedRegular,
18572 #[cfg(feature = "static")]
18573 Font::SofiaSansCondensedMedium,
18574 #[cfg(feature = "static")]
18575 Font::SofiaSansCondensedSemiBold,
18576 #[cfg(feature = "static")]
18577 Font::SofiaSansCondensedBold,
18578 #[cfg(feature = "static")]
18579 Font::SofiaSansCondensedExtraBold,
18580 #[cfg(feature = "static")]
18581 Font::SofiaSansCondensedBlack,
18582 #[cfg(feature = "static")]
18583 Font::SofiaSansCondensedThinItalic,
18584 #[cfg(feature = "static")]
18585 Font::SofiaSansCondensedExtraLightItalic,
18586 #[cfg(feature = "static")]
18587 Font::SofiaSansCondensedLightItalic,
18588 #[cfg(feature = "static")]
18589 Font::SofiaSansCondensedItalic,
18590 #[cfg(feature = "static")]
18591 Font::SofiaSansCondensedMediumItalic,
18592 #[cfg(feature = "static")]
18593 Font::SofiaSansCondensedSemiBoldItalic,
18594 #[cfg(feature = "static")]
18595 Font::SofiaSansCondensedBoldItalic,
18596 #[cfg(feature = "static")]
18597 Font::SofiaSansCondensedExtraBoldItalic,
18598 #[cfg(feature = "static")]
18599 Font::SofiaSansCondensedBlackItalic,
18600 #[cfg(feature = "variable")]
18601 Font::SofiaSansCondensedVariable,
18602 #[cfg(feature = "variable")]
18603 Font::SofiaSansCondensedItalicVariable,
18604 #[cfg(feature = "static")]
18605 Font::SofiaSansExtraCondensedThin,
18606 #[cfg(feature = "static")]
18607 Font::SofiaSansExtraCondensedExtraLight,
18608 #[cfg(feature = "static")]
18609 Font::SofiaSansExtraCondensedLight,
18610 #[cfg(feature = "static")]
18611 Font::SofiaSansExtraCondensedRegular,
18612 #[cfg(feature = "static")]
18613 Font::SofiaSansExtraCondensedMedium,
18614 #[cfg(feature = "static")]
18615 Font::SofiaSansExtraCondensedSemiBold,
18616 #[cfg(feature = "static")]
18617 Font::SofiaSansExtraCondensedBold,
18618 #[cfg(feature = "static")]
18619 Font::SofiaSansExtraCondensedExtraBold,
18620 #[cfg(feature = "static")]
18621 Font::SofiaSansExtraCondensedBlack,
18622 #[cfg(feature = "static")]
18623 Font::SofiaSansExtraCondensedThinItalic,
18624 #[cfg(feature = "static")]
18625 Font::SofiaSansExtraCondensedExtraLightItalic,
18626 #[cfg(feature = "static")]
18627 Font::SofiaSansExtraCondensedLightItalic,
18628 #[cfg(feature = "static")]
18629 Font::SofiaSansExtraCondensedItalic,
18630 #[cfg(feature = "static")]
18631 Font::SofiaSansExtraCondensedMediumItalic,
18632 #[cfg(feature = "static")]
18633 Font::SofiaSansExtraCondensedSemiBoldItalic,
18634 #[cfg(feature = "static")]
18635 Font::SofiaSansExtraCondensedBoldItalic,
18636 #[cfg(feature = "static")]
18637 Font::SofiaSansExtraCondensedExtraBoldItalic,
18638 #[cfg(feature = "static")]
18639 Font::SofiaSansExtraCondensedBlackItalic,
18640 #[cfg(feature = "variable")]
18641 Font::SofiaSansExtraCondensedVariable,
18642 #[cfg(feature = "variable")]
18643 Font::SofiaSansExtraCondensedItalicVariable,
18644 #[cfg(feature = "static")]
18645 Font::SofiaSansSemiCondensedThin,
18646 #[cfg(feature = "static")]
18647 Font::SofiaSansSemiCondensedExtraLight,
18648 #[cfg(feature = "static")]
18649 Font::SofiaSansSemiCondensedLight,
18650 #[cfg(feature = "static")]
18651 Font::SofiaSansSemiCondensedRegular,
18652 #[cfg(feature = "static")]
18653 Font::SofiaSansSemiCondensedMedium,
18654 #[cfg(feature = "static")]
18655 Font::SofiaSansSemiCondensedSemiBold,
18656 #[cfg(feature = "static")]
18657 Font::SofiaSansSemiCondensedBold,
18658 #[cfg(feature = "static")]
18659 Font::SofiaSansSemiCondensedExtraBold,
18660 #[cfg(feature = "static")]
18661 Font::SofiaSansSemiCondensedBlack,
18662 #[cfg(feature = "static")]
18663 Font::SofiaSansSemiCondensedThinItalic,
18664 #[cfg(feature = "static")]
18665 Font::SofiaSansSemiCondensedExtraLightItalic,
18666 #[cfg(feature = "static")]
18667 Font::SofiaSansSemiCondensedLightItalic,
18668 #[cfg(feature = "static")]
18669 Font::SofiaSansSemiCondensedItalic,
18670 #[cfg(feature = "static")]
18671 Font::SofiaSansSemiCondensedMediumItalic,
18672 #[cfg(feature = "static")]
18673 Font::SofiaSansSemiCondensedSemiBoldItalic,
18674 #[cfg(feature = "static")]
18675 Font::SofiaSansSemiCondensedBoldItalic,
18676 #[cfg(feature = "static")]
18677 Font::SofiaSansSemiCondensedExtraBoldItalic,
18678 #[cfg(feature = "static")]
18679 Font::SofiaSansSemiCondensedBlackItalic,
18680 #[cfg(feature = "variable")]
18681 Font::SofiaSansSemiCondensedVariable,
18682 #[cfg(feature = "variable")]
18683 Font::SofiaSansSemiCondensedItalicVariable,
18684 #[cfg(feature = "static")]
18685 Font::SonoProportionalExtraLight,
18686 #[cfg(feature = "static")]
18687 Font::SonoProportionalLight,
18688 #[cfg(feature = "static")]
18689 Font::SonoProportionalRegular,
18690 #[cfg(feature = "static")]
18691 Font::SonoProportionalMedium,
18692 #[cfg(feature = "static")]
18693 Font::SonoProportionalSemiBold,
18694 #[cfg(feature = "static")]
18695 Font::SonoProportionalBold,
18696 #[cfg(feature = "static")]
18697 Font::SonoProportionalExtraBold,
18698 #[cfg(feature = "static")]
18699 Font::SonoExtraLight,
18700 #[cfg(feature = "static")]
18701 Font::SonoLight,
18702 #[cfg(feature = "static")]
18703 Font::SonoRegular,
18704 #[cfg(feature = "static")]
18705 Font::SonoMedium,
18706 #[cfg(feature = "static")]
18707 Font::SonoSemiBold,
18708 #[cfg(feature = "static")]
18709 Font::SonoBold,
18710 #[cfg(feature = "static")]
18711 Font::SonoExtraBold,
18712 #[cfg(feature = "variable")]
18713 Font::SonoVariable,
18714 #[cfg(feature = "static")]
18715 Font::SoraThin,
18716 #[cfg(feature = "static")]
18717 Font::SoraExtraLight,
18718 #[cfg(feature = "static")]
18719 Font::SoraLight,
18720 #[cfg(feature = "static")]
18721 Font::SoraRegular,
18722 #[cfg(feature = "static")]
18723 Font::SoraMedium,
18724 #[cfg(feature = "static")]
18725 Font::SoraSemiBold,
18726 #[cfg(feature = "static")]
18727 Font::SoraBold,
18728 #[cfg(feature = "static")]
18729 Font::SoraExtraBold,
18730 #[cfg(feature = "variable")]
18731 Font::SoraVariable,
18732 #[cfg(feature = "static")]
18733 Font::SourceSans3ExtraLight,
18734 #[cfg(feature = "static")]
18735 Font::SourceSans3Light,
18736 #[cfg(feature = "static")]
18737 Font::SourceSans3Regular,
18738 #[cfg(feature = "static")]
18739 Font::SourceSans3Medium,
18740 #[cfg(feature = "static")]
18741 Font::SourceSans3SemiBold,
18742 #[cfg(feature = "static")]
18743 Font::SourceSans3Bold,
18744 #[cfg(feature = "static")]
18745 Font::SourceSans3ExtraBold,
18746 #[cfg(feature = "static")]
18747 Font::SourceSans3Black,
18748 #[cfg(feature = "static")]
18749 Font::SourceSans3ExtraLightItalic,
18750 #[cfg(feature = "static")]
18751 Font::SourceSans3LightItalic,
18752 #[cfg(feature = "static")]
18753 Font::SourceSans3Italic,
18754 #[cfg(feature = "static")]
18755 Font::SourceSans3MediumItalic,
18756 #[cfg(feature = "static")]
18757 Font::SourceSans3SemiBoldItalic,
18758 #[cfg(feature = "static")]
18759 Font::SourceSans3BoldItalic,
18760 #[cfg(feature = "static")]
18761 Font::SourceSans3ExtraBoldItalic,
18762 #[cfg(feature = "static")]
18763 Font::SourceSans3BlackItalic,
18764 #[cfg(feature = "variable")]
18765 Font::SourceSans3Variable,
18766 #[cfg(feature = "variable")]
18767 Font::SourceSans3ItalicVariable,
18768 #[cfg(feature = "static")]
18769 Font::SpaceGroteskLight,
18770 #[cfg(feature = "static")]
18771 Font::SpaceGroteskRegular,
18772 #[cfg(feature = "static")]
18773 Font::SpaceGroteskMedium,
18774 #[cfg(feature = "static")]
18775 Font::SpaceGroteskSemiBold,
18776 #[cfg(feature = "static")]
18777 Font::SpaceGroteskBold,
18778 #[cfg(feature = "variable")]
18779 Font::SpaceGroteskVariable,
18780 #[cfg(feature = "static")]
18781 Font::SpinnakerRegular,
18782 #[cfg(feature = "static")]
18783 Font::SplineSansLight,
18784 #[cfg(feature = "static")]
18785 Font::SplineSansRegular,
18786 #[cfg(feature = "static")]
18787 Font::SplineSansMedium,
18788 #[cfg(feature = "static")]
18789 Font::SplineSansSemiBold,
18790 #[cfg(feature = "static")]
18791 Font::SplineSansBold,
18792 #[cfg(feature = "variable")]
18793 Font::SplineSansVariable,
18794 #[cfg(feature = "static")]
18795 Font::StickRegular,
18796 #[cfg(feature = "static")]
18797 Font::StickNoBillsExtraLight,
18798 #[cfg(feature = "static")]
18799 Font::StickNoBillsLight,
18800 #[cfg(feature = "static")]
18801 Font::StickNoBillsRegular,
18802 #[cfg(feature = "static")]
18803 Font::StickNoBillsMedium,
18804 #[cfg(feature = "static")]
18805 Font::StickNoBillsSemiBold,
18806 #[cfg(feature = "static")]
18807 Font::StickNoBillsBold,
18808 #[cfg(feature = "static")]
18809 Font::StickNoBillsExtraBold,
18810 #[cfg(feature = "variable")]
18811 Font::StickNoBillsVariable,
18812 #[cfg(feature = "static")]
18813 Font::StraitRegular,
18814 #[cfg(feature = "static")]
18815 Font::StylishRegular,
18816 #[cfg(feature = "static")]
18817 Font::SulphurPointLight,
18818 #[cfg(feature = "static")]
18819 Font::SulphurPointRegular,
18820 #[cfg(feature = "static")]
18821 Font::SulphurPointBold,
18822 #[cfg(feature = "static")]
18823 Font::SunflowerLight,
18824 #[cfg(feature = "static")]
18825 Font::SunflowerMedium,
18826 #[cfg(feature = "static")]
18827 Font::SunflowerBold,
18828 #[cfg(feature = "static")]
18829 Font::SyncopateRegular,
18830 #[cfg(feature = "static")]
18831 Font::SyncopateBold,
18832 #[cfg(feature = "static")]
18833 Font::SyneRegular,
18834 #[cfg(feature = "static")]
18835 Font::SyneMedium,
18836 #[cfg(feature = "static")]
18837 Font::SyneSemiBold,
18838 #[cfg(feature = "static")]
18839 Font::SyneBold,
18840 #[cfg(feature = "static")]
18841 Font::SyneExtraBold,
18842 #[cfg(feature = "variable")]
18843 Font::SyneVariable,
18844 #[cfg(feature = "static")]
18845 Font::TacOneRegular,
18846 #[cfg(feature = "static")]
18847 Font::TajawalExtraLight,
18848 #[cfg(feature = "static")]
18849 Font::TajawalLight,
18850 #[cfg(feature = "static")]
18851 Font::TajawalRegular,
18852 #[cfg(feature = "static")]
18853 Font::TajawalMedium,
18854 #[cfg(feature = "static")]
18855 Font::TajawalBold,
18856 #[cfg(feature = "static")]
18857 Font::TajawalExtraBold,
18858 #[cfg(feature = "static")]
18859 Font::TajawalBlack,
18860 #[cfg(feature = "static")]
18861 Font::TauriRegular,
18862 #[cfg(feature = "static")]
18863 Font::TeachersRegular,
18864 #[cfg(feature = "static")]
18865 Font::TeachersMedium,
18866 #[cfg(feature = "static")]
18867 Font::TeachersSemiBold,
18868 #[cfg(feature = "static")]
18869 Font::TeachersBold,
18870 #[cfg(feature = "static")]
18871 Font::TeachersExtraBold,
18872 #[cfg(feature = "static")]
18873 Font::TeachersItalic,
18874 #[cfg(feature = "static")]
18875 Font::TeachersMediumItalic,
18876 #[cfg(feature = "static")]
18877 Font::TeachersSemiBoldItalic,
18878 #[cfg(feature = "static")]
18879 Font::TeachersBoldItalic,
18880 #[cfg(feature = "static")]
18881 Font::TeachersExtraBoldItalic,
18882 #[cfg(feature = "variable")]
18883 Font::TeachersVariable,
18884 #[cfg(feature = "variable")]
18885 Font::TeachersItalicVariable,
18886 #[cfg(feature = "static")]
18887 Font::TekoLight,
18888 #[cfg(feature = "static")]
18889 Font::TekoRegular,
18890 #[cfg(feature = "static")]
18891 Font::TekoMedium,
18892 #[cfg(feature = "static")]
18893 Font::TekoSemiBold,
18894 #[cfg(feature = "static")]
18895 Font::TekoBold,
18896 #[cfg(feature = "variable")]
18897 Font::TekoVariable,
18898 #[cfg(feature = "static")]
18899 Font::TelexRegular,
18900 #[cfg(feature = "static")]
18901 Font::TenaliRamakrishnaRegular,
18902 #[cfg(feature = "static")]
18903 Font::TenorSansRegular,
18904 #[cfg(feature = "static")]
18905 Font::TextMeOneRegular,
18906 #[cfg(feature = "static")]
18907 Font::ThasadithRegular,
18908 #[cfg(feature = "static")]
18909 Font::ThasadithItalic,
18910 #[cfg(feature = "static")]
18911 Font::ThasadithBold,
18912 #[cfg(feature = "static")]
18913 Font::ThasadithBoldItalic,
18914 #[cfg(feature = "static")]
18915 Font::TimmanaRegular,
18916 #[cfg(feature = "static")]
18917 Font::Tiny5Regular,
18918 #[cfg(feature = "static")]
18919 Font::TitilliumWebExtraLight,
18920 #[cfg(feature = "static")]
18921 Font::TitilliumWebExtraLightItalic,
18922 #[cfg(feature = "static")]
18923 Font::TitilliumWebLight,
18924 #[cfg(feature = "static")]
18925 Font::TitilliumWebLightItalic,
18926 #[cfg(feature = "static")]
18927 Font::TitilliumWebRegular,
18928 #[cfg(feature = "static")]
18929 Font::TitilliumWebItalic,
18930 #[cfg(feature = "static")]
18931 Font::TitilliumWebSemiBold,
18932 #[cfg(feature = "static")]
18933 Font::TitilliumWebSemiBoldItalic,
18934 #[cfg(feature = "static")]
18935 Font::TitilliumWebBold,
18936 #[cfg(feature = "static")]
18937 Font::TitilliumWebBoldItalic,
18938 #[cfg(feature = "static")]
18939 Font::TitilliumWebBlack,
18940 #[cfg(feature = "static")]
18941 Font::TomorrowThin,
18942 #[cfg(feature = "static")]
18943 Font::TomorrowThinItalic,
18944 #[cfg(feature = "static")]
18945 Font::TomorrowExtraLight,
18946 #[cfg(feature = "static")]
18947 Font::TomorrowExtraLightItalic,
18948 #[cfg(feature = "static")]
18949 Font::TomorrowLight,
18950 #[cfg(feature = "static")]
18951 Font::TomorrowLightItalic,
18952 #[cfg(feature = "static")]
18953 Font::TomorrowRegular,
18954 #[cfg(feature = "static")]
18955 Font::TomorrowItalic,
18956 #[cfg(feature = "static")]
18957 Font::TomorrowMedium,
18958 #[cfg(feature = "static")]
18959 Font::TomorrowMediumItalic,
18960 #[cfg(feature = "static")]
18961 Font::TomorrowSemiBold,
18962 #[cfg(feature = "static")]
18963 Font::TomorrowSemiBoldItalic,
18964 #[cfg(feature = "static")]
18965 Font::TomorrowBold,
18966 #[cfg(feature = "static")]
18967 Font::TomorrowBoldItalic,
18968 #[cfg(feature = "static")]
18969 Font::TomorrowExtraBold,
18970 #[cfg(feature = "static")]
18971 Font::TomorrowExtraBoldItalic,
18972 #[cfg(feature = "static")]
18973 Font::TomorrowBlack,
18974 #[cfg(feature = "static")]
18975 Font::TomorrowBlackItalic,
18976 #[cfg(feature = "static")]
18977 Font::TrispaceCondensedThin,
18978 #[cfg(feature = "static")]
18979 Font::TrispaceCondensedExtraLight,
18980 #[cfg(feature = "static")]
18981 Font::TrispaceCondensedLight,
18982 #[cfg(feature = "static")]
18983 Font::TrispaceCondensedRegular,
18984 #[cfg(feature = "static")]
18985 Font::TrispaceCondensedMedium,
18986 #[cfg(feature = "static")]
18987 Font::TrispaceCondensedSemiBold,
18988 #[cfg(feature = "static")]
18989 Font::TrispaceCondensedBold,
18990 #[cfg(feature = "static")]
18991 Font::TrispaceCondensedExtraBold,
18992 #[cfg(feature = "static")]
18993 Font::TrispaceSemiCondensedThin,
18994 #[cfg(feature = "static")]
18995 Font::TrispaceSemiCondensedExtraLight,
18996 #[cfg(feature = "static")]
18997 Font::TrispaceSemiCondensedLight,
18998 #[cfg(feature = "static")]
18999 Font::TrispaceSemiCondensedRegular,
19000 #[cfg(feature = "static")]
19001 Font::TrispaceSemiCondensedMedium,
19002 #[cfg(feature = "static")]
19003 Font::TrispaceSemiCondensedSemiBold,
19004 #[cfg(feature = "static")]
19005 Font::TrispaceSemiCondensedBold,
19006 #[cfg(feature = "static")]
19007 Font::TrispaceSemiCondensedExtraBold,
19008 #[cfg(feature = "static")]
19009 Font::TrispaceThin,
19010 #[cfg(feature = "static")]
19011 Font::TrispaceExtraLight,
19012 #[cfg(feature = "static")]
19013 Font::TrispaceLight,
19014 #[cfg(feature = "static")]
19015 Font::TrispaceRegular,
19016 #[cfg(feature = "static")]
19017 Font::TrispaceMedium,
19018 #[cfg(feature = "static")]
19019 Font::TrispaceSemiBold,
19020 #[cfg(feature = "static")]
19021 Font::TrispaceBold,
19022 #[cfg(feature = "static")]
19023 Font::TrispaceExtraBold,
19024 #[cfg(feature = "static")]
19025 Font::TrispaceSemiExpandedThin,
19026 #[cfg(feature = "static")]
19027 Font::TrispaceSemiExpandedExtraLight,
19028 #[cfg(feature = "static")]
19029 Font::TrispaceSemiExpandedLight,
19030 #[cfg(feature = "static")]
19031 Font::TrispaceSemiExpandedRegular,
19032 #[cfg(feature = "static")]
19033 Font::TrispaceSemiExpandedMedium,
19034 #[cfg(feature = "static")]
19035 Font::TrispaceSemiExpandedSemiBold,
19036 #[cfg(feature = "static")]
19037 Font::TrispaceSemiExpandedBold,
19038 #[cfg(feature = "static")]
19039 Font::TrispaceSemiExpandedExtraBold,
19040 #[cfg(feature = "static")]
19041 Font::TrispaceExpandedThin,
19042 #[cfg(feature = "static")]
19043 Font::TrispaceExpandedExtraLight,
19044 #[cfg(feature = "static")]
19045 Font::TrispaceExpandedLight,
19046 #[cfg(feature = "static")]
19047 Font::TrispaceExpandedRegular,
19048 #[cfg(feature = "static")]
19049 Font::TrispaceExpandedMedium,
19050 #[cfg(feature = "static")]
19051 Font::TrispaceExpandedSemiBold,
19052 #[cfg(feature = "static")]
19053 Font::TrispaceExpandedBold,
19054 #[cfg(feature = "static")]
19055 Font::TrispaceExpandedExtraBold,
19056 #[cfg(feature = "variable")]
19057 Font::TrispaceVariable,
19058 #[cfg(feature = "static")]
19059 Font::TruculentaCondensedThin,
19060 #[cfg(feature = "static")]
19061 Font::TruculentaCondensedExtraLight,
19062 #[cfg(feature = "static")]
19063 Font::TruculentaCondensedLight,
19064 #[cfg(feature = "static")]
19065 Font::TruculentaCondensedRegular,
19066 #[cfg(feature = "static")]
19067 Font::TruculentaCondensedMedium,
19068 #[cfg(feature = "static")]
19069 Font::TruculentaCondensedSemiBold,
19070 #[cfg(feature = "static")]
19071 Font::TruculentaCondensedBold,
19072 #[cfg(feature = "static")]
19073 Font::TruculentaCondensedExtraBold,
19074 #[cfg(feature = "static")]
19075 Font::TruculentaCondensedBlack,
19076 #[cfg(feature = "static")]
19077 Font::TruculentaSemiCondensedThin,
19078 #[cfg(feature = "static")]
19079 Font::TruculentaSemiCondensedExtraLight,
19080 #[cfg(feature = "static")]
19081 Font::TruculentaSemiCondensedLight,
19082 #[cfg(feature = "static")]
19083 Font::TruculentaSemiCondensedRegular,
19084 #[cfg(feature = "static")]
19085 Font::TruculentaSemiCondensedMedium,
19086 #[cfg(feature = "static")]
19087 Font::TruculentaSemiCondensedSemiBold,
19088 #[cfg(feature = "static")]
19089 Font::TruculentaSemiCondensedBold,
19090 #[cfg(feature = "static")]
19091 Font::TruculentaSemiCondensedExtraBold,
19092 #[cfg(feature = "static")]
19093 Font::TruculentaSemiCondensedBlack,
19094 #[cfg(feature = "static")]
19095 Font::TruculentaThin,
19096 #[cfg(feature = "static")]
19097 Font::TruculentaExtraLight,
19098 #[cfg(feature = "static")]
19099 Font::TruculentaLight,
19100 #[cfg(feature = "static")]
19101 Font::TruculentaRegular,
19102 #[cfg(feature = "static")]
19103 Font::TruculentaMedium,
19104 #[cfg(feature = "static")]
19105 Font::TruculentaSemiBold,
19106 #[cfg(feature = "static")]
19107 Font::TruculentaBold,
19108 #[cfg(feature = "static")]
19109 Font::TruculentaExtraBold,
19110 #[cfg(feature = "static")]
19111 Font::TruculentaBlack,
19112 #[cfg(feature = "static")]
19113 Font::TruculentaSemiExpandedThin,
19114 #[cfg(feature = "static")]
19115 Font::TruculentaSemiExpandedExtraLight,
19116 #[cfg(feature = "static")]
19117 Font::TruculentaSemiExpandedLight,
19118 #[cfg(feature = "static")]
19119 Font::TruculentaSemiExpandedRegular,
19120 #[cfg(feature = "static")]
19121 Font::TruculentaSemiExpandedMedium,
19122 #[cfg(feature = "static")]
19123 Font::TruculentaSemiExpandedSemiBold,
19124 #[cfg(feature = "static")]
19125 Font::TruculentaSemiExpandedBold,
19126 #[cfg(feature = "static")]
19127 Font::TruculentaSemiExpandedExtraBold,
19128 #[cfg(feature = "static")]
19129 Font::TruculentaSemiExpandedBlack,
19130 #[cfg(feature = "static")]
19131 Font::TruculentaExpandedThin,
19132 #[cfg(feature = "static")]
19133 Font::TruculentaExpandedExtraLight,
19134 #[cfg(feature = "static")]
19135 Font::TruculentaExpandedLight,
19136 #[cfg(feature = "static")]
19137 Font::TruculentaExpandedRegular,
19138 #[cfg(feature = "static")]
19139 Font::TruculentaExpandedMedium,
19140 #[cfg(feature = "static")]
19141 Font::TruculentaExpandedSemiBold,
19142 #[cfg(feature = "static")]
19143 Font::TruculentaExpandedBold,
19144 #[cfg(feature = "static")]
19145 Font::TruculentaExpandedExtraBold,
19146 #[cfg(feature = "static")]
19147 Font::TruculentaExpandedBlack,
19148 #[cfg(feature = "static")]
19149 Font::Truculenta18ptCondensedThin,
19150 #[cfg(feature = "static")]
19151 Font::Truculenta18ptCondensedExtraLight,
19152 #[cfg(feature = "static")]
19153 Font::Truculenta18ptCondensedLight,
19154 #[cfg(feature = "static")]
19155 Font::Truculenta18ptCondensedRegular,
19156 #[cfg(feature = "static")]
19157 Font::Truculenta18ptCondensedMedium,
19158 #[cfg(feature = "static")]
19159 Font::Truculenta18ptCondensedSemiBold,
19160 #[cfg(feature = "static")]
19161 Font::Truculenta18ptCondensedBold,
19162 #[cfg(feature = "static")]
19163 Font::Truculenta18ptCondensedExtraBold,
19164 #[cfg(feature = "static")]
19165 Font::Truculenta18ptCondensedBlack,
19166 #[cfg(feature = "static")]
19167 Font::Truculenta18ptSemiCondensedThin,
19168 #[cfg(feature = "static")]
19169 Font::Truculenta18ptSemiCondensedExtraLight,
19170 #[cfg(feature = "static")]
19171 Font::Truculenta18ptSemiCondensedLight,
19172 #[cfg(feature = "static")]
19173 Font::Truculenta18ptSemiCondensedRegular,
19174 #[cfg(feature = "static")]
19175 Font::Truculenta18ptSemiCondensedMedium,
19176 #[cfg(feature = "static")]
19177 Font::Truculenta18ptSemiCondensedSemiBold,
19178 #[cfg(feature = "static")]
19179 Font::Truculenta18ptSemiCondensedBold,
19180 #[cfg(feature = "static")]
19181 Font::Truculenta18ptSemiCondensedExtraBold,
19182 #[cfg(feature = "static")]
19183 Font::Truculenta18ptSemiCondensedBlack,
19184 #[cfg(feature = "static")]
19185 Font::Truculenta18ptThin,
19186 #[cfg(feature = "static")]
19187 Font::Truculenta18ptExtraLight,
19188 #[cfg(feature = "static")]
19189 Font::Truculenta18ptLight,
19190 #[cfg(feature = "static")]
19191 Font::Truculenta18ptRegular,
19192 #[cfg(feature = "static")]
19193 Font::Truculenta18ptMedium,
19194 #[cfg(feature = "static")]
19195 Font::Truculenta18ptSemiBold,
19196 #[cfg(feature = "static")]
19197 Font::Truculenta18ptBold,
19198 #[cfg(feature = "static")]
19199 Font::Truculenta18ptExtraBold,
19200 #[cfg(feature = "static")]
19201 Font::Truculenta18ptBlack,
19202 #[cfg(feature = "static")]
19203 Font::Truculenta18ptSemiExpandedThin,
19204 #[cfg(feature = "static")]
19205 Font::Truculenta18ptSemiExpandedExtraLight,
19206 #[cfg(feature = "static")]
19207 Font::Truculenta18ptSemiExpandedLight,
19208 #[cfg(feature = "static")]
19209 Font::Truculenta18ptSemiExpandedRegular,
19210 #[cfg(feature = "static")]
19211 Font::Truculenta18ptSemiExpandedMedium,
19212 #[cfg(feature = "static")]
19213 Font::Truculenta18ptSemiExpandedSemiBold,
19214 #[cfg(feature = "static")]
19215 Font::Truculenta18ptSemiExpandedBold,
19216 #[cfg(feature = "static")]
19217 Font::Truculenta18ptSemiExpandedExtraBold,
19218 #[cfg(feature = "static")]
19219 Font::Truculenta18ptSemiExpandedBlack,
19220 #[cfg(feature = "static")]
19221 Font::Truculenta18ptExpandedThin,
19222 #[cfg(feature = "static")]
19223 Font::Truculenta18ptExpandedExtraLight,
19224 #[cfg(feature = "static")]
19225 Font::Truculenta18ptExpandedLight,
19226 #[cfg(feature = "static")]
19227 Font::Truculenta18ptExpandedRegular,
19228 #[cfg(feature = "static")]
19229 Font::Truculenta18ptExpandedMedium,
19230 #[cfg(feature = "static")]
19231 Font::Truculenta18ptExpandedSemiBold,
19232 #[cfg(feature = "static")]
19233 Font::Truculenta18ptExpandedBold,
19234 #[cfg(feature = "static")]
19235 Font::Truculenta18ptExpandedExtraBold,
19236 #[cfg(feature = "static")]
19237 Font::Truculenta18ptExpandedBlack,
19238 #[cfg(feature = "static")]
19239 Font::Truculenta28ptCondensedThin,
19240 #[cfg(feature = "static")]
19241 Font::Truculenta28ptCondensedExtraLight,
19242 #[cfg(feature = "static")]
19243 Font::Truculenta28ptCondensedLight,
19244 #[cfg(feature = "static")]
19245 Font::Truculenta28ptCondensedRegular,
19246 #[cfg(feature = "static")]
19247 Font::Truculenta28ptCondensedMedium,
19248 #[cfg(feature = "static")]
19249 Font::Truculenta28ptCondensedSemiBold,
19250 #[cfg(feature = "static")]
19251 Font::Truculenta28ptCondensedBold,
19252 #[cfg(feature = "static")]
19253 Font::Truculenta28ptCondensedExtraBold,
19254 #[cfg(feature = "static")]
19255 Font::Truculenta28ptCondensedBlack,
19256 #[cfg(feature = "static")]
19257 Font::Truculenta28ptSemiCondensedThin,
19258 #[cfg(feature = "static")]
19259 Font::Truculenta28ptSemiCondensedExtraLight,
19260 #[cfg(feature = "static")]
19261 Font::Truculenta28ptSemiCondensedLight,
19262 #[cfg(feature = "static")]
19263 Font::Truculenta28ptSemiCondensedRegular,
19264 #[cfg(feature = "static")]
19265 Font::Truculenta28ptSemiCondensedMedium,
19266 #[cfg(feature = "static")]
19267 Font::Truculenta28ptSemiCondensedSemiBold,
19268 #[cfg(feature = "static")]
19269 Font::Truculenta28ptSemiCondensedBold,
19270 #[cfg(feature = "static")]
19271 Font::Truculenta28ptSemiCondensedExtraBold,
19272 #[cfg(feature = "static")]
19273 Font::Truculenta28ptSemiCondensedBlack,
19274 #[cfg(feature = "static")]
19275 Font::Truculenta28ptThin,
19276 #[cfg(feature = "static")]
19277 Font::Truculenta28ptExtraLight,
19278 #[cfg(feature = "static")]
19279 Font::Truculenta28ptLight,
19280 #[cfg(feature = "static")]
19281 Font::Truculenta28ptRegular,
19282 #[cfg(feature = "static")]
19283 Font::Truculenta28ptMedium,
19284 #[cfg(feature = "static")]
19285 Font::Truculenta28ptSemiBold,
19286 #[cfg(feature = "static")]
19287 Font::Truculenta28ptBold,
19288 #[cfg(feature = "static")]
19289 Font::Truculenta28ptExtraBold,
19290 #[cfg(feature = "static")]
19291 Font::Truculenta28ptBlack,
19292 #[cfg(feature = "static")]
19293 Font::Truculenta28ptSemiExpandedThin,
19294 #[cfg(feature = "static")]
19295 Font::Truculenta28ptSemiExpandedExtraLight,
19296 #[cfg(feature = "static")]
19297 Font::Truculenta28ptSemiExpandedLight,
19298 #[cfg(feature = "static")]
19299 Font::Truculenta28ptSemiExpandedRegular,
19300 #[cfg(feature = "static")]
19301 Font::Truculenta28ptSemiExpandedMedium,
19302 #[cfg(feature = "static")]
19303 Font::Truculenta28ptSemiExpandedSemiBold,
19304 #[cfg(feature = "static")]
19305 Font::Truculenta28ptSemiExpandedBold,
19306 #[cfg(feature = "static")]
19307 Font::Truculenta28ptSemiExpandedExtraBold,
19308 #[cfg(feature = "static")]
19309 Font::Truculenta28ptSemiExpandedBlack,
19310 #[cfg(feature = "static")]
19311 Font::Truculenta28ptExpandedThin,
19312 #[cfg(feature = "static")]
19313 Font::Truculenta28ptExpandedExtraLight,
19314 #[cfg(feature = "static")]
19315 Font::Truculenta28ptExpandedLight,
19316 #[cfg(feature = "static")]
19317 Font::Truculenta28ptExpandedRegular,
19318 #[cfg(feature = "static")]
19319 Font::Truculenta28ptExpandedMedium,
19320 #[cfg(feature = "static")]
19321 Font::Truculenta28ptExpandedSemiBold,
19322 #[cfg(feature = "static")]
19323 Font::Truculenta28ptExpandedBold,
19324 #[cfg(feature = "static")]
19325 Font::Truculenta28ptExpandedExtraBold,
19326 #[cfg(feature = "static")]
19327 Font::Truculenta28ptExpandedBlack,
19328 #[cfg(feature = "static")]
19329 Font::Truculenta48ptCondensedThin,
19330 #[cfg(feature = "static")]
19331 Font::Truculenta48ptCondensedExtraLight,
19332 #[cfg(feature = "static")]
19333 Font::Truculenta48ptCondensedLight,
19334 #[cfg(feature = "static")]
19335 Font::Truculenta48ptCondensedRegular,
19336 #[cfg(feature = "static")]
19337 Font::Truculenta48ptCondensedMedium,
19338 #[cfg(feature = "static")]
19339 Font::Truculenta48ptCondensedSemiBold,
19340 #[cfg(feature = "static")]
19341 Font::Truculenta48ptCondensedBold,
19342 #[cfg(feature = "static")]
19343 Font::Truculenta48ptCondensedExtraBold,
19344 #[cfg(feature = "static")]
19345 Font::Truculenta48ptCondensedBlack,
19346 #[cfg(feature = "static")]
19347 Font::Truculenta48ptSemiCondensedThin,
19348 #[cfg(feature = "static")]
19349 Font::Truculenta48ptSemiCondensedExtraLight,
19350 #[cfg(feature = "static")]
19351 Font::Truculenta48ptSemiCondensedLight,
19352 #[cfg(feature = "static")]
19353 Font::Truculenta48ptSemiCondensedRegular,
19354 #[cfg(feature = "static")]
19355 Font::Truculenta48ptSemiCondensedMedium,
19356 #[cfg(feature = "static")]
19357 Font::Truculenta48ptSemiCondensedSemiBold,
19358 #[cfg(feature = "static")]
19359 Font::Truculenta48ptSemiCondensedBold,
19360 #[cfg(feature = "static")]
19361 Font::Truculenta48ptSemiCondensedExtraBold,
19362 #[cfg(feature = "static")]
19363 Font::Truculenta48ptSemiCondensedBlack,
19364 #[cfg(feature = "static")]
19365 Font::Truculenta48ptThin,
19366 #[cfg(feature = "static")]
19367 Font::Truculenta48ptExtraLight,
19368 #[cfg(feature = "static")]
19369 Font::Truculenta48ptLight,
19370 #[cfg(feature = "static")]
19371 Font::Truculenta48ptRegular,
19372 #[cfg(feature = "static")]
19373 Font::Truculenta48ptMedium,
19374 #[cfg(feature = "static")]
19375 Font::Truculenta48ptSemiBold,
19376 #[cfg(feature = "static")]
19377 Font::Truculenta48ptBold,
19378 #[cfg(feature = "static")]
19379 Font::Truculenta48ptExtraBold,
19380 #[cfg(feature = "static")]
19381 Font::Truculenta48ptBlack,
19382 #[cfg(feature = "static")]
19383 Font::Truculenta48ptSemiExpandedThin,
19384 #[cfg(feature = "static")]
19385 Font::Truculenta48ptSemiExpandedExtraLight,
19386 #[cfg(feature = "static")]
19387 Font::Truculenta48ptSemiExpandedLight,
19388 #[cfg(feature = "static")]
19389 Font::Truculenta48ptSemiExpandedRegular,
19390 #[cfg(feature = "static")]
19391 Font::Truculenta48ptSemiExpandedMedium,
19392 #[cfg(feature = "static")]
19393 Font::Truculenta48ptSemiExpandedSemiBold,
19394 #[cfg(feature = "static")]
19395 Font::Truculenta48ptSemiExpandedBold,
19396 #[cfg(feature = "static")]
19397 Font::Truculenta48ptSemiExpandedExtraBold,
19398 #[cfg(feature = "static")]
19399 Font::Truculenta48ptSemiExpandedBlack,
19400 #[cfg(feature = "static")]
19401 Font::Truculenta48ptExpandedThin,
19402 #[cfg(feature = "static")]
19403 Font::Truculenta48ptExpandedExtraLight,
19404 #[cfg(feature = "static")]
19405 Font::Truculenta48ptExpandedLight,
19406 #[cfg(feature = "static")]
19407 Font::Truculenta48ptExpandedRegular,
19408 #[cfg(feature = "static")]
19409 Font::Truculenta48ptExpandedMedium,
19410 #[cfg(feature = "static")]
19411 Font::Truculenta48ptExpandedSemiBold,
19412 #[cfg(feature = "static")]
19413 Font::Truculenta48ptExpandedBold,
19414 #[cfg(feature = "static")]
19415 Font::Truculenta48ptExpandedExtraBold,
19416 #[cfg(feature = "static")]
19417 Font::Truculenta48ptExpandedBlack,
19418 #[cfg(feature = "static")]
19419 Font::Truculenta60ptCondensedThin,
19420 #[cfg(feature = "static")]
19421 Font::Truculenta60ptCondensedExtraLight,
19422 #[cfg(feature = "static")]
19423 Font::Truculenta60ptCondensedLight,
19424 #[cfg(feature = "static")]
19425 Font::Truculenta60ptCondensedRegular,
19426 #[cfg(feature = "static")]
19427 Font::Truculenta60ptCondensedMedium,
19428 #[cfg(feature = "static")]
19429 Font::Truculenta60ptCondensedSemiBold,
19430 #[cfg(feature = "static")]
19431 Font::Truculenta60ptCondensedBold,
19432 #[cfg(feature = "static")]
19433 Font::Truculenta60ptCondensedExtraBold,
19434 #[cfg(feature = "static")]
19435 Font::Truculenta60ptCondensedBlack,
19436 #[cfg(feature = "static")]
19437 Font::Truculenta60ptSemiCondensedThin,
19438 #[cfg(feature = "static")]
19439 Font::Truculenta60ptSemiCondensedExtraLight,
19440 #[cfg(feature = "static")]
19441 Font::Truculenta60ptSemiCondensedLight,
19442 #[cfg(feature = "static")]
19443 Font::Truculenta60ptSemiCondensedRegular,
19444 #[cfg(feature = "static")]
19445 Font::Truculenta60ptSemiCondensedMedium,
19446 #[cfg(feature = "static")]
19447 Font::Truculenta60ptSemiCondensedSemiBold,
19448 #[cfg(feature = "static")]
19449 Font::Truculenta60ptSemiCondensedBold,
19450 #[cfg(feature = "static")]
19451 Font::Truculenta60ptSemiCondensedExtraBold,
19452 #[cfg(feature = "static")]
19453 Font::Truculenta60ptSemiCondensedBlack,
19454 #[cfg(feature = "static")]
19455 Font::Truculenta60ptThin,
19456 #[cfg(feature = "static")]
19457 Font::Truculenta60ptExtraLight,
19458 #[cfg(feature = "static")]
19459 Font::Truculenta60ptLight,
19460 #[cfg(feature = "static")]
19461 Font::Truculenta60ptRegular,
19462 #[cfg(feature = "static")]
19463 Font::Truculenta60ptMedium,
19464 #[cfg(feature = "static")]
19465 Font::Truculenta60ptSemiBold,
19466 #[cfg(feature = "static")]
19467 Font::Truculenta60ptBold,
19468 #[cfg(feature = "static")]
19469 Font::Truculenta60ptExtraBold,
19470 #[cfg(feature = "static")]
19471 Font::Truculenta60ptBlack,
19472 #[cfg(feature = "static")]
19473 Font::Truculenta60ptSemiExpandedThin,
19474 #[cfg(feature = "static")]
19475 Font::Truculenta60ptSemiExpandedExtraLight,
19476 #[cfg(feature = "static")]
19477 Font::Truculenta60ptSemiExpandedLight,
19478 #[cfg(feature = "static")]
19479 Font::Truculenta60ptSemiExpandedRegular,
19480 #[cfg(feature = "static")]
19481 Font::Truculenta60ptSemiExpandedMedium,
19482 #[cfg(feature = "static")]
19483 Font::Truculenta60ptSemiExpandedSemiBold,
19484 #[cfg(feature = "static")]
19485 Font::Truculenta60ptSemiExpandedBold,
19486 #[cfg(feature = "static")]
19487 Font::Truculenta60ptSemiExpandedExtraBold,
19488 #[cfg(feature = "static")]
19489 Font::Truculenta60ptSemiExpandedBlack,
19490 #[cfg(feature = "static")]
19491 Font::Truculenta60ptExpandedThin,
19492 #[cfg(feature = "static")]
19493 Font::Truculenta60ptExpandedExtraLight,
19494 #[cfg(feature = "static")]
19495 Font::Truculenta60ptExpandedLight,
19496 #[cfg(feature = "static")]
19497 Font::Truculenta60ptExpandedRegular,
19498 #[cfg(feature = "static")]
19499 Font::Truculenta60ptExpandedMedium,
19500 #[cfg(feature = "static")]
19501 Font::Truculenta60ptExpandedSemiBold,
19502 #[cfg(feature = "static")]
19503 Font::Truculenta60ptExpandedBold,
19504 #[cfg(feature = "static")]
19505 Font::Truculenta60ptExpandedExtraBold,
19506 #[cfg(feature = "static")]
19507 Font::Truculenta60ptExpandedBlack,
19508 #[cfg(feature = "variable")]
19509 Font::TruculentaVariable,
19510 #[cfg(feature = "static")]
19511 Font::TsukimiRoundedLight,
19512 #[cfg(feature = "static")]
19513 Font::TsukimiRoundedRegular,
19514 #[cfg(feature = "static")]
19515 Font::TsukimiRoundedMedium,
19516 #[cfg(feature = "static")]
19517 Font::TsukimiRoundedSemiBold,
19518 #[cfg(feature = "static")]
19519 Font::TsukimiRoundedBold,
19520 #[cfg(feature = "static")]
19521 Font::UbuntuLight,
19522 #[cfg(feature = "static")]
19523 Font::UbuntuLightItalic,
19524 #[cfg(feature = "static")]
19525 Font::UbuntuRegular,
19526 #[cfg(feature = "static")]
19527 Font::UbuntuItalic,
19528 #[cfg(feature = "static")]
19529 Font::UbuntuMedium,
19530 #[cfg(feature = "static")]
19531 Font::UbuntuMediumItalic,
19532 #[cfg(feature = "static")]
19533 Font::UbuntuBold,
19534 #[cfg(feature = "static")]
19535 Font::UbuntuBoldItalic,
19536 #[cfg(feature = "static")]
19537 Font::UbuntuCondensedRegular,
19538 #[cfg(feature = "static")]
19539 Font::UbuntuSansCondensedThin,
19540 #[cfg(feature = "static")]
19541 Font::UbuntuSansCondensedExtraLight,
19542 #[cfg(feature = "static")]
19543 Font::UbuntuSansCondensedLight,
19544 #[cfg(feature = "static")]
19545 Font::UbuntuSansCondensedRegular,
19546 #[cfg(feature = "static")]
19547 Font::UbuntuSansCondensedMedium,
19548 #[cfg(feature = "static")]
19549 Font::UbuntuSansCondensedSemiBold,
19550 #[cfg(feature = "static")]
19551 Font::UbuntuSansCondensedBold,
19552 #[cfg(feature = "static")]
19553 Font::UbuntuSansCondensedExtraBold,
19554 #[cfg(feature = "static")]
19555 Font::UbuntuSansSemiCondensedThin,
19556 #[cfg(feature = "static")]
19557 Font::UbuntuSansSemiCondensedExtraLight,
19558 #[cfg(feature = "static")]
19559 Font::UbuntuSansSemiCondensedLight,
19560 #[cfg(feature = "static")]
19561 Font::UbuntuSansSemiCondensedRegular,
19562 #[cfg(feature = "static")]
19563 Font::UbuntuSansSemiCondensedMedium,
19564 #[cfg(feature = "static")]
19565 Font::UbuntuSansSemiCondensedSemiBold,
19566 #[cfg(feature = "static")]
19567 Font::UbuntuSansSemiCondensedBold,
19568 #[cfg(feature = "static")]
19569 Font::UbuntuSansSemiCondensedExtraBold,
19570 #[cfg(feature = "static")]
19571 Font::UbuntuSansThin,
19572 #[cfg(feature = "static")]
19573 Font::UbuntuSansExtraLight,
19574 #[cfg(feature = "static")]
19575 Font::UbuntuSansLight,
19576 #[cfg(feature = "static")]
19577 Font::UbuntuSansRegular,
19578 #[cfg(feature = "static")]
19579 Font::UbuntuSansMedium,
19580 #[cfg(feature = "static")]
19581 Font::UbuntuSansSemiBold,
19582 #[cfg(feature = "static")]
19583 Font::UbuntuSansBold,
19584 #[cfg(feature = "static")]
19585 Font::UbuntuSansExtraBold,
19586 #[cfg(feature = "static")]
19587 Font::UbuntuSansCondensedThinItalic,
19588 #[cfg(feature = "static")]
19589 Font::UbuntuSansCondensedExtraLightItalic,
19590 #[cfg(feature = "static")]
19591 Font::UbuntuSansCondensedLightItalic,
19592 #[cfg(feature = "static")]
19593 Font::UbuntuSansCondensedItalic,
19594 #[cfg(feature = "static")]
19595 Font::UbuntuSansCondensedMediumItalic,
19596 #[cfg(feature = "static")]
19597 Font::UbuntuSansCondensedSemiBoldItalic,
19598 #[cfg(feature = "static")]
19599 Font::UbuntuSansCondensedBoldItalic,
19600 #[cfg(feature = "static")]
19601 Font::UbuntuSansCondensedExtraBoldItalic,
19602 #[cfg(feature = "static")]
19603 Font::UbuntuSansSemiCondensedThinItalic,
19604 #[cfg(feature = "static")]
19605 Font::UbuntuSansSemiCondensedExtraLightItalic,
19606 #[cfg(feature = "static")]
19607 Font::UbuntuSansSemiCondensedLightItalic,
19608 #[cfg(feature = "static")]
19609 Font::UbuntuSansSemiCondensedItalic,
19610 #[cfg(feature = "static")]
19611 Font::UbuntuSansSemiCondensedMediumItalic,
19612 #[cfg(feature = "static")]
19613 Font::UbuntuSansSemiCondensedSemiBoldItalic,
19614 #[cfg(feature = "static")]
19615 Font::UbuntuSansSemiCondensedBoldItalic,
19616 #[cfg(feature = "static")]
19617 Font::UbuntuSansSemiCondensedExtraBoldItalic,
19618 #[cfg(feature = "static")]
19619 Font::UbuntuSansThinItalic,
19620 #[cfg(feature = "static")]
19621 Font::UbuntuSansExtraLightItalic,
19622 #[cfg(feature = "static")]
19623 Font::UbuntuSansLightItalic,
19624 #[cfg(feature = "static")]
19625 Font::UbuntuSansItalic,
19626 #[cfg(feature = "static")]
19627 Font::UbuntuSansMediumItalic,
19628 #[cfg(feature = "static")]
19629 Font::UbuntuSansSemiBoldItalic,
19630 #[cfg(feature = "static")]
19631 Font::UbuntuSansBoldItalic,
19632 #[cfg(feature = "static")]
19633 Font::UbuntuSansExtraBoldItalic,
19634 #[cfg(feature = "variable")]
19635 Font::UbuntuSansVariable,
19636 #[cfg(feature = "variable")]
19637 Font::UbuntuSansItalicVariable,
19638 #[cfg(feature = "static")]
19639 Font::UnboundedExtraLight,
19640 #[cfg(feature = "static")]
19641 Font::UnboundedLight,
19642 #[cfg(feature = "static")]
19643 Font::UnboundedRegular,
19644 #[cfg(feature = "static")]
19645 Font::UnboundedMedium,
19646 #[cfg(feature = "static")]
19647 Font::UnboundedSemiBold,
19648 #[cfg(feature = "static")]
19649 Font::UnboundedBold,
19650 #[cfg(feature = "static")]
19651 Font::UnboundedExtraBold,
19652 #[cfg(feature = "static")]
19653 Font::UnboundedBlack,
19654 #[cfg(feature = "variable")]
19655 Font::UnboundedVariable,
19656 #[cfg(feature = "static")]
19657 Font::UrbanistThin,
19658 #[cfg(feature = "static")]
19659 Font::UrbanistExtraLight,
19660 #[cfg(feature = "static")]
19661 Font::UrbanistLight,
19662 #[cfg(feature = "static")]
19663 Font::UrbanistRegular,
19664 #[cfg(feature = "static")]
19665 Font::UrbanistMedium,
19666 #[cfg(feature = "static")]
19667 Font::UrbanistSemiBold,
19668 #[cfg(feature = "static")]
19669 Font::UrbanistBold,
19670 #[cfg(feature = "static")]
19671 Font::UrbanistExtraBold,
19672 #[cfg(feature = "static")]
19673 Font::UrbanistBlack,
19674 #[cfg(feature = "static")]
19675 Font::UrbanistThinItalic,
19676 #[cfg(feature = "static")]
19677 Font::UrbanistExtraLightItalic,
19678 #[cfg(feature = "static")]
19679 Font::UrbanistLightItalic,
19680 #[cfg(feature = "static")]
19681 Font::UrbanistItalic,
19682 #[cfg(feature = "static")]
19683 Font::UrbanistMediumItalic,
19684 #[cfg(feature = "static")]
19685 Font::UrbanistSemiBoldItalic,
19686 #[cfg(feature = "static")]
19687 Font::UrbanistBoldItalic,
19688 #[cfg(feature = "static")]
19689 Font::UrbanistExtraBoldItalic,
19690 #[cfg(feature = "static")]
19691 Font::UrbanistBlackItalic,
19692 #[cfg(feature = "variable")]
19693 Font::UrbanistVariable,
19694 #[cfg(feature = "variable")]
19695 Font::UrbanistItalicVariable,
19696 #[cfg(feature = "static")]
19697 Font::VarelaRegular,
19698 #[cfg(feature = "static")]
19699 Font::VarelaRoundRegular,
19700 #[cfg(feature = "static")]
19701 Font::VartaLight,
19702 #[cfg(feature = "static")]
19703 Font::VartaRegular,
19704 #[cfg(feature = "static")]
19705 Font::VartaMedium,
19706 #[cfg(feature = "static")]
19707 Font::VartaSemiBold,
19708 #[cfg(feature = "static")]
19709 Font::VartaBold,
19710 #[cfg(feature = "variable")]
19711 Font::VartaVariable,
19712 #[cfg(feature = "static")]
19713 Font::VazirmatnThin,
19714 #[cfg(feature = "static")]
19715 Font::VazirmatnExtraLight,
19716 #[cfg(feature = "static")]
19717 Font::VazirmatnLight,
19718 #[cfg(feature = "static")]
19719 Font::VazirmatnRegular,
19720 #[cfg(feature = "static")]
19721 Font::VazirmatnMedium,
19722 #[cfg(feature = "static")]
19723 Font::VazirmatnSemiBold,
19724 #[cfg(feature = "static")]
19725 Font::VazirmatnBold,
19726 #[cfg(feature = "static")]
19727 Font::VazirmatnExtraBold,
19728 #[cfg(feature = "static")]
19729 Font::VazirmatnBlack,
19730 #[cfg(feature = "variable")]
19731 Font::VazirmatnVariable,
19732 #[cfg(feature = "static")]
19733 Font::VigaRegular,
19734 #[cfg(feature = "static")]
19735 Font::VocesRegular,
19736 #[cfg(feature = "static")]
19737 Font::VoltaireRegular,
19738 #[cfg(feature = "static")]
19739 Font::WendyOneRegular,
19740 #[cfg(feature = "static")]
19741 Font::WireOneRegular,
19742 #[cfg(feature = "static")]
19743 Font::WixMadeforDisplayRegular,
19744 #[cfg(feature = "static")]
19745 Font::WixMadeforDisplayMedium,
19746 #[cfg(feature = "static")]
19747 Font::WixMadeforDisplaySemiBold,
19748 #[cfg(feature = "static")]
19749 Font::WixMadeforDisplayBold,
19750 #[cfg(feature = "static")]
19751 Font::WixMadeforDisplayExtraBold,
19752 #[cfg(feature = "variable")]
19753 Font::WixMadeforDisplayVariable,
19754 #[cfg(feature = "static")]
19755 Font::WixMadeforTextRegular,
19756 #[cfg(feature = "static")]
19757 Font::WixMadeforTextItalic,
19758 #[cfg(feature = "static")]
19759 Font::WixMadeforTextMedium,
19760 #[cfg(feature = "static")]
19761 Font::WixMadeforTextMediumItalic,
19762 #[cfg(feature = "static")]
19763 Font::WixMadeforTextSemiBold,
19764 #[cfg(feature = "static")]
19765 Font::WixMadeforTextSemiBoldItalic,
19766 #[cfg(feature = "static")]
19767 Font::WixMadeforTextBold,
19768 #[cfg(feature = "static")]
19769 Font::WixMadeforTextBoldItalic,
19770 #[cfg(feature = "static")]
19771 Font::WixMadeforTextExtraBold,
19772 #[cfg(feature = "static")]
19773 Font::WixMadeforTextExtraBoldItalic,
19774 #[cfg(feature = "variable")]
19775 Font::WixMadeforTextVariable,
19776 #[cfg(feature = "variable")]
19777 Font::WixMadeforTextItalicVariable,
19778 #[cfg(feature = "static")]
19779 Font::WorkSansThin,
19780 #[cfg(feature = "static")]
19781 Font::WorkSansExtraLight,
19782 #[cfg(feature = "static")]
19783 Font::WorkSansLight,
19784 #[cfg(feature = "static")]
19785 Font::WorkSansRegular,
19786 #[cfg(feature = "static")]
19787 Font::WorkSansMedium,
19788 #[cfg(feature = "static")]
19789 Font::WorkSansSemiBold,
19790 #[cfg(feature = "static")]
19791 Font::WorkSansBold,
19792 #[cfg(feature = "static")]
19793 Font::WorkSansExtraBold,
19794 #[cfg(feature = "static")]
19795 Font::WorkSansBlack,
19796 #[cfg(feature = "static")]
19797 Font::WorkSansThinItalic,
19798 #[cfg(feature = "static")]
19799 Font::WorkSansExtraLightItalic,
19800 #[cfg(feature = "static")]
19801 Font::WorkSansLightItalic,
19802 #[cfg(feature = "static")]
19803 Font::WorkSansItalic,
19804 #[cfg(feature = "static")]
19805 Font::WorkSansMediumItalic,
19806 #[cfg(feature = "static")]
19807 Font::WorkSansSemiBoldItalic,
19808 #[cfg(feature = "static")]
19809 Font::WorkSansBoldItalic,
19810 #[cfg(feature = "static")]
19811 Font::WorkSansExtraBoldItalic,
19812 #[cfg(feature = "static")]
19813 Font::WorkSansBlackItalic,
19814 #[cfg(feature = "variable")]
19815 Font::WorkSansVariable,
19816 #[cfg(feature = "variable")]
19817 Font::WorkSansItalicVariable,
19818 #[cfg(feature = "static")]
19819 Font::YaldeviExtraLight,
19820 #[cfg(feature = "static")]
19821 Font::YaldeviLight,
19822 #[cfg(feature = "static")]
19823 Font::YaldeviRegular,
19824 #[cfg(feature = "static")]
19825 Font::YaldeviMedium,
19826 #[cfg(feature = "static")]
19827 Font::YaldeviSemiBold,
19828 #[cfg(feature = "static")]
19829 Font::YaldeviBold,
19830 #[cfg(feature = "variable")]
19831 Font::YaldeviVariable,
19832 #[cfg(feature = "static")]
19833 Font::YanoneKaffeesatzExtraLight,
19834 #[cfg(feature = "static")]
19835 Font::YanoneKaffeesatzLight,
19836 #[cfg(feature = "static")]
19837 Font::YanoneKaffeesatzRegular,
19838 #[cfg(feature = "static")]
19839 Font::YanoneKaffeesatzMedium,
19840 #[cfg(feature = "static")]
19841 Font::YanoneKaffeesatzSemiBold,
19842 #[cfg(feature = "static")]
19843 Font::YanoneKaffeesatzBold,
19844 #[cfg(feature = "variable")]
19845 Font::YanoneKaffeesatzVariable,
19846 #[cfg(feature = "static")]
19847 Font::YantramanavThin,
19848 #[cfg(feature = "static")]
19849 Font::YantramanavLight,
19850 #[cfg(feature = "static")]
19851 Font::YantramanavRegular,
19852 #[cfg(feature = "static")]
19853 Font::YantramanavMedium,
19854 #[cfg(feature = "static")]
19855 Font::YantramanavBold,
19856 #[cfg(feature = "static")]
19857 Font::YantramanavBlack,
19858 #[cfg(feature = "static")]
19859 Font::YsabeauThin,
19860 #[cfg(feature = "static")]
19861 Font::YsabeauExtraLight,
19862 #[cfg(feature = "static")]
19863 Font::YsabeauLight,
19864 #[cfg(feature = "static")]
19865 Font::YsabeauRegular,
19866 #[cfg(feature = "static")]
19867 Font::YsabeauMedium,
19868 #[cfg(feature = "static")]
19869 Font::YsabeauSemiBold,
19870 #[cfg(feature = "static")]
19871 Font::YsabeauBold,
19872 #[cfg(feature = "static")]
19873 Font::YsabeauExtraBold,
19874 #[cfg(feature = "static")]
19875 Font::YsabeauBlack,
19876 #[cfg(feature = "static")]
19877 Font::YsabeauThinItalic,
19878 #[cfg(feature = "static")]
19879 Font::YsabeauExtraLightItalic,
19880 #[cfg(feature = "static")]
19881 Font::YsabeauLightItalic,
19882 #[cfg(feature = "static")]
19883 Font::YsabeauItalic,
19884 #[cfg(feature = "static")]
19885 Font::YsabeauMediumItalic,
19886 #[cfg(feature = "static")]
19887 Font::YsabeauSemiBoldItalic,
19888 #[cfg(feature = "static")]
19889 Font::YsabeauBoldItalic,
19890 #[cfg(feature = "static")]
19891 Font::YsabeauExtraBoldItalic,
19892 #[cfg(feature = "static")]
19893 Font::YsabeauBlackItalic,
19894 #[cfg(feature = "variable")]
19895 Font::YsabeauVariable,
19896 #[cfg(feature = "variable")]
19897 Font::YsabeauItalicVariable,
19898 #[cfg(feature = "static")]
19899 Font::YsabeauInfantThin,
19900 #[cfg(feature = "static")]
19901 Font::YsabeauInfantExtraLight,
19902 #[cfg(feature = "static")]
19903 Font::YsabeauInfantLight,
19904 #[cfg(feature = "static")]
19905 Font::YsabeauInfantRegular,
19906 #[cfg(feature = "static")]
19907 Font::YsabeauInfantMedium,
19908 #[cfg(feature = "static")]
19909 Font::YsabeauInfantSemiBold,
19910 #[cfg(feature = "static")]
19911 Font::YsabeauInfantBold,
19912 #[cfg(feature = "static")]
19913 Font::YsabeauInfantExtraBold,
19914 #[cfg(feature = "static")]
19915 Font::YsabeauInfantBlack,
19916 #[cfg(feature = "static")]
19917 Font::YsabeauInfantThinItalic,
19918 #[cfg(feature = "static")]
19919 Font::YsabeauInfantExtraLightItalic,
19920 #[cfg(feature = "static")]
19921 Font::YsabeauInfantLightItalic,
19922 #[cfg(feature = "static")]
19923 Font::YsabeauInfantItalic,
19924 #[cfg(feature = "static")]
19925 Font::YsabeauInfantMediumItalic,
19926 #[cfg(feature = "static")]
19927 Font::YsabeauInfantSemiBoldItalic,
19928 #[cfg(feature = "static")]
19929 Font::YsabeauInfantBoldItalic,
19930 #[cfg(feature = "static")]
19931 Font::YsabeauInfantExtraBoldItalic,
19932 #[cfg(feature = "static")]
19933 Font::YsabeauInfantBlackItalic,
19934 #[cfg(feature = "variable")]
19935 Font::YsabeauInfantVariable,
19936 #[cfg(feature = "variable")]
19937 Font::YsabeauInfantItalicVariable,
19938 #[cfg(feature = "static")]
19939 Font::YsabeauOfficeThin,
19940 #[cfg(feature = "static")]
19941 Font::YsabeauOfficeExtraLight,
19942 #[cfg(feature = "static")]
19943 Font::YsabeauOfficeLight,
19944 #[cfg(feature = "static")]
19945 Font::YsabeauOfficeRegular,
19946 #[cfg(feature = "static")]
19947 Font::YsabeauOfficeMedium,
19948 #[cfg(feature = "static")]
19949 Font::YsabeauOfficeSemiBold,
19950 #[cfg(feature = "static")]
19951 Font::YsabeauOfficeBold,
19952 #[cfg(feature = "static")]
19953 Font::YsabeauOfficeExtraBold,
19954 #[cfg(feature = "static")]
19955 Font::YsabeauOfficeBlack,
19956 #[cfg(feature = "static")]
19957 Font::YsabeauOfficeThinItalic,
19958 #[cfg(feature = "static")]
19959 Font::YsabeauOfficeExtraLightItalic,
19960 #[cfg(feature = "static")]
19961 Font::YsabeauOfficeLightItalic,
19962 #[cfg(feature = "static")]
19963 Font::YsabeauOfficeItalic,
19964 #[cfg(feature = "static")]
19965 Font::YsabeauOfficeMediumItalic,
19966 #[cfg(feature = "static")]
19967 Font::YsabeauOfficeSemiBoldItalic,
19968 #[cfg(feature = "static")]
19969 Font::YsabeauOfficeBoldItalic,
19970 #[cfg(feature = "static")]
19971 Font::YsabeauOfficeExtraBoldItalic,
19972 #[cfg(feature = "static")]
19973 Font::YsabeauOfficeBlackItalic,
19974 #[cfg(feature = "variable")]
19975 Font::YsabeauOfficeVariable,
19976 #[cfg(feature = "variable")]
19977 Font::YsabeauOfficeItalicVariable,
19978 #[cfg(feature = "static")]
19979 Font::YsabeauSCThin,
19980 #[cfg(feature = "static")]
19981 Font::YsabeauSCExtraLight,
19982 #[cfg(feature = "static")]
19983 Font::YsabeauSCLight,
19984 #[cfg(feature = "static")]
19985 Font::YsabeauSCRegular,
19986 #[cfg(feature = "static")]
19987 Font::YsabeauSCMedium,
19988 #[cfg(feature = "static")]
19989 Font::YsabeauSCSemiBold,
19990 #[cfg(feature = "static")]
19991 Font::YsabeauSCBold,
19992 #[cfg(feature = "static")]
19993 Font::YsabeauSCExtraBold,
19994 #[cfg(feature = "static")]
19995 Font::YsabeauSCBlack,
19996 #[cfg(feature = "variable")]
19997 Font::YsabeauSCVariable,
19998 #[cfg(feature = "static")]
19999 Font::YuseiMagicRegular,
20000 #[cfg(feature = "static")]
20001 Font::ZCOOLKuaiLeRegular,
20002 #[cfg(feature = "static")]
20003 Font::ZCOOLQingKeHuangYouRegular,
20004 #[cfg(feature = "static")]
20005 Font::ZCOOLXiaoWeiRegular,
20006 #[cfg(feature = "static")]
20007 Font::ZainExtraLight,
20008 #[cfg(feature = "static")]
20009 Font::ZainLight,
20010 #[cfg(feature = "static")]
20011 Font::ZainRegular,
20012 #[cfg(feature = "static")]
20013 Font::ZainBold,
20014 #[cfg(feature = "static")]
20015 Font::ZainExtraBold,
20016 #[cfg(feature = "static")]
20017 Font::ZainBlack,
20018 #[cfg(feature = "static")]
20019 Font::ZenKakuGothicAntiqueLight,
20020 #[cfg(feature = "static")]
20021 Font::ZenKakuGothicAntiqueRegular,
20022 #[cfg(feature = "static")]
20023 Font::ZenKakuGothicAntiqueMedium,
20024 #[cfg(feature = "static")]
20025 Font::ZenKakuGothicAntiqueBold,
20026 #[cfg(feature = "static")]
20027 Font::ZenKakuGothicAntiqueBlack,
20028 #[cfg(feature = "static")]
20029 Font::ZenKakuGothicNewLight,
20030 #[cfg(feature = "static")]
20031 Font::ZenKakuGothicNewRegular,
20032 #[cfg(feature = "static")]
20033 Font::ZenKakuGothicNewMedium,
20034 #[cfg(feature = "static")]
20035 Font::ZenKakuGothicNewBold,
20036 #[cfg(feature = "static")]
20037 Font::ZenKakuGothicNewBlack,
20038 #[cfg(feature = "static")]
20039 Font::ZenKurenaidoRegular,
20040 #[cfg(feature = "static")]
20041 Font::ZenMaruGothicLight,
20042 #[cfg(feature = "static")]
20043 Font::ZenMaruGothicRegular,
20044 #[cfg(feature = "static")]
20045 Font::ZenMaruGothicMedium,
20046 #[cfg(feature = "static")]
20047 Font::ZenMaruGothicBold,
20048 #[cfg(feature = "static")]
20049 Font::ZenMaruGothicBlack,
20050 ]
20051 }
20052 Category::Serif => {
20053 vec![
20054 #[cfg(feature = "static")]
20055 Font::AbhayaLibreRegular,
20056 #[cfg(feature = "static")]
20057 Font::AbhayaLibreMedium,
20058 #[cfg(feature = "static")]
20059 Font::AbhayaLibreSemiBold,
20060 #[cfg(feature = "static")]
20061 Font::AbhayaLibreBold,
20062 #[cfg(feature = "static")]
20063 Font::AbhayaLibreExtraBold,
20064 #[cfg(feature = "static")]
20065 Font::AbyssinicaSILRegular,
20066 #[cfg(feature = "static")]
20067 Font::AdaminaRegular,
20068 #[cfg(feature = "static")]
20069 Font::AlegreyaRegular,
20070 #[cfg(feature = "static")]
20071 Font::AlegreyaMedium,
20072 #[cfg(feature = "static")]
20073 Font::AlegreyaSemiBold,
20074 #[cfg(feature = "static")]
20075 Font::AlegreyaBold,
20076 #[cfg(feature = "static")]
20077 Font::AlegreyaExtraBold,
20078 #[cfg(feature = "static")]
20079 Font::AlegreyaBlack,
20080 #[cfg(feature = "static")]
20081 Font::AlegreyaItalic,
20082 #[cfg(feature = "static")]
20083 Font::AlegreyaMediumItalic,
20084 #[cfg(feature = "static")]
20085 Font::AlegreyaSemiBoldItalic,
20086 #[cfg(feature = "static")]
20087 Font::AlegreyaBoldItalic,
20088 #[cfg(feature = "static")]
20089 Font::AlegreyaExtraBoldItalic,
20090 #[cfg(feature = "static")]
20091 Font::AlegreyaBlackItalic,
20092 #[cfg(feature = "variable")]
20093 Font::AlegreyaVariable,
20094 #[cfg(feature = "variable")]
20095 Font::AlegreyaItalicVariable,
20096 #[cfg(feature = "static")]
20097 Font::AlegreyaSCRegular,
20098 #[cfg(feature = "static")]
20099 Font::AlegreyaSCItalic,
20100 #[cfg(feature = "static")]
20101 Font::AlegreyaSCMedium,
20102 #[cfg(feature = "static")]
20103 Font::AlegreyaSCMediumItalic,
20104 #[cfg(feature = "static")]
20105 Font::AlegreyaSCBold,
20106 #[cfg(feature = "static")]
20107 Font::AlegreyaSCBoldItalic,
20108 #[cfg(feature = "static")]
20109 Font::AlegreyaSCExtraBold,
20110 #[cfg(feature = "static")]
20111 Font::AlegreyaSCExtraBoldItalic,
20112 #[cfg(feature = "static")]
20113 Font::AlegreyaSCBlack,
20114 #[cfg(feature = "static")]
20115 Font::AlegreyaSCBlackItalic,
20116 #[cfg(feature = "static")]
20117 Font::AleoThin,
20118 #[cfg(feature = "static")]
20119 Font::AleoExtraLight,
20120 #[cfg(feature = "static")]
20121 Font::AleoLight,
20122 #[cfg(feature = "static")]
20123 Font::AleoRegular,
20124 #[cfg(feature = "static")]
20125 Font::AleoMedium,
20126 #[cfg(feature = "static")]
20127 Font::AleoSemiBold,
20128 #[cfg(feature = "static")]
20129 Font::AleoBold,
20130 #[cfg(feature = "static")]
20131 Font::AleoExtraBold,
20132 #[cfg(feature = "static")]
20133 Font::AleoBlack,
20134 #[cfg(feature = "static")]
20135 Font::AleoThinItalic,
20136 #[cfg(feature = "static")]
20137 Font::AleoExtraLightItalic,
20138 #[cfg(feature = "static")]
20139 Font::AleoLightItalic,
20140 #[cfg(feature = "static")]
20141 Font::AleoItalic,
20142 #[cfg(feature = "static")]
20143 Font::AleoMediumItalic,
20144 #[cfg(feature = "static")]
20145 Font::AleoSemiBoldItalic,
20146 #[cfg(feature = "static")]
20147 Font::AleoBoldItalic,
20148 #[cfg(feature = "static")]
20149 Font::AleoExtraBoldItalic,
20150 #[cfg(feature = "static")]
20151 Font::AleoBlackItalic,
20152 #[cfg(feature = "variable")]
20153 Font::AleoVariable,
20154 #[cfg(feature = "variable")]
20155 Font::AleoItalicVariable,
20156 #[cfg(feature = "static")]
20157 Font::AliceRegular,
20158 #[cfg(feature = "static")]
20159 Font::AlikeRegular,
20160 #[cfg(feature = "static")]
20161 Font::AlikeAngularRegular,
20162 #[cfg(feature = "static")]
20163 Font::AlkalamiRegular,
20164 #[cfg(feature = "static")]
20165 Font::AlmendraRegular,
20166 #[cfg(feature = "static")]
20167 Font::AlmendraItalic,
20168 #[cfg(feature = "static")]
20169 Font::AlmendraBold,
20170 #[cfg(feature = "static")]
20171 Font::AlmendraBoldItalic,
20172 #[cfg(feature = "static")]
20173 Font::AlmendraSCRegular,
20174 #[cfg(feature = "static")]
20175 Font::AmethystaRegular,
20176 #[cfg(feature = "static")]
20177 Font::AmiriRegular,
20178 #[cfg(feature = "static")]
20179 Font::AmiriItalic,
20180 #[cfg(feature = "static")]
20181 Font::AmiriBold,
20182 #[cfg(feature = "static")]
20183 Font::AmiriBoldItalic,
20184 #[cfg(feature = "static")]
20185 Font::AmiriQuranRegular,
20186 #[cfg(feature = "static")]
20187 Font::AndadaProRegular,
20188 #[cfg(feature = "static")]
20189 Font::AndadaProMedium,
20190 #[cfg(feature = "static")]
20191 Font::AndadaProSemiBold,
20192 #[cfg(feature = "static")]
20193 Font::AndadaProBold,
20194 #[cfg(feature = "static")]
20195 Font::AndadaProExtraBold,
20196 #[cfg(feature = "static")]
20197 Font::AndadaProItalic,
20198 #[cfg(feature = "static")]
20199 Font::AndadaProMediumItalic,
20200 #[cfg(feature = "static")]
20201 Font::AndadaProSemiBoldItalic,
20202 #[cfg(feature = "static")]
20203 Font::AndadaProBoldItalic,
20204 #[cfg(feature = "static")]
20205 Font::AndadaProExtraBoldItalic,
20206 #[cfg(feature = "variable")]
20207 Font::AndadaProVariable,
20208 #[cfg(feature = "variable")]
20209 Font::AndadaProItalicVariable,
20210 #[cfg(feature = "static")]
20211 Font::AnnapurnaSILRegular,
20212 #[cfg(feature = "static")]
20213 Font::AnnapurnaSILBold,
20214 #[cfg(feature = "static")]
20215 Font::AnticDidoneRegular,
20216 #[cfg(feature = "static")]
20217 Font::AnticSlabRegular,
20218 #[cfg(feature = "static")]
20219 Font::AoboshiOneRegular,
20220 #[cfg(feature = "static")]
20221 Font::ArapeyRegular,
20222 #[cfg(feature = "static")]
20223 Font::ArapeyItalic,
20224 #[cfg(feature = "static")]
20225 Font::ArbutusRegular,
20226 #[cfg(feature = "static")]
20227 Font::ArbutusSlabRegular,
20228 #[cfg(feature = "static")]
20229 Font::ArefRuqaaRegular,
20230 #[cfg(feature = "static")]
20231 Font::ArefRuqaaBold,
20232 #[cfg(feature = "static")]
20233 Font::ArefRuqaaInkRegular,
20234 #[cfg(feature = "static")]
20235 Font::ArefRuqaaInkBold,
20236 #[cfg(feature = "static")]
20237 Font::ArtifikaRegular,
20238 #[cfg(feature = "static")]
20239 Font::ArvoRegular,
20240 #[cfg(feature = "static")]
20241 Font::ArvoItalic,
20242 #[cfg(feature = "static")]
20243 Font::ArvoBold,
20244 #[cfg(feature = "static")]
20245 Font::ArvoBoldItalic,
20246 #[cfg(feature = "static")]
20247 Font::AsarRegular,
20248 #[cfg(feature = "static")]
20249 Font::AverageRegular,
20250 #[cfg(feature = "static")]
20251 Font::BIZUDMinchoRegular,
20252 #[cfg(feature = "static")]
20253 Font::BIZUDMinchoBold,
20254 #[cfg(feature = "static")]
20255 Font::BIZUDPMinchoRegular,
20256 #[cfg(feature = "static")]
20257 Font::BIZUDPMinchoBold,
20258 #[cfg(feature = "static")]
20259 Font::BacasimeAntiqueRegular,
20260 #[cfg(feature = "static")]
20261 Font::BalthazarRegular,
20262 #[cfg(feature = "static")]
20263 Font::BaskervvilleRegular,
20264 #[cfg(feature = "static")]
20265 Font::BaskervvilleItalic,
20266 #[cfg(feature = "static")]
20267 Font::BaskervvilleSCRegular,
20268 #[cfg(feature = "static")]
20269 Font::BelgranoRegular,
20270 #[cfg(feature = "static")]
20271 Font::BellefairRegular,
20272 #[cfg(feature = "static")]
20273 Font::BenneRegular,
20274 #[cfg(feature = "static")]
20275 Font::BenthamRegular,
20276 #[cfg(feature = "static")]
20277 Font::BesleyRegular,
20278 #[cfg(feature = "static")]
20279 Font::BesleyMedium,
20280 #[cfg(feature = "static")]
20281 Font::BesleySemiBold,
20282 #[cfg(feature = "static")]
20283 Font::BesleyBold,
20284 #[cfg(feature = "static")]
20285 Font::BesleyExtraBold,
20286 #[cfg(feature = "static")]
20287 Font::BesleyBlack,
20288 #[cfg(feature = "static")]
20289 Font::BesleyItalic,
20290 #[cfg(feature = "static")]
20291 Font::BesleyMediumItalic,
20292 #[cfg(feature = "static")]
20293 Font::BesleySemiBoldItalic,
20294 #[cfg(feature = "static")]
20295 Font::BesleyBoldItalic,
20296 #[cfg(feature = "static")]
20297 Font::BesleyExtraBoldItalic,
20298 #[cfg(feature = "static")]
20299 Font::BesleyBlackItalic,
20300 #[cfg(feature = "variable")]
20301 Font::BesleyVariable,
20302 #[cfg(feature = "variable")]
20303 Font::BesleyItalicVariable,
20304 #[cfg(feature = "static")]
20305 Font::BevanRegular,
20306 #[cfg(feature = "static")]
20307 Font::BevanItalic,
20308 #[cfg(feature = "static")]
20309 Font::BhuTukaExpandedOneRegular,
20310 #[cfg(feature = "static")]
20311 Font::BioRhymeExtraLight,
20312 #[cfg(feature = "static")]
20313 Font::BioRhymeLight,
20314 #[cfg(feature = "static")]
20315 Font::BioRhymeRegular,
20316 #[cfg(feature = "static")]
20317 Font::BioRhymeMedium,
20318 #[cfg(feature = "static")]
20319 Font::BioRhymeSemiBold,
20320 #[cfg(feature = "static")]
20321 Font::BioRhymeBold,
20322 #[cfg(feature = "static")]
20323 Font::BioRhymeExtraBold,
20324 #[cfg(feature = "static")]
20325 Font::BioRhymeSemiExpandedExtraLight,
20326 #[cfg(feature = "static")]
20327 Font::BioRhymeSemiExpandedLight,
20328 #[cfg(feature = "static")]
20329 Font::BioRhymeSemiExpandedRegular,
20330 #[cfg(feature = "static")]
20331 Font::BioRhymeSemiExpandedMedium,
20332 #[cfg(feature = "static")]
20333 Font::BioRhymeSemiExpandedSemiBold,
20334 #[cfg(feature = "static")]
20335 Font::BioRhymeSemiExpandedBold,
20336 #[cfg(feature = "static")]
20337 Font::BioRhymeSemiExpandedExtraBold,
20338 #[cfg(feature = "static")]
20339 Font::BioRhymeExpandedExtraLight,
20340 #[cfg(feature = "static")]
20341 Font::BioRhymeExpandedLight,
20342 #[cfg(feature = "static")]
20343 Font::BioRhymeExpandedRegular,
20344 #[cfg(feature = "static")]
20345 Font::BioRhymeExpandedMedium,
20346 #[cfg(feature = "static")]
20347 Font::BioRhymeExpandedSemiBold,
20348 #[cfg(feature = "static")]
20349 Font::BioRhymeExpandedBold,
20350 #[cfg(feature = "static")]
20351 Font::BioRhymeExpandedExtraBold,
20352 #[cfg(feature = "variable")]
20353 Font::BioRhymeVariable,
20354 #[cfg(feature = "static")]
20355 Font::BioRhymeExpandedExtraLight2,
20356 #[cfg(feature = "static")]
20357 Font::BioRhymeExpandedLight2,
20358 #[cfg(feature = "static")]
20359 Font::BioRhymeExpandedRegular2,
20360 #[cfg(feature = "static")]
20361 Font::BioRhymeExpandedBold2,
20362 #[cfg(feature = "static")]
20363 Font::BioRhymeExpandedExtraBold2,
20364 #[cfg(feature = "static")]
20365 Font::BitterThin,
20366 #[cfg(feature = "static")]
20367 Font::BitterExtraLight,
20368 #[cfg(feature = "static")]
20369 Font::BitterLight,
20370 #[cfg(feature = "static")]
20371 Font::BitterRegular,
20372 #[cfg(feature = "static")]
20373 Font::BitterMedium,
20374 #[cfg(feature = "static")]
20375 Font::BitterSemiBold,
20376 #[cfg(feature = "static")]
20377 Font::BitterBold,
20378 #[cfg(feature = "static")]
20379 Font::BitterExtraBold,
20380 #[cfg(feature = "static")]
20381 Font::BitterBlack,
20382 #[cfg(feature = "static")]
20383 Font::BitterThinItalic,
20384 #[cfg(feature = "static")]
20385 Font::BitterExtraLightItalic,
20386 #[cfg(feature = "static")]
20387 Font::BitterLightItalic,
20388 #[cfg(feature = "static")]
20389 Font::BitterItalic,
20390 #[cfg(feature = "static")]
20391 Font::BitterMediumItalic,
20392 #[cfg(feature = "static")]
20393 Font::BitterSemiBoldItalic,
20394 #[cfg(feature = "static")]
20395 Font::BitterBoldItalic,
20396 #[cfg(feature = "static")]
20397 Font::BitterExtraBoldItalic,
20398 #[cfg(feature = "static")]
20399 Font::BitterBlackItalic,
20400 #[cfg(feature = "variable")]
20401 Font::BitterVariable,
20402 #[cfg(feature = "variable")]
20403 Font::BitterItalicVariable,
20404 #[cfg(feature = "static")]
20405 Font::BodoniModa9ptRegular,
20406 #[cfg(feature = "static")]
20407 Font::BodoniModa9ptMedium,
20408 #[cfg(feature = "static")]
20409 Font::BodoniModa9ptSemiBold,
20410 #[cfg(feature = "static")]
20411 Font::BodoniModa9ptBold,
20412 #[cfg(feature = "static")]
20413 Font::BodoniModa9ptExtraBold,
20414 #[cfg(feature = "static")]
20415 Font::BodoniModa9ptBlack,
20416 #[cfg(feature = "static")]
20417 Font::BodoniModa18ptRegular,
20418 #[cfg(feature = "static")]
20419 Font::BodoniModa18ptMedium,
20420 #[cfg(feature = "static")]
20421 Font::BodoniModa18ptSemiBold,
20422 #[cfg(feature = "static")]
20423 Font::BodoniModa18ptBold,
20424 #[cfg(feature = "static")]
20425 Font::BodoniModa18ptExtraBold,
20426 #[cfg(feature = "static")]
20427 Font::BodoniModa18ptBlack,
20428 #[cfg(feature = "static")]
20429 Font::BodoniModa28ptRegular,
20430 #[cfg(feature = "static")]
20431 Font::BodoniModa28ptMedium,
20432 #[cfg(feature = "static")]
20433 Font::BodoniModa28ptSemiBold,
20434 #[cfg(feature = "static")]
20435 Font::BodoniModa28ptBold,
20436 #[cfg(feature = "static")]
20437 Font::BodoniModa28ptExtraBold,
20438 #[cfg(feature = "static")]
20439 Font::BodoniModa28ptBlack,
20440 #[cfg(feature = "static")]
20441 Font::BodoniModa48ptRegular,
20442 #[cfg(feature = "static")]
20443 Font::BodoniModa48ptMedium,
20444 #[cfg(feature = "static")]
20445 Font::BodoniModa48ptSemiBold,
20446 #[cfg(feature = "static")]
20447 Font::BodoniModa48ptBold,
20448 #[cfg(feature = "static")]
20449 Font::BodoniModa48ptExtraBold,
20450 #[cfg(feature = "static")]
20451 Font::BodoniModa48ptBlack,
20452 #[cfg(feature = "static")]
20453 Font::BodoniModa72ptRegular,
20454 #[cfg(feature = "static")]
20455 Font::BodoniModa72ptMedium,
20456 #[cfg(feature = "static")]
20457 Font::BodoniModa72ptSemiBold,
20458 #[cfg(feature = "static")]
20459 Font::BodoniModa72ptBold,
20460 #[cfg(feature = "static")]
20461 Font::BodoniModa72ptExtraBold,
20462 #[cfg(feature = "static")]
20463 Font::BodoniModa72ptBlack,
20464 #[cfg(feature = "static")]
20465 Font::BodoniModa9ptItalic,
20466 #[cfg(feature = "static")]
20467 Font::BodoniModa9ptMediumItalic,
20468 #[cfg(feature = "static")]
20469 Font::BodoniModa9ptSemiBoldItalic,
20470 #[cfg(feature = "static")]
20471 Font::BodoniModa9ptBoldItalic,
20472 #[cfg(feature = "static")]
20473 Font::BodoniModa9ptExtraBoldItalic,
20474 #[cfg(feature = "static")]
20475 Font::BodoniModa9ptBlackItalic,
20476 #[cfg(feature = "static")]
20477 Font::BodoniModa18ptItalic,
20478 #[cfg(feature = "static")]
20479 Font::BodoniModa18ptMediumItalic,
20480 #[cfg(feature = "static")]
20481 Font::BodoniModa18ptSemiBoldItalic,
20482 #[cfg(feature = "static")]
20483 Font::BodoniModa18ptBoldItalic,
20484 #[cfg(feature = "static")]
20485 Font::BodoniModa18ptExtraBoldItalic,
20486 #[cfg(feature = "static")]
20487 Font::BodoniModa18ptBlackItalic,
20488 #[cfg(feature = "static")]
20489 Font::BodoniModa28ptItalic,
20490 #[cfg(feature = "static")]
20491 Font::BodoniModa28ptMediumItalic,
20492 #[cfg(feature = "static")]
20493 Font::BodoniModa28ptSemiBoldItalic,
20494 #[cfg(feature = "static")]
20495 Font::BodoniModa28ptBoldItalic,
20496 #[cfg(feature = "static")]
20497 Font::BodoniModa28ptExtraBoldItalic,
20498 #[cfg(feature = "static")]
20499 Font::BodoniModa28ptBlackItalic,
20500 #[cfg(feature = "static")]
20501 Font::BodoniModa48ptItalic,
20502 #[cfg(feature = "static")]
20503 Font::BodoniModa48ptMediumItalic,
20504 #[cfg(feature = "static")]
20505 Font::BodoniModa48ptSemiBoldItalic,
20506 #[cfg(feature = "static")]
20507 Font::BodoniModa48ptBoldItalic,
20508 #[cfg(feature = "static")]
20509 Font::BodoniModa48ptExtraBoldItalic,
20510 #[cfg(feature = "static")]
20511 Font::BodoniModa48ptBlackItalic,
20512 #[cfg(feature = "static")]
20513 Font::BodoniModa72ptItalic,
20514 #[cfg(feature = "static")]
20515 Font::BodoniModa72ptMediumItalic,
20516 #[cfg(feature = "static")]
20517 Font::BodoniModa72ptSemiBoldItalic,
20518 #[cfg(feature = "static")]
20519 Font::BodoniModa72ptBoldItalic,
20520 #[cfg(feature = "static")]
20521 Font::BodoniModa72ptExtraBoldItalic,
20522 #[cfg(feature = "static")]
20523 Font::BodoniModa72ptBlackItalic,
20524 #[cfg(feature = "variable")]
20525 Font::BodoniModaVariable,
20526 #[cfg(feature = "variable")]
20527 Font::BodoniModaItalicVariable,
20528 #[cfg(feature = "static")]
20529 Font::BodoniModaSC9ptRegular,
20530 #[cfg(feature = "static")]
20531 Font::BodoniModaSC9ptMedium,
20532 #[cfg(feature = "static")]
20533 Font::BodoniModaSC9ptSemiBold,
20534 #[cfg(feature = "static")]
20535 Font::BodoniModaSC9ptBold,
20536 #[cfg(feature = "static")]
20537 Font::BodoniModaSC9ptExtraBold,
20538 #[cfg(feature = "static")]
20539 Font::BodoniModaSC9ptBlack,
20540 #[cfg(feature = "static")]
20541 Font::BodoniModaSC18ptRegular,
20542 #[cfg(feature = "static")]
20543 Font::BodoniModaSC18ptMedium,
20544 #[cfg(feature = "static")]
20545 Font::BodoniModaSC18ptSemiBold,
20546 #[cfg(feature = "static")]
20547 Font::BodoniModaSC18ptBold,
20548 #[cfg(feature = "static")]
20549 Font::BodoniModaSC18ptExtraBold,
20550 #[cfg(feature = "static")]
20551 Font::BodoniModaSC18ptBlack,
20552 #[cfg(feature = "static")]
20553 Font::BodoniModaSC28ptRegular,
20554 #[cfg(feature = "static")]
20555 Font::BodoniModaSC28ptMedium,
20556 #[cfg(feature = "static")]
20557 Font::BodoniModaSC28ptSemiBold,
20558 #[cfg(feature = "static")]
20559 Font::BodoniModaSC28ptBold,
20560 #[cfg(feature = "static")]
20561 Font::BodoniModaSC28ptExtraBold,
20562 #[cfg(feature = "static")]
20563 Font::BodoniModaSC28ptBlack,
20564 #[cfg(feature = "static")]
20565 Font::BodoniModaSC48ptRegular,
20566 #[cfg(feature = "static")]
20567 Font::BodoniModaSC48ptMedium,
20568 #[cfg(feature = "static")]
20569 Font::BodoniModaSC48ptSemiBold,
20570 #[cfg(feature = "static")]
20571 Font::BodoniModaSC48ptBold,
20572 #[cfg(feature = "static")]
20573 Font::BodoniModaSC48ptExtraBold,
20574 #[cfg(feature = "static")]
20575 Font::BodoniModaSC48ptBlack,
20576 #[cfg(feature = "static")]
20577 Font::BodoniModaSC72ptRegular,
20578 #[cfg(feature = "static")]
20579 Font::BodoniModaSC72ptMedium,
20580 #[cfg(feature = "static")]
20581 Font::BodoniModaSC72ptSemiBold,
20582 #[cfg(feature = "static")]
20583 Font::BodoniModaSC72ptBold,
20584 #[cfg(feature = "static")]
20585 Font::BodoniModaSC72ptExtraBold,
20586 #[cfg(feature = "static")]
20587 Font::BodoniModaSC72ptBlack,
20588 #[cfg(feature = "static")]
20589 Font::BodoniModaSC9ptItalic,
20590 #[cfg(feature = "static")]
20591 Font::BodoniModaSC9ptMediumItalic,
20592 #[cfg(feature = "static")]
20593 Font::BodoniModaSC9ptSemiBoldItalic,
20594 #[cfg(feature = "static")]
20595 Font::BodoniModaSC9ptBoldItalic,
20596 #[cfg(feature = "static")]
20597 Font::BodoniModaSC9ptExtraBoldItalic,
20598 #[cfg(feature = "static")]
20599 Font::BodoniModaSC9ptBlackItalic,
20600 #[cfg(feature = "static")]
20601 Font::BodoniModaSC18ptItalic,
20602 #[cfg(feature = "static")]
20603 Font::BodoniModaSC18ptMediumItalic,
20604 #[cfg(feature = "static")]
20605 Font::BodoniModaSC18ptSemiBoldItalic,
20606 #[cfg(feature = "static")]
20607 Font::BodoniModaSC18ptBoldItalic,
20608 #[cfg(feature = "static")]
20609 Font::BodoniModaSC18ptExtraBoldItalic,
20610 #[cfg(feature = "static")]
20611 Font::BodoniModaSC18ptBlackItalic,
20612 #[cfg(feature = "static")]
20613 Font::BodoniModaSC28ptItalic,
20614 #[cfg(feature = "static")]
20615 Font::BodoniModaSC28ptMediumItalic,
20616 #[cfg(feature = "static")]
20617 Font::BodoniModaSC28ptSemiBoldItalic,
20618 #[cfg(feature = "static")]
20619 Font::BodoniModaSC28ptBoldItalic,
20620 #[cfg(feature = "static")]
20621 Font::BodoniModaSC28ptExtraBoldItalic,
20622 #[cfg(feature = "static")]
20623 Font::BodoniModaSC28ptBlackItalic,
20624 #[cfg(feature = "static")]
20625 Font::BodoniModaSC48ptItalic,
20626 #[cfg(feature = "static")]
20627 Font::BodoniModaSC48ptMediumItalic,
20628 #[cfg(feature = "static")]
20629 Font::BodoniModaSC48ptSemiBoldItalic,
20630 #[cfg(feature = "static")]
20631 Font::BodoniModaSC48ptBoldItalic,
20632 #[cfg(feature = "static")]
20633 Font::BodoniModaSC48ptExtraBoldItalic,
20634 #[cfg(feature = "static")]
20635 Font::BodoniModaSC48ptBlackItalic,
20636 #[cfg(feature = "static")]
20637 Font::BodoniModaSC72ptItalic,
20638 #[cfg(feature = "static")]
20639 Font::BodoniModaSC72ptMediumItalic,
20640 #[cfg(feature = "static")]
20641 Font::BodoniModaSC72ptSemiBoldItalic,
20642 #[cfg(feature = "static")]
20643 Font::BodoniModaSC72ptBoldItalic,
20644 #[cfg(feature = "static")]
20645 Font::BodoniModaSC72ptExtraBoldItalic,
20646 #[cfg(feature = "static")]
20647 Font::BodoniModaSC72ptBlackItalic,
20648 #[cfg(feature = "variable")]
20649 Font::BodoniModaSCVariable,
20650 #[cfg(feature = "variable")]
20651 Font::BodoniModaSCItalicVariable,
20652 #[cfg(feature = "static")]
20653 Font::BonaNovaRegular,
20654 #[cfg(feature = "static")]
20655 Font::BonaNovaItalic,
20656 #[cfg(feature = "static")]
20657 Font::BonaNovaBold,
20658 #[cfg(feature = "static")]
20659 Font::BonaNovaSCRegular,
20660 #[cfg(feature = "static")]
20661 Font::BonaNovaSCItalic,
20662 #[cfg(feature = "static")]
20663 Font::BonaNovaSCBold,
20664 #[cfg(feature = "static")]
20665 Font::BrawlerRegular,
20666 #[cfg(feature = "static")]
20667 Font::BrawlerBold,
20668 #[cfg(feature = "static")]
20669 Font::BreeSerifRegular,
20670 #[cfg(feature = "static")]
20671 Font::Brygada1918Regular,
20672 #[cfg(feature = "static")]
20673 Font::Brygada1918Medium,
20674 #[cfg(feature = "static")]
20675 Font::Brygada1918SemiBold,
20676 #[cfg(feature = "static")]
20677 Font::Brygada1918Bold,
20678 #[cfg(feature = "static")]
20679 Font::Brygada1918Italic,
20680 #[cfg(feature = "static")]
20681 Font::Brygada1918MediumItalic,
20682 #[cfg(feature = "static")]
20683 Font::Brygada1918SemiBoldItalic,
20684 #[cfg(feature = "static")]
20685 Font::Brygada1918BoldItalic,
20686 #[cfg(feature = "variable")]
20687 Font::Brygada1918Variable,
20688 #[cfg(feature = "variable")]
20689 Font::Brygada1918ItalicVariable,
20690 #[cfg(feature = "static")]
20691 Font::BuenardRegular,
20692 #[cfg(feature = "static")]
20693 Font::BuenardBold,
20694 #[cfg(feature = "static")]
20695 Font::CactusClassicalSerifRegular,
20696 #[cfg(feature = "static")]
20697 Font::CaladeaRegular,
20698 #[cfg(feature = "static")]
20699 Font::CaladeaItalic,
20700 #[cfg(feature = "static")]
20701 Font::CaladeaBold,
20702 #[cfg(feature = "static")]
20703 Font::CaladeaBoldItalic,
20704 #[cfg(feature = "static")]
20705 Font::CamboRegular,
20706 #[cfg(feature = "static")]
20707 Font::CantataOneRegular,
20708 #[cfg(feature = "static")]
20709 Font::CardoRegular,
20710 #[cfg(feature = "static")]
20711 Font::CardoItalic,
20712 #[cfg(feature = "static")]
20713 Font::CardoBold,
20714 #[cfg(feature = "static")]
20715 Font::CastoroRegular,
20716 #[cfg(feature = "static")]
20717 Font::CastoroItalic,
20718 #[cfg(feature = "static")]
20719 Font::CaudexRegular,
20720 #[cfg(feature = "static")]
20721 Font::CaudexItalic,
20722 #[cfg(feature = "static")]
20723 Font::CaudexBold,
20724 #[cfg(feature = "static")]
20725 Font::CaudexBoldItalic,
20726 #[cfg(feature = "static")]
20727 Font::CharisSILRegular,
20728 #[cfg(feature = "static")]
20729 Font::CharisSILItalic,
20730 #[cfg(feature = "static")]
20731 Font::CharisSILBold,
20732 #[cfg(feature = "static")]
20733 Font::CharisSILBoldItalic,
20734 #[cfg(feature = "static")]
20735 Font::CinzelRegular,
20736 #[cfg(feature = "static")]
20737 Font::CinzelMedium,
20738 #[cfg(feature = "static")]
20739 Font::CinzelSemiBold,
20740 #[cfg(feature = "static")]
20741 Font::CinzelBold,
20742 #[cfg(feature = "static")]
20743 Font::CinzelExtraBold,
20744 #[cfg(feature = "static")]
20745 Font::CinzelBlack,
20746 #[cfg(feature = "variable")]
20747 Font::CinzelVariable,
20748 #[cfg(feature = "static")]
20749 Font::CopseRegular,
20750 #[cfg(feature = "static")]
20751 Font::CormorantLight,
20752 #[cfg(feature = "static")]
20753 Font::CormorantRegular,
20754 #[cfg(feature = "static")]
20755 Font::CormorantMedium,
20756 #[cfg(feature = "static")]
20757 Font::CormorantSemiBold,
20758 #[cfg(feature = "static")]
20759 Font::CormorantBold,
20760 #[cfg(feature = "static")]
20761 Font::CormorantLightItalic,
20762 #[cfg(feature = "static")]
20763 Font::CormorantItalic,
20764 #[cfg(feature = "static")]
20765 Font::CormorantMediumItalic,
20766 #[cfg(feature = "static")]
20767 Font::CormorantSemiBoldItalic,
20768 #[cfg(feature = "static")]
20769 Font::CormorantBoldItalic,
20770 #[cfg(feature = "variable")]
20771 Font::CormorantVariable,
20772 #[cfg(feature = "variable")]
20773 Font::CormorantItalicVariable,
20774 #[cfg(feature = "static")]
20775 Font::CormorantGaramondLight,
20776 #[cfg(feature = "static")]
20777 Font::CormorantGaramondLightItalic,
20778 #[cfg(feature = "static")]
20779 Font::CormorantGaramondRegular,
20780 #[cfg(feature = "static")]
20781 Font::CormorantGaramondItalic,
20782 #[cfg(feature = "static")]
20783 Font::CormorantGaramondMedium,
20784 #[cfg(feature = "static")]
20785 Font::CormorantGaramondMediumItalic,
20786 #[cfg(feature = "static")]
20787 Font::CormorantGaramondSemiBold,
20788 #[cfg(feature = "static")]
20789 Font::CormorantGaramondSemiBoldItalic,
20790 #[cfg(feature = "static")]
20791 Font::CormorantGaramondBold,
20792 #[cfg(feature = "static")]
20793 Font::CormorantGaramondBoldItalic,
20794 #[cfg(feature = "static")]
20795 Font::CormorantInfantLight,
20796 #[cfg(feature = "static")]
20797 Font::CormorantInfantLightItalic,
20798 #[cfg(feature = "static")]
20799 Font::CormorantInfantRegular,
20800 #[cfg(feature = "static")]
20801 Font::CormorantInfantItalic,
20802 #[cfg(feature = "static")]
20803 Font::CormorantInfantMedium,
20804 #[cfg(feature = "static")]
20805 Font::CormorantInfantMediumItalic,
20806 #[cfg(feature = "static")]
20807 Font::CormorantInfantSemiBold,
20808 #[cfg(feature = "static")]
20809 Font::CormorantInfantSemiBoldItalic,
20810 #[cfg(feature = "static")]
20811 Font::CormorantInfantBold,
20812 #[cfg(feature = "static")]
20813 Font::CormorantInfantBoldItalic,
20814 #[cfg(feature = "static")]
20815 Font::CormorantSCLight,
20816 #[cfg(feature = "static")]
20817 Font::CormorantSCRegular,
20818 #[cfg(feature = "static")]
20819 Font::CormorantSCMedium,
20820 #[cfg(feature = "static")]
20821 Font::CormorantSCSemiBold,
20822 #[cfg(feature = "static")]
20823 Font::CormorantSCBold,
20824 #[cfg(feature = "static")]
20825 Font::CormorantUnicaseLight,
20826 #[cfg(feature = "static")]
20827 Font::CormorantUnicaseRegular,
20828 #[cfg(feature = "static")]
20829 Font::CormorantUnicaseMedium,
20830 #[cfg(feature = "static")]
20831 Font::CormorantUnicaseSemiBold,
20832 #[cfg(feature = "static")]
20833 Font::CormorantUnicaseBold,
20834 #[cfg(feature = "static")]
20835 Font::CormorantUprightLight,
20836 #[cfg(feature = "static")]
20837 Font::CormorantUprightRegular,
20838 #[cfg(feature = "static")]
20839 Font::CormorantUprightMedium,
20840 #[cfg(feature = "static")]
20841 Font::CormorantUprightSemiBold,
20842 #[cfg(feature = "static")]
20843 Font::CormorantUprightBold,
20844 #[cfg(feature = "static")]
20845 Font::CoustardRegular,
20846 #[cfg(feature = "static")]
20847 Font::CoustardBlack,
20848 #[cfg(feature = "static")]
20849 Font::CreteRoundRegular,
20850 #[cfg(feature = "static")]
20851 Font::CreteRoundItalic,
20852 #[cfg(feature = "static")]
20853 Font::CrimsonProExtraLight,
20854 #[cfg(feature = "static")]
20855 Font::CrimsonProLight,
20856 #[cfg(feature = "static")]
20857 Font::CrimsonProRegular,
20858 #[cfg(feature = "static")]
20859 Font::CrimsonProMedium,
20860 #[cfg(feature = "static")]
20861 Font::CrimsonProSemiBold,
20862 #[cfg(feature = "static")]
20863 Font::CrimsonProBold,
20864 #[cfg(feature = "static")]
20865 Font::CrimsonProExtraBold,
20866 #[cfg(feature = "static")]
20867 Font::CrimsonProBlack,
20868 #[cfg(feature = "static")]
20869 Font::CrimsonProExtraLightItalic,
20870 #[cfg(feature = "static")]
20871 Font::CrimsonProLightItalic,
20872 #[cfg(feature = "static")]
20873 Font::CrimsonProItalic,
20874 #[cfg(feature = "static")]
20875 Font::CrimsonProMediumItalic,
20876 #[cfg(feature = "static")]
20877 Font::CrimsonProSemiBoldItalic,
20878 #[cfg(feature = "static")]
20879 Font::CrimsonProBoldItalic,
20880 #[cfg(feature = "static")]
20881 Font::CrimsonProExtraBoldItalic,
20882 #[cfg(feature = "static")]
20883 Font::CrimsonProBlackItalic,
20884 #[cfg(feature = "variable")]
20885 Font::CrimsonProVariable,
20886 #[cfg(feature = "variable")]
20887 Font::CrimsonProItalicVariable,
20888 #[cfg(feature = "static")]
20889 Font::CrimsonTextRegular,
20890 #[cfg(feature = "static")]
20891 Font::CrimsonTextItalic,
20892 #[cfg(feature = "static")]
20893 Font::CrimsonTextSemiBold,
20894 #[cfg(feature = "static")]
20895 Font::CrimsonTextSemiBoldItalic,
20896 #[cfg(feature = "static")]
20897 Font::CrimsonTextBold,
20898 #[cfg(feature = "static")]
20899 Font::CrimsonTextBoldItalic,
20900 #[cfg(feature = "static")]
20901 Font::CutiveRegular,
20902 #[cfg(feature = "static")]
20903 Font::DMSerifDisplayRegular,
20904 #[cfg(feature = "static")]
20905 Font::DMSerifDisplayItalic,
20906 #[cfg(feature = "static")]
20907 Font::DMSerifTextRegular,
20908 #[cfg(feature = "static")]
20909 Font::DMSerifTextItalic,
20910 #[cfg(feature = "static")]
20911 Font::DaiBannaSILLight,
20912 #[cfg(feature = "static")]
20913 Font::DaiBannaSILLightItalic,
20914 #[cfg(feature = "static")]
20915 Font::DaiBannaSILRegular,
20916 #[cfg(feature = "static")]
20917 Font::DaiBannaSILItalic,
20918 #[cfg(feature = "static")]
20919 Font::DaiBannaSILMedium,
20920 #[cfg(feature = "static")]
20921 Font::DaiBannaSILMediumItalic,
20922 #[cfg(feature = "static")]
20923 Font::DaiBannaSILSemiBold,
20924 #[cfg(feature = "static")]
20925 Font::DaiBannaSILSemiBoldItalic,
20926 #[cfg(feature = "static")]
20927 Font::DaiBannaSILBold,
20928 #[cfg(feature = "static")]
20929 Font::DaiBannaSILBoldItalic,
20930 #[cfg(feature = "static")]
20931 Font::DanfoRegular,
20932 #[cfg(feature = "variable")]
20933 Font::DanfoRegularVariable,
20934 #[cfg(feature = "static")]
20935 Font::DavidLibreRegular,
20936 #[cfg(feature = "static")]
20937 Font::DavidLibreMedium,
20938 #[cfg(feature = "static")]
20939 Font::DavidLibreBold,
20940 #[cfg(feature = "static")]
20941 Font::DellaRespiraRegular,
20942 #[cfg(feature = "static")]
20943 Font::DiphylleiaRegular,
20944 #[cfg(feature = "static")]
20945 Font::DomineRegular,
20946 #[cfg(feature = "static")]
20947 Font::DomineMedium,
20948 #[cfg(feature = "static")]
20949 Font::DomineSemiBold,
20950 #[cfg(feature = "static")]
20951 Font::DomineBold,
20952 #[cfg(feature = "variable")]
20953 Font::DomineVariable,
20954 #[cfg(feature = "static")]
20955 Font::DonegalOneRegular,
20956 #[cfg(feature = "static")]
20957 Font::EBGaramondRegular,
20958 #[cfg(feature = "static")]
20959 Font::EBGaramondMedium,
20960 #[cfg(feature = "static")]
20961 Font::EBGaramondSemiBold,
20962 #[cfg(feature = "static")]
20963 Font::EBGaramondBold,
20964 #[cfg(feature = "static")]
20965 Font::EBGaramondExtraBold,
20966 #[cfg(feature = "static")]
20967 Font::EBGaramondItalic,
20968 #[cfg(feature = "static")]
20969 Font::EBGaramondMediumItalic,
20970 #[cfg(feature = "static")]
20971 Font::EBGaramondSemiBoldItalic,
20972 #[cfg(feature = "static")]
20973 Font::EBGaramondBoldItalic,
20974 #[cfg(feature = "static")]
20975 Font::EBGaramondExtraBoldItalic,
20976 #[cfg(feature = "variable")]
20977 Font::EBGaramondVariable,
20978 #[cfg(feature = "variable")]
20979 Font::EBGaramondItalicVariable,
20980 #[cfg(feature = "static")]
20981 Font::EczarRegular,
20982 #[cfg(feature = "static")]
20983 Font::EczarMedium,
20984 #[cfg(feature = "static")]
20985 Font::EczarSemiBold,
20986 #[cfg(feature = "static")]
20987 Font::EczarBold,
20988 #[cfg(feature = "static")]
20989 Font::EczarExtraBold,
20990 #[cfg(feature = "variable")]
20991 Font::EczarVariable,
20992 #[cfg(feature = "static")]
20993 Font::EnriquetaRegular,
20994 #[cfg(feature = "static")]
20995 Font::EnriquetaMedium,
20996 #[cfg(feature = "static")]
20997 Font::EnriquetaSemiBold,
20998 #[cfg(feature = "static")]
20999 Font::EnriquetaBold,
21000 #[cfg(feature = "static")]
21001 Font::EstebanRegular,
21002 #[cfg(feature = "static")]
21003 Font::FanwoodTextRegular,
21004 #[cfg(feature = "static")]
21005 Font::FanwoodTextItalic,
21006 #[cfg(feature = "static")]
21007 Font::FaunaOneRegular,
21008 #[cfg(feature = "static")]
21009 Font::FaustinaLight,
21010 #[cfg(feature = "static")]
21011 Font::FaustinaRegular,
21012 #[cfg(feature = "static")]
21013 Font::FaustinaMedium,
21014 #[cfg(feature = "static")]
21015 Font::FaustinaSemiBold,
21016 #[cfg(feature = "static")]
21017 Font::FaustinaBold,
21018 #[cfg(feature = "static")]
21019 Font::FaustinaExtraBold,
21020 #[cfg(feature = "static")]
21021 Font::FaustinaLightItalic,
21022 #[cfg(feature = "static")]
21023 Font::FaustinaItalic,
21024 #[cfg(feature = "static")]
21025 Font::FaustinaMediumItalic,
21026 #[cfg(feature = "static")]
21027 Font::FaustinaSemiBoldItalic,
21028 #[cfg(feature = "static")]
21029 Font::FaustinaBoldItalic,
21030 #[cfg(feature = "static")]
21031 Font::FaustinaExtraBoldItalic,
21032 #[cfg(feature = "variable")]
21033 Font::FaustinaVariable,
21034 #[cfg(feature = "variable")]
21035 Font::FaustinaItalicVariable,
21036 #[cfg(feature = "static")]
21037 Font::FenixRegular,
21038 #[cfg(feature = "static")]
21039 Font::FjordOneRegular,
21040 #[cfg(feature = "static")]
21041 Font::FrankRuhlLibreLight,
21042 #[cfg(feature = "static")]
21043 Font::FrankRuhlLibreRegular,
21044 #[cfg(feature = "static")]
21045 Font::FrankRuhlLibreMedium,
21046 #[cfg(feature = "static")]
21047 Font::FrankRuhlLibreSemiBold,
21048 #[cfg(feature = "static")]
21049 Font::FrankRuhlLibreBold,
21050 #[cfg(feature = "static")]
21051 Font::FrankRuhlLibreExtraBold,
21052 #[cfg(feature = "static")]
21053 Font::FrankRuhlLibreBlack,
21054 #[cfg(feature = "variable")]
21055 Font::FrankRuhlLibreVariable,
21056 #[cfg(feature = "static")]
21057 Font::Fraunces9ptThin,
21058 #[cfg(feature = "static")]
21059 Font::Fraunces9ptLight,
21060 #[cfg(feature = "static")]
21061 Font::Fraunces9ptRegular,
21062 #[cfg(feature = "static")]
21063 Font::Fraunces9ptSemiBold,
21064 #[cfg(feature = "static")]
21065 Font::Fraunces9ptBold,
21066 #[cfg(feature = "static")]
21067 Font::Fraunces9ptBlack,
21068 #[cfg(feature = "static")]
21069 Font::Fraunces72ptThin,
21070 #[cfg(feature = "static")]
21071 Font::Fraunces72ptLight,
21072 #[cfg(feature = "static")]
21073 Font::Fraunces72ptRegular,
21074 #[cfg(feature = "static")]
21075 Font::Fraunces72ptSemiBold,
21076 #[cfg(feature = "static")]
21077 Font::Fraunces72ptBold,
21078 #[cfg(feature = "static")]
21079 Font::Fraunces72ptBlack,
21080 #[cfg(feature = "static")]
21081 Font::Fraunces144ptThin,
21082 #[cfg(feature = "static")]
21083 Font::Fraunces144ptLight,
21084 #[cfg(feature = "static")]
21085 Font::Fraunces144ptRegular,
21086 #[cfg(feature = "static")]
21087 Font::Fraunces144ptSemiBold,
21088 #[cfg(feature = "static")]
21089 Font::Fraunces144ptBold,
21090 #[cfg(feature = "static")]
21091 Font::Fraunces144ptBlack,
21092 #[cfg(feature = "static")]
21093 Font::Fraunces9ptSoftThin,
21094 #[cfg(feature = "static")]
21095 Font::Fraunces9ptSoftLight,
21096 #[cfg(feature = "static")]
21097 Font::Fraunces9ptSoftRegular,
21098 #[cfg(feature = "static")]
21099 Font::Fraunces9ptSoftSemiBold,
21100 #[cfg(feature = "static")]
21101 Font::Fraunces9ptSoftBold,
21102 #[cfg(feature = "static")]
21103 Font::Fraunces9ptSoftBlack,
21104 #[cfg(feature = "static")]
21105 Font::Fraunces72ptSoftThin,
21106 #[cfg(feature = "static")]
21107 Font::Fraunces72ptSoftLight,
21108 #[cfg(feature = "static")]
21109 Font::Fraunces72ptSoftRegular,
21110 #[cfg(feature = "static")]
21111 Font::Fraunces72ptSoftSemiBold,
21112 #[cfg(feature = "static")]
21113 Font::Fraunces72ptSoftBold,
21114 #[cfg(feature = "static")]
21115 Font::Fraunces72ptSoftBlack,
21116 #[cfg(feature = "static")]
21117 Font::Fraunces144ptSoftThin,
21118 #[cfg(feature = "static")]
21119 Font::Fraunces144ptSoftLight,
21120 #[cfg(feature = "static")]
21121 Font::Fraunces144ptSoftRegular,
21122 #[cfg(feature = "static")]
21123 Font::Fraunces144ptSoftSemiBold,
21124 #[cfg(feature = "static")]
21125 Font::Fraunces144ptSoftBold,
21126 #[cfg(feature = "static")]
21127 Font::Fraunces144ptSoftBlack,
21128 #[cfg(feature = "static")]
21129 Font::Fraunces9ptSuperSoftThin,
21130 #[cfg(feature = "static")]
21131 Font::Fraunces9ptSuperSoftLight,
21132 #[cfg(feature = "static")]
21133 Font::Fraunces9ptSuperSoftRegular,
21134 #[cfg(feature = "static")]
21135 Font::Fraunces9ptSuperSoftSemiBold,
21136 #[cfg(feature = "static")]
21137 Font::Fraunces9ptSuperSoftBold,
21138 #[cfg(feature = "static")]
21139 Font::Fraunces9ptSuperSoftBlack,
21140 #[cfg(feature = "static")]
21141 Font::Fraunces72ptSuperSoftThin,
21142 #[cfg(feature = "static")]
21143 Font::Fraunces72ptSuperSoftLight,
21144 #[cfg(feature = "static")]
21145 Font::Fraunces72ptSuperSoftRegular,
21146 #[cfg(feature = "static")]
21147 Font::Fraunces72ptSuperSoftSemiBold,
21148 #[cfg(feature = "static")]
21149 Font::Fraunces72ptSuperSoftBold,
21150 #[cfg(feature = "static")]
21151 Font::Fraunces72ptSuperSoftBlack,
21152 #[cfg(feature = "static")]
21153 Font::Fraunces144ptSuperSoftThin,
21154 #[cfg(feature = "static")]
21155 Font::Fraunces144ptSuperSoftLight,
21156 #[cfg(feature = "static")]
21157 Font::Fraunces144ptSuperSoftRegular,
21158 #[cfg(feature = "static")]
21159 Font::Fraunces144ptSuperSoftSemiBold,
21160 #[cfg(feature = "static")]
21161 Font::Fraunces144ptSuperSoftBold,
21162 #[cfg(feature = "static")]
21163 Font::Fraunces144ptSuperSoftBlack,
21164 #[cfg(feature = "static")]
21165 Font::Fraunces9ptThinItalic,
21166 #[cfg(feature = "static")]
21167 Font::Fraunces9ptLightItalic,
21168 #[cfg(feature = "static")]
21169 Font::Fraunces9ptItalic,
21170 #[cfg(feature = "static")]
21171 Font::Fraunces9ptSemiBoldItalic,
21172 #[cfg(feature = "static")]
21173 Font::Fraunces9ptBoldItalic,
21174 #[cfg(feature = "static")]
21175 Font::Fraunces9ptBlackItalic,
21176 #[cfg(feature = "static")]
21177 Font::Fraunces72ptThinItalic,
21178 #[cfg(feature = "static")]
21179 Font::Fraunces72ptLightItalic,
21180 #[cfg(feature = "static")]
21181 Font::Fraunces72ptItalic,
21182 #[cfg(feature = "static")]
21183 Font::Fraunces72ptSemiBoldItalic,
21184 #[cfg(feature = "static")]
21185 Font::Fraunces72ptBoldItalic,
21186 #[cfg(feature = "static")]
21187 Font::Fraunces72ptBlackItalic,
21188 #[cfg(feature = "static")]
21189 Font::Fraunces144ptThinItalic,
21190 #[cfg(feature = "static")]
21191 Font::Fraunces144ptLightItalic,
21192 #[cfg(feature = "static")]
21193 Font::Fraunces144ptItalic,
21194 #[cfg(feature = "static")]
21195 Font::Fraunces144ptSemiBoldItalic,
21196 #[cfg(feature = "static")]
21197 Font::Fraunces144ptBoldItalic,
21198 #[cfg(feature = "static")]
21199 Font::Fraunces144ptBlackItalic,
21200 #[cfg(feature = "static")]
21201 Font::Fraunces9ptSoftThinItalic,
21202 #[cfg(feature = "static")]
21203 Font::Fraunces9ptSoftLightItalic,
21204 #[cfg(feature = "static")]
21205 Font::Fraunces9ptSoftItalic,
21206 #[cfg(feature = "static")]
21207 Font::Fraunces9ptSoftSemiBoldItalic,
21208 #[cfg(feature = "static")]
21209 Font::Fraunces9ptSoftBoldItalic,
21210 #[cfg(feature = "static")]
21211 Font::Fraunces9ptSoftBlackItalic,
21212 #[cfg(feature = "static")]
21213 Font::Fraunces72ptSoftThinItalic,
21214 #[cfg(feature = "static")]
21215 Font::Fraunces72ptSoftLightItalic,
21216 #[cfg(feature = "static")]
21217 Font::Fraunces72ptSoftItalic,
21218 #[cfg(feature = "static")]
21219 Font::Fraunces72ptSoftSemiBoldItalic,
21220 #[cfg(feature = "static")]
21221 Font::Fraunces72ptSoftBoldItalic,
21222 #[cfg(feature = "static")]
21223 Font::Fraunces72ptSoftBlackItalic,
21224 #[cfg(feature = "static")]
21225 Font::Fraunces144ptSoftThinItalic,
21226 #[cfg(feature = "static")]
21227 Font::Fraunces144ptSoftLightItalic,
21228 #[cfg(feature = "static")]
21229 Font::Fraunces144ptSoftItalic,
21230 #[cfg(feature = "static")]
21231 Font::Fraunces144ptSoftSemiBoldItalic,
21232 #[cfg(feature = "static")]
21233 Font::Fraunces144ptSoftBoldItalic,
21234 #[cfg(feature = "static")]
21235 Font::Fraunces144ptSoftBlackItalic,
21236 #[cfg(feature = "static")]
21237 Font::Fraunces9ptSuperSoftThinItalic,
21238 #[cfg(feature = "static")]
21239 Font::Fraunces9ptSuperSoftLightItalic,
21240 #[cfg(feature = "static")]
21241 Font::Fraunces9ptSuperSoftItalic,
21242 #[cfg(feature = "static")]
21243 Font::Fraunces9ptSuperSoftSemiBoldItalic,
21244 #[cfg(feature = "static")]
21245 Font::Fraunces9ptSuperSoftBoldItalic,
21246 #[cfg(feature = "static")]
21247 Font::Fraunces9ptSuperSoftBlackItalic,
21248 #[cfg(feature = "static")]
21249 Font::Fraunces72ptSuperSoftThinItalic,
21250 #[cfg(feature = "static")]
21251 Font::Fraunces72ptSuperSoftLightItalic,
21252 #[cfg(feature = "static")]
21253 Font::Fraunces72ptSuperSoftItalic,
21254 #[cfg(feature = "static")]
21255 Font::Fraunces72ptSuperSoftSemiBoldItalic,
21256 #[cfg(feature = "static")]
21257 Font::Fraunces72ptSuperSoftBoldItalic,
21258 #[cfg(feature = "static")]
21259 Font::Fraunces72ptSuperSoftBlackItalic,
21260 #[cfg(feature = "static")]
21261 Font::Fraunces144ptSuperSoftThinItalic,
21262 #[cfg(feature = "static")]
21263 Font::Fraunces144ptSuperSoftLightItalic,
21264 #[cfg(feature = "static")]
21265 Font::Fraunces144ptSuperSoftItalic,
21266 #[cfg(feature = "static")]
21267 Font::Fraunces144ptSuperSoftSemiBoldItalic,
21268 #[cfg(feature = "static")]
21269 Font::Fraunces144ptSuperSoftBoldItalic,
21270 #[cfg(feature = "static")]
21271 Font::Fraunces144ptSuperSoftBlackItalic,
21272 #[cfg(feature = "variable")]
21273 Font::FrauncesVariable,
21274 #[cfg(feature = "variable")]
21275 Font::FrauncesItalicVariable,
21276 #[cfg(feature = "static")]
21277 Font::GFSDidotRegular,
21278 #[cfg(feature = "static")]
21279 Font::GabrielaRegular,
21280 #[cfg(feature = "static")]
21281 Font::GelasioRegular,
21282 #[cfg(feature = "static")]
21283 Font::GelasioMedium,
21284 #[cfg(feature = "static")]
21285 Font::GelasioSemiBold,
21286 #[cfg(feature = "static")]
21287 Font::GelasioBold,
21288 #[cfg(feature = "static")]
21289 Font::GelasioItalic,
21290 #[cfg(feature = "static")]
21291 Font::GelasioMediumItalic,
21292 #[cfg(feature = "static")]
21293 Font::GelasioSemiBoldItalic,
21294 #[cfg(feature = "static")]
21295 Font::GelasioBoldItalic,
21296 #[cfg(feature = "variable")]
21297 Font::GelasioVariable,
21298 #[cfg(feature = "variable")]
21299 Font::GelasioItalicVariable,
21300 #[cfg(feature = "static")]
21301 Font::GentiumBookPlusRegular,
21302 #[cfg(feature = "static")]
21303 Font::GentiumBookPlusItalic,
21304 #[cfg(feature = "static")]
21305 Font::GentiumBookPlusBold,
21306 #[cfg(feature = "static")]
21307 Font::GentiumBookPlusBoldItalic,
21308 #[cfg(feature = "static")]
21309 Font::GentiumPlusRegular,
21310 #[cfg(feature = "static")]
21311 Font::GentiumPlusItalic,
21312 #[cfg(feature = "static")]
21313 Font::GentiumPlusBold,
21314 #[cfg(feature = "static")]
21315 Font::GentiumPlusBoldItalic,
21316 #[cfg(feature = "static")]
21317 Font::GildaDisplayRegular,
21318 #[cfg(feature = "static")]
21319 Font::GlegooRegular,
21320 #[cfg(feature = "static")]
21321 Font::GlegooBold,
21322 #[cfg(feature = "static")]
21323 Font::GloockRegular,
21324 #[cfg(feature = "static")]
21325 Font::GoudyBookletter1911Regular,
21326 #[cfg(feature = "static")]
21327 Font::GowunBatangRegular,
21328 #[cfg(feature = "static")]
21329 Font::GowunBatangBold,
21330 #[cfg(feature = "static")]
21331 Font::GraduateRegular,
21332 #[cfg(feature = "static")]
21333 Font::GrandifloraOneRegular,
21334 #[cfg(feature = "static")]
21335 Font::GrenzeThin,
21336 #[cfg(feature = "static")]
21337 Font::GrenzeThinItalic,
21338 #[cfg(feature = "static")]
21339 Font::GrenzeExtraLight,
21340 #[cfg(feature = "static")]
21341 Font::GrenzeExtraLightItalic,
21342 #[cfg(feature = "static")]
21343 Font::GrenzeLight,
21344 #[cfg(feature = "static")]
21345 Font::GrenzeLightItalic,
21346 #[cfg(feature = "static")]
21347 Font::GrenzeRegular,
21348 #[cfg(feature = "static")]
21349 Font::GrenzeItalic,
21350 #[cfg(feature = "static")]
21351 Font::GrenzeMedium,
21352 #[cfg(feature = "static")]
21353 Font::GrenzeMediumItalic,
21354 #[cfg(feature = "static")]
21355 Font::GrenzeSemiBold,
21356 #[cfg(feature = "static")]
21357 Font::GrenzeSemiBoldItalic,
21358 #[cfg(feature = "static")]
21359 Font::GrenzeBold,
21360 #[cfg(feature = "static")]
21361 Font::GrenzeBoldItalic,
21362 #[cfg(feature = "static")]
21363 Font::GrenzeExtraBold,
21364 #[cfg(feature = "static")]
21365 Font::GrenzeExtraBoldItalic,
21366 #[cfg(feature = "static")]
21367 Font::GrenzeBlack,
21368 #[cfg(feature = "static")]
21369 Font::GrenzeBlackItalic,
21370 #[cfg(feature = "static")]
21371 Font::GulzarRegular,
21372 #[cfg(feature = "static")]
21373 Font::GupterRegular,
21374 #[cfg(feature = "static")]
21375 Font::GupterMedium,
21376 #[cfg(feature = "static")]
21377 Font::GupterBold,
21378 #[cfg(feature = "static")]
21379 Font::GurajadaRegular,
21380 #[cfg(feature = "static")]
21381 Font::HabibiRegular,
21382 #[cfg(feature = "static")]
21383 Font::HahmletThin,
21384 #[cfg(feature = "static")]
21385 Font::HahmletExtraLight,
21386 #[cfg(feature = "static")]
21387 Font::HahmletLight,
21388 #[cfg(feature = "static")]
21389 Font::HahmletRegular,
21390 #[cfg(feature = "static")]
21391 Font::HahmletMedium,
21392 #[cfg(feature = "static")]
21393 Font::HahmletSemiBold,
21394 #[cfg(feature = "static")]
21395 Font::HahmletBold,
21396 #[cfg(feature = "static")]
21397 Font::HahmletExtraBold,
21398 #[cfg(feature = "static")]
21399 Font::HahmletBlack,
21400 #[cfg(feature = "variable")]
21401 Font::HahmletVariable,
21402 #[cfg(feature = "static")]
21403 Font::HalantLight,
21404 #[cfg(feature = "static")]
21405 Font::HalantRegular,
21406 #[cfg(feature = "static")]
21407 Font::HalantMedium,
21408 #[cfg(feature = "static")]
21409 Font::HalantSemiBold,
21410 #[cfg(feature = "static")]
21411 Font::HalantBold,
21412 #[cfg(feature = "static")]
21413 Font::HanumanThin,
21414 #[cfg(feature = "static")]
21415 Font::HanumanLight,
21416 #[cfg(feature = "static")]
21417 Font::HanumanRegular,
21418 #[cfg(feature = "static")]
21419 Font::HanumanBold,
21420 #[cfg(feature = "static")]
21421 Font::HanumanBlack,
21422 #[cfg(feature = "static")]
21423 Font::HeadlandOneRegular,
21424 #[cfg(feature = "static")]
21425 Font::HedvigLettersSerif14ptRegular,
21426 #[cfg(feature = "static")]
21427 Font::HedvigLettersSerif18ptRegular,
21428 #[cfg(feature = "variable")]
21429 Font::HedvigLettersSerifRegularVariable,
21430 #[cfg(feature = "static")]
21431 Font::HeptaSlabThin,
21432 #[cfg(feature = "static")]
21433 Font::HeptaSlabExtraLight,
21434 #[cfg(feature = "static")]
21435 Font::HeptaSlabLight,
21436 #[cfg(feature = "static")]
21437 Font::HeptaSlabRegular,
21438 #[cfg(feature = "static")]
21439 Font::HeptaSlabMedium,
21440 #[cfg(feature = "static")]
21441 Font::HeptaSlabSemiBold,
21442 #[cfg(feature = "static")]
21443 Font::HeptaSlabBold,
21444 #[cfg(feature = "static")]
21445 Font::HeptaSlabExtraBold,
21446 #[cfg(feature = "static")]
21447 Font::HeptaSlabBlack,
21448 #[cfg(feature = "variable")]
21449 Font::HeptaSlabVariable,
21450 #[cfg(feature = "static")]
21451 Font::HinaMinchoRegular,
21452 #[cfg(feature = "static")]
21453 Font::HoltwoodOneSCRegular,
21454 #[cfg(feature = "static")]
21455 Font::IBMPlexSerifThin,
21456 #[cfg(feature = "static")]
21457 Font::IBMPlexSerifThinItalic,
21458 #[cfg(feature = "static")]
21459 Font::IBMPlexSerifExtraLight,
21460 #[cfg(feature = "static")]
21461 Font::IBMPlexSerifExtraLightItalic,
21462 #[cfg(feature = "static")]
21463 Font::IBMPlexSerifLight,
21464 #[cfg(feature = "static")]
21465 Font::IBMPlexSerifLightItalic,
21466 #[cfg(feature = "static")]
21467 Font::IBMPlexSerifRegular,
21468 #[cfg(feature = "static")]
21469 Font::IBMPlexSerifItalic,
21470 #[cfg(feature = "static")]
21471 Font::IBMPlexSerifMedium,
21472 #[cfg(feature = "static")]
21473 Font::IBMPlexSerifMediumItalic,
21474 #[cfg(feature = "static")]
21475 Font::IBMPlexSerifSemiBold,
21476 #[cfg(feature = "static")]
21477 Font::IBMPlexSerifSemiBoldItalic,
21478 #[cfg(feature = "static")]
21479 Font::IBMPlexSerifBold,
21480 #[cfg(feature = "static")]
21481 Font::IBMPlexSerifBoldItalic,
21482 #[cfg(feature = "static")]
21483 Font::IMFellDWPicaRegular,
21484 #[cfg(feature = "static")]
21485 Font::IMFellDWPicaItalic,
21486 #[cfg(feature = "static")]
21487 Font::IMFellDWPicaSCRegular,
21488 #[cfg(feature = "static")]
21489 Font::IMFellDoublePicaRegular,
21490 #[cfg(feature = "static")]
21491 Font::IMFellDoublePicaItalic,
21492 #[cfg(feature = "static")]
21493 Font::IMFellDoublePicaSCRegular,
21494 #[cfg(feature = "static")]
21495 Font::IMFellEnglishRegular,
21496 #[cfg(feature = "static")]
21497 Font::IMFellEnglishItalic,
21498 #[cfg(feature = "static")]
21499 Font::IMFellEnglishSCRegular,
21500 #[cfg(feature = "static")]
21501 Font::IMFellFrenchCanonRegular,
21502 #[cfg(feature = "static")]
21503 Font::IMFellFrenchCanonItalic,
21504 #[cfg(feature = "static")]
21505 Font::IMFellFrenchCanonSCRegular,
21506 #[cfg(feature = "static")]
21507 Font::IMFellGreatPrimerRegular,
21508 #[cfg(feature = "static")]
21509 Font::IMFellGreatPrimerItalic,
21510 #[cfg(feature = "static")]
21511 Font::IMFellGreatPrimerSCRegular,
21512 #[cfg(feature = "static")]
21513 Font::IbarraRealNovaRegular,
21514 #[cfg(feature = "static")]
21515 Font::IbarraRealNovaMedium,
21516 #[cfg(feature = "static")]
21517 Font::IbarraRealNovaSemiBold,
21518 #[cfg(feature = "static")]
21519 Font::IbarraRealNovaBold,
21520 #[cfg(feature = "static")]
21521 Font::IbarraRealNovaItalic,
21522 #[cfg(feature = "static")]
21523 Font::IbarraRealNovaMediumItalic,
21524 #[cfg(feature = "static")]
21525 Font::IbarraRealNovaSemiBoldItalic,
21526 #[cfg(feature = "static")]
21527 Font::IbarraRealNovaBoldItalic,
21528 #[cfg(feature = "variable")]
21529 Font::IbarraRealNovaVariable,
21530 #[cfg(feature = "variable")]
21531 Font::IbarraRealNovaItalicVariable,
21532 #[cfg(feature = "static")]
21533 Font::Imbue14ptThin,
21534 #[cfg(feature = "static")]
21535 Font::Imbue14ptExtraLight,
21536 #[cfg(feature = "static")]
21537 Font::Imbue14ptLight,
21538 #[cfg(feature = "static")]
21539 Font::Imbue14ptRegular,
21540 #[cfg(feature = "static")]
21541 Font::Imbue14ptMedium,
21542 #[cfg(feature = "static")]
21543 Font::Imbue14ptSemiBold,
21544 #[cfg(feature = "static")]
21545 Font::Imbue14ptBold,
21546 #[cfg(feature = "static")]
21547 Font::Imbue14ptExtraBold,
21548 #[cfg(feature = "static")]
21549 Font::Imbue14ptBlack,
21550 #[cfg(feature = "static")]
21551 Font::Imbue24ptThin,
21552 #[cfg(feature = "static")]
21553 Font::Imbue24ptExtraLight,
21554 #[cfg(feature = "static")]
21555 Font::Imbue24ptLight,
21556 #[cfg(feature = "static")]
21557 Font::Imbue24ptRegular,
21558 #[cfg(feature = "static")]
21559 Font::Imbue24ptMedium,
21560 #[cfg(feature = "static")]
21561 Font::Imbue24ptSemiBold,
21562 #[cfg(feature = "static")]
21563 Font::Imbue24ptBold,
21564 #[cfg(feature = "static")]
21565 Font::Imbue24ptExtraBold,
21566 #[cfg(feature = "static")]
21567 Font::Imbue24ptBlack,
21568 #[cfg(feature = "static")]
21569 Font::Imbue36ptThin,
21570 #[cfg(feature = "static")]
21571 Font::Imbue36ptExtraLight,
21572 #[cfg(feature = "static")]
21573 Font::Imbue36ptLight,
21574 #[cfg(feature = "static")]
21575 Font::Imbue36ptRegular,
21576 #[cfg(feature = "static")]
21577 Font::Imbue36ptMedium,
21578 #[cfg(feature = "static")]
21579 Font::Imbue36ptSemiBold,
21580 #[cfg(feature = "static")]
21581 Font::Imbue36ptBold,
21582 #[cfg(feature = "static")]
21583 Font::Imbue36ptExtraBold,
21584 #[cfg(feature = "static")]
21585 Font::Imbue36ptBlack,
21586 #[cfg(feature = "static")]
21587 Font::Imbue48ptThin,
21588 #[cfg(feature = "static")]
21589 Font::Imbue48ptExtraLight,
21590 #[cfg(feature = "static")]
21591 Font::Imbue48ptLight,
21592 #[cfg(feature = "static")]
21593 Font::Imbue48ptRegular,
21594 #[cfg(feature = "static")]
21595 Font::Imbue48ptMedium,
21596 #[cfg(feature = "static")]
21597 Font::Imbue48ptSemiBold,
21598 #[cfg(feature = "static")]
21599 Font::Imbue48ptBold,
21600 #[cfg(feature = "static")]
21601 Font::Imbue48ptExtraBold,
21602 #[cfg(feature = "static")]
21603 Font::Imbue48ptBlack,
21604 #[cfg(feature = "static")]
21605 Font::Imbue72ptThin,
21606 #[cfg(feature = "static")]
21607 Font::Imbue72ptExtraLight,
21608 #[cfg(feature = "static")]
21609 Font::Imbue72ptLight,
21610 #[cfg(feature = "static")]
21611 Font::Imbue72ptRegular,
21612 #[cfg(feature = "static")]
21613 Font::Imbue72ptMedium,
21614 #[cfg(feature = "static")]
21615 Font::Imbue72ptSemiBold,
21616 #[cfg(feature = "static")]
21617 Font::Imbue72ptBold,
21618 #[cfg(feature = "static")]
21619 Font::Imbue72ptExtraBold,
21620 #[cfg(feature = "static")]
21621 Font::Imbue72ptBlack,
21622 #[cfg(feature = "variable")]
21623 Font::ImbueVariable,
21624 #[cfg(feature = "static")]
21625 Font::InikaRegular,
21626 #[cfg(feature = "static")]
21627 Font::InikaBold,
21628 #[cfg(feature = "static")]
21629 Font::InknutAntiquaLight,
21630 #[cfg(feature = "static")]
21631 Font::InknutAntiquaRegular,
21632 #[cfg(feature = "static")]
21633 Font::InknutAntiquaMedium,
21634 #[cfg(feature = "static")]
21635 Font::InknutAntiquaSemiBold,
21636 #[cfg(feature = "static")]
21637 Font::InknutAntiquaBold,
21638 #[cfg(feature = "static")]
21639 Font::InknutAntiquaExtraBold,
21640 #[cfg(feature = "static")]
21641 Font::InknutAntiquaBlack,
21642 #[cfg(feature = "static")]
21643 Font::InriaSerifLight,
21644 #[cfg(feature = "static")]
21645 Font::InriaSerifLightItalic,
21646 #[cfg(feature = "static")]
21647 Font::InriaSerifRegular,
21648 #[cfg(feature = "static")]
21649 Font::InriaSerifItalic,
21650 #[cfg(feature = "static")]
21651 Font::InriaSerifBold,
21652 #[cfg(feature = "static")]
21653 Font::InriaSerifBoldItalic,
21654 #[cfg(feature = "static")]
21655 Font::InstrumentSerifRegular,
21656 #[cfg(feature = "static")]
21657 Font::InstrumentSerifItalic,
21658 #[cfg(feature = "static")]
21659 Font::ItalianaRegular,
21660 #[cfg(feature = "static")]
21661 Font::JacquesFrancoisRegular,
21662 #[cfg(feature = "static")]
21663 Font::JoanRegular,
21664 #[cfg(feature = "static")]
21665 Font::JomolhariRegular,
21666 #[cfg(feature = "static")]
21667 Font::JosefinSlabThin,
21668 #[cfg(feature = "static")]
21669 Font::JosefinSlabExtraLight,
21670 #[cfg(feature = "static")]
21671 Font::JosefinSlabLight,
21672 #[cfg(feature = "static")]
21673 Font::JosefinSlabRegular,
21674 #[cfg(feature = "static")]
21675 Font::JosefinSlabMedium,
21676 #[cfg(feature = "static")]
21677 Font::JosefinSlabSemiBold,
21678 #[cfg(feature = "static")]
21679 Font::JosefinSlabBold,
21680 #[cfg(feature = "static")]
21681 Font::JosefinSlabThinItalic,
21682 #[cfg(feature = "static")]
21683 Font::JosefinSlabExtraLightItalic,
21684 #[cfg(feature = "static")]
21685 Font::JosefinSlabLightItalic,
21686 #[cfg(feature = "static")]
21687 Font::JosefinSlabItalic,
21688 #[cfg(feature = "static")]
21689 Font::JosefinSlabMediumItalic,
21690 #[cfg(feature = "static")]
21691 Font::JosefinSlabSemiBoldItalic,
21692 #[cfg(feature = "static")]
21693 Font::JosefinSlabBoldItalic,
21694 #[cfg(feature = "variable")]
21695 Font::JosefinSlabVariable,
21696 #[cfg(feature = "variable")]
21697 Font::JosefinSlabItalicVariable,
21698 #[cfg(feature = "static")]
21699 Font::JudsonRegular,
21700 #[cfg(feature = "static")]
21701 Font::JudsonItalic,
21702 #[cfg(feature = "static")]
21703 Font::JudsonBold,
21704 #[cfg(feature = "static")]
21705 Font::JungeRegular,
21706 #[cfg(feature = "static")]
21707 Font::KadwaRegular,
21708 #[cfg(feature = "static")]
21709 Font::KadwaBold,
21710 #[cfg(feature = "static")]
21711 Font::KaiseiDecolRegular,
21712 #[cfg(feature = "static")]
21713 Font::KaiseiDecolMedium,
21714 #[cfg(feature = "static")]
21715 Font::KaiseiDecolBold,
21716 #[cfg(feature = "static")]
21717 Font::KaiseiHarunoUmiRegular,
21718 #[cfg(feature = "static")]
21719 Font::KaiseiHarunoUmiMedium,
21720 #[cfg(feature = "static")]
21721 Font::KaiseiHarunoUmiBold,
21722 #[cfg(feature = "static")]
21723 Font::KaiseiOptiRegular,
21724 #[cfg(feature = "static")]
21725 Font::KaiseiOptiMedium,
21726 #[cfg(feature = "static")]
21727 Font::KaiseiOptiBold,
21728 #[cfg(feature = "static")]
21729 Font::KaiseiTokuminRegular,
21730 #[cfg(feature = "static")]
21731 Font::KaiseiTokuminMedium,
21732 #[cfg(feature = "static")]
21733 Font::KaiseiTokuminBold,
21734 #[cfg(feature = "static")]
21735 Font::KaiseiTokuminExtraBold,
21736 #[cfg(feature = "static")]
21737 Font::KalniaThin,
21738 #[cfg(feature = "static")]
21739 Font::KalniaExtraLight,
21740 #[cfg(feature = "static")]
21741 Font::KalniaLight,
21742 #[cfg(feature = "static")]
21743 Font::KalniaRegular,
21744 #[cfg(feature = "static")]
21745 Font::KalniaMedium,
21746 #[cfg(feature = "static")]
21747 Font::KalniaSemiBold,
21748 #[cfg(feature = "static")]
21749 Font::KalniaBold,
21750 #[cfg(feature = "static")]
21751 Font::KalniaSemiExpandedThin,
21752 #[cfg(feature = "static")]
21753 Font::KalniaSemiExpandedExtraLight,
21754 #[cfg(feature = "static")]
21755 Font::KalniaSemiExpandedLight,
21756 #[cfg(feature = "static")]
21757 Font::KalniaSemiExpandedRegular,
21758 #[cfg(feature = "static")]
21759 Font::KalniaSemiExpandedMedium,
21760 #[cfg(feature = "static")]
21761 Font::KalniaSemiExpandedSemiBold,
21762 #[cfg(feature = "static")]
21763 Font::KalniaSemiExpandedBold,
21764 #[cfg(feature = "static")]
21765 Font::KalniaExpandedThin,
21766 #[cfg(feature = "static")]
21767 Font::KalniaExpandedExtraLight,
21768 #[cfg(feature = "static")]
21769 Font::KalniaExpandedLight,
21770 #[cfg(feature = "static")]
21771 Font::KalniaExpandedRegular,
21772 #[cfg(feature = "static")]
21773 Font::KalniaExpandedMedium,
21774 #[cfg(feature = "static")]
21775 Font::KalniaExpandedSemiBold,
21776 #[cfg(feature = "static")]
21777 Font::KalniaExpandedBold,
21778 #[cfg(feature = "variable")]
21779 Font::KalniaVariable,
21780 #[cfg(feature = "static")]
21781 Font::KameronRegular,
21782 #[cfg(feature = "static")]
21783 Font::KameronMedium,
21784 #[cfg(feature = "static")]
21785 Font::KameronSemiBold,
21786 #[cfg(feature = "static")]
21787 Font::KameronBold,
21788 #[cfg(feature = "variable")]
21789 Font::KameronVariable,
21790 #[cfg(feature = "static")]
21791 Font::KarmaLight,
21792 #[cfg(feature = "static")]
21793 Font::KarmaRegular,
21794 #[cfg(feature = "static")]
21795 Font::KarmaMedium,
21796 #[cfg(feature = "static")]
21797 Font::KarmaSemiBold,
21798 #[cfg(feature = "static")]
21799 Font::KarmaBold,
21800 #[cfg(feature = "static")]
21801 Font::KayPhoDuRegular,
21802 #[cfg(feature = "static")]
21803 Font::KayPhoDuMedium,
21804 #[cfg(feature = "static")]
21805 Font::KayPhoDuSemiBold,
21806 #[cfg(feature = "static")]
21807 Font::KayPhoDuBold,
21808 #[cfg(feature = "static")]
21809 Font::KiwiMaruLight,
21810 #[cfg(feature = "static")]
21811 Font::KiwiMaruRegular,
21812 #[cfg(feature = "static")]
21813 Font::KiwiMaruMedium,
21814 #[cfg(feature = "static")]
21815 Font::KohSantepheapThin,
21816 #[cfg(feature = "static")]
21817 Font::KohSantepheapLight,
21818 #[cfg(feature = "static")]
21819 Font::KohSantepheapRegular,
21820 #[cfg(feature = "static")]
21821 Font::KohSantepheapBold,
21822 #[cfg(feature = "static")]
21823 Font::KohSantepheapBlack,
21824 #[cfg(feature = "static")]
21825 Font::KottaOneRegular,
21826 #[cfg(feature = "static")]
21827 Font::KreonLight,
21828 #[cfg(feature = "static")]
21829 Font::KreonRegular,
21830 #[cfg(feature = "static")]
21831 Font::KreonMedium,
21832 #[cfg(feature = "static")]
21833 Font::KreonSemiBold,
21834 #[cfg(feature = "static")]
21835 Font::KreonBold,
21836 #[cfg(feature = "variable")]
21837 Font::KreonVariable,
21838 #[cfg(feature = "static")]
21839 Font::KuraleRegular,
21840 #[cfg(feature = "static")]
21841 Font::LabradaThin,
21842 #[cfg(feature = "static")]
21843 Font::LabradaExtraLight,
21844 #[cfg(feature = "static")]
21845 Font::LabradaLight,
21846 #[cfg(feature = "static")]
21847 Font::LabradaRegular,
21848 #[cfg(feature = "static")]
21849 Font::LabradaMedium,
21850 #[cfg(feature = "static")]
21851 Font::LabradaSemiBold,
21852 #[cfg(feature = "static")]
21853 Font::LabradaBold,
21854 #[cfg(feature = "static")]
21855 Font::LabradaExtraBold,
21856 #[cfg(feature = "static")]
21857 Font::LabradaBlack,
21858 #[cfg(feature = "static")]
21859 Font::LabradaThinItalic,
21860 #[cfg(feature = "static")]
21861 Font::LabradaExtraLightItalic,
21862 #[cfg(feature = "static")]
21863 Font::LabradaLightItalic,
21864 #[cfg(feature = "static")]
21865 Font::LabradaItalic,
21866 #[cfg(feature = "static")]
21867 Font::LabradaMediumItalic,
21868 #[cfg(feature = "static")]
21869 Font::LabradaSemiBoldItalic,
21870 #[cfg(feature = "static")]
21871 Font::LabradaBoldItalic,
21872 #[cfg(feature = "static")]
21873 Font::LabradaExtraBoldItalic,
21874 #[cfg(feature = "static")]
21875 Font::LabradaBlackItalic,
21876 #[cfg(feature = "variable")]
21877 Font::LabradaVariable,
21878 #[cfg(feature = "variable")]
21879 Font::LabradaItalicVariable,
21880 #[cfg(feature = "static")]
21881 Font::LateefExtraLight,
21882 #[cfg(feature = "static")]
21883 Font::LateefLight,
21884 #[cfg(feature = "static")]
21885 Font::LateefRegular,
21886 #[cfg(feature = "static")]
21887 Font::LateefMedium,
21888 #[cfg(feature = "static")]
21889 Font::LateefSemiBold,
21890 #[cfg(feature = "static")]
21891 Font::LateefBold,
21892 #[cfg(feature = "static")]
21893 Font::LateefExtraBold,
21894 #[cfg(feature = "static")]
21895 Font::LedgerRegular,
21896 #[cfg(feature = "static")]
21897 Font::LibreBaskervilleRegular,
21898 #[cfg(feature = "static")]
21899 Font::LibreBaskervilleItalic,
21900 #[cfg(feature = "static")]
21901 Font::LibreBaskervilleBold,
21902 #[cfg(feature = "static")]
21903 Font::LibreBodoniRegular,
21904 #[cfg(feature = "static")]
21905 Font::LibreBodoniMedium,
21906 #[cfg(feature = "static")]
21907 Font::LibreBodoniSemiBold,
21908 #[cfg(feature = "static")]
21909 Font::LibreBodoniBold,
21910 #[cfg(feature = "static")]
21911 Font::LibreBodoniItalic,
21912 #[cfg(feature = "static")]
21913 Font::LibreBodoniMediumItalic,
21914 #[cfg(feature = "static")]
21915 Font::LibreBodoniSemiBoldItalic,
21916 #[cfg(feature = "static")]
21917 Font::LibreBodoniBoldItalic,
21918 #[cfg(feature = "variable")]
21919 Font::LibreBodoniVariable,
21920 #[cfg(feature = "variable")]
21921 Font::LibreBodoniItalicVariable,
21922 #[cfg(feature = "static")]
21923 Font::LibreCaslonDisplayRegular,
21924 #[cfg(feature = "static")]
21925 Font::LibreCaslonTextRegular,
21926 #[cfg(feature = "static")]
21927 Font::LibreCaslonTextItalic,
21928 #[cfg(feature = "static")]
21929 Font::LibreCaslonTextBold,
21930 #[cfg(feature = "static")]
21931 Font::LindenHillRegular,
21932 #[cfg(feature = "static")]
21933 Font::LindenHillItalic,
21934 #[cfg(feature = "static")]
21935 Font::LisuBosaExtraLight,
21936 #[cfg(feature = "static")]
21937 Font::LisuBosaExtraLightItalic,
21938 #[cfg(feature = "static")]
21939 Font::LisuBosaLight,
21940 #[cfg(feature = "static")]
21941 Font::LisuBosaLightItalic,
21942 #[cfg(feature = "static")]
21943 Font::LisuBosaRegular,
21944 #[cfg(feature = "static")]
21945 Font::LisuBosaItalic,
21946 #[cfg(feature = "static")]
21947 Font::LisuBosaMedium,
21948 #[cfg(feature = "static")]
21949 Font::LisuBosaMediumItalic,
21950 #[cfg(feature = "static")]
21951 Font::LisuBosaSemiBold,
21952 #[cfg(feature = "static")]
21953 Font::LisuBosaSemiBoldItalic,
21954 #[cfg(feature = "static")]
21955 Font::LisuBosaBold,
21956 #[cfg(feature = "static")]
21957 Font::LisuBosaBoldItalic,
21958 #[cfg(feature = "static")]
21959 Font::LisuBosaExtraBold,
21960 #[cfg(feature = "static")]
21961 Font::LisuBosaExtraBoldItalic,
21962 #[cfg(feature = "static")]
21963 Font::LisuBosaBlack,
21964 #[cfg(feature = "static")]
21965 Font::LisuBosaBlackItalic,
21966 #[cfg(feature = "static")]
21967 Font::LiterataExtraLight,
21968 #[cfg(feature = "static")]
21969 Font::LiterataLight,
21970 #[cfg(feature = "static")]
21971 Font::LiterataRegular,
21972 #[cfg(feature = "static")]
21973 Font::LiterataMedium,
21974 #[cfg(feature = "static")]
21975 Font::LiterataSemiBold,
21976 #[cfg(feature = "static")]
21977 Font::LiterataBold,
21978 #[cfg(feature = "static")]
21979 Font::LiterataExtraBold,
21980 #[cfg(feature = "static")]
21981 Font::LiterataBlack,
21982 #[cfg(feature = "static")]
21983 Font::Literata18ptExtraLight,
21984 #[cfg(feature = "static")]
21985 Font::Literata18ptLight,
21986 #[cfg(feature = "static")]
21987 Font::Literata18ptRegular,
21988 #[cfg(feature = "static")]
21989 Font::Literata18ptMedium,
21990 #[cfg(feature = "static")]
21991 Font::Literata18ptSemiBold,
21992 #[cfg(feature = "static")]
21993 Font::Literata18ptBold,
21994 #[cfg(feature = "static")]
21995 Font::Literata18ptExtraBold,
21996 #[cfg(feature = "static")]
21997 Font::Literata18ptBlack,
21998 #[cfg(feature = "static")]
21999 Font::Literata24ptExtraLight,
22000 #[cfg(feature = "static")]
22001 Font::Literata24ptLight,
22002 #[cfg(feature = "static")]
22003 Font::Literata24ptRegular,
22004 #[cfg(feature = "static")]
22005 Font::Literata24ptMedium,
22006 #[cfg(feature = "static")]
22007 Font::Literata24ptSemiBold,
22008 #[cfg(feature = "static")]
22009 Font::Literata24ptBold,
22010 #[cfg(feature = "static")]
22011 Font::Literata24ptExtraBold,
22012 #[cfg(feature = "static")]
22013 Font::Literata24ptBlack,
22014 #[cfg(feature = "static")]
22015 Font::Literata36ptExtraLight,
22016 #[cfg(feature = "static")]
22017 Font::Literata36ptLight,
22018 #[cfg(feature = "static")]
22019 Font::Literata36ptRegular,
22020 #[cfg(feature = "static")]
22021 Font::Literata36ptMedium,
22022 #[cfg(feature = "static")]
22023 Font::Literata36ptSemiBold,
22024 #[cfg(feature = "static")]
22025 Font::Literata36ptBold,
22026 #[cfg(feature = "static")]
22027 Font::Literata36ptExtraBold,
22028 #[cfg(feature = "static")]
22029 Font::Literata36ptBlack,
22030 #[cfg(feature = "static")]
22031 Font::Literata60ptExtraLight,
22032 #[cfg(feature = "static")]
22033 Font::Literata60ptLight,
22034 #[cfg(feature = "static")]
22035 Font::Literata60ptRegular,
22036 #[cfg(feature = "static")]
22037 Font::Literata60ptMedium,
22038 #[cfg(feature = "static")]
22039 Font::Literata60ptSemiBold,
22040 #[cfg(feature = "static")]
22041 Font::Literata60ptBold,
22042 #[cfg(feature = "static")]
22043 Font::Literata60ptExtraBold,
22044 #[cfg(feature = "static")]
22045 Font::Literata60ptBlack,
22046 #[cfg(feature = "static")]
22047 Font::LiterataExtraLightItalic,
22048 #[cfg(feature = "static")]
22049 Font::LiterataLightItalic,
22050 #[cfg(feature = "static")]
22051 Font::LiterataItalic,
22052 #[cfg(feature = "static")]
22053 Font::LiterataMediumItalic,
22054 #[cfg(feature = "static")]
22055 Font::LiterataSemiBoldItalic,
22056 #[cfg(feature = "static")]
22057 Font::LiterataBoldItalic,
22058 #[cfg(feature = "static")]
22059 Font::LiterataExtraBoldItalic,
22060 #[cfg(feature = "static")]
22061 Font::LiterataBlackItalic,
22062 #[cfg(feature = "static")]
22063 Font::Literata18ptExtraLightItalic,
22064 #[cfg(feature = "static")]
22065 Font::Literata18ptLightItalic,
22066 #[cfg(feature = "static")]
22067 Font::Literata18ptItalic,
22068 #[cfg(feature = "static")]
22069 Font::Literata18ptMediumItalic,
22070 #[cfg(feature = "static")]
22071 Font::Literata18ptSemiBoldItalic,
22072 #[cfg(feature = "static")]
22073 Font::Literata18ptBoldItalic,
22074 #[cfg(feature = "static")]
22075 Font::Literata18ptExtraBoldItalic,
22076 #[cfg(feature = "static")]
22077 Font::Literata18ptBlackItalic,
22078 #[cfg(feature = "static")]
22079 Font::Literata24ptExtraLightItalic,
22080 #[cfg(feature = "static")]
22081 Font::Literata24ptLightItalic,
22082 #[cfg(feature = "static")]
22083 Font::Literata24ptItalic,
22084 #[cfg(feature = "static")]
22085 Font::Literata24ptMediumItalic,
22086 #[cfg(feature = "static")]
22087 Font::Literata24ptSemiBoldItalic,
22088 #[cfg(feature = "static")]
22089 Font::Literata24ptBoldItalic,
22090 #[cfg(feature = "static")]
22091 Font::Literata24ptExtraBoldItalic,
22092 #[cfg(feature = "static")]
22093 Font::Literata24ptBlackItalic,
22094 #[cfg(feature = "static")]
22095 Font::Literata36ptExtraLightItalic,
22096 #[cfg(feature = "static")]
22097 Font::Literata36ptLightItalic,
22098 #[cfg(feature = "static")]
22099 Font::Literata36ptItalic,
22100 #[cfg(feature = "static")]
22101 Font::Literata36ptMediumItalic,
22102 #[cfg(feature = "static")]
22103 Font::Literata36ptSemiBoldItalic,
22104 #[cfg(feature = "static")]
22105 Font::Literata36ptBoldItalic,
22106 #[cfg(feature = "static")]
22107 Font::Literata36ptExtraBoldItalic,
22108 #[cfg(feature = "static")]
22109 Font::Literata36ptBlackItalic,
22110 #[cfg(feature = "static")]
22111 Font::Literata60ptExtraLightItalic,
22112 #[cfg(feature = "static")]
22113 Font::Literata60ptLightItalic,
22114 #[cfg(feature = "static")]
22115 Font::Literata60ptItalic,
22116 #[cfg(feature = "static")]
22117 Font::Literata60ptMediumItalic,
22118 #[cfg(feature = "static")]
22119 Font::Literata60ptSemiBoldItalic,
22120 #[cfg(feature = "static")]
22121 Font::Literata60ptBoldItalic,
22122 #[cfg(feature = "static")]
22123 Font::Literata60ptExtraBoldItalic,
22124 #[cfg(feature = "static")]
22125 Font::Literata60ptBlackItalic,
22126 #[cfg(feature = "variable")]
22127 Font::LiterataVariable,
22128 #[cfg(feature = "variable")]
22129 Font::LiterataItalicVariable,
22130 #[cfg(feature = "static")]
22131 Font::LoraRegular,
22132 #[cfg(feature = "static")]
22133 Font::LoraMedium,
22134 #[cfg(feature = "static")]
22135 Font::LoraSemiBold,
22136 #[cfg(feature = "static")]
22137 Font::LoraBold,
22138 #[cfg(feature = "static")]
22139 Font::LoraItalic,
22140 #[cfg(feature = "static")]
22141 Font::LoraMediumItalic,
22142 #[cfg(feature = "static")]
22143 Font::LoraSemiBoldItalic,
22144 #[cfg(feature = "static")]
22145 Font::LoraBoldItalic,
22146 #[cfg(feature = "variable")]
22147 Font::LoraVariable,
22148 #[cfg(feature = "variable")]
22149 Font::LoraItalicVariable,
22150 #[cfg(feature = "static")]
22151 Font::LusitanaRegular,
22152 #[cfg(feature = "static")]
22153 Font::LusitanaBold,
22154 #[cfg(feature = "static")]
22155 Font::LustriaRegular,
22156 #[cfg(feature = "static")]
22157 Font::MaidenOrangeRegular,
22158 #[cfg(feature = "static")]
22159 Font::MaitreeExtraLight,
22160 #[cfg(feature = "static")]
22161 Font::MaitreeLight,
22162 #[cfg(feature = "static")]
22163 Font::MaitreeRegular,
22164 #[cfg(feature = "static")]
22165 Font::MaitreeMedium,
22166 #[cfg(feature = "static")]
22167 Font::MaitreeSemiBold,
22168 #[cfg(feature = "static")]
22169 Font::MaitreeBold,
22170 #[cfg(feature = "static")]
22171 Font::ManameRegular,
22172 #[cfg(feature = "static")]
22173 Font::ManualeLight,
22174 #[cfg(feature = "static")]
22175 Font::ManualeRegular,
22176 #[cfg(feature = "static")]
22177 Font::ManualeMedium,
22178 #[cfg(feature = "static")]
22179 Font::ManualeSemiBold,
22180 #[cfg(feature = "static")]
22181 Font::ManualeBold,
22182 #[cfg(feature = "static")]
22183 Font::ManualeExtraBold,
22184 #[cfg(feature = "static")]
22185 Font::ManualeLightItalic,
22186 #[cfg(feature = "static")]
22187 Font::ManualeItalic,
22188 #[cfg(feature = "static")]
22189 Font::ManualeMediumItalic,
22190 #[cfg(feature = "static")]
22191 Font::ManualeSemiBoldItalic,
22192 #[cfg(feature = "static")]
22193 Font::ManualeBoldItalic,
22194 #[cfg(feature = "static")]
22195 Font::ManualeExtraBoldItalic,
22196 #[cfg(feature = "variable")]
22197 Font::ManualeVariable,
22198 #[cfg(feature = "variable")]
22199 Font::ManualeItalicVariable,
22200 #[cfg(feature = "static")]
22201 Font::MarcellusRegular,
22202 #[cfg(feature = "static")]
22203 Font::MarcellusSCRegular,
22204 #[cfg(feature = "static")]
22205 Font::MarkaziTextRegular,
22206 #[cfg(feature = "static")]
22207 Font::MarkaziTextMedium,
22208 #[cfg(feature = "static")]
22209 Font::MarkaziTextSemiBold,
22210 #[cfg(feature = "static")]
22211 Font::MarkaziTextBold,
22212 #[cfg(feature = "variable")]
22213 Font::MarkaziTextVariable,
22214 #[cfg(feature = "static")]
22215 Font::MarkoOneRegular,
22216 #[cfg(feature = "static")]
22217 Font::MartelExtraLight,
22218 #[cfg(feature = "static")]
22219 Font::MartelLight,
22220 #[cfg(feature = "static")]
22221 Font::MartelRegular,
22222 #[cfg(feature = "static")]
22223 Font::MartelSemiBold,
22224 #[cfg(feature = "static")]
22225 Font::MartelBold,
22226 #[cfg(feature = "static")]
22227 Font::MartelExtraBold,
22228 #[cfg(feature = "static")]
22229 Font::MartelBlack,
22230 #[cfg(feature = "static")]
22231 Font::MateRegular,
22232 #[cfg(feature = "static")]
22233 Font::MateItalic,
22234 #[cfg(feature = "static")]
22235 Font::MateSCRegular,
22236 #[cfg(feature = "static")]
22237 Font::MerriweatherLight,
22238 #[cfg(feature = "static")]
22239 Font::MerriweatherLightItalic,
22240 #[cfg(feature = "static")]
22241 Font::MerriweatherRegular,
22242 #[cfg(feature = "static")]
22243 Font::MerriweatherItalic,
22244 #[cfg(feature = "static")]
22245 Font::MerriweatherBold,
22246 #[cfg(feature = "static")]
22247 Font::MerriweatherBoldItalic,
22248 #[cfg(feature = "static")]
22249 Font::MerriweatherBlack,
22250 #[cfg(feature = "static")]
22251 Font::MerriweatherBlackItalic,
22252 #[cfg(feature = "static")]
22253 Font::MirzaRegular,
22254 #[cfg(feature = "static")]
22255 Font::MirzaMedium,
22256 #[cfg(feature = "static")]
22257 Font::MirzaSemiBold,
22258 #[cfg(feature = "static")]
22259 Font::MirzaBold,
22260 #[cfg(feature = "static")]
22261 Font::MontagaRegular,
22262 #[cfg(feature = "static")]
22263 Font::MontaguSlab24ptThin,
22264 #[cfg(feature = "static")]
22265 Font::MontaguSlab24ptExtraLight,
22266 #[cfg(feature = "static")]
22267 Font::MontaguSlab24ptLight,
22268 #[cfg(feature = "static")]
22269 Font::MontaguSlab24ptRegular,
22270 #[cfg(feature = "static")]
22271 Font::MontaguSlab24ptMedium,
22272 #[cfg(feature = "static")]
22273 Font::MontaguSlab24ptSemiBold,
22274 #[cfg(feature = "static")]
22275 Font::MontaguSlab24ptBold,
22276 #[cfg(feature = "static")]
22277 Font::MontaguSlab36ptThin,
22278 #[cfg(feature = "static")]
22279 Font::MontaguSlab36ptExtraLight,
22280 #[cfg(feature = "static")]
22281 Font::MontaguSlab36ptLight,
22282 #[cfg(feature = "static")]
22283 Font::MontaguSlab36ptRegular,
22284 #[cfg(feature = "static")]
22285 Font::MontaguSlab36ptMedium,
22286 #[cfg(feature = "static")]
22287 Font::MontaguSlab36ptSemiBold,
22288 #[cfg(feature = "static")]
22289 Font::MontaguSlab36ptBold,
22290 #[cfg(feature = "static")]
22291 Font::MontaguSlab48ptThin,
22292 #[cfg(feature = "static")]
22293 Font::MontaguSlab48ptExtraLight,
22294 #[cfg(feature = "static")]
22295 Font::MontaguSlab48ptLight,
22296 #[cfg(feature = "static")]
22297 Font::MontaguSlab48ptRegular,
22298 #[cfg(feature = "static")]
22299 Font::MontaguSlab48ptMedium,
22300 #[cfg(feature = "static")]
22301 Font::MontaguSlab48ptSemiBold,
22302 #[cfg(feature = "static")]
22303 Font::MontaguSlab48ptBold,
22304 #[cfg(feature = "static")]
22305 Font::MontaguSlab96ptThin,
22306 #[cfg(feature = "static")]
22307 Font::MontaguSlab96ptExtraLight,
22308 #[cfg(feature = "static")]
22309 Font::MontaguSlab96ptLight,
22310 #[cfg(feature = "static")]
22311 Font::MontaguSlab96ptRegular,
22312 #[cfg(feature = "static")]
22313 Font::MontaguSlab96ptMedium,
22314 #[cfg(feature = "static")]
22315 Font::MontaguSlab96ptSemiBold,
22316 #[cfg(feature = "static")]
22317 Font::MontaguSlab96ptBold,
22318 #[cfg(feature = "static")]
22319 Font::MontaguSlab120ptThin,
22320 #[cfg(feature = "static")]
22321 Font::MontaguSlab120ptExtraLight,
22322 #[cfg(feature = "static")]
22323 Font::MontaguSlab120ptLight,
22324 #[cfg(feature = "static")]
22325 Font::MontaguSlab120ptRegular,
22326 #[cfg(feature = "static")]
22327 Font::MontaguSlab120ptMedium,
22328 #[cfg(feature = "static")]
22329 Font::MontaguSlab120ptSemiBold,
22330 #[cfg(feature = "static")]
22331 Font::MontaguSlab120ptBold,
22332 #[cfg(feature = "variable")]
22333 Font::MontaguSlabVariable,
22334 #[cfg(feature = "static")]
22335 Font::NamdhinggoRegular,
22336 #[cfg(feature = "static")]
22337 Font::NamdhinggoMedium,
22338 #[cfg(feature = "static")]
22339 Font::NamdhinggoSemiBold,
22340 #[cfg(feature = "static")]
22341 Font::NamdhinggoBold,
22342 #[cfg(feature = "static")]
22343 Font::NamdhinggoExtraBold,
22344 #[cfg(feature = "static")]
22345 Font::NanumMyeongjoRegular,
22346 #[cfg(feature = "static")]
22347 Font::NanumMyeongjoBold,
22348 #[cfg(feature = "static")]
22349 Font::NanumMyeongjoExtraBold,
22350 #[cfg(feature = "static")]
22351 Font::NarnoorRegular,
22352 #[cfg(feature = "static")]
22353 Font::NarnoorMedium,
22354 #[cfg(feature = "static")]
22355 Font::NarnoorSemiBold,
22356 #[cfg(feature = "static")]
22357 Font::NarnoorBold,
22358 #[cfg(feature = "static")]
22359 Font::NarnoorExtraBold,
22360 #[cfg(feature = "static")]
22361 Font::NeutonExtraLight,
22362 #[cfg(feature = "static")]
22363 Font::NeutonLight,
22364 #[cfg(feature = "static")]
22365 Font::NeutonRegular,
22366 #[cfg(feature = "static")]
22367 Font::NeutonItalic,
22368 #[cfg(feature = "static")]
22369 Font::NeutonBold,
22370 #[cfg(feature = "static")]
22371 Font::NeutonExtraBold,
22372 #[cfg(feature = "static")]
22373 Font::NewTegominRegular,
22374 #[cfg(feature = "static")]
22375 Font::Newsreader9ptExtraLight,
22376 #[cfg(feature = "static")]
22377 Font::Newsreader9ptLight,
22378 #[cfg(feature = "static")]
22379 Font::Newsreader9ptRegular,
22380 #[cfg(feature = "static")]
22381 Font::Newsreader9ptMedium,
22382 #[cfg(feature = "static")]
22383 Font::Newsreader9ptSemiBold,
22384 #[cfg(feature = "static")]
22385 Font::Newsreader9ptBold,
22386 #[cfg(feature = "static")]
22387 Font::Newsreader9ptExtraBold,
22388 #[cfg(feature = "static")]
22389 Font::Newsreader14ptExtraLight,
22390 #[cfg(feature = "static")]
22391 Font::Newsreader14ptLight,
22392 #[cfg(feature = "static")]
22393 Font::Newsreader14ptRegular,
22394 #[cfg(feature = "static")]
22395 Font::Newsreader14ptMedium,
22396 #[cfg(feature = "static")]
22397 Font::Newsreader14ptSemiBold,
22398 #[cfg(feature = "static")]
22399 Font::Newsreader14ptBold,
22400 #[cfg(feature = "static")]
22401 Font::Newsreader14ptExtraBold,
22402 #[cfg(feature = "static")]
22403 Font::Newsreader24ptExtraLight,
22404 #[cfg(feature = "static")]
22405 Font::Newsreader24ptLight,
22406 #[cfg(feature = "static")]
22407 Font::Newsreader24ptRegular,
22408 #[cfg(feature = "static")]
22409 Font::Newsreader24ptMedium,
22410 #[cfg(feature = "static")]
22411 Font::Newsreader24ptSemiBold,
22412 #[cfg(feature = "static")]
22413 Font::Newsreader24ptBold,
22414 #[cfg(feature = "static")]
22415 Font::Newsreader24ptExtraBold,
22416 #[cfg(feature = "static")]
22417 Font::Newsreader36ptExtraLight,
22418 #[cfg(feature = "static")]
22419 Font::Newsreader36ptLight,
22420 #[cfg(feature = "static")]
22421 Font::Newsreader36ptRegular,
22422 #[cfg(feature = "static")]
22423 Font::Newsreader36ptMedium,
22424 #[cfg(feature = "static")]
22425 Font::Newsreader36ptSemiBold,
22426 #[cfg(feature = "static")]
22427 Font::Newsreader36ptBold,
22428 #[cfg(feature = "static")]
22429 Font::Newsreader36ptExtraBold,
22430 #[cfg(feature = "static")]
22431 Font::Newsreader60ptExtraLight,
22432 #[cfg(feature = "static")]
22433 Font::Newsreader60ptLight,
22434 #[cfg(feature = "static")]
22435 Font::Newsreader60ptRegular,
22436 #[cfg(feature = "static")]
22437 Font::Newsreader60ptMedium,
22438 #[cfg(feature = "static")]
22439 Font::Newsreader60ptSemiBold,
22440 #[cfg(feature = "static")]
22441 Font::Newsreader60ptBold,
22442 #[cfg(feature = "static")]
22443 Font::Newsreader60ptExtraBold,
22444 #[cfg(feature = "static")]
22445 Font::Newsreader9ptExtraLightItalic,
22446 #[cfg(feature = "static")]
22447 Font::Newsreader9ptLightItalic,
22448 #[cfg(feature = "static")]
22449 Font::Newsreader9ptItalic,
22450 #[cfg(feature = "static")]
22451 Font::Newsreader9ptMediumItalic,
22452 #[cfg(feature = "static")]
22453 Font::Newsreader9ptSemiBoldItalic,
22454 #[cfg(feature = "static")]
22455 Font::Newsreader9ptBoldItalic,
22456 #[cfg(feature = "static")]
22457 Font::Newsreader9ptExtraBoldItalic,
22458 #[cfg(feature = "static")]
22459 Font::Newsreader14ptExtraLightItalic,
22460 #[cfg(feature = "static")]
22461 Font::Newsreader14ptLightItalic,
22462 #[cfg(feature = "static")]
22463 Font::Newsreader14ptItalic,
22464 #[cfg(feature = "static")]
22465 Font::Newsreader14ptMediumItalic,
22466 #[cfg(feature = "static")]
22467 Font::Newsreader14ptSemiBoldItalic,
22468 #[cfg(feature = "static")]
22469 Font::Newsreader14ptBoldItalic,
22470 #[cfg(feature = "static")]
22471 Font::Newsreader14ptExtraBoldItalic,
22472 #[cfg(feature = "static")]
22473 Font::Newsreader24ptExtraLightItalic,
22474 #[cfg(feature = "static")]
22475 Font::Newsreader24ptLightItalic,
22476 #[cfg(feature = "static")]
22477 Font::Newsreader24ptItalic,
22478 #[cfg(feature = "static")]
22479 Font::Newsreader24ptMediumItalic,
22480 #[cfg(feature = "static")]
22481 Font::Newsreader24ptSemiBoldItalic,
22482 #[cfg(feature = "static")]
22483 Font::Newsreader24ptBoldItalic,
22484 #[cfg(feature = "static")]
22485 Font::Newsreader24ptExtraBoldItalic,
22486 #[cfg(feature = "static")]
22487 Font::Newsreader36ptExtraLightItalic,
22488 #[cfg(feature = "static")]
22489 Font::Newsreader36ptLightItalic,
22490 #[cfg(feature = "static")]
22491 Font::Newsreader36ptItalic,
22492 #[cfg(feature = "static")]
22493 Font::Newsreader36ptMediumItalic,
22494 #[cfg(feature = "static")]
22495 Font::Newsreader36ptSemiBoldItalic,
22496 #[cfg(feature = "static")]
22497 Font::Newsreader36ptBoldItalic,
22498 #[cfg(feature = "static")]
22499 Font::Newsreader36ptExtraBoldItalic,
22500 #[cfg(feature = "static")]
22501 Font::Newsreader60ptExtraLightItalic,
22502 #[cfg(feature = "static")]
22503 Font::Newsreader60ptLightItalic,
22504 #[cfg(feature = "static")]
22505 Font::Newsreader60ptItalic,
22506 #[cfg(feature = "static")]
22507 Font::Newsreader60ptMediumItalic,
22508 #[cfg(feature = "static")]
22509 Font::Newsreader60ptSemiBoldItalic,
22510 #[cfg(feature = "static")]
22511 Font::Newsreader60ptBoldItalic,
22512 #[cfg(feature = "static")]
22513 Font::Newsreader60ptExtraBoldItalic,
22514 #[cfg(feature = "variable")]
22515 Font::NewsreaderVariable,
22516 #[cfg(feature = "variable")]
22517 Font::NewsreaderItalicVariable,
22518 #[cfg(feature = "static")]
22519 Font::NoticiaTextRegular,
22520 #[cfg(feature = "static")]
22521 Font::NoticiaTextItalic,
22522 #[cfg(feature = "static")]
22523 Font::NoticiaTextBold,
22524 #[cfg(feature = "static")]
22525 Font::NoticiaTextBoldItalic,
22526 #[cfg(feature = "static")]
22527 Font::NotoNaskhArabicRegular,
22528 #[cfg(feature = "static")]
22529 Font::NotoNaskhArabicMedium,
22530 #[cfg(feature = "static")]
22531 Font::NotoNaskhArabicSemiBold,
22532 #[cfg(feature = "static")]
22533 Font::NotoNaskhArabicBold,
22534 #[cfg(feature = "variable")]
22535 Font::NotoNaskhArabicVariable,
22536 #[cfg(feature = "static")]
22537 Font::NotoNastaliqUrduRegular,
22538 #[cfg(feature = "static")]
22539 Font::NotoNastaliqUrduMedium,
22540 #[cfg(feature = "static")]
22541 Font::NotoNastaliqUrduSemiBold,
22542 #[cfg(feature = "static")]
22543 Font::NotoNastaliqUrduBold,
22544 #[cfg(feature = "variable")]
22545 Font::NotoNastaliqUrduVariable,
22546 #[cfg(feature = "static")]
22547 Font::NotoRashiHebrewThin,
22548 #[cfg(feature = "static")]
22549 Font::NotoRashiHebrewExtraLight,
22550 #[cfg(feature = "static")]
22551 Font::NotoRashiHebrewLight,
22552 #[cfg(feature = "static")]
22553 Font::NotoRashiHebrewRegular,
22554 #[cfg(feature = "static")]
22555 Font::NotoRashiHebrewMedium,
22556 #[cfg(feature = "static")]
22557 Font::NotoRashiHebrewSemiBold,
22558 #[cfg(feature = "static")]
22559 Font::NotoRashiHebrewBold,
22560 #[cfg(feature = "static")]
22561 Font::NotoRashiHebrewExtraBold,
22562 #[cfg(feature = "static")]
22563 Font::NotoRashiHebrewBlack,
22564 #[cfg(feature = "variable")]
22565 Font::NotoRashiHebrewVariable,
22566 #[cfg(feature = "static")]
22567 Font::NotoSerifExtraCondensedThin,
22568 #[cfg(feature = "static")]
22569 Font::NotoSerifExtraCondensedExtraLight,
22570 #[cfg(feature = "static")]
22571 Font::NotoSerifExtraCondensedLight,
22572 #[cfg(feature = "static")]
22573 Font::NotoSerifExtraCondensedRegular,
22574 #[cfg(feature = "static")]
22575 Font::NotoSerifExtraCondensedMedium,
22576 #[cfg(feature = "static")]
22577 Font::NotoSerifExtraCondensedSemiBold,
22578 #[cfg(feature = "static")]
22579 Font::NotoSerifExtraCondensedBold,
22580 #[cfg(feature = "static")]
22581 Font::NotoSerifExtraCondensedExtraBold,
22582 #[cfg(feature = "static")]
22583 Font::NotoSerifExtraCondensedBlack,
22584 #[cfg(feature = "static")]
22585 Font::NotoSerifCondensedThin,
22586 #[cfg(feature = "static")]
22587 Font::NotoSerifCondensedExtraLight,
22588 #[cfg(feature = "static")]
22589 Font::NotoSerifCondensedLight,
22590 #[cfg(feature = "static")]
22591 Font::NotoSerifCondensedRegular,
22592 #[cfg(feature = "static")]
22593 Font::NotoSerifCondensedMedium,
22594 #[cfg(feature = "static")]
22595 Font::NotoSerifCondensedSemiBold,
22596 #[cfg(feature = "static")]
22597 Font::NotoSerifCondensedBold,
22598 #[cfg(feature = "static")]
22599 Font::NotoSerifCondensedExtraBold,
22600 #[cfg(feature = "static")]
22601 Font::NotoSerifCondensedBlack,
22602 #[cfg(feature = "static")]
22603 Font::NotoSerifSemiCondensedThin,
22604 #[cfg(feature = "static")]
22605 Font::NotoSerifSemiCondensedExtraLight,
22606 #[cfg(feature = "static")]
22607 Font::NotoSerifSemiCondensedLight,
22608 #[cfg(feature = "static")]
22609 Font::NotoSerifSemiCondensedRegular,
22610 #[cfg(feature = "static")]
22611 Font::NotoSerifSemiCondensedMedium,
22612 #[cfg(feature = "static")]
22613 Font::NotoSerifSemiCondensedSemiBold,
22614 #[cfg(feature = "static")]
22615 Font::NotoSerifSemiCondensedBold,
22616 #[cfg(feature = "static")]
22617 Font::NotoSerifSemiCondensedExtraBold,
22618 #[cfg(feature = "static")]
22619 Font::NotoSerifSemiCondensedBlack,
22620 #[cfg(feature = "static")]
22621 Font::NotoSerifThin,
22622 #[cfg(feature = "static")]
22623 Font::NotoSerifExtraLight,
22624 #[cfg(feature = "static")]
22625 Font::NotoSerifLight,
22626 #[cfg(feature = "static")]
22627 Font::NotoSerifRegular,
22628 #[cfg(feature = "static")]
22629 Font::NotoSerifMedium,
22630 #[cfg(feature = "static")]
22631 Font::NotoSerifSemiBold,
22632 #[cfg(feature = "static")]
22633 Font::NotoSerifBold,
22634 #[cfg(feature = "static")]
22635 Font::NotoSerifExtraBold,
22636 #[cfg(feature = "static")]
22637 Font::NotoSerifBlack,
22638 #[cfg(feature = "static")]
22639 Font::NotoSerifExtraCondensedThinItalic,
22640 #[cfg(feature = "static")]
22641 Font::NotoSerifExtraCondensedExtraLightItalic,
22642 #[cfg(feature = "static")]
22643 Font::NotoSerifExtraCondensedLightItalic,
22644 #[cfg(feature = "static")]
22645 Font::NotoSerifExtraCondensedItalic,
22646 #[cfg(feature = "static")]
22647 Font::NotoSerifExtraCondensedMediumItalic,
22648 #[cfg(feature = "static")]
22649 Font::NotoSerifExtraCondensedSemiBoldItalic,
22650 #[cfg(feature = "static")]
22651 Font::NotoSerifExtraCondensedBoldItalic,
22652 #[cfg(feature = "static")]
22653 Font::NotoSerifExtraCondensedExtraBoldItalic,
22654 #[cfg(feature = "static")]
22655 Font::NotoSerifExtraCondensedBlackItalic,
22656 #[cfg(feature = "static")]
22657 Font::NotoSerifCondensedThinItalic,
22658 #[cfg(feature = "static")]
22659 Font::NotoSerifCondensedExtraLightItalic,
22660 #[cfg(feature = "static")]
22661 Font::NotoSerifCondensedLightItalic,
22662 #[cfg(feature = "static")]
22663 Font::NotoSerifCondensedItalic,
22664 #[cfg(feature = "static")]
22665 Font::NotoSerifCondensedMediumItalic,
22666 #[cfg(feature = "static")]
22667 Font::NotoSerifCondensedSemiBoldItalic,
22668 #[cfg(feature = "static")]
22669 Font::NotoSerifCondensedBoldItalic,
22670 #[cfg(feature = "static")]
22671 Font::NotoSerifCondensedExtraBoldItalic,
22672 #[cfg(feature = "static")]
22673 Font::NotoSerifCondensedBlackItalic,
22674 #[cfg(feature = "static")]
22675 Font::NotoSerifSemiCondensedThinItalic,
22676 #[cfg(feature = "static")]
22677 Font::NotoSerifSemiCondensedExtraLightItalic,
22678 #[cfg(feature = "static")]
22679 Font::NotoSerifSemiCondensedLightItalic,
22680 #[cfg(feature = "static")]
22681 Font::NotoSerifSemiCondensedItalic,
22682 #[cfg(feature = "static")]
22683 Font::NotoSerifSemiCondensedMediumItalic,
22684 #[cfg(feature = "static")]
22685 Font::NotoSerifSemiCondensedSemiBoldItalic,
22686 #[cfg(feature = "static")]
22687 Font::NotoSerifSemiCondensedBoldItalic,
22688 #[cfg(feature = "static")]
22689 Font::NotoSerifSemiCondensedExtraBoldItalic,
22690 #[cfg(feature = "static")]
22691 Font::NotoSerifSemiCondensedBlackItalic,
22692 #[cfg(feature = "static")]
22693 Font::NotoSerifThinItalic,
22694 #[cfg(feature = "static")]
22695 Font::NotoSerifExtraLightItalic,
22696 #[cfg(feature = "static")]
22697 Font::NotoSerifLightItalic,
22698 #[cfg(feature = "static")]
22699 Font::NotoSerifItalic,
22700 #[cfg(feature = "static")]
22701 Font::NotoSerifMediumItalic,
22702 #[cfg(feature = "static")]
22703 Font::NotoSerifSemiBoldItalic,
22704 #[cfg(feature = "static")]
22705 Font::NotoSerifBoldItalic,
22706 #[cfg(feature = "static")]
22707 Font::NotoSerifExtraBoldItalic,
22708 #[cfg(feature = "static")]
22709 Font::NotoSerifBlackItalic,
22710 #[cfg(feature = "variable")]
22711 Font::NotoSerifVariable,
22712 #[cfg(feature = "variable")]
22713 Font::NotoSerifItalicVariable,
22714 #[cfg(feature = "static")]
22715 Font::NotoSerifAhomRegular,
22716 #[cfg(feature = "static")]
22717 Font::NotoSerifArmenianExtraCondensedThin,
22718 #[cfg(feature = "static")]
22719 Font::NotoSerifArmenianExtraCondensedExtraLight,
22720 #[cfg(feature = "static")]
22721 Font::NotoSerifArmenianExtraCondensedLight,
22722 #[cfg(feature = "static")]
22723 Font::NotoSerifArmenianExtraCondensedRegular,
22724 #[cfg(feature = "static")]
22725 Font::NotoSerifArmenianExtraCondensedMedium,
22726 #[cfg(feature = "static")]
22727 Font::NotoSerifArmenianExtraCondensedSemiBold,
22728 #[cfg(feature = "static")]
22729 Font::NotoSerifArmenianExtraCondensedBold,
22730 #[cfg(feature = "static")]
22731 Font::NotoSerifArmenianExtraCondensedExtraBold,
22732 #[cfg(feature = "static")]
22733 Font::NotoSerifArmenianExtraCondensedBlack,
22734 #[cfg(feature = "static")]
22735 Font::NotoSerifArmenianCondensedThin,
22736 #[cfg(feature = "static")]
22737 Font::NotoSerifArmenianCondensedExtraLight,
22738 #[cfg(feature = "static")]
22739 Font::NotoSerifArmenianCondensedLight,
22740 #[cfg(feature = "static")]
22741 Font::NotoSerifArmenianCondensedRegular,
22742 #[cfg(feature = "static")]
22743 Font::NotoSerifArmenianCondensedMedium,
22744 #[cfg(feature = "static")]
22745 Font::NotoSerifArmenianCondensedSemiBold,
22746 #[cfg(feature = "static")]
22747 Font::NotoSerifArmenianCondensedBold,
22748 #[cfg(feature = "static")]
22749 Font::NotoSerifArmenianCondensedExtraBold,
22750 #[cfg(feature = "static")]
22751 Font::NotoSerifArmenianCondensedBlack,
22752 #[cfg(feature = "static")]
22753 Font::NotoSerifArmenianSemiCondensedThin,
22754 #[cfg(feature = "static")]
22755 Font::NotoSerifArmenianSemiCondensedExtraLight,
22756 #[cfg(feature = "static")]
22757 Font::NotoSerifArmenianSemiCondensedLight,
22758 #[cfg(feature = "static")]
22759 Font::NotoSerifArmenianSemiCondensedRegular,
22760 #[cfg(feature = "static")]
22761 Font::NotoSerifArmenianSemiCondensedMedium,
22762 #[cfg(feature = "static")]
22763 Font::NotoSerifArmenianSemiCondensedSemiBold,
22764 #[cfg(feature = "static")]
22765 Font::NotoSerifArmenianSemiCondensedBold,
22766 #[cfg(feature = "static")]
22767 Font::NotoSerifArmenianSemiCondensedExtraBold,
22768 #[cfg(feature = "static")]
22769 Font::NotoSerifArmenianSemiCondensedBlack,
22770 #[cfg(feature = "static")]
22771 Font::NotoSerifArmenianThin,
22772 #[cfg(feature = "static")]
22773 Font::NotoSerifArmenianExtraLight,
22774 #[cfg(feature = "static")]
22775 Font::NotoSerifArmenianLight,
22776 #[cfg(feature = "static")]
22777 Font::NotoSerifArmenianRegular,
22778 #[cfg(feature = "static")]
22779 Font::NotoSerifArmenianMedium,
22780 #[cfg(feature = "static")]
22781 Font::NotoSerifArmenianSemiBold,
22782 #[cfg(feature = "static")]
22783 Font::NotoSerifArmenianBold,
22784 #[cfg(feature = "static")]
22785 Font::NotoSerifArmenianExtraBold,
22786 #[cfg(feature = "static")]
22787 Font::NotoSerifArmenianBlack,
22788 #[cfg(feature = "variable")]
22789 Font::NotoSerifArmenianVariable,
22790 #[cfg(feature = "static")]
22791 Font::NotoSerifBalineseRegular,
22792 #[cfg(feature = "static")]
22793 Font::NotoSerifBengaliExtraCondensedThin,
22794 #[cfg(feature = "static")]
22795 Font::NotoSerifBengaliExtraCondensedExtraLight,
22796 #[cfg(feature = "static")]
22797 Font::NotoSerifBengaliExtraCondensedLight,
22798 #[cfg(feature = "static")]
22799 Font::NotoSerifBengaliExtraCondensedRegular,
22800 #[cfg(feature = "static")]
22801 Font::NotoSerifBengaliExtraCondensedMedium,
22802 #[cfg(feature = "static")]
22803 Font::NotoSerifBengaliExtraCondensedSemiBold,
22804 #[cfg(feature = "static")]
22805 Font::NotoSerifBengaliExtraCondensedBold,
22806 #[cfg(feature = "static")]
22807 Font::NotoSerifBengaliExtraCondensedExtraBold,
22808 #[cfg(feature = "static")]
22809 Font::NotoSerifBengaliExtraCondensedBlack,
22810 #[cfg(feature = "static")]
22811 Font::NotoSerifBengaliCondensedThin,
22812 #[cfg(feature = "static")]
22813 Font::NotoSerifBengaliCondensedExtraLight,
22814 #[cfg(feature = "static")]
22815 Font::NotoSerifBengaliCondensedLight,
22816 #[cfg(feature = "static")]
22817 Font::NotoSerifBengaliCondensedRegular,
22818 #[cfg(feature = "static")]
22819 Font::NotoSerifBengaliCondensedMedium,
22820 #[cfg(feature = "static")]
22821 Font::NotoSerifBengaliCondensedSemiBold,
22822 #[cfg(feature = "static")]
22823 Font::NotoSerifBengaliCondensedBold,
22824 #[cfg(feature = "static")]
22825 Font::NotoSerifBengaliCondensedExtraBold,
22826 #[cfg(feature = "static")]
22827 Font::NotoSerifBengaliCondensedBlack,
22828 #[cfg(feature = "static")]
22829 Font::NotoSerifBengaliSemiCondensedThin,
22830 #[cfg(feature = "static")]
22831 Font::NotoSerifBengaliSemiCondensedExtraLight,
22832 #[cfg(feature = "static")]
22833 Font::NotoSerifBengaliSemiCondensedLight,
22834 #[cfg(feature = "static")]
22835 Font::NotoSerifBengaliSemiCondensedRegular,
22836 #[cfg(feature = "static")]
22837 Font::NotoSerifBengaliSemiCondensedMedium,
22838 #[cfg(feature = "static")]
22839 Font::NotoSerifBengaliSemiCondensedSemiBold,
22840 #[cfg(feature = "static")]
22841 Font::NotoSerifBengaliSemiCondensedBold,
22842 #[cfg(feature = "static")]
22843 Font::NotoSerifBengaliSemiCondensedExtraBold,
22844 #[cfg(feature = "static")]
22845 Font::NotoSerifBengaliSemiCondensedBlack,
22846 #[cfg(feature = "static")]
22847 Font::NotoSerifBengaliThin,
22848 #[cfg(feature = "static")]
22849 Font::NotoSerifBengaliExtraLight,
22850 #[cfg(feature = "static")]
22851 Font::NotoSerifBengaliLight,
22852 #[cfg(feature = "static")]
22853 Font::NotoSerifBengaliRegular,
22854 #[cfg(feature = "static")]
22855 Font::NotoSerifBengaliMedium,
22856 #[cfg(feature = "static")]
22857 Font::NotoSerifBengaliSemiBold,
22858 #[cfg(feature = "static")]
22859 Font::NotoSerifBengaliBold,
22860 #[cfg(feature = "static")]
22861 Font::NotoSerifBengaliExtraBold,
22862 #[cfg(feature = "static")]
22863 Font::NotoSerifBengaliBlack,
22864 #[cfg(feature = "variable")]
22865 Font::NotoSerifBengaliVariable,
22866 #[cfg(feature = "static")]
22867 Font::NotoSerifDevanagariExtraCondensedThin,
22868 #[cfg(feature = "static")]
22869 Font::NotoSerifDevanagariExtraCondensedExtraLight,
22870 #[cfg(feature = "static")]
22871 Font::NotoSerifDevanagariExtraCondensedLight,
22872 #[cfg(feature = "static")]
22873 Font::NotoSerifDevanagariExtraCondensedRegular,
22874 #[cfg(feature = "static")]
22875 Font::NotoSerifDevanagariExtraCondensedMedium,
22876 #[cfg(feature = "static")]
22877 Font::NotoSerifDevanagariExtraCondensedSemiBold,
22878 #[cfg(feature = "static")]
22879 Font::NotoSerifDevanagariExtraCondensedBold,
22880 #[cfg(feature = "static")]
22881 Font::NotoSerifDevanagariExtraCondensedExtraBold,
22882 #[cfg(feature = "static")]
22883 Font::NotoSerifDevanagariExtraCondensedBlack,
22884 #[cfg(feature = "static")]
22885 Font::NotoSerifDevanagariCondensedThin,
22886 #[cfg(feature = "static")]
22887 Font::NotoSerifDevanagariCondensedExtraLight,
22888 #[cfg(feature = "static")]
22889 Font::NotoSerifDevanagariCondensedLight,
22890 #[cfg(feature = "static")]
22891 Font::NotoSerifDevanagariCondensedRegular,
22892 #[cfg(feature = "static")]
22893 Font::NotoSerifDevanagariCondensedMedium,
22894 #[cfg(feature = "static")]
22895 Font::NotoSerifDevanagariCondensedSemiBold,
22896 #[cfg(feature = "static")]
22897 Font::NotoSerifDevanagariCondensedBold,
22898 #[cfg(feature = "static")]
22899 Font::NotoSerifDevanagariCondensedExtraBold,
22900 #[cfg(feature = "static")]
22901 Font::NotoSerifDevanagariCondensedBlack,
22902 #[cfg(feature = "static")]
22903 Font::NotoSerifDevanagariSemiCondensedThin,
22904 #[cfg(feature = "static")]
22905 Font::NotoSerifDevanagariSemiCondensedExtraLight,
22906 #[cfg(feature = "static")]
22907 Font::NotoSerifDevanagariSemiCondensedLight,
22908 #[cfg(feature = "static")]
22909 Font::NotoSerifDevanagariSemiCondensedRegular,
22910 #[cfg(feature = "static")]
22911 Font::NotoSerifDevanagariSemiCondensedMedium,
22912 #[cfg(feature = "static")]
22913 Font::NotoSerifDevanagariSemiCondensedSemiBold,
22914 #[cfg(feature = "static")]
22915 Font::NotoSerifDevanagariSemiCondensedBold,
22916 #[cfg(feature = "static")]
22917 Font::NotoSerifDevanagariSemiCondensedExtraBold,
22918 #[cfg(feature = "static")]
22919 Font::NotoSerifDevanagariSemiCondensedBlack,
22920 #[cfg(feature = "static")]
22921 Font::NotoSerifDevanagariThin,
22922 #[cfg(feature = "static")]
22923 Font::NotoSerifDevanagariExtraLight,
22924 #[cfg(feature = "static")]
22925 Font::NotoSerifDevanagariLight,
22926 #[cfg(feature = "static")]
22927 Font::NotoSerifDevanagariRegular,
22928 #[cfg(feature = "static")]
22929 Font::NotoSerifDevanagariMedium,
22930 #[cfg(feature = "static")]
22931 Font::NotoSerifDevanagariSemiBold,
22932 #[cfg(feature = "static")]
22933 Font::NotoSerifDevanagariBold,
22934 #[cfg(feature = "static")]
22935 Font::NotoSerifDevanagariExtraBold,
22936 #[cfg(feature = "static")]
22937 Font::NotoSerifDevanagariBlack,
22938 #[cfg(feature = "variable")]
22939 Font::NotoSerifDevanagariVariable,
22940 #[cfg(feature = "static")]
22941 Font::NotoSerifDisplayExtraCondensedThin,
22942 #[cfg(feature = "static")]
22943 Font::NotoSerifDisplayExtraCondensedExtraLight,
22944 #[cfg(feature = "static")]
22945 Font::NotoSerifDisplayExtraCondensedLight,
22946 #[cfg(feature = "static")]
22947 Font::NotoSerifDisplayExtraCondensedRegular,
22948 #[cfg(feature = "static")]
22949 Font::NotoSerifDisplayExtraCondensedMedium,
22950 #[cfg(feature = "static")]
22951 Font::NotoSerifDisplayExtraCondensedSemiBold,
22952 #[cfg(feature = "static")]
22953 Font::NotoSerifDisplayExtraCondensedBold,
22954 #[cfg(feature = "static")]
22955 Font::NotoSerifDisplayExtraCondensedExtraBold,
22956 #[cfg(feature = "static")]
22957 Font::NotoSerifDisplayExtraCondensedBlack,
22958 #[cfg(feature = "static")]
22959 Font::NotoSerifDisplayCondensedThin,
22960 #[cfg(feature = "static")]
22961 Font::NotoSerifDisplayCondensedExtraLight,
22962 #[cfg(feature = "static")]
22963 Font::NotoSerifDisplayCondensedLight,
22964 #[cfg(feature = "static")]
22965 Font::NotoSerifDisplayCondensedRegular,
22966 #[cfg(feature = "static")]
22967 Font::NotoSerifDisplayCondensedMedium,
22968 #[cfg(feature = "static")]
22969 Font::NotoSerifDisplayCondensedSemiBold,
22970 #[cfg(feature = "static")]
22971 Font::NotoSerifDisplayCondensedBold,
22972 #[cfg(feature = "static")]
22973 Font::NotoSerifDisplayCondensedExtraBold,
22974 #[cfg(feature = "static")]
22975 Font::NotoSerifDisplayCondensedBlack,
22976 #[cfg(feature = "static")]
22977 Font::NotoSerifDisplaySemiCondensedThin,
22978 #[cfg(feature = "static")]
22979 Font::NotoSerifDisplaySemiCondensedExtraLight,
22980 #[cfg(feature = "static")]
22981 Font::NotoSerifDisplaySemiCondensedLight,
22982 #[cfg(feature = "static")]
22983 Font::NotoSerifDisplaySemiCondensedRegular,
22984 #[cfg(feature = "static")]
22985 Font::NotoSerifDisplaySemiCondensedMedium,
22986 #[cfg(feature = "static")]
22987 Font::NotoSerifDisplaySemiCondensedSemiBold,
22988 #[cfg(feature = "static")]
22989 Font::NotoSerifDisplaySemiCondensedBold,
22990 #[cfg(feature = "static")]
22991 Font::NotoSerifDisplaySemiCondensedExtraBold,
22992 #[cfg(feature = "static")]
22993 Font::NotoSerifDisplaySemiCondensedBlack,
22994 #[cfg(feature = "static")]
22995 Font::NotoSerifDisplayThin,
22996 #[cfg(feature = "static")]
22997 Font::NotoSerifDisplayExtraLight,
22998 #[cfg(feature = "static")]
22999 Font::NotoSerifDisplayLight,
23000 #[cfg(feature = "static")]
23001 Font::NotoSerifDisplayRegular,
23002 #[cfg(feature = "static")]
23003 Font::NotoSerifDisplayMedium,
23004 #[cfg(feature = "static")]
23005 Font::NotoSerifDisplaySemiBold,
23006 #[cfg(feature = "static")]
23007 Font::NotoSerifDisplayBold,
23008 #[cfg(feature = "static")]
23009 Font::NotoSerifDisplayExtraBold,
23010 #[cfg(feature = "static")]
23011 Font::NotoSerifDisplayBlack,
23012 #[cfg(feature = "static")]
23013 Font::NotoSerifDisplayExtraCondensedThinItalic,
23014 #[cfg(feature = "static")]
23015 Font::NotoSerifDisplayExtraCondensedExtraLightItalic,
23016 #[cfg(feature = "static")]
23017 Font::NotoSerifDisplayExtraCondensedLightItalic,
23018 #[cfg(feature = "static")]
23019 Font::NotoSerifDisplayExtraCondensedItalic,
23020 #[cfg(feature = "static")]
23021 Font::NotoSerifDisplayExtraCondensedMediumItalic,
23022 #[cfg(feature = "static")]
23023 Font::NotoSerifDisplayExtraCondensedSemiBoldItalic,
23024 #[cfg(feature = "static")]
23025 Font::NotoSerifDisplayExtraCondensedBoldItalic,
23026 #[cfg(feature = "static")]
23027 Font::NotoSerifDisplayExtraCondensedExtraBoldItalic,
23028 #[cfg(feature = "static")]
23029 Font::NotoSerifDisplayExtraCondensedBlackItalic,
23030 #[cfg(feature = "static")]
23031 Font::NotoSerifDisplayCondensedThinItalic,
23032 #[cfg(feature = "static")]
23033 Font::NotoSerifDisplayCondensedExtraLightItalic,
23034 #[cfg(feature = "static")]
23035 Font::NotoSerifDisplayCondensedLightItalic,
23036 #[cfg(feature = "static")]
23037 Font::NotoSerifDisplayCondensedItalic,
23038 #[cfg(feature = "static")]
23039 Font::NotoSerifDisplayCondensedMediumItalic,
23040 #[cfg(feature = "static")]
23041 Font::NotoSerifDisplayCondensedSemiBoldItalic,
23042 #[cfg(feature = "static")]
23043 Font::NotoSerifDisplayCondensedBoldItalic,
23044 #[cfg(feature = "static")]
23045 Font::NotoSerifDisplayCondensedExtraBoldItalic,
23046 #[cfg(feature = "static")]
23047 Font::NotoSerifDisplayCondensedBlackItalic,
23048 #[cfg(feature = "static")]
23049 Font::NotoSerifDisplaySemiCondensedThinItalic,
23050 #[cfg(feature = "static")]
23051 Font::NotoSerifDisplaySemiCondensedExtraLightItalic,
23052 #[cfg(feature = "static")]
23053 Font::NotoSerifDisplaySemiCondensedLightItalic,
23054 #[cfg(feature = "static")]
23055 Font::NotoSerifDisplaySemiCondensedItalic,
23056 #[cfg(feature = "static")]
23057 Font::NotoSerifDisplaySemiCondensedMediumItalic,
23058 #[cfg(feature = "static")]
23059 Font::NotoSerifDisplaySemiCondensedSemiBoldItalic,
23060 #[cfg(feature = "static")]
23061 Font::NotoSerifDisplaySemiCondensedBoldItalic,
23062 #[cfg(feature = "static")]
23063 Font::NotoSerifDisplaySemiCondensedExtraBoldItalic,
23064 #[cfg(feature = "static")]
23065 Font::NotoSerifDisplaySemiCondensedBlackItalic,
23066 #[cfg(feature = "static")]
23067 Font::NotoSerifDisplayThinItalic,
23068 #[cfg(feature = "static")]
23069 Font::NotoSerifDisplayExtraLightItalic,
23070 #[cfg(feature = "static")]
23071 Font::NotoSerifDisplayLightItalic,
23072 #[cfg(feature = "static")]
23073 Font::NotoSerifDisplayItalic,
23074 #[cfg(feature = "static")]
23075 Font::NotoSerifDisplayMediumItalic,
23076 #[cfg(feature = "static")]
23077 Font::NotoSerifDisplaySemiBoldItalic,
23078 #[cfg(feature = "static")]
23079 Font::NotoSerifDisplayBoldItalic,
23080 #[cfg(feature = "static")]
23081 Font::NotoSerifDisplayExtraBoldItalic,
23082 #[cfg(feature = "static")]
23083 Font::NotoSerifDisplayBlackItalic,
23084 #[cfg(feature = "variable")]
23085 Font::NotoSerifDisplayVariable,
23086 #[cfg(feature = "variable")]
23087 Font::NotoSerifDisplayItalicVariable,
23088 #[cfg(feature = "static")]
23089 Font::NotoSerifDograRegular,
23090 #[cfg(feature = "static")]
23091 Font::NotoSerifEthiopicExtraCondensedThin,
23092 #[cfg(feature = "static")]
23093 Font::NotoSerifEthiopicExtraCondensedExtraLight,
23094 #[cfg(feature = "static")]
23095 Font::NotoSerifEthiopicExtraCondensedLight,
23096 #[cfg(feature = "static")]
23097 Font::NotoSerifEthiopicExtraCondensedRegular,
23098 #[cfg(feature = "static")]
23099 Font::NotoSerifEthiopicExtraCondensedMedium,
23100 #[cfg(feature = "static")]
23101 Font::NotoSerifEthiopicExtraCondensedSemiBold,
23102 #[cfg(feature = "static")]
23103 Font::NotoSerifEthiopicExtraCondensedBold,
23104 #[cfg(feature = "static")]
23105 Font::NotoSerifEthiopicExtraCondensedExtraBold,
23106 #[cfg(feature = "static")]
23107 Font::NotoSerifEthiopicExtraCondensedBlack,
23108 #[cfg(feature = "static")]
23109 Font::NotoSerifEthiopicCondensedThin,
23110 #[cfg(feature = "static")]
23111 Font::NotoSerifEthiopicCondensedExtraLight,
23112 #[cfg(feature = "static")]
23113 Font::NotoSerifEthiopicCondensedLight,
23114 #[cfg(feature = "static")]
23115 Font::NotoSerifEthiopicCondensedRegular,
23116 #[cfg(feature = "static")]
23117 Font::NotoSerifEthiopicCondensedMedium,
23118 #[cfg(feature = "static")]
23119 Font::NotoSerifEthiopicCondensedSemiBold,
23120 #[cfg(feature = "static")]
23121 Font::NotoSerifEthiopicCondensedBold,
23122 #[cfg(feature = "static")]
23123 Font::NotoSerifEthiopicCondensedExtraBold,
23124 #[cfg(feature = "static")]
23125 Font::NotoSerifEthiopicCondensedBlack,
23126 #[cfg(feature = "static")]
23127 Font::NotoSerifEthiopicSemiCondensedThin,
23128 #[cfg(feature = "static")]
23129 Font::NotoSerifEthiopicSemiCondensedExtraLight,
23130 #[cfg(feature = "static")]
23131 Font::NotoSerifEthiopicSemiCondensedLight,
23132 #[cfg(feature = "static")]
23133 Font::NotoSerifEthiopicSemiCondensedRegular,
23134 #[cfg(feature = "static")]
23135 Font::NotoSerifEthiopicSemiCondensedMedium,
23136 #[cfg(feature = "static")]
23137 Font::NotoSerifEthiopicSemiCondensedSemiBold,
23138 #[cfg(feature = "static")]
23139 Font::NotoSerifEthiopicSemiCondensedBold,
23140 #[cfg(feature = "static")]
23141 Font::NotoSerifEthiopicSemiCondensedExtraBold,
23142 #[cfg(feature = "static")]
23143 Font::NotoSerifEthiopicSemiCondensedBlack,
23144 #[cfg(feature = "static")]
23145 Font::NotoSerifEthiopicThin,
23146 #[cfg(feature = "static")]
23147 Font::NotoSerifEthiopicExtraLight,
23148 #[cfg(feature = "static")]
23149 Font::NotoSerifEthiopicLight,
23150 #[cfg(feature = "static")]
23151 Font::NotoSerifEthiopicRegular,
23152 #[cfg(feature = "static")]
23153 Font::NotoSerifEthiopicMedium,
23154 #[cfg(feature = "static")]
23155 Font::NotoSerifEthiopicSemiBold,
23156 #[cfg(feature = "static")]
23157 Font::NotoSerifEthiopicBold,
23158 #[cfg(feature = "static")]
23159 Font::NotoSerifEthiopicExtraBold,
23160 #[cfg(feature = "static")]
23161 Font::NotoSerifEthiopicBlack,
23162 #[cfg(feature = "variable")]
23163 Font::NotoSerifEthiopicVariable,
23164 #[cfg(feature = "static")]
23165 Font::NotoSerifGeorgianExtraCondensedThin,
23166 #[cfg(feature = "static")]
23167 Font::NotoSerifGeorgianExtraCondensedExtraLight,
23168 #[cfg(feature = "static")]
23169 Font::NotoSerifGeorgianExtraCondensedLight,
23170 #[cfg(feature = "static")]
23171 Font::NotoSerifGeorgianExtraCondensedRegular,
23172 #[cfg(feature = "static")]
23173 Font::NotoSerifGeorgianExtraCondensedMedium,
23174 #[cfg(feature = "static")]
23175 Font::NotoSerifGeorgianExtraCondensedSemiBold,
23176 #[cfg(feature = "static")]
23177 Font::NotoSerifGeorgianExtraCondensedBold,
23178 #[cfg(feature = "static")]
23179 Font::NotoSerifGeorgianExtraCondensedExtraBold,
23180 #[cfg(feature = "static")]
23181 Font::NotoSerifGeorgianExtraCondensedBlack,
23182 #[cfg(feature = "static")]
23183 Font::NotoSerifGeorgianCondensedThin,
23184 #[cfg(feature = "static")]
23185 Font::NotoSerifGeorgianCondensedExtraLight,
23186 #[cfg(feature = "static")]
23187 Font::NotoSerifGeorgianCondensedLight,
23188 #[cfg(feature = "static")]
23189 Font::NotoSerifGeorgianCondensedRegular,
23190 #[cfg(feature = "static")]
23191 Font::NotoSerifGeorgianCondensedMedium,
23192 #[cfg(feature = "static")]
23193 Font::NotoSerifGeorgianCondensedSemiBold,
23194 #[cfg(feature = "static")]
23195 Font::NotoSerifGeorgianCondensedBold,
23196 #[cfg(feature = "static")]
23197 Font::NotoSerifGeorgianCondensedExtraBold,
23198 #[cfg(feature = "static")]
23199 Font::NotoSerifGeorgianCondensedBlack,
23200 #[cfg(feature = "static")]
23201 Font::NotoSerifGeorgianSemiCondensedThin,
23202 #[cfg(feature = "static")]
23203 Font::NotoSerifGeorgianSemiCondensedExtraLight,
23204 #[cfg(feature = "static")]
23205 Font::NotoSerifGeorgianSemiCondensedLight,
23206 #[cfg(feature = "static")]
23207 Font::NotoSerifGeorgianSemiCondensedRegular,
23208 #[cfg(feature = "static")]
23209 Font::NotoSerifGeorgianSemiCondensedMedium,
23210 #[cfg(feature = "static")]
23211 Font::NotoSerifGeorgianSemiCondensedSemiBold,
23212 #[cfg(feature = "static")]
23213 Font::NotoSerifGeorgianSemiCondensedBold,
23214 #[cfg(feature = "static")]
23215 Font::NotoSerifGeorgianSemiCondensedExtraBold,
23216 #[cfg(feature = "static")]
23217 Font::NotoSerifGeorgianSemiCondensedBlack,
23218 #[cfg(feature = "static")]
23219 Font::NotoSerifGeorgianThin,
23220 #[cfg(feature = "static")]
23221 Font::NotoSerifGeorgianExtraLight,
23222 #[cfg(feature = "static")]
23223 Font::NotoSerifGeorgianLight,
23224 #[cfg(feature = "static")]
23225 Font::NotoSerifGeorgianRegular,
23226 #[cfg(feature = "static")]
23227 Font::NotoSerifGeorgianMedium,
23228 #[cfg(feature = "static")]
23229 Font::NotoSerifGeorgianSemiBold,
23230 #[cfg(feature = "static")]
23231 Font::NotoSerifGeorgianBold,
23232 #[cfg(feature = "static")]
23233 Font::NotoSerifGeorgianExtraBold,
23234 #[cfg(feature = "static")]
23235 Font::NotoSerifGeorgianBlack,
23236 #[cfg(feature = "variable")]
23237 Font::NotoSerifGeorgianVariable,
23238 #[cfg(feature = "static")]
23239 Font::NotoSerifGranthaRegular,
23240 #[cfg(feature = "static")]
23241 Font::NotoSerifGujaratiThin,
23242 #[cfg(feature = "static")]
23243 Font::NotoSerifGujaratiExtraLight,
23244 #[cfg(feature = "static")]
23245 Font::NotoSerifGujaratiLight,
23246 #[cfg(feature = "static")]
23247 Font::NotoSerifGujaratiRegular,
23248 #[cfg(feature = "static")]
23249 Font::NotoSerifGujaratiMedium,
23250 #[cfg(feature = "static")]
23251 Font::NotoSerifGujaratiSemiBold,
23252 #[cfg(feature = "static")]
23253 Font::NotoSerifGujaratiBold,
23254 #[cfg(feature = "static")]
23255 Font::NotoSerifGujaratiExtraBold,
23256 #[cfg(feature = "static")]
23257 Font::NotoSerifGujaratiBlack,
23258 #[cfg(feature = "variable")]
23259 Font::NotoSerifGujaratiVariable,
23260 #[cfg(feature = "static")]
23261 Font::NotoSerifGurmukhiThin,
23262 #[cfg(feature = "static")]
23263 Font::NotoSerifGurmukhiExtraLight,
23264 #[cfg(feature = "static")]
23265 Font::NotoSerifGurmukhiLight,
23266 #[cfg(feature = "static")]
23267 Font::NotoSerifGurmukhiRegular,
23268 #[cfg(feature = "static")]
23269 Font::NotoSerifGurmukhiMedium,
23270 #[cfg(feature = "static")]
23271 Font::NotoSerifGurmukhiSemiBold,
23272 #[cfg(feature = "static")]
23273 Font::NotoSerifGurmukhiBold,
23274 #[cfg(feature = "static")]
23275 Font::NotoSerifGurmukhiExtraBold,
23276 #[cfg(feature = "static")]
23277 Font::NotoSerifGurmukhiBlack,
23278 #[cfg(feature = "variable")]
23279 Font::NotoSerifGurmukhiVariable,
23280 #[cfg(feature = "static")]
23281 Font::NotoSerifHKExtraLight,
23282 #[cfg(feature = "static")]
23283 Font::NotoSerifHKLight,
23284 #[cfg(feature = "static")]
23285 Font::NotoSerifHKRegular,
23286 #[cfg(feature = "static")]
23287 Font::NotoSerifHKMedium,
23288 #[cfg(feature = "static")]
23289 Font::NotoSerifHKSemiBold,
23290 #[cfg(feature = "static")]
23291 Font::NotoSerifHKBold,
23292 #[cfg(feature = "static")]
23293 Font::NotoSerifHKExtraBold,
23294 #[cfg(feature = "static")]
23295 Font::NotoSerifHKBlack,
23296 #[cfg(feature = "variable")]
23297 Font::NotoSerifHKVariable,
23298 #[cfg(feature = "static")]
23299 Font::NotoSerifHebrewExtraCondensedThin,
23300 #[cfg(feature = "static")]
23301 Font::NotoSerifHebrewExtraCondensedExtraLight,
23302 #[cfg(feature = "static")]
23303 Font::NotoSerifHebrewExtraCondensedLight,
23304 #[cfg(feature = "static")]
23305 Font::NotoSerifHebrewExtraCondensedRegular,
23306 #[cfg(feature = "static")]
23307 Font::NotoSerifHebrewExtraCondensedMedium,
23308 #[cfg(feature = "static")]
23309 Font::NotoSerifHebrewExtraCondensedSemiBold,
23310 #[cfg(feature = "static")]
23311 Font::NotoSerifHebrewExtraCondensedBold,
23312 #[cfg(feature = "static")]
23313 Font::NotoSerifHebrewExtraCondensedExtraBold,
23314 #[cfg(feature = "static")]
23315 Font::NotoSerifHebrewExtraCondensedBlack,
23316 #[cfg(feature = "static")]
23317 Font::NotoSerifHebrewCondensedThin,
23318 #[cfg(feature = "static")]
23319 Font::NotoSerifHebrewCondensedExtraLight,
23320 #[cfg(feature = "static")]
23321 Font::NotoSerifHebrewCondensedLight,
23322 #[cfg(feature = "static")]
23323 Font::NotoSerifHebrewCondensedRegular,
23324 #[cfg(feature = "static")]
23325 Font::NotoSerifHebrewCondensedMedium,
23326 #[cfg(feature = "static")]
23327 Font::NotoSerifHebrewCondensedSemiBold,
23328 #[cfg(feature = "static")]
23329 Font::NotoSerifHebrewCondensedBold,
23330 #[cfg(feature = "static")]
23331 Font::NotoSerifHebrewCondensedExtraBold,
23332 #[cfg(feature = "static")]
23333 Font::NotoSerifHebrewCondensedBlack,
23334 #[cfg(feature = "static")]
23335 Font::NotoSerifHebrewSemiCondensedThin,
23336 #[cfg(feature = "static")]
23337 Font::NotoSerifHebrewSemiCondensedExtraLight,
23338 #[cfg(feature = "static")]
23339 Font::NotoSerifHebrewSemiCondensedLight,
23340 #[cfg(feature = "static")]
23341 Font::NotoSerifHebrewSemiCondensedRegular,
23342 #[cfg(feature = "static")]
23343 Font::NotoSerifHebrewSemiCondensedMedium,
23344 #[cfg(feature = "static")]
23345 Font::NotoSerifHebrewSemiCondensedSemiBold,
23346 #[cfg(feature = "static")]
23347 Font::NotoSerifHebrewSemiCondensedBold,
23348 #[cfg(feature = "static")]
23349 Font::NotoSerifHebrewSemiCondensedExtraBold,
23350 #[cfg(feature = "static")]
23351 Font::NotoSerifHebrewSemiCondensedBlack,
23352 #[cfg(feature = "static")]
23353 Font::NotoSerifHebrewThin,
23354 #[cfg(feature = "static")]
23355 Font::NotoSerifHebrewExtraLight,
23356 #[cfg(feature = "static")]
23357 Font::NotoSerifHebrewLight,
23358 #[cfg(feature = "static")]
23359 Font::NotoSerifHebrewRegular,
23360 #[cfg(feature = "static")]
23361 Font::NotoSerifHebrewMedium,
23362 #[cfg(feature = "static")]
23363 Font::NotoSerifHebrewSemiBold,
23364 #[cfg(feature = "static")]
23365 Font::NotoSerifHebrewBold,
23366 #[cfg(feature = "static")]
23367 Font::NotoSerifHebrewExtraBold,
23368 #[cfg(feature = "static")]
23369 Font::NotoSerifHebrewBlack,
23370 #[cfg(feature = "variable")]
23371 Font::NotoSerifHebrewVariable,
23372 #[cfg(feature = "static")]
23373 Font::NotoSerifJPExtraLight,
23374 #[cfg(feature = "static")]
23375 Font::NotoSerifJPLight,
23376 #[cfg(feature = "static")]
23377 Font::NotoSerifJPRegular,
23378 #[cfg(feature = "static")]
23379 Font::NotoSerifJPMedium,
23380 #[cfg(feature = "static")]
23381 Font::NotoSerifJPSemiBold,
23382 #[cfg(feature = "static")]
23383 Font::NotoSerifJPBold,
23384 #[cfg(feature = "static")]
23385 Font::NotoSerifJPExtraBold,
23386 #[cfg(feature = "static")]
23387 Font::NotoSerifJPBlack,
23388 #[cfg(feature = "variable")]
23389 Font::NotoSerifJPVariable,
23390 #[cfg(feature = "static")]
23391 Font::NotoSerifKRExtraLight,
23392 #[cfg(feature = "static")]
23393 Font::NotoSerifKRLight,
23394 #[cfg(feature = "static")]
23395 Font::NotoSerifKRRegular,
23396 #[cfg(feature = "static")]
23397 Font::NotoSerifKRMedium,
23398 #[cfg(feature = "static")]
23399 Font::NotoSerifKRSemiBold,
23400 #[cfg(feature = "static")]
23401 Font::NotoSerifKRBold,
23402 #[cfg(feature = "static")]
23403 Font::NotoSerifKRExtraBold,
23404 #[cfg(feature = "static")]
23405 Font::NotoSerifKRBlack,
23406 #[cfg(feature = "variable")]
23407 Font::NotoSerifKRVariable,
23408 #[cfg(feature = "static")]
23409 Font::NotoSerifKannadaThin,
23410 #[cfg(feature = "static")]
23411 Font::NotoSerifKannadaExtraLight,
23412 #[cfg(feature = "static")]
23413 Font::NotoSerifKannadaLight,
23414 #[cfg(feature = "static")]
23415 Font::NotoSerifKannadaRegular,
23416 #[cfg(feature = "static")]
23417 Font::NotoSerifKannadaMedium,
23418 #[cfg(feature = "static")]
23419 Font::NotoSerifKannadaSemiBold,
23420 #[cfg(feature = "static")]
23421 Font::NotoSerifKannadaBold,
23422 #[cfg(feature = "static")]
23423 Font::NotoSerifKannadaExtraBold,
23424 #[cfg(feature = "static")]
23425 Font::NotoSerifKannadaBlack,
23426 #[cfg(feature = "variable")]
23427 Font::NotoSerifKannadaVariable,
23428 #[cfg(feature = "static")]
23429 Font::NotoSerifKhitanSmallScriptRegular,
23430 #[cfg(feature = "static")]
23431 Font::NotoSerifKhmerExtraCondensedThin,
23432 #[cfg(feature = "static")]
23433 Font::NotoSerifKhmerExtraCondensedExtraLight,
23434 #[cfg(feature = "static")]
23435 Font::NotoSerifKhmerExtraCondensedLight,
23436 #[cfg(feature = "static")]
23437 Font::NotoSerifKhmerExtraCondensedRegular,
23438 #[cfg(feature = "static")]
23439 Font::NotoSerifKhmerExtraCondensedMedium,
23440 #[cfg(feature = "static")]
23441 Font::NotoSerifKhmerExtraCondensedSemiBold,
23442 #[cfg(feature = "static")]
23443 Font::NotoSerifKhmerExtraCondensedBold,
23444 #[cfg(feature = "static")]
23445 Font::NotoSerifKhmerExtraCondensedExtraBold,
23446 #[cfg(feature = "static")]
23447 Font::NotoSerifKhmerExtraCondensedBlack,
23448 #[cfg(feature = "static")]
23449 Font::NotoSerifKhmerCondensedThin,
23450 #[cfg(feature = "static")]
23451 Font::NotoSerifKhmerCondensedExtraLight,
23452 #[cfg(feature = "static")]
23453 Font::NotoSerifKhmerCondensedLight,
23454 #[cfg(feature = "static")]
23455 Font::NotoSerifKhmerCondensedRegular,
23456 #[cfg(feature = "static")]
23457 Font::NotoSerifKhmerCondensedMedium,
23458 #[cfg(feature = "static")]
23459 Font::NotoSerifKhmerCondensedSemiBold,
23460 #[cfg(feature = "static")]
23461 Font::NotoSerifKhmerCondensedBold,
23462 #[cfg(feature = "static")]
23463 Font::NotoSerifKhmerCondensedExtraBold,
23464 #[cfg(feature = "static")]
23465 Font::NotoSerifKhmerCondensedBlack,
23466 #[cfg(feature = "static")]
23467 Font::NotoSerifKhmerSemiCondensedThin,
23468 #[cfg(feature = "static")]
23469 Font::NotoSerifKhmerSemiCondensedExtraLight,
23470 #[cfg(feature = "static")]
23471 Font::NotoSerifKhmerSemiCondensedLight,
23472 #[cfg(feature = "static")]
23473 Font::NotoSerifKhmerSemiCondensedRegular,
23474 #[cfg(feature = "static")]
23475 Font::NotoSerifKhmerSemiCondensedMedium,
23476 #[cfg(feature = "static")]
23477 Font::NotoSerifKhmerSemiCondensedSemiBold,
23478 #[cfg(feature = "static")]
23479 Font::NotoSerifKhmerSemiCondensedBold,
23480 #[cfg(feature = "static")]
23481 Font::NotoSerifKhmerSemiCondensedExtraBold,
23482 #[cfg(feature = "static")]
23483 Font::NotoSerifKhmerSemiCondensedBlack,
23484 #[cfg(feature = "static")]
23485 Font::NotoSerifKhmerThin,
23486 #[cfg(feature = "static")]
23487 Font::NotoSerifKhmerExtraLight,
23488 #[cfg(feature = "static")]
23489 Font::NotoSerifKhmerLight,
23490 #[cfg(feature = "static")]
23491 Font::NotoSerifKhmerRegular,
23492 #[cfg(feature = "static")]
23493 Font::NotoSerifKhmerMedium,
23494 #[cfg(feature = "static")]
23495 Font::NotoSerifKhmerSemiBold,
23496 #[cfg(feature = "static")]
23497 Font::NotoSerifKhmerBold,
23498 #[cfg(feature = "static")]
23499 Font::NotoSerifKhmerExtraBold,
23500 #[cfg(feature = "static")]
23501 Font::NotoSerifKhmerBlack,
23502 #[cfg(feature = "variable")]
23503 Font::NotoSerifKhmerVariable,
23504 #[cfg(feature = "static")]
23505 Font::NotoSerifKhojkiRegular,
23506 #[cfg(feature = "static")]
23507 Font::NotoSerifKhojkiMedium,
23508 #[cfg(feature = "static")]
23509 Font::NotoSerifKhojkiSemiBold,
23510 #[cfg(feature = "static")]
23511 Font::NotoSerifKhojkiBold,
23512 #[cfg(feature = "variable")]
23513 Font::NotoSerifKhojkiVariable,
23514 #[cfg(feature = "static")]
23515 Font::NotoSerifLaoExtraCondensedThin,
23516 #[cfg(feature = "static")]
23517 Font::NotoSerifLaoExtraCondensedExtraLight,
23518 #[cfg(feature = "static")]
23519 Font::NotoSerifLaoExtraCondensedLight,
23520 #[cfg(feature = "static")]
23521 Font::NotoSerifLaoExtraCondensedRegular,
23522 #[cfg(feature = "static")]
23523 Font::NotoSerifLaoExtraCondensedMedium,
23524 #[cfg(feature = "static")]
23525 Font::NotoSerifLaoExtraCondensedSemiBold,
23526 #[cfg(feature = "static")]
23527 Font::NotoSerifLaoExtraCondensedBold,
23528 #[cfg(feature = "static")]
23529 Font::NotoSerifLaoExtraCondensedExtraBold,
23530 #[cfg(feature = "static")]
23531 Font::NotoSerifLaoExtraCondensedBlack,
23532 #[cfg(feature = "static")]
23533 Font::NotoSerifLaoCondensedThin,
23534 #[cfg(feature = "static")]
23535 Font::NotoSerifLaoCondensedExtraLight,
23536 #[cfg(feature = "static")]
23537 Font::NotoSerifLaoCondensedLight,
23538 #[cfg(feature = "static")]
23539 Font::NotoSerifLaoCondensedRegular,
23540 #[cfg(feature = "static")]
23541 Font::NotoSerifLaoCondensedMedium,
23542 #[cfg(feature = "static")]
23543 Font::NotoSerifLaoCondensedSemiBold,
23544 #[cfg(feature = "static")]
23545 Font::NotoSerifLaoCondensedBold,
23546 #[cfg(feature = "static")]
23547 Font::NotoSerifLaoCondensedExtraBold,
23548 #[cfg(feature = "static")]
23549 Font::NotoSerifLaoCondensedBlack,
23550 #[cfg(feature = "static")]
23551 Font::NotoSerifLaoSemiCondensedThin,
23552 #[cfg(feature = "static")]
23553 Font::NotoSerifLaoSemiCondensedExtraLight,
23554 #[cfg(feature = "static")]
23555 Font::NotoSerifLaoSemiCondensedLight,
23556 #[cfg(feature = "static")]
23557 Font::NotoSerifLaoSemiCondensedRegular,
23558 #[cfg(feature = "static")]
23559 Font::NotoSerifLaoSemiCondensedMedium,
23560 #[cfg(feature = "static")]
23561 Font::NotoSerifLaoSemiCondensedSemiBold,
23562 #[cfg(feature = "static")]
23563 Font::NotoSerifLaoSemiCondensedBold,
23564 #[cfg(feature = "static")]
23565 Font::NotoSerifLaoSemiCondensedExtraBold,
23566 #[cfg(feature = "static")]
23567 Font::NotoSerifLaoSemiCondensedBlack,
23568 #[cfg(feature = "static")]
23569 Font::NotoSerifLaoThin,
23570 #[cfg(feature = "static")]
23571 Font::NotoSerifLaoExtraLight,
23572 #[cfg(feature = "static")]
23573 Font::NotoSerifLaoLight,
23574 #[cfg(feature = "static")]
23575 Font::NotoSerifLaoRegular,
23576 #[cfg(feature = "static")]
23577 Font::NotoSerifLaoMedium,
23578 #[cfg(feature = "static")]
23579 Font::NotoSerifLaoSemiBold,
23580 #[cfg(feature = "static")]
23581 Font::NotoSerifLaoBold,
23582 #[cfg(feature = "static")]
23583 Font::NotoSerifLaoExtraBold,
23584 #[cfg(feature = "static")]
23585 Font::NotoSerifLaoBlack,
23586 #[cfg(feature = "variable")]
23587 Font::NotoSerifLaoVariable,
23588 #[cfg(feature = "static")]
23589 Font::NotoSerifMakasarRegular,
23590 #[cfg(feature = "static")]
23591 Font::NotoSerifMalayalamThin,
23592 #[cfg(feature = "static")]
23593 Font::NotoSerifMalayalamExtraLight,
23594 #[cfg(feature = "static")]
23595 Font::NotoSerifMalayalamLight,
23596 #[cfg(feature = "static")]
23597 Font::NotoSerifMalayalamRegular,
23598 #[cfg(feature = "static")]
23599 Font::NotoSerifMalayalamMedium,
23600 #[cfg(feature = "static")]
23601 Font::NotoSerifMalayalamSemiBold,
23602 #[cfg(feature = "static")]
23603 Font::NotoSerifMalayalamBold,
23604 #[cfg(feature = "static")]
23605 Font::NotoSerifMalayalamExtraBold,
23606 #[cfg(feature = "static")]
23607 Font::NotoSerifMalayalamBlack,
23608 #[cfg(feature = "variable")]
23609 Font::NotoSerifMalayalamVariable,
23610 #[cfg(feature = "static")]
23611 Font::NotoSerifMyanmarThin,
23612 #[cfg(feature = "static")]
23613 Font::NotoSerifMyanmarExtraLight,
23614 #[cfg(feature = "static")]
23615 Font::NotoSerifMyanmarLight,
23616 #[cfg(feature = "static")]
23617 Font::NotoSerifMyanmarRegular,
23618 #[cfg(feature = "static")]
23619 Font::NotoSerifMyanmarMedium,
23620 #[cfg(feature = "static")]
23621 Font::NotoSerifMyanmarSemiBold,
23622 #[cfg(feature = "static")]
23623 Font::NotoSerifMyanmarBold,
23624 #[cfg(feature = "static")]
23625 Font::NotoSerifMyanmarExtraBold,
23626 #[cfg(feature = "static")]
23627 Font::NotoSerifMyanmarBlack,
23628 #[cfg(feature = "static")]
23629 Font::NotoSerifNPHmongRegular,
23630 #[cfg(feature = "static")]
23631 Font::NotoSerifNPHmongMedium,
23632 #[cfg(feature = "static")]
23633 Font::NotoSerifNPHmongSemiBold,
23634 #[cfg(feature = "static")]
23635 Font::NotoSerifNPHmongBold,
23636 #[cfg(feature = "variable")]
23637 Font::NotoSerifNPHmongVariable,
23638 #[cfg(feature = "static")]
23639 Font::NotoSerifOldUyghurRegular,
23640 #[cfg(feature = "static")]
23641 Font::NotoSerifOriyaRegular,
23642 #[cfg(feature = "static")]
23643 Font::NotoSerifOriyaMedium,
23644 #[cfg(feature = "static")]
23645 Font::NotoSerifOriyaSemiBold,
23646 #[cfg(feature = "static")]
23647 Font::NotoSerifOriyaBold,
23648 #[cfg(feature = "variable")]
23649 Font::NotoSerifOriyaVariable,
23650 #[cfg(feature = "static")]
23651 Font::NotoSerifOttomanSiyaqRegular,
23652 #[cfg(feature = "static")]
23653 Font::NotoSerifSCExtraLight,
23654 #[cfg(feature = "static")]
23655 Font::NotoSerifSCLight,
23656 #[cfg(feature = "static")]
23657 Font::NotoSerifSCRegular,
23658 #[cfg(feature = "static")]
23659 Font::NotoSerifSCMedium,
23660 #[cfg(feature = "static")]
23661 Font::NotoSerifSCSemiBold,
23662 #[cfg(feature = "static")]
23663 Font::NotoSerifSCBold,
23664 #[cfg(feature = "static")]
23665 Font::NotoSerifSCExtraBold,
23666 #[cfg(feature = "static")]
23667 Font::NotoSerifSCBlack,
23668 #[cfg(feature = "variable")]
23669 Font::NotoSerifSCVariable,
23670 #[cfg(feature = "static")]
23671 Font::NotoSerifSinhalaExtraCondensedThin,
23672 #[cfg(feature = "static")]
23673 Font::NotoSerifSinhalaExtraCondensedExtraLight,
23674 #[cfg(feature = "static")]
23675 Font::NotoSerifSinhalaExtraCondensedLight,
23676 #[cfg(feature = "static")]
23677 Font::NotoSerifSinhalaExtraCondensedRegular,
23678 #[cfg(feature = "static")]
23679 Font::NotoSerifSinhalaExtraCondensedMedium,
23680 #[cfg(feature = "static")]
23681 Font::NotoSerifSinhalaExtraCondensedSemiBold,
23682 #[cfg(feature = "static")]
23683 Font::NotoSerifSinhalaExtraCondensedBold,
23684 #[cfg(feature = "static")]
23685 Font::NotoSerifSinhalaExtraCondensedExtraBold,
23686 #[cfg(feature = "static")]
23687 Font::NotoSerifSinhalaExtraCondensedBlack,
23688 #[cfg(feature = "static")]
23689 Font::NotoSerifSinhalaCondensedThin,
23690 #[cfg(feature = "static")]
23691 Font::NotoSerifSinhalaCondensedExtraLight,
23692 #[cfg(feature = "static")]
23693 Font::NotoSerifSinhalaCondensedLight,
23694 #[cfg(feature = "static")]
23695 Font::NotoSerifSinhalaCondensedRegular,
23696 #[cfg(feature = "static")]
23697 Font::NotoSerifSinhalaCondensedMedium,
23698 #[cfg(feature = "static")]
23699 Font::NotoSerifSinhalaCondensedSemiBold,
23700 #[cfg(feature = "static")]
23701 Font::NotoSerifSinhalaCondensedBold,
23702 #[cfg(feature = "static")]
23703 Font::NotoSerifSinhalaCondensedExtraBold,
23704 #[cfg(feature = "static")]
23705 Font::NotoSerifSinhalaCondensedBlack,
23706 #[cfg(feature = "static")]
23707 Font::NotoSerifSinhalaSemiCondensedThin,
23708 #[cfg(feature = "static")]
23709 Font::NotoSerifSinhalaSemiCondensedExtraLight,
23710 #[cfg(feature = "static")]
23711 Font::NotoSerifSinhalaSemiCondensedLight,
23712 #[cfg(feature = "static")]
23713 Font::NotoSerifSinhalaSemiCondensedRegular,
23714 #[cfg(feature = "static")]
23715 Font::NotoSerifSinhalaSemiCondensedMedium,
23716 #[cfg(feature = "static")]
23717 Font::NotoSerifSinhalaSemiCondensedSemiBold,
23718 #[cfg(feature = "static")]
23719 Font::NotoSerifSinhalaSemiCondensedBold,
23720 #[cfg(feature = "static")]
23721 Font::NotoSerifSinhalaSemiCondensedExtraBold,
23722 #[cfg(feature = "static")]
23723 Font::NotoSerifSinhalaSemiCondensedBlack,
23724 #[cfg(feature = "static")]
23725 Font::NotoSerifSinhalaThin,
23726 #[cfg(feature = "static")]
23727 Font::NotoSerifSinhalaExtraLight,
23728 #[cfg(feature = "static")]
23729 Font::NotoSerifSinhalaLight,
23730 #[cfg(feature = "static")]
23731 Font::NotoSerifSinhalaRegular,
23732 #[cfg(feature = "static")]
23733 Font::NotoSerifSinhalaMedium,
23734 #[cfg(feature = "static")]
23735 Font::NotoSerifSinhalaSemiBold,
23736 #[cfg(feature = "static")]
23737 Font::NotoSerifSinhalaBold,
23738 #[cfg(feature = "static")]
23739 Font::NotoSerifSinhalaExtraBold,
23740 #[cfg(feature = "static")]
23741 Font::NotoSerifSinhalaBlack,
23742 #[cfg(feature = "variable")]
23743 Font::NotoSerifSinhalaVariable,
23744 #[cfg(feature = "static")]
23745 Font::NotoSerifTCExtraLight,
23746 #[cfg(feature = "static")]
23747 Font::NotoSerifTCLight,
23748 #[cfg(feature = "static")]
23749 Font::NotoSerifTCRegular,
23750 #[cfg(feature = "static")]
23751 Font::NotoSerifTCMedium,
23752 #[cfg(feature = "static")]
23753 Font::NotoSerifTCSemiBold,
23754 #[cfg(feature = "static")]
23755 Font::NotoSerifTCBold,
23756 #[cfg(feature = "static")]
23757 Font::NotoSerifTCExtraBold,
23758 #[cfg(feature = "static")]
23759 Font::NotoSerifTCBlack,
23760 #[cfg(feature = "variable")]
23761 Font::NotoSerifTCVariable,
23762 #[cfg(feature = "static")]
23763 Font::NotoSerifTamilExtraCondensedThin,
23764 #[cfg(feature = "static")]
23765 Font::NotoSerifTamilExtraCondensedExtraLight,
23766 #[cfg(feature = "static")]
23767 Font::NotoSerifTamilExtraCondensedLight,
23768 #[cfg(feature = "static")]
23769 Font::NotoSerifTamilExtraCondensedRegular,
23770 #[cfg(feature = "static")]
23771 Font::NotoSerifTamilExtraCondensedMedium,
23772 #[cfg(feature = "static")]
23773 Font::NotoSerifTamilExtraCondensedSemiBold,
23774 #[cfg(feature = "static")]
23775 Font::NotoSerifTamilExtraCondensedBold,
23776 #[cfg(feature = "static")]
23777 Font::NotoSerifTamilExtraCondensedExtraBold,
23778 #[cfg(feature = "static")]
23779 Font::NotoSerifTamilExtraCondensedBlack,
23780 #[cfg(feature = "static")]
23781 Font::NotoSerifTamilCondensedThin,
23782 #[cfg(feature = "static")]
23783 Font::NotoSerifTamilCondensedExtraLight,
23784 #[cfg(feature = "static")]
23785 Font::NotoSerifTamilCondensedLight,
23786 #[cfg(feature = "static")]
23787 Font::NotoSerifTamilCondensedRegular,
23788 #[cfg(feature = "static")]
23789 Font::NotoSerifTamilCondensedMedium,
23790 #[cfg(feature = "static")]
23791 Font::NotoSerifTamilCondensedSemiBold,
23792 #[cfg(feature = "static")]
23793 Font::NotoSerifTamilCondensedBold,
23794 #[cfg(feature = "static")]
23795 Font::NotoSerifTamilCondensedExtraBold,
23796 #[cfg(feature = "static")]
23797 Font::NotoSerifTamilCondensedBlack,
23798 #[cfg(feature = "static")]
23799 Font::NotoSerifTamilSemiCondensedThin,
23800 #[cfg(feature = "static")]
23801 Font::NotoSerifTamilSemiCondensedExtraLight,
23802 #[cfg(feature = "static")]
23803 Font::NotoSerifTamilSemiCondensedLight,
23804 #[cfg(feature = "static")]
23805 Font::NotoSerifTamilSemiCondensedRegular,
23806 #[cfg(feature = "static")]
23807 Font::NotoSerifTamilSemiCondensedMedium,
23808 #[cfg(feature = "static")]
23809 Font::NotoSerifTamilSemiCondensedSemiBold,
23810 #[cfg(feature = "static")]
23811 Font::NotoSerifTamilSemiCondensedBold,
23812 #[cfg(feature = "static")]
23813 Font::NotoSerifTamilSemiCondensedExtraBold,
23814 #[cfg(feature = "static")]
23815 Font::NotoSerifTamilSemiCondensedBlack,
23816 #[cfg(feature = "static")]
23817 Font::NotoSerifTamilThin,
23818 #[cfg(feature = "static")]
23819 Font::NotoSerifTamilExtraLight,
23820 #[cfg(feature = "static")]
23821 Font::NotoSerifTamilLight,
23822 #[cfg(feature = "static")]
23823 Font::NotoSerifTamilRegular,
23824 #[cfg(feature = "static")]
23825 Font::NotoSerifTamilMedium,
23826 #[cfg(feature = "static")]
23827 Font::NotoSerifTamilSemiBold,
23828 #[cfg(feature = "static")]
23829 Font::NotoSerifTamilBold,
23830 #[cfg(feature = "static")]
23831 Font::NotoSerifTamilExtraBold,
23832 #[cfg(feature = "static")]
23833 Font::NotoSerifTamilBlack,
23834 #[cfg(feature = "static")]
23835 Font::NotoSerifTamilExtraCondensedThinItalic,
23836 #[cfg(feature = "static")]
23837 Font::NotoSerifTamilExtraCondensedExtraLightItalic,
23838 #[cfg(feature = "static")]
23839 Font::NotoSerifTamilExtraCondensedLightItalic,
23840 #[cfg(feature = "static")]
23841 Font::NotoSerifTamilExtraCondensedItalic,
23842 #[cfg(feature = "static")]
23843 Font::NotoSerifTamilExtraCondensedMediumItalic,
23844 #[cfg(feature = "static")]
23845 Font::NotoSerifTamilExtraCondensedSemiBoldItalic,
23846 #[cfg(feature = "static")]
23847 Font::NotoSerifTamilExtraCondensedBoldItalic,
23848 #[cfg(feature = "static")]
23849 Font::NotoSerifTamilExtraCondensedExtraBoldItalic,
23850 #[cfg(feature = "static")]
23851 Font::NotoSerifTamilExtraCondensedBlackItalic,
23852 #[cfg(feature = "static")]
23853 Font::NotoSerifTamilCondensedThinItalic,
23854 #[cfg(feature = "static")]
23855 Font::NotoSerifTamilCondensedExtraLightItalic,
23856 #[cfg(feature = "static")]
23857 Font::NotoSerifTamilCondensedLightItalic,
23858 #[cfg(feature = "static")]
23859 Font::NotoSerifTamilCondensedItalic,
23860 #[cfg(feature = "static")]
23861 Font::NotoSerifTamilCondensedMediumItalic,
23862 #[cfg(feature = "static")]
23863 Font::NotoSerifTamilCondensedSemiBoldItalic,
23864 #[cfg(feature = "static")]
23865 Font::NotoSerifTamilCondensedBoldItalic,
23866 #[cfg(feature = "static")]
23867 Font::NotoSerifTamilCondensedExtraBoldItalic,
23868 #[cfg(feature = "static")]
23869 Font::NotoSerifTamilCondensedBlackItalic,
23870 #[cfg(feature = "static")]
23871 Font::NotoSerifTamilSemiCondensedThinItalic,
23872 #[cfg(feature = "static")]
23873 Font::NotoSerifTamilSemiCondensedExtraLightItalic,
23874 #[cfg(feature = "static")]
23875 Font::NotoSerifTamilSemiCondensedLightItalic,
23876 #[cfg(feature = "static")]
23877 Font::NotoSerifTamilSemiCondensedItalic,
23878 #[cfg(feature = "static")]
23879 Font::NotoSerifTamilSemiCondensedMediumItalic,
23880 #[cfg(feature = "static")]
23881 Font::NotoSerifTamilSemiCondensedSemiBoldItalic,
23882 #[cfg(feature = "static")]
23883 Font::NotoSerifTamilSemiCondensedBoldItalic,
23884 #[cfg(feature = "static")]
23885 Font::NotoSerifTamilSemiCondensedExtraBoldItalic,
23886 #[cfg(feature = "static")]
23887 Font::NotoSerifTamilSemiCondensedBlackItalic,
23888 #[cfg(feature = "static")]
23889 Font::NotoSerifTamilThinItalic,
23890 #[cfg(feature = "static")]
23891 Font::NotoSerifTamilExtraLightItalic,
23892 #[cfg(feature = "static")]
23893 Font::NotoSerifTamilLightItalic,
23894 #[cfg(feature = "static")]
23895 Font::NotoSerifTamilItalic,
23896 #[cfg(feature = "static")]
23897 Font::NotoSerifTamilMediumItalic,
23898 #[cfg(feature = "static")]
23899 Font::NotoSerifTamilSemiBoldItalic,
23900 #[cfg(feature = "static")]
23901 Font::NotoSerifTamilBoldItalic,
23902 #[cfg(feature = "static")]
23903 Font::NotoSerifTamilExtraBoldItalic,
23904 #[cfg(feature = "static")]
23905 Font::NotoSerifTamilBlackItalic,
23906 #[cfg(feature = "variable")]
23907 Font::NotoSerifTamilVariable,
23908 #[cfg(feature = "variable")]
23909 Font::NotoSerifTamilItalicVariable,
23910 #[cfg(feature = "static")]
23911 Font::NotoSerifTangutRegular,
23912 #[cfg(feature = "static")]
23913 Font::NotoSerifTeluguThin,
23914 #[cfg(feature = "static")]
23915 Font::NotoSerifTeluguExtraLight,
23916 #[cfg(feature = "static")]
23917 Font::NotoSerifTeluguLight,
23918 #[cfg(feature = "static")]
23919 Font::NotoSerifTeluguRegular,
23920 #[cfg(feature = "static")]
23921 Font::NotoSerifTeluguMedium,
23922 #[cfg(feature = "static")]
23923 Font::NotoSerifTeluguSemiBold,
23924 #[cfg(feature = "static")]
23925 Font::NotoSerifTeluguBold,
23926 #[cfg(feature = "static")]
23927 Font::NotoSerifTeluguExtraBold,
23928 #[cfg(feature = "static")]
23929 Font::NotoSerifTeluguBlack,
23930 #[cfg(feature = "variable")]
23931 Font::NotoSerifTeluguVariable,
23932 #[cfg(feature = "static")]
23933 Font::NotoSerifThaiExtraCondensedThin,
23934 #[cfg(feature = "static")]
23935 Font::NotoSerifThaiExtraCondensedExtraLight,
23936 #[cfg(feature = "static")]
23937 Font::NotoSerifThaiExtraCondensedLight,
23938 #[cfg(feature = "static")]
23939 Font::NotoSerifThaiExtraCondensedRegular,
23940 #[cfg(feature = "static")]
23941 Font::NotoSerifThaiExtraCondensedMedium,
23942 #[cfg(feature = "static")]
23943 Font::NotoSerifThaiExtraCondensedSemiBold,
23944 #[cfg(feature = "static")]
23945 Font::NotoSerifThaiExtraCondensedBold,
23946 #[cfg(feature = "static")]
23947 Font::NotoSerifThaiExtraCondensedExtraBold,
23948 #[cfg(feature = "static")]
23949 Font::NotoSerifThaiExtraCondensedBlack,
23950 #[cfg(feature = "static")]
23951 Font::NotoSerifThaiCondensedThin,
23952 #[cfg(feature = "static")]
23953 Font::NotoSerifThaiCondensedExtraLight,
23954 #[cfg(feature = "static")]
23955 Font::NotoSerifThaiCondensedLight,
23956 #[cfg(feature = "static")]
23957 Font::NotoSerifThaiCondensedRegular,
23958 #[cfg(feature = "static")]
23959 Font::NotoSerifThaiCondensedMedium,
23960 #[cfg(feature = "static")]
23961 Font::NotoSerifThaiCondensedSemiBold,
23962 #[cfg(feature = "static")]
23963 Font::NotoSerifThaiCondensedBold,
23964 #[cfg(feature = "static")]
23965 Font::NotoSerifThaiCondensedExtraBold,
23966 #[cfg(feature = "static")]
23967 Font::NotoSerifThaiCondensedBlack,
23968 #[cfg(feature = "static")]
23969 Font::NotoSerifThaiSemiCondensedThin,
23970 #[cfg(feature = "static")]
23971 Font::NotoSerifThaiSemiCondensedExtraLight,
23972 #[cfg(feature = "static")]
23973 Font::NotoSerifThaiSemiCondensedLight,
23974 #[cfg(feature = "static")]
23975 Font::NotoSerifThaiSemiCondensedRegular,
23976 #[cfg(feature = "static")]
23977 Font::NotoSerifThaiSemiCondensedMedium,
23978 #[cfg(feature = "static")]
23979 Font::NotoSerifThaiSemiCondensedSemiBold,
23980 #[cfg(feature = "static")]
23981 Font::NotoSerifThaiSemiCondensedBold,
23982 #[cfg(feature = "static")]
23983 Font::NotoSerifThaiSemiCondensedExtraBold,
23984 #[cfg(feature = "static")]
23985 Font::NotoSerifThaiSemiCondensedBlack,
23986 #[cfg(feature = "static")]
23987 Font::NotoSerifThaiThin,
23988 #[cfg(feature = "static")]
23989 Font::NotoSerifThaiExtraLight,
23990 #[cfg(feature = "static")]
23991 Font::NotoSerifThaiLight,
23992 #[cfg(feature = "static")]
23993 Font::NotoSerifThaiRegular,
23994 #[cfg(feature = "static")]
23995 Font::NotoSerifThaiMedium,
23996 #[cfg(feature = "static")]
23997 Font::NotoSerifThaiSemiBold,
23998 #[cfg(feature = "static")]
23999 Font::NotoSerifThaiBold,
24000 #[cfg(feature = "static")]
24001 Font::NotoSerifThaiExtraBold,
24002 #[cfg(feature = "static")]
24003 Font::NotoSerifThaiBlack,
24004 #[cfg(feature = "variable")]
24005 Font::NotoSerifThaiVariable,
24006 #[cfg(feature = "static")]
24007 Font::NotoSerifTibetanThin,
24008 #[cfg(feature = "static")]
24009 Font::NotoSerifTibetanExtraLight,
24010 #[cfg(feature = "static")]
24011 Font::NotoSerifTibetanLight,
24012 #[cfg(feature = "static")]
24013 Font::NotoSerifTibetanRegular,
24014 #[cfg(feature = "static")]
24015 Font::NotoSerifTibetanMedium,
24016 #[cfg(feature = "static")]
24017 Font::NotoSerifTibetanSemiBold,
24018 #[cfg(feature = "static")]
24019 Font::NotoSerifTibetanBold,
24020 #[cfg(feature = "static")]
24021 Font::NotoSerifTibetanExtraBold,
24022 #[cfg(feature = "static")]
24023 Font::NotoSerifTibetanBlack,
24024 #[cfg(feature = "variable")]
24025 Font::NotoSerifTibetanVariable,
24026 #[cfg(feature = "static")]
24027 Font::NotoSerifTotoRegular,
24028 #[cfg(feature = "static")]
24029 Font::NotoSerifTotoMedium,
24030 #[cfg(feature = "static")]
24031 Font::NotoSerifTotoSemiBold,
24032 #[cfg(feature = "static")]
24033 Font::NotoSerifTotoBold,
24034 #[cfg(feature = "variable")]
24035 Font::NotoSerifTotoVariable,
24036 #[cfg(feature = "static")]
24037 Font::NotoSerifVithkuqiRegular,
24038 #[cfg(feature = "static")]
24039 Font::NotoSerifVithkuqiMedium,
24040 #[cfg(feature = "static")]
24041 Font::NotoSerifVithkuqiSemiBold,
24042 #[cfg(feature = "static")]
24043 Font::NotoSerifVithkuqiBold,
24044 #[cfg(feature = "variable")]
24045 Font::NotoSerifVithkuqiVariable,
24046 #[cfg(feature = "static")]
24047 Font::NotoSerifYezidiRegular,
24048 #[cfg(feature = "static")]
24049 Font::NotoSerifYezidiMedium,
24050 #[cfg(feature = "static")]
24051 Font::NotoSerifYezidiSemiBold,
24052 #[cfg(feature = "static")]
24053 Font::NotoSerifYezidiBold,
24054 #[cfg(feature = "variable")]
24055 Font::NotoSerifYezidiVariable,
24056 #[cfg(feature = "static")]
24057 Font::OdorMeanCheyRegular,
24058 #[cfg(feature = "static")]
24059 Font::OldStandardTTRegular,
24060 #[cfg(feature = "static")]
24061 Font::OldStandardTTItalic,
24062 #[cfg(feature = "static")]
24063 Font::OldStandardTTBold,
24064 #[cfg(feature = "static")]
24065 Font::OranienbaumRegular,
24066 #[cfg(feature = "static")]
24067 Font::OvoRegular,
24068 #[cfg(feature = "static")]
24069 Font::PTSerifRegular,
24070 #[cfg(feature = "static")]
24071 Font::PTSerifItalic,
24072 #[cfg(feature = "static")]
24073 Font::PTSerifBold,
24074 #[cfg(feature = "static")]
24075 Font::PTSerifBoldItalic,
24076 #[cfg(feature = "static")]
24077 Font::PTSerifCaptionRegular,
24078 #[cfg(feature = "static")]
24079 Font::PTSerifCaptionItalic,
24080 #[cfg(feature = "static")]
24081 Font::PadyakkeExpandedOneRegular,
24082 #[cfg(feature = "static")]
24083 Font::PeddanaRegular,
24084 #[cfg(feature = "static")]
24085 Font::PeraltaRegular,
24086 #[cfg(feature = "static")]
24087 Font::PetronaThin,
24088 #[cfg(feature = "static")]
24089 Font::PetronaExtraLight,
24090 #[cfg(feature = "static")]
24091 Font::PetronaLight,
24092 #[cfg(feature = "static")]
24093 Font::PetronaRegular,
24094 #[cfg(feature = "static")]
24095 Font::PetronaMedium,
24096 #[cfg(feature = "static")]
24097 Font::PetronaSemiBold,
24098 #[cfg(feature = "static")]
24099 Font::PetronaBold,
24100 #[cfg(feature = "static")]
24101 Font::PetronaExtraBold,
24102 #[cfg(feature = "static")]
24103 Font::PetronaBlack,
24104 #[cfg(feature = "static")]
24105 Font::PetronaThinItalic,
24106 #[cfg(feature = "static")]
24107 Font::PetronaExtraLightItalic,
24108 #[cfg(feature = "static")]
24109 Font::PetronaLightItalic,
24110 #[cfg(feature = "static")]
24111 Font::PetronaItalic,
24112 #[cfg(feature = "static")]
24113 Font::PetronaMediumItalic,
24114 #[cfg(feature = "static")]
24115 Font::PetronaSemiBoldItalic,
24116 #[cfg(feature = "static")]
24117 Font::PetronaBoldItalic,
24118 #[cfg(feature = "static")]
24119 Font::PetronaExtraBoldItalic,
24120 #[cfg(feature = "static")]
24121 Font::PetronaBlackItalic,
24122 #[cfg(feature = "variable")]
24123 Font::PetronaVariable,
24124 #[cfg(feature = "variable")]
24125 Font::PetronaItalicVariable,
24126 #[cfg(feature = "static")]
24127 Font::PiazzollaThin,
24128 #[cfg(feature = "static")]
24129 Font::PiazzollaExtraLight,
24130 #[cfg(feature = "static")]
24131 Font::PiazzollaLight,
24132 #[cfg(feature = "static")]
24133 Font::PiazzollaRegular,
24134 #[cfg(feature = "static")]
24135 Font::PiazzollaMedium,
24136 #[cfg(feature = "static")]
24137 Font::PiazzollaSemiBold,
24138 #[cfg(feature = "static")]
24139 Font::PiazzollaBold,
24140 #[cfg(feature = "static")]
24141 Font::PiazzollaExtraBold,
24142 #[cfg(feature = "static")]
24143 Font::PiazzollaBlack,
24144 #[cfg(feature = "static")]
24145 Font::Piazzolla18ptThin,
24146 #[cfg(feature = "static")]
24147 Font::Piazzolla18ptExtraLight,
24148 #[cfg(feature = "static")]
24149 Font::Piazzolla18ptLight,
24150 #[cfg(feature = "static")]
24151 Font::Piazzolla18ptRegular,
24152 #[cfg(feature = "static")]
24153 Font::Piazzolla18ptMedium,
24154 #[cfg(feature = "static")]
24155 Font::Piazzolla18ptSemiBold,
24156 #[cfg(feature = "static")]
24157 Font::Piazzolla18ptBold,
24158 #[cfg(feature = "static")]
24159 Font::Piazzolla18ptExtraBold,
24160 #[cfg(feature = "static")]
24161 Font::Piazzolla18ptBlack,
24162 #[cfg(feature = "static")]
24163 Font::Piazzolla24ptThin,
24164 #[cfg(feature = "static")]
24165 Font::Piazzolla24ptExtraLight,
24166 #[cfg(feature = "static")]
24167 Font::Piazzolla24ptLight,
24168 #[cfg(feature = "static")]
24169 Font::Piazzolla24ptRegular,
24170 #[cfg(feature = "static")]
24171 Font::Piazzolla24ptMedium,
24172 #[cfg(feature = "static")]
24173 Font::Piazzolla24ptSemiBold,
24174 #[cfg(feature = "static")]
24175 Font::Piazzolla24ptBold,
24176 #[cfg(feature = "static")]
24177 Font::Piazzolla24ptExtraBold,
24178 #[cfg(feature = "static")]
24179 Font::Piazzolla24ptBlack,
24180 #[cfg(feature = "static")]
24181 Font::PiazzollaThinItalic,
24182 #[cfg(feature = "static")]
24183 Font::PiazzollaExtraLightItalic,
24184 #[cfg(feature = "static")]
24185 Font::PiazzollaLightItalic,
24186 #[cfg(feature = "static")]
24187 Font::PiazzollaItalic,
24188 #[cfg(feature = "static")]
24189 Font::PiazzollaMediumItalic,
24190 #[cfg(feature = "static")]
24191 Font::PiazzollaSemiBoldItalic,
24192 #[cfg(feature = "static")]
24193 Font::PiazzollaBoldItalic,
24194 #[cfg(feature = "static")]
24195 Font::PiazzollaExtraBoldItalic,
24196 #[cfg(feature = "static")]
24197 Font::PiazzollaBlackItalic,
24198 #[cfg(feature = "static")]
24199 Font::Piazzolla18ptThinItalic,
24200 #[cfg(feature = "static")]
24201 Font::Piazzolla18ptExtraLightItalic,
24202 #[cfg(feature = "static")]
24203 Font::Piazzolla18ptLightItalic,
24204 #[cfg(feature = "static")]
24205 Font::Piazzolla18ptItalic,
24206 #[cfg(feature = "static")]
24207 Font::Piazzolla18ptMediumItalic,
24208 #[cfg(feature = "static")]
24209 Font::Piazzolla18ptSemiBoldItalic,
24210 #[cfg(feature = "static")]
24211 Font::Piazzolla18ptBoldItalic,
24212 #[cfg(feature = "static")]
24213 Font::Piazzolla18ptExtraBoldItalic,
24214 #[cfg(feature = "static")]
24215 Font::Piazzolla18ptBlackItalic,
24216 #[cfg(feature = "static")]
24217 Font::Piazzolla24ptThinItalic,
24218 #[cfg(feature = "static")]
24219 Font::Piazzolla24ptExtraLightItalic,
24220 #[cfg(feature = "static")]
24221 Font::Piazzolla24ptLightItalic,
24222 #[cfg(feature = "static")]
24223 Font::Piazzolla24ptItalic,
24224 #[cfg(feature = "static")]
24225 Font::Piazzolla24ptMediumItalic,
24226 #[cfg(feature = "static")]
24227 Font::Piazzolla24ptSemiBoldItalic,
24228 #[cfg(feature = "static")]
24229 Font::Piazzolla24ptBoldItalic,
24230 #[cfg(feature = "static")]
24231 Font::Piazzolla24ptExtraBoldItalic,
24232 #[cfg(feature = "static")]
24233 Font::Piazzolla24ptBlackItalic,
24234 #[cfg(feature = "variable")]
24235 Font::PiazzollaVariable,
24236 #[cfg(feature = "variable")]
24237 Font::PiazzollaItalicVariable,
24238 #[cfg(feature = "static")]
24239 Font::PlatypiLight,
24240 #[cfg(feature = "static")]
24241 Font::PlatypiRegular,
24242 #[cfg(feature = "static")]
24243 Font::PlatypiMedium,
24244 #[cfg(feature = "static")]
24245 Font::PlatypiSemiBold,
24246 #[cfg(feature = "static")]
24247 Font::PlatypiBold,
24248 #[cfg(feature = "static")]
24249 Font::PlatypiExtraBold,
24250 #[cfg(feature = "static")]
24251 Font::PlatypiLightItalic,
24252 #[cfg(feature = "static")]
24253 Font::PlatypiItalic,
24254 #[cfg(feature = "static")]
24255 Font::PlatypiMediumItalic,
24256 #[cfg(feature = "static")]
24257 Font::PlatypiSemiBoldItalic,
24258 #[cfg(feature = "static")]
24259 Font::PlatypiBoldItalic,
24260 #[cfg(feature = "static")]
24261 Font::PlatypiExtraBoldItalic,
24262 #[cfg(feature = "variable")]
24263 Font::PlatypiVariable,
24264 #[cfg(feature = "variable")]
24265 Font::PlatypiItalicVariable,
24266 #[cfg(feature = "static")]
24267 Font::Playfair9ptSemiCondensedLight,
24268 #[cfg(feature = "static")]
24269 Font::Playfair9ptSemiCondensedRegular,
24270 #[cfg(feature = "static")]
24271 Font::Playfair9ptSemiCondensedMedium,
24272 #[cfg(feature = "static")]
24273 Font::Playfair9ptSemiCondensedSemiBold,
24274 #[cfg(feature = "static")]
24275 Font::Playfair9ptSemiCondensedBold,
24276 #[cfg(feature = "static")]
24277 Font::Playfair9ptSemiCondensedExtraBold,
24278 #[cfg(feature = "static")]
24279 Font::Playfair9ptSemiCondensedBlack,
24280 #[cfg(feature = "static")]
24281 Font::Playfair9ptLight,
24282 #[cfg(feature = "static")]
24283 Font::Playfair9ptRegular,
24284 #[cfg(feature = "static")]
24285 Font::Playfair9ptMedium,
24286 #[cfg(feature = "static")]
24287 Font::Playfair9ptSemiBold,
24288 #[cfg(feature = "static")]
24289 Font::Playfair9ptBold,
24290 #[cfg(feature = "static")]
24291 Font::Playfair9ptExtraBold,
24292 #[cfg(feature = "static")]
24293 Font::Playfair9ptBlack,
24294 #[cfg(feature = "static")]
24295 Font::Playfair9ptSemiExpandedLight,
24296 #[cfg(feature = "static")]
24297 Font::Playfair9ptSemiExpandedRegular,
24298 #[cfg(feature = "static")]
24299 Font::Playfair9ptSemiExpandedMedium,
24300 #[cfg(feature = "static")]
24301 Font::Playfair9ptSemiExpandedSemiBold,
24302 #[cfg(feature = "static")]
24303 Font::Playfair9ptSemiExpandedBold,
24304 #[cfg(feature = "static")]
24305 Font::Playfair9ptSemiExpandedExtraBold,
24306 #[cfg(feature = "static")]
24307 Font::Playfair9ptSemiExpandedBlack,
24308 #[cfg(feature = "static")]
24309 Font::Playfair144ptSemiCondensedLight,
24310 #[cfg(feature = "static")]
24311 Font::Playfair144ptSemiCondensedRegular,
24312 #[cfg(feature = "static")]
24313 Font::Playfair144ptSemiCondensedMedium,
24314 #[cfg(feature = "static")]
24315 Font::Playfair144ptSemiCondensedSemiBold,
24316 #[cfg(feature = "static")]
24317 Font::Playfair144ptSemiCondensedBold,
24318 #[cfg(feature = "static")]
24319 Font::Playfair144ptSemiCondensedExtraBold,
24320 #[cfg(feature = "static")]
24321 Font::Playfair144ptSemiCondensedBlack,
24322 #[cfg(feature = "static")]
24323 Font::Playfair144ptLight,
24324 #[cfg(feature = "static")]
24325 Font::Playfair144ptRegular,
24326 #[cfg(feature = "static")]
24327 Font::Playfair144ptMedium,
24328 #[cfg(feature = "static")]
24329 Font::Playfair144ptSemiBold,
24330 #[cfg(feature = "static")]
24331 Font::Playfair144ptBold,
24332 #[cfg(feature = "static")]
24333 Font::Playfair144ptExtraBold,
24334 #[cfg(feature = "static")]
24335 Font::Playfair144ptBlack,
24336 #[cfg(feature = "static")]
24337 Font::Playfair144ptSemiExpandedLight,
24338 #[cfg(feature = "static")]
24339 Font::Playfair144ptSemiExpandedRegular,
24340 #[cfg(feature = "static")]
24341 Font::Playfair144ptSemiExpandedMedium,
24342 #[cfg(feature = "static")]
24343 Font::Playfair144ptSemiExpandedSemiBold,
24344 #[cfg(feature = "static")]
24345 Font::Playfair144ptSemiExpandedBold,
24346 #[cfg(feature = "static")]
24347 Font::Playfair144ptSemiExpandedExtraBold,
24348 #[cfg(feature = "static")]
24349 Font::Playfair144ptSemiExpandedBlack,
24350 #[cfg(feature = "static")]
24351 Font::Playfair9ptSemiCondensedLightItalic,
24352 #[cfg(feature = "static")]
24353 Font::Playfair9ptSemiCondensedItalic,
24354 #[cfg(feature = "static")]
24355 Font::Playfair9ptSemiCondensedMediumItalic,
24356 #[cfg(feature = "static")]
24357 Font::Playfair9ptSemiCondensedSemiBoldItalic,
24358 #[cfg(feature = "static")]
24359 Font::Playfair9ptSemiCondensedBoldItalic,
24360 #[cfg(feature = "static")]
24361 Font::Playfair9ptSemiCondensedExtraBoldItalic,
24362 #[cfg(feature = "static")]
24363 Font::Playfair9ptSemiCondensedBlackItalic,
24364 #[cfg(feature = "static")]
24365 Font::Playfair9ptLightItalic,
24366 #[cfg(feature = "static")]
24367 Font::Playfair9ptItalic,
24368 #[cfg(feature = "static")]
24369 Font::Playfair9ptMediumItalic,
24370 #[cfg(feature = "static")]
24371 Font::Playfair9ptSemiBoldItalic,
24372 #[cfg(feature = "static")]
24373 Font::Playfair9ptBoldItalic,
24374 #[cfg(feature = "static")]
24375 Font::Playfair9ptExtraBoldItalic,
24376 #[cfg(feature = "static")]
24377 Font::Playfair9ptBlackItalic,
24378 #[cfg(feature = "static")]
24379 Font::Playfair9ptSemiExpandedLightItalic,
24380 #[cfg(feature = "static")]
24381 Font::Playfair9ptSemiExpandedItalic,
24382 #[cfg(feature = "static")]
24383 Font::Playfair9ptSemiExpandedMediumItalic,
24384 #[cfg(feature = "static")]
24385 Font::Playfair9ptSemiExpandedSemiBoldItalic,
24386 #[cfg(feature = "static")]
24387 Font::Playfair9ptSemiExpandedBoldItalic,
24388 #[cfg(feature = "static")]
24389 Font::Playfair9ptSemiExpandedExtraBoldItalic,
24390 #[cfg(feature = "static")]
24391 Font::Playfair9ptSemiExpandedBlackItalic,
24392 #[cfg(feature = "static")]
24393 Font::Playfair144ptSemiCondensedLightItalic,
24394 #[cfg(feature = "static")]
24395 Font::Playfair144ptSemiCondensedItalic,
24396 #[cfg(feature = "static")]
24397 Font::Playfair144ptSemiCondensedMediumItalic,
24398 #[cfg(feature = "static")]
24399 Font::Playfair144ptSemiCondensedSemiBoldItalic,
24400 #[cfg(feature = "static")]
24401 Font::Playfair144ptSemiCondensedBoldItalic,
24402 #[cfg(feature = "static")]
24403 Font::Playfair144ptSemiCondensedExtraBoldItalic,
24404 #[cfg(feature = "static")]
24405 Font::Playfair144ptSemiCondensedBlackItalic,
24406 #[cfg(feature = "static")]
24407 Font::Playfair144ptLightItalic,
24408 #[cfg(feature = "static")]
24409 Font::Playfair144ptItalic,
24410 #[cfg(feature = "static")]
24411 Font::Playfair144ptMediumItalic,
24412 #[cfg(feature = "static")]
24413 Font::Playfair144ptSemiBoldItalic,
24414 #[cfg(feature = "static")]
24415 Font::Playfair144ptBoldItalic,
24416 #[cfg(feature = "static")]
24417 Font::Playfair144ptExtraBoldItalic,
24418 #[cfg(feature = "static")]
24419 Font::Playfair144ptBlackItalic,
24420 #[cfg(feature = "static")]
24421 Font::Playfair144ptSemiExpandedLightItalic,
24422 #[cfg(feature = "static")]
24423 Font::Playfair144ptSemiExpandedItalic,
24424 #[cfg(feature = "static")]
24425 Font::Playfair144ptSemiExpandedMediumItalic,
24426 #[cfg(feature = "static")]
24427 Font::Playfair144ptSemiExpandedSemiBoldItalic,
24428 #[cfg(feature = "static")]
24429 Font::Playfair144ptSemiExpandedBoldItalic,
24430 #[cfg(feature = "static")]
24431 Font::Playfair144ptSemiExpandedExtraBoldItalic,
24432 #[cfg(feature = "static")]
24433 Font::Playfair144ptSemiExpandedBlackItalic,
24434 #[cfg(feature = "variable")]
24435 Font::PlayfairVariable,
24436 #[cfg(feature = "variable")]
24437 Font::PlayfairItalicVariable,
24438 #[cfg(feature = "static")]
24439 Font::PlayfairDisplayRegular,
24440 #[cfg(feature = "static")]
24441 Font::PlayfairDisplayMedium,
24442 #[cfg(feature = "static")]
24443 Font::PlayfairDisplaySemiBold,
24444 #[cfg(feature = "static")]
24445 Font::PlayfairDisplayBold,
24446 #[cfg(feature = "static")]
24447 Font::PlayfairDisplayExtraBold,
24448 #[cfg(feature = "static")]
24449 Font::PlayfairDisplayBlack,
24450 #[cfg(feature = "static")]
24451 Font::PlayfairDisplayItalic,
24452 #[cfg(feature = "static")]
24453 Font::PlayfairDisplayMediumItalic,
24454 #[cfg(feature = "static")]
24455 Font::PlayfairDisplaySemiBoldItalic,
24456 #[cfg(feature = "static")]
24457 Font::PlayfairDisplayBoldItalic,
24458 #[cfg(feature = "static")]
24459 Font::PlayfairDisplayExtraBoldItalic,
24460 #[cfg(feature = "static")]
24461 Font::PlayfairDisplayBlackItalic,
24462 #[cfg(feature = "variable")]
24463 Font::PlayfairDisplayVariable,
24464 #[cfg(feature = "variable")]
24465 Font::PlayfairDisplayItalicVariable,
24466 #[cfg(feature = "static")]
24467 Font::PlayfairDisplaySCRegular,
24468 #[cfg(feature = "static")]
24469 Font::PlayfairDisplaySCItalic,
24470 #[cfg(feature = "static")]
24471 Font::PlayfairDisplaySCBold,
24472 #[cfg(feature = "static")]
24473 Font::PlayfairDisplaySCBoldItalic,
24474 #[cfg(feature = "static")]
24475 Font::PlayfairDisplaySCBlack,
24476 #[cfg(feature = "static")]
24477 Font::PlayfairDisplaySCBlackItalic,
24478 #[cfg(feature = "static")]
24479 Font::PodkovaRegular,
24480 #[cfg(feature = "static")]
24481 Font::PodkovaMedium,
24482 #[cfg(feature = "static")]
24483 Font::PodkovaSemiBold,
24484 #[cfg(feature = "static")]
24485 Font::PodkovaBold,
24486 #[cfg(feature = "static")]
24487 Font::PodkovaExtraBold,
24488 #[cfg(feature = "variable")]
24489 Font::PodkovaVariable,
24490 #[cfg(feature = "static")]
24491 Font::PoltawskiNowyRegular,
24492 #[cfg(feature = "static")]
24493 Font::PoltawskiNowyMedium,
24494 #[cfg(feature = "static")]
24495 Font::PoltawskiNowySemiBold,
24496 #[cfg(feature = "static")]
24497 Font::PoltawskiNowyBold,
24498 #[cfg(feature = "static")]
24499 Font::PoltawskiNowyItalic,
24500 #[cfg(feature = "static")]
24501 Font::PoltawskiNowyMediumItalic,
24502 #[cfg(feature = "static")]
24503 Font::PoltawskiNowySemiBoldItalic,
24504 #[cfg(feature = "static")]
24505 Font::PoltawskiNowyBoldItalic,
24506 #[cfg(feature = "variable")]
24507 Font::PoltawskiNowyVariable,
24508 #[cfg(feature = "variable")]
24509 Font::PoltawskiNowyItalicVariable,
24510 #[cfg(feature = "static")]
24511 Font::PolyRegular,
24512 #[cfg(feature = "static")]
24513 Font::PolyItalic,
24514 #[cfg(feature = "static")]
24515 Font::PortLligatSlabRegular,
24516 #[cfg(feature = "static")]
24517 Font::PrataRegular,
24518 #[cfg(feature = "static")]
24519 Font::PridiExtraLight,
24520 #[cfg(feature = "static")]
24521 Font::PridiLight,
24522 #[cfg(feature = "static")]
24523 Font::PridiRegular,
24524 #[cfg(feature = "static")]
24525 Font::PridiMedium,
24526 #[cfg(feature = "static")]
24527 Font::PridiSemiBold,
24528 #[cfg(feature = "static")]
24529 Font::PridiBold,
24530 #[cfg(feature = "static")]
24531 Font::ProcionoRegular,
24532 #[cfg(feature = "static")]
24533 Font::QuandoRegular,
24534 #[cfg(feature = "static")]
24535 Font::QuattrocentoRegular,
24536 #[cfg(feature = "static")]
24537 Font::QuattrocentoBold,
24538 #[cfg(feature = "static")]
24539 Font::RadleyRegular,
24540 #[cfg(feature = "static")]
24541 Font::RadleyItalic,
24542 #[cfg(feature = "static")]
24543 Font::RamarajaRegular,
24544 #[cfg(feature = "static")]
24545 Font::RasaLight,
24546 #[cfg(feature = "static")]
24547 Font::RasaRegular,
24548 #[cfg(feature = "static")]
24549 Font::RasaMedium,
24550 #[cfg(feature = "static")]
24551 Font::RasaSemiBold,
24552 #[cfg(feature = "static")]
24553 Font::RasaBold,
24554 #[cfg(feature = "static")]
24555 Font::RasaLightItalic,
24556 #[cfg(feature = "static")]
24557 Font::RasaItalic,
24558 #[cfg(feature = "static")]
24559 Font::RasaMediumItalic,
24560 #[cfg(feature = "static")]
24561 Font::RasaSemiBoldItalic,
24562 #[cfg(feature = "static")]
24563 Font::RasaBoldItalic,
24564 #[cfg(feature = "variable")]
24565 Font::RasaVariable,
24566 #[cfg(feature = "variable")]
24567 Font::RasaItalicVariable,
24568 #[cfg(feature = "static")]
24569 Font::RhodiumLibreRegular,
24570 #[cfg(feature = "static")]
24571 Font::RobotoSerifUltraCondensedThin,
24572 #[cfg(feature = "static")]
24573 Font::RobotoSerifUltraCondensedExtraLight,
24574 #[cfg(feature = "static")]
24575 Font::RobotoSerifUltraCondensedLight,
24576 #[cfg(feature = "static")]
24577 Font::RobotoSerifUltraCondensedRegular,
24578 #[cfg(feature = "static")]
24579 Font::RobotoSerifUltraCondensedMedium,
24580 #[cfg(feature = "static")]
24581 Font::RobotoSerifUltraCondensedSemiBold,
24582 #[cfg(feature = "static")]
24583 Font::RobotoSerifUltraCondensedBold,
24584 #[cfg(feature = "static")]
24585 Font::RobotoSerifUltraCondensedExtraBold,
24586 #[cfg(feature = "static")]
24587 Font::RobotoSerifUltraCondensedBlack,
24588 #[cfg(feature = "static")]
24589 Font::RobotoSerifExtraCondensedThin,
24590 #[cfg(feature = "static")]
24591 Font::RobotoSerifExtraCondensedExtraLight,
24592 #[cfg(feature = "static")]
24593 Font::RobotoSerifExtraCondensedLight,
24594 #[cfg(feature = "static")]
24595 Font::RobotoSerifExtraCondensedRegular,
24596 #[cfg(feature = "static")]
24597 Font::RobotoSerifExtraCondensedMedium,
24598 #[cfg(feature = "static")]
24599 Font::RobotoSerifExtraCondensedSemiBold,
24600 #[cfg(feature = "static")]
24601 Font::RobotoSerifExtraCondensedBold,
24602 #[cfg(feature = "static")]
24603 Font::RobotoSerifExtraCondensedExtraBold,
24604 #[cfg(feature = "static")]
24605 Font::RobotoSerifExtraCondensedBlack,
24606 #[cfg(feature = "static")]
24607 Font::RobotoSerifCondensedThin,
24608 #[cfg(feature = "static")]
24609 Font::RobotoSerifCondensedExtraLight,
24610 #[cfg(feature = "static")]
24611 Font::RobotoSerifCondensedLight,
24612 #[cfg(feature = "static")]
24613 Font::RobotoSerifCondensedRegular,
24614 #[cfg(feature = "static")]
24615 Font::RobotoSerifCondensedMedium,
24616 #[cfg(feature = "static")]
24617 Font::RobotoSerifCondensedSemiBold,
24618 #[cfg(feature = "static")]
24619 Font::RobotoSerifCondensedBold,
24620 #[cfg(feature = "static")]
24621 Font::RobotoSerifCondensedExtraBold,
24622 #[cfg(feature = "static")]
24623 Font::RobotoSerifCondensedBlack,
24624 #[cfg(feature = "static")]
24625 Font::RobotoSerifSemiCondensedThin,
24626 #[cfg(feature = "static")]
24627 Font::RobotoSerifSemiCondensedExtraLight,
24628 #[cfg(feature = "static")]
24629 Font::RobotoSerifSemiCondensedLight,
24630 #[cfg(feature = "static")]
24631 Font::RobotoSerifSemiCondensedRegular,
24632 #[cfg(feature = "static")]
24633 Font::RobotoSerifSemiCondensedMedium,
24634 #[cfg(feature = "static")]
24635 Font::RobotoSerifSemiCondensedSemiBold,
24636 #[cfg(feature = "static")]
24637 Font::RobotoSerifSemiCondensedBold,
24638 #[cfg(feature = "static")]
24639 Font::RobotoSerifSemiCondensedExtraBold,
24640 #[cfg(feature = "static")]
24641 Font::RobotoSerifSemiCondensedBlack,
24642 #[cfg(feature = "static")]
24643 Font::RobotoSerifThin,
24644 #[cfg(feature = "static")]
24645 Font::RobotoSerifExtraLight,
24646 #[cfg(feature = "static")]
24647 Font::RobotoSerifLight,
24648 #[cfg(feature = "static")]
24649 Font::RobotoSerifRegular,
24650 #[cfg(feature = "static")]
24651 Font::RobotoSerifMedium,
24652 #[cfg(feature = "static")]
24653 Font::RobotoSerifSemiBold,
24654 #[cfg(feature = "static")]
24655 Font::RobotoSerifBold,
24656 #[cfg(feature = "static")]
24657 Font::RobotoSerifExtraBold,
24658 #[cfg(feature = "static")]
24659 Font::RobotoSerifBlack,
24660 #[cfg(feature = "static")]
24661 Font::RobotoSerifSemiExpandedThin,
24662 #[cfg(feature = "static")]
24663 Font::RobotoSerifSemiExpandedExtraLight,
24664 #[cfg(feature = "static")]
24665 Font::RobotoSerifSemiExpandedLight,
24666 #[cfg(feature = "static")]
24667 Font::RobotoSerifSemiExpandedRegular,
24668 #[cfg(feature = "static")]
24669 Font::RobotoSerifSemiExpandedMedium,
24670 #[cfg(feature = "static")]
24671 Font::RobotoSerifSemiExpandedSemiBold,
24672 #[cfg(feature = "static")]
24673 Font::RobotoSerifSemiExpandedBold,
24674 #[cfg(feature = "static")]
24675 Font::RobotoSerifSemiExpandedExtraBold,
24676 #[cfg(feature = "static")]
24677 Font::RobotoSerifSemiExpandedBlack,
24678 #[cfg(feature = "static")]
24679 Font::RobotoSerifExpandedThin,
24680 #[cfg(feature = "static")]
24681 Font::RobotoSerifExpandedExtraLight,
24682 #[cfg(feature = "static")]
24683 Font::RobotoSerifExpandedLight,
24684 #[cfg(feature = "static")]
24685 Font::RobotoSerifExpandedRegular,
24686 #[cfg(feature = "static")]
24687 Font::RobotoSerifExpandedMedium,
24688 #[cfg(feature = "static")]
24689 Font::RobotoSerifExpandedSemiBold,
24690 #[cfg(feature = "static")]
24691 Font::RobotoSerifExpandedBold,
24692 #[cfg(feature = "static")]
24693 Font::RobotoSerifExpandedExtraBold,
24694 #[cfg(feature = "static")]
24695 Font::RobotoSerifExpandedBlack,
24696 #[cfg(feature = "static")]
24697 Font::RobotoSerifExtraExpandedThin,
24698 #[cfg(feature = "static")]
24699 Font::RobotoSerifExtraExpandedExtraLight,
24700 #[cfg(feature = "static")]
24701 Font::RobotoSerifExtraExpandedLight,
24702 #[cfg(feature = "static")]
24703 Font::RobotoSerifExtraExpandedRegular,
24704 #[cfg(feature = "static")]
24705 Font::RobotoSerifExtraExpandedMedium,
24706 #[cfg(feature = "static")]
24707 Font::RobotoSerifExtraExpandedSemiBold,
24708 #[cfg(feature = "static")]
24709 Font::RobotoSerifExtraExpandedBold,
24710 #[cfg(feature = "static")]
24711 Font::RobotoSerifExtraExpandedExtraBold,
24712 #[cfg(feature = "static")]
24713 Font::RobotoSerifExtraExpandedBlack,
24714 #[cfg(feature = "static")]
24715 Font::RobotoSerif28ptUltraCondensedThin,
24716 #[cfg(feature = "static")]
24717 Font::RobotoSerif28ptUltraCondensedExtraLight,
24718 #[cfg(feature = "static")]
24719 Font::RobotoSerif28ptUltraCondensedLight,
24720 #[cfg(feature = "static")]
24721 Font::RobotoSerif28ptUltraCondensedRegular,
24722 #[cfg(feature = "static")]
24723 Font::RobotoSerif28ptUltraCondensedMedium,
24724 #[cfg(feature = "static")]
24725 Font::RobotoSerif28ptUltraCondensedSemiBold,
24726 #[cfg(feature = "static")]
24727 Font::RobotoSerif28ptUltraCondensedBold,
24728 #[cfg(feature = "static")]
24729 Font::RobotoSerif28ptUltraCondensedExtraBold,
24730 #[cfg(feature = "static")]
24731 Font::RobotoSerif28ptUltraCondensedBlack,
24732 #[cfg(feature = "static")]
24733 Font::RobotoSerif28ptExtraCondensedThin,
24734 #[cfg(feature = "static")]
24735 Font::RobotoSerif28ptExtraCondensedExtraLight,
24736 #[cfg(feature = "static")]
24737 Font::RobotoSerif28ptExtraCondensedLight,
24738 #[cfg(feature = "static")]
24739 Font::RobotoSerif28ptExtraCondensedRegular,
24740 #[cfg(feature = "static")]
24741 Font::RobotoSerif28ptExtraCondensedMedium,
24742 #[cfg(feature = "static")]
24743 Font::RobotoSerif28ptExtraCondensedSemiBold,
24744 #[cfg(feature = "static")]
24745 Font::RobotoSerif28ptExtraCondensedBold,
24746 #[cfg(feature = "static")]
24747 Font::RobotoSerif28ptExtraCondensedExtraBold,
24748 #[cfg(feature = "static")]
24749 Font::RobotoSerif28ptExtraCondensedBlack,
24750 #[cfg(feature = "static")]
24751 Font::RobotoSerif28ptCondensedThin,
24752 #[cfg(feature = "static")]
24753 Font::RobotoSerif28ptCondensedExtraLight,
24754 #[cfg(feature = "static")]
24755 Font::RobotoSerif28ptCondensedLight,
24756 #[cfg(feature = "static")]
24757 Font::RobotoSerif28ptCondensedRegular,
24758 #[cfg(feature = "static")]
24759 Font::RobotoSerif28ptCondensedMedium,
24760 #[cfg(feature = "static")]
24761 Font::RobotoSerif28ptCondensedSemiBold,
24762 #[cfg(feature = "static")]
24763 Font::RobotoSerif28ptCondensedBold,
24764 #[cfg(feature = "static")]
24765 Font::RobotoSerif28ptCondensedExtraBold,
24766 #[cfg(feature = "static")]
24767 Font::RobotoSerif28ptCondensedBlack,
24768 #[cfg(feature = "static")]
24769 Font::RobotoSerif28ptSemiCondensedThin,
24770 #[cfg(feature = "static")]
24771 Font::RobotoSerif28ptSemiCondensedExtraLight,
24772 #[cfg(feature = "static")]
24773 Font::RobotoSerif28ptSemiCondensedLight,
24774 #[cfg(feature = "static")]
24775 Font::RobotoSerif28ptSemiCondensedRegular,
24776 #[cfg(feature = "static")]
24777 Font::RobotoSerif28ptSemiCondensedMedium,
24778 #[cfg(feature = "static")]
24779 Font::RobotoSerif28ptSemiCondensedSemiBold,
24780 #[cfg(feature = "static")]
24781 Font::RobotoSerif28ptSemiCondensedBold,
24782 #[cfg(feature = "static")]
24783 Font::RobotoSerif28ptSemiCondensedExtraBold,
24784 #[cfg(feature = "static")]
24785 Font::RobotoSerif28ptSemiCondensedBlack,
24786 #[cfg(feature = "static")]
24787 Font::RobotoSerif28ptThin,
24788 #[cfg(feature = "static")]
24789 Font::RobotoSerif28ptExtraLight,
24790 #[cfg(feature = "static")]
24791 Font::RobotoSerif28ptLight,
24792 #[cfg(feature = "static")]
24793 Font::RobotoSerif28ptRegular,
24794 #[cfg(feature = "static")]
24795 Font::RobotoSerif28ptMedium,
24796 #[cfg(feature = "static")]
24797 Font::RobotoSerif28ptSemiBold,
24798 #[cfg(feature = "static")]
24799 Font::RobotoSerif28ptBold,
24800 #[cfg(feature = "static")]
24801 Font::RobotoSerif28ptExtraBold,
24802 #[cfg(feature = "static")]
24803 Font::RobotoSerif28ptBlack,
24804 #[cfg(feature = "static")]
24805 Font::RobotoSerif28ptSemiExpandedThin,
24806 #[cfg(feature = "static")]
24807 Font::RobotoSerif28ptSemiExpandedExtraLight,
24808 #[cfg(feature = "static")]
24809 Font::RobotoSerif28ptSemiExpandedLight,
24810 #[cfg(feature = "static")]
24811 Font::RobotoSerif28ptSemiExpandedRegular,
24812 #[cfg(feature = "static")]
24813 Font::RobotoSerif28ptSemiExpandedMedium,
24814 #[cfg(feature = "static")]
24815 Font::RobotoSerif28ptSemiExpandedSemiBold,
24816 #[cfg(feature = "static")]
24817 Font::RobotoSerif28ptSemiExpandedBold,
24818 #[cfg(feature = "static")]
24819 Font::RobotoSerif28ptSemiExpandedExtraBold,
24820 #[cfg(feature = "static")]
24821 Font::RobotoSerif28ptSemiExpandedBlack,
24822 #[cfg(feature = "static")]
24823 Font::RobotoSerif28ptExpandedThin,
24824 #[cfg(feature = "static")]
24825 Font::RobotoSerif28ptExpandedExtraLight,
24826 #[cfg(feature = "static")]
24827 Font::RobotoSerif28ptExpandedLight,
24828 #[cfg(feature = "static")]
24829 Font::RobotoSerif28ptExpandedRegular,
24830 #[cfg(feature = "static")]
24831 Font::RobotoSerif28ptExpandedMedium,
24832 #[cfg(feature = "static")]
24833 Font::RobotoSerif28ptExpandedSemiBold,
24834 #[cfg(feature = "static")]
24835 Font::RobotoSerif28ptExpandedBold,
24836 #[cfg(feature = "static")]
24837 Font::RobotoSerif28ptExpandedExtraBold,
24838 #[cfg(feature = "static")]
24839 Font::RobotoSerif28ptExpandedBlack,
24840 #[cfg(feature = "static")]
24841 Font::RobotoSerif28ptExtraExpandedThin,
24842 #[cfg(feature = "static")]
24843 Font::RobotoSerif28ptExtraExpandedExtraLight,
24844 #[cfg(feature = "static")]
24845 Font::RobotoSerif28ptExtraExpandedLight,
24846 #[cfg(feature = "static")]
24847 Font::RobotoSerif28ptExtraExpandedRegular,
24848 #[cfg(feature = "static")]
24849 Font::RobotoSerif28ptExtraExpandedMedium,
24850 #[cfg(feature = "static")]
24851 Font::RobotoSerif28ptExtraExpandedSemiBold,
24852 #[cfg(feature = "static")]
24853 Font::RobotoSerif28ptExtraExpandedBold,
24854 #[cfg(feature = "static")]
24855 Font::RobotoSerif28ptExtraExpandedExtraBold,
24856 #[cfg(feature = "static")]
24857 Font::RobotoSerif28ptExtraExpandedBlack,
24858 #[cfg(feature = "static")]
24859 Font::RobotoSerif36ptUltraCondensedThin,
24860 #[cfg(feature = "static")]
24861 Font::RobotoSerif36ptUltraCondensedExtraLight,
24862 #[cfg(feature = "static")]
24863 Font::RobotoSerif36ptUltraCondensedLight,
24864 #[cfg(feature = "static")]
24865 Font::RobotoSerif36ptUltraCondensedRegular,
24866 #[cfg(feature = "static")]
24867 Font::RobotoSerif36ptUltraCondensedMedium,
24868 #[cfg(feature = "static")]
24869 Font::RobotoSerif36ptUltraCondensedSemiBold,
24870 #[cfg(feature = "static")]
24871 Font::RobotoSerif36ptUltraCondensedBold,
24872 #[cfg(feature = "static")]
24873 Font::RobotoSerif36ptUltraCondensedExtraBold,
24874 #[cfg(feature = "static")]
24875 Font::RobotoSerif36ptUltraCondensedBlack,
24876 #[cfg(feature = "static")]
24877 Font::RobotoSerif36ptExtraCondensedThin,
24878 #[cfg(feature = "static")]
24879 Font::RobotoSerif36ptExtraCondensedExtraLight,
24880 #[cfg(feature = "static")]
24881 Font::RobotoSerif36ptExtraCondensedLight,
24882 #[cfg(feature = "static")]
24883 Font::RobotoSerif36ptExtraCondensedRegular,
24884 #[cfg(feature = "static")]
24885 Font::RobotoSerif36ptExtraCondensedMedium,
24886 #[cfg(feature = "static")]
24887 Font::RobotoSerif36ptExtraCondensedSemiBold,
24888 #[cfg(feature = "static")]
24889 Font::RobotoSerif36ptExtraCondensedBold,
24890 #[cfg(feature = "static")]
24891 Font::RobotoSerif36ptExtraCondensedExtraBold,
24892 #[cfg(feature = "static")]
24893 Font::RobotoSerif36ptExtraCondensedBlack,
24894 #[cfg(feature = "static")]
24895 Font::RobotoSerif36ptCondensedThin,
24896 #[cfg(feature = "static")]
24897 Font::RobotoSerif36ptCondensedExtraLight,
24898 #[cfg(feature = "static")]
24899 Font::RobotoSerif36ptCondensedLight,
24900 #[cfg(feature = "static")]
24901 Font::RobotoSerif36ptCondensedRegular,
24902 #[cfg(feature = "static")]
24903 Font::RobotoSerif36ptCondensedMedium,
24904 #[cfg(feature = "static")]
24905 Font::RobotoSerif36ptCondensedSemiBold,
24906 #[cfg(feature = "static")]
24907 Font::RobotoSerif36ptCondensedBold,
24908 #[cfg(feature = "static")]
24909 Font::RobotoSerif36ptCondensedExtraBold,
24910 #[cfg(feature = "static")]
24911 Font::RobotoSerif36ptCondensedBlack,
24912 #[cfg(feature = "static")]
24913 Font::RobotoSerif36ptSemiCondensedThin,
24914 #[cfg(feature = "static")]
24915 Font::RobotoSerif36ptSemiCondensedExtraLight,
24916 #[cfg(feature = "static")]
24917 Font::RobotoSerif36ptSemiCondensedLight,
24918 #[cfg(feature = "static")]
24919 Font::RobotoSerif36ptSemiCondensedRegular,
24920 #[cfg(feature = "static")]
24921 Font::RobotoSerif36ptSemiCondensedMedium,
24922 #[cfg(feature = "static")]
24923 Font::RobotoSerif36ptSemiCondensedSemiBold,
24924 #[cfg(feature = "static")]
24925 Font::RobotoSerif36ptSemiCondensedBold,
24926 #[cfg(feature = "static")]
24927 Font::RobotoSerif36ptSemiCondensedExtraBold,
24928 #[cfg(feature = "static")]
24929 Font::RobotoSerif36ptSemiCondensedBlack,
24930 #[cfg(feature = "static")]
24931 Font::RobotoSerif36ptThin,
24932 #[cfg(feature = "static")]
24933 Font::RobotoSerif36ptExtraLight,
24934 #[cfg(feature = "static")]
24935 Font::RobotoSerif36ptLight,
24936 #[cfg(feature = "static")]
24937 Font::RobotoSerif36ptRegular,
24938 #[cfg(feature = "static")]
24939 Font::RobotoSerif36ptMedium,
24940 #[cfg(feature = "static")]
24941 Font::RobotoSerif36ptSemiBold,
24942 #[cfg(feature = "static")]
24943 Font::RobotoSerif36ptBold,
24944 #[cfg(feature = "static")]
24945 Font::RobotoSerif36ptExtraBold,
24946 #[cfg(feature = "static")]
24947 Font::RobotoSerif36ptBlack,
24948 #[cfg(feature = "static")]
24949 Font::RobotoSerif36ptSemiExpandedThin,
24950 #[cfg(feature = "static")]
24951 Font::RobotoSerif36ptSemiExpandedExtraLight,
24952 #[cfg(feature = "static")]
24953 Font::RobotoSerif36ptSemiExpandedLight,
24954 #[cfg(feature = "static")]
24955 Font::RobotoSerif36ptSemiExpandedRegular,
24956 #[cfg(feature = "static")]
24957 Font::RobotoSerif36ptSemiExpandedMedium,
24958 #[cfg(feature = "static")]
24959 Font::RobotoSerif36ptSemiExpandedSemiBold,
24960 #[cfg(feature = "static")]
24961 Font::RobotoSerif36ptSemiExpandedBold,
24962 #[cfg(feature = "static")]
24963 Font::RobotoSerif36ptSemiExpandedExtraBold,
24964 #[cfg(feature = "static")]
24965 Font::RobotoSerif36ptSemiExpandedBlack,
24966 #[cfg(feature = "static")]
24967 Font::RobotoSerif36ptExpandedThin,
24968 #[cfg(feature = "static")]
24969 Font::RobotoSerif36ptExpandedExtraLight,
24970 #[cfg(feature = "static")]
24971 Font::RobotoSerif36ptExpandedLight,
24972 #[cfg(feature = "static")]
24973 Font::RobotoSerif36ptExpandedRegular,
24974 #[cfg(feature = "static")]
24975 Font::RobotoSerif36ptExpandedMedium,
24976 #[cfg(feature = "static")]
24977 Font::RobotoSerif36ptExpandedSemiBold,
24978 #[cfg(feature = "static")]
24979 Font::RobotoSerif36ptExpandedBold,
24980 #[cfg(feature = "static")]
24981 Font::RobotoSerif36ptExpandedExtraBold,
24982 #[cfg(feature = "static")]
24983 Font::RobotoSerif36ptExpandedBlack,
24984 #[cfg(feature = "static")]
24985 Font::RobotoSerif36ptExtraExpandedThin,
24986 #[cfg(feature = "static")]
24987 Font::RobotoSerif36ptExtraExpandedExtraLight,
24988 #[cfg(feature = "static")]
24989 Font::RobotoSerif36ptExtraExpandedLight,
24990 #[cfg(feature = "static")]
24991 Font::RobotoSerif36ptExtraExpandedRegular,
24992 #[cfg(feature = "static")]
24993 Font::RobotoSerif36ptExtraExpandedMedium,
24994 #[cfg(feature = "static")]
24995 Font::RobotoSerif36ptExtraExpandedSemiBold,
24996 #[cfg(feature = "static")]
24997 Font::RobotoSerif36ptExtraExpandedBold,
24998 #[cfg(feature = "static")]
24999 Font::RobotoSerif36ptExtraExpandedExtraBold,
25000 #[cfg(feature = "static")]
25001 Font::RobotoSerif36ptExtraExpandedBlack,
25002 #[cfg(feature = "static")]
25003 Font::RobotoSerif72ptUltraCondensedThin,
25004 #[cfg(feature = "static")]
25005 Font::RobotoSerif72ptUltraCondensedExtraLight,
25006 #[cfg(feature = "static")]
25007 Font::RobotoSerif72ptUltraCondensedLight,
25008 #[cfg(feature = "static")]
25009 Font::RobotoSerif72ptUltraCondensedRegular,
25010 #[cfg(feature = "static")]
25011 Font::RobotoSerif72ptUltraCondensedMedium,
25012 #[cfg(feature = "static")]
25013 Font::RobotoSerif72ptUltraCondensedSemiBold,
25014 #[cfg(feature = "static")]
25015 Font::RobotoSerif72ptUltraCondensedBold,
25016 #[cfg(feature = "static")]
25017 Font::RobotoSerif72ptUltraCondensedExtraBold,
25018 #[cfg(feature = "static")]
25019 Font::RobotoSerif72ptUltraCondensedBlack,
25020 #[cfg(feature = "static")]
25021 Font::RobotoSerif72ptExtraCondensedThin,
25022 #[cfg(feature = "static")]
25023 Font::RobotoSerif72ptExtraCondensedExtraLight,
25024 #[cfg(feature = "static")]
25025 Font::RobotoSerif72ptExtraCondensedLight,
25026 #[cfg(feature = "static")]
25027 Font::RobotoSerif72ptExtraCondensedRegular,
25028 #[cfg(feature = "static")]
25029 Font::RobotoSerif72ptExtraCondensedMedium,
25030 #[cfg(feature = "static")]
25031 Font::RobotoSerif72ptExtraCondensedSemiBold,
25032 #[cfg(feature = "static")]
25033 Font::RobotoSerif72ptExtraCondensedBold,
25034 #[cfg(feature = "static")]
25035 Font::RobotoSerif72ptExtraCondensedExtraBold,
25036 #[cfg(feature = "static")]
25037 Font::RobotoSerif72ptExtraCondensedBlack,
25038 #[cfg(feature = "static")]
25039 Font::RobotoSerif72ptCondensedThin,
25040 #[cfg(feature = "static")]
25041 Font::RobotoSerif72ptCondensedExtraLight,
25042 #[cfg(feature = "static")]
25043 Font::RobotoSerif72ptCondensedLight,
25044 #[cfg(feature = "static")]
25045 Font::RobotoSerif72ptCondensedRegular,
25046 #[cfg(feature = "static")]
25047 Font::RobotoSerif72ptCondensedMedium,
25048 #[cfg(feature = "static")]
25049 Font::RobotoSerif72ptCondensedSemiBold,
25050 #[cfg(feature = "static")]
25051 Font::RobotoSerif72ptCondensedBold,
25052 #[cfg(feature = "static")]
25053 Font::RobotoSerif72ptCondensedExtraBold,
25054 #[cfg(feature = "static")]
25055 Font::RobotoSerif72ptCondensedBlack,
25056 #[cfg(feature = "static")]
25057 Font::RobotoSerif72ptSemiCondensedThin,
25058 #[cfg(feature = "static")]
25059 Font::RobotoSerif72ptSemiCondensedExtraLight,
25060 #[cfg(feature = "static")]
25061 Font::RobotoSerif72ptSemiCondensedLight,
25062 #[cfg(feature = "static")]
25063 Font::RobotoSerif72ptSemiCondensedRegular,
25064 #[cfg(feature = "static")]
25065 Font::RobotoSerif72ptSemiCondensedMedium,
25066 #[cfg(feature = "static")]
25067 Font::RobotoSerif72ptSemiCondensedSemiBold,
25068 #[cfg(feature = "static")]
25069 Font::RobotoSerif72ptSemiCondensedBold,
25070 #[cfg(feature = "static")]
25071 Font::RobotoSerif72ptSemiCondensedExtraBold,
25072 #[cfg(feature = "static")]
25073 Font::RobotoSerif72ptSemiCondensedBlack,
25074 #[cfg(feature = "static")]
25075 Font::RobotoSerif72ptThin,
25076 #[cfg(feature = "static")]
25077 Font::RobotoSerif72ptExtraLight,
25078 #[cfg(feature = "static")]
25079 Font::RobotoSerif72ptLight,
25080 #[cfg(feature = "static")]
25081 Font::RobotoSerif72ptRegular,
25082 #[cfg(feature = "static")]
25083 Font::RobotoSerif72ptMedium,
25084 #[cfg(feature = "static")]
25085 Font::RobotoSerif72ptSemiBold,
25086 #[cfg(feature = "static")]
25087 Font::RobotoSerif72ptBold,
25088 #[cfg(feature = "static")]
25089 Font::RobotoSerif72ptExtraBold,
25090 #[cfg(feature = "static")]
25091 Font::RobotoSerif72ptBlack,
25092 #[cfg(feature = "static")]
25093 Font::RobotoSerif72ptSemiExpandedThin,
25094 #[cfg(feature = "static")]
25095 Font::RobotoSerif72ptSemiExpandedExtraLight,
25096 #[cfg(feature = "static")]
25097 Font::RobotoSerif72ptSemiExpandedLight,
25098 #[cfg(feature = "static")]
25099 Font::RobotoSerif72ptSemiExpandedRegular,
25100 #[cfg(feature = "static")]
25101 Font::RobotoSerif72ptSemiExpandedMedium,
25102 #[cfg(feature = "static")]
25103 Font::RobotoSerif72ptSemiExpandedSemiBold,
25104 #[cfg(feature = "static")]
25105 Font::RobotoSerif72ptSemiExpandedBold,
25106 #[cfg(feature = "static")]
25107 Font::RobotoSerif72ptSemiExpandedExtraBold,
25108 #[cfg(feature = "static")]
25109 Font::RobotoSerif72ptSemiExpandedBlack,
25110 #[cfg(feature = "static")]
25111 Font::RobotoSerif72ptExpandedThin,
25112 #[cfg(feature = "static")]
25113 Font::RobotoSerif72ptExpandedExtraLight,
25114 #[cfg(feature = "static")]
25115 Font::RobotoSerif72ptExpandedLight,
25116 #[cfg(feature = "static")]
25117 Font::RobotoSerif72ptExpandedRegular,
25118 #[cfg(feature = "static")]
25119 Font::RobotoSerif72ptExpandedMedium,
25120 #[cfg(feature = "static")]
25121 Font::RobotoSerif72ptExpandedSemiBold,
25122 #[cfg(feature = "static")]
25123 Font::RobotoSerif72ptExpandedBold,
25124 #[cfg(feature = "static")]
25125 Font::RobotoSerif72ptExpandedExtraBold,
25126 #[cfg(feature = "static")]
25127 Font::RobotoSerif72ptExpandedBlack,
25128 #[cfg(feature = "static")]
25129 Font::RobotoSerif72ptExtraExpandedThin,
25130 #[cfg(feature = "static")]
25131 Font::RobotoSerif72ptExtraExpandedExtraLight,
25132 #[cfg(feature = "static")]
25133 Font::RobotoSerif72ptExtraExpandedLight,
25134 #[cfg(feature = "static")]
25135 Font::RobotoSerif72ptExtraExpandedRegular,
25136 #[cfg(feature = "static")]
25137 Font::RobotoSerif72ptExtraExpandedMedium,
25138 #[cfg(feature = "static")]
25139 Font::RobotoSerif72ptExtraExpandedSemiBold,
25140 #[cfg(feature = "static")]
25141 Font::RobotoSerif72ptExtraExpandedBold,
25142 #[cfg(feature = "static")]
25143 Font::RobotoSerif72ptExtraExpandedExtraBold,
25144 #[cfg(feature = "static")]
25145 Font::RobotoSerif72ptExtraExpandedBlack,
25146 #[cfg(feature = "static")]
25147 Font::RobotoSerif120ptUltraCondensedThin,
25148 #[cfg(feature = "static")]
25149 Font::RobotoSerif120ptUltraCondensedExtraLight,
25150 #[cfg(feature = "static")]
25151 Font::RobotoSerif120ptUltraCondensedLight,
25152 #[cfg(feature = "static")]
25153 Font::RobotoSerif120ptUltraCondensedRegular,
25154 #[cfg(feature = "static")]
25155 Font::RobotoSerif120ptUltraCondensedMedium,
25156 #[cfg(feature = "static")]
25157 Font::RobotoSerif120ptUltraCondensedSemiBold,
25158 #[cfg(feature = "static")]
25159 Font::RobotoSerif120ptUltraCondensedBold,
25160 #[cfg(feature = "static")]
25161 Font::RobotoSerif120ptUltraCondensedExtraBold,
25162 #[cfg(feature = "static")]
25163 Font::RobotoSerif120ptUltraCondensedBlack,
25164 #[cfg(feature = "static")]
25165 Font::RobotoSerif120ptExtraCondensedThin,
25166 #[cfg(feature = "static")]
25167 Font::RobotoSerif120ptExtraCondensedExtraLight,
25168 #[cfg(feature = "static")]
25169 Font::RobotoSerif120ptExtraCondensedLight,
25170 #[cfg(feature = "static")]
25171 Font::RobotoSerif120ptExtraCondensedRegular,
25172 #[cfg(feature = "static")]
25173 Font::RobotoSerif120ptExtraCondensedMedium,
25174 #[cfg(feature = "static")]
25175 Font::RobotoSerif120ptExtraCondensedSemiBold,
25176 #[cfg(feature = "static")]
25177 Font::RobotoSerif120ptExtraCondensedBold,
25178 #[cfg(feature = "static")]
25179 Font::RobotoSerif120ptExtraCondensedExtraBold,
25180 #[cfg(feature = "static")]
25181 Font::RobotoSerif120ptExtraCondensedBlack,
25182 #[cfg(feature = "static")]
25183 Font::RobotoSerif120ptCondensedThin,
25184 #[cfg(feature = "static")]
25185 Font::RobotoSerif120ptCondensedExtraLight,
25186 #[cfg(feature = "static")]
25187 Font::RobotoSerif120ptCondensedLight,
25188 #[cfg(feature = "static")]
25189 Font::RobotoSerif120ptCondensedRegular,
25190 #[cfg(feature = "static")]
25191 Font::RobotoSerif120ptCondensedMedium,
25192 #[cfg(feature = "static")]
25193 Font::RobotoSerif120ptCondensedSemiBold,
25194 #[cfg(feature = "static")]
25195 Font::RobotoSerif120ptCondensedBold,
25196 #[cfg(feature = "static")]
25197 Font::RobotoSerif120ptCondensedExtraBold,
25198 #[cfg(feature = "static")]
25199 Font::RobotoSerif120ptCondensedBlack,
25200 #[cfg(feature = "static")]
25201 Font::RobotoSerif120ptSemiCondensedThin,
25202 #[cfg(feature = "static")]
25203 Font::RobotoSerif120ptSemiCondensedExtraLight,
25204 #[cfg(feature = "static")]
25205 Font::RobotoSerif120ptSemiCondensedLight,
25206 #[cfg(feature = "static")]
25207 Font::RobotoSerif120ptSemiCondensedRegular,
25208 #[cfg(feature = "static")]
25209 Font::RobotoSerif120ptSemiCondensedMedium,
25210 #[cfg(feature = "static")]
25211 Font::RobotoSerif120ptSemiCondensedSemiBold,
25212 #[cfg(feature = "static")]
25213 Font::RobotoSerif120ptSemiCondensedBold,
25214 #[cfg(feature = "static")]
25215 Font::RobotoSerif120ptSemiCondensedExtraBold,
25216 #[cfg(feature = "static")]
25217 Font::RobotoSerif120ptSemiCondensedBlack,
25218 #[cfg(feature = "static")]
25219 Font::RobotoSerif120ptThin,
25220 #[cfg(feature = "static")]
25221 Font::RobotoSerif120ptExtraLight,
25222 #[cfg(feature = "static")]
25223 Font::RobotoSerif120ptLight,
25224 #[cfg(feature = "static")]
25225 Font::RobotoSerif120ptRegular,
25226 #[cfg(feature = "static")]
25227 Font::RobotoSerif120ptMedium,
25228 #[cfg(feature = "static")]
25229 Font::RobotoSerif120ptSemiBold,
25230 #[cfg(feature = "static")]
25231 Font::RobotoSerif120ptBold,
25232 #[cfg(feature = "static")]
25233 Font::RobotoSerif120ptExtraBold,
25234 #[cfg(feature = "static")]
25235 Font::RobotoSerif120ptBlack,
25236 #[cfg(feature = "static")]
25237 Font::RobotoSerif120ptSemiExpandedThin,
25238 #[cfg(feature = "static")]
25239 Font::RobotoSerif120ptSemiExpandedExtraLight,
25240 #[cfg(feature = "static")]
25241 Font::RobotoSerif120ptSemiExpandedLight,
25242 #[cfg(feature = "static")]
25243 Font::RobotoSerif120ptSemiExpandedRegular,
25244 #[cfg(feature = "static")]
25245 Font::RobotoSerif120ptSemiExpandedMedium,
25246 #[cfg(feature = "static")]
25247 Font::RobotoSerif120ptSemiExpandedSemiBold,
25248 #[cfg(feature = "static")]
25249 Font::RobotoSerif120ptSemiExpandedBold,
25250 #[cfg(feature = "static")]
25251 Font::RobotoSerif120ptSemiExpandedExtraBold,
25252 #[cfg(feature = "static")]
25253 Font::RobotoSerif120ptSemiExpandedBlack,
25254 #[cfg(feature = "static")]
25255 Font::RobotoSerif120ptExpandedThin,
25256 #[cfg(feature = "static")]
25257 Font::RobotoSerif120ptExpandedExtraLight,
25258 #[cfg(feature = "static")]
25259 Font::RobotoSerif120ptExpandedLight,
25260 #[cfg(feature = "static")]
25261 Font::RobotoSerif120ptExpandedRegular,
25262 #[cfg(feature = "static")]
25263 Font::RobotoSerif120ptExpandedMedium,
25264 #[cfg(feature = "static")]
25265 Font::RobotoSerif120ptExpandedSemiBold,
25266 #[cfg(feature = "static")]
25267 Font::RobotoSerif120ptExpandedBold,
25268 #[cfg(feature = "static")]
25269 Font::RobotoSerif120ptExpandedExtraBold,
25270 #[cfg(feature = "static")]
25271 Font::RobotoSerif120ptExpandedBlack,
25272 #[cfg(feature = "static")]
25273 Font::RobotoSerif120ptExtraExpandedThin,
25274 #[cfg(feature = "static")]
25275 Font::RobotoSerif120ptExtraExpandedExtraLight,
25276 #[cfg(feature = "static")]
25277 Font::RobotoSerif120ptExtraExpandedLight,
25278 #[cfg(feature = "static")]
25279 Font::RobotoSerif120ptExtraExpandedRegular,
25280 #[cfg(feature = "static")]
25281 Font::RobotoSerif120ptExtraExpandedMedium,
25282 #[cfg(feature = "static")]
25283 Font::RobotoSerif120ptExtraExpandedSemiBold,
25284 #[cfg(feature = "static")]
25285 Font::RobotoSerif120ptExtraExpandedBold,
25286 #[cfg(feature = "static")]
25287 Font::RobotoSerif120ptExtraExpandedExtraBold,
25288 #[cfg(feature = "static")]
25289 Font::RobotoSerif120ptExtraExpandedBlack,
25290 #[cfg(feature = "static")]
25291 Font::RobotoSerifUltraCondensedThinItalic,
25292 #[cfg(feature = "static")]
25293 Font::RobotoSerifUltraCondensedExtraLightItalic,
25294 #[cfg(feature = "static")]
25295 Font::RobotoSerifUltraCondensedLightItalic,
25296 #[cfg(feature = "static")]
25297 Font::RobotoSerifUltraCondensedItalic,
25298 #[cfg(feature = "static")]
25299 Font::RobotoSerifUltraCondensedMediumItalic,
25300 #[cfg(feature = "static")]
25301 Font::RobotoSerifUltraCondensedSemiBoldItalic,
25302 #[cfg(feature = "static")]
25303 Font::RobotoSerifUltraCondensedBoldItalic,
25304 #[cfg(feature = "static")]
25305 Font::RobotoSerifUltraCondensedExtraBoldItalic,
25306 #[cfg(feature = "static")]
25307 Font::RobotoSerifUltraCondensedBlackItalic,
25308 #[cfg(feature = "static")]
25309 Font::RobotoSerifExtraCondensedThinItalic,
25310 #[cfg(feature = "static")]
25311 Font::RobotoSerifExtraCondensedExtraLightItalic,
25312 #[cfg(feature = "static")]
25313 Font::RobotoSerifExtraCondensedLightItalic,
25314 #[cfg(feature = "static")]
25315 Font::RobotoSerifExtraCondensedItalic,
25316 #[cfg(feature = "static")]
25317 Font::RobotoSerifExtraCondensedMediumItalic,
25318 #[cfg(feature = "static")]
25319 Font::RobotoSerifExtraCondensedSemiBoldItalic,
25320 #[cfg(feature = "static")]
25321 Font::RobotoSerifExtraCondensedBoldItalic,
25322 #[cfg(feature = "static")]
25323 Font::RobotoSerifExtraCondensedExtraBoldItalic,
25324 #[cfg(feature = "static")]
25325 Font::RobotoSerifExtraCondensedBlackItalic,
25326 #[cfg(feature = "static")]
25327 Font::RobotoSerifCondensedThinItalic,
25328 #[cfg(feature = "static")]
25329 Font::RobotoSerifCondensedExtraLightItalic,
25330 #[cfg(feature = "static")]
25331 Font::RobotoSerifCondensedLightItalic,
25332 #[cfg(feature = "static")]
25333 Font::RobotoSerifCondensedItalic,
25334 #[cfg(feature = "static")]
25335 Font::RobotoSerifCondensedMediumItalic,
25336 #[cfg(feature = "static")]
25337 Font::RobotoSerifCondensedSemiBoldItalic,
25338 #[cfg(feature = "static")]
25339 Font::RobotoSerifCondensedBoldItalic,
25340 #[cfg(feature = "static")]
25341 Font::RobotoSerifCondensedExtraBoldItalic,
25342 #[cfg(feature = "static")]
25343 Font::RobotoSerifCondensedBlackItalic,
25344 #[cfg(feature = "static")]
25345 Font::RobotoSerifSemiCondensedThinItalic,
25346 #[cfg(feature = "static")]
25347 Font::RobotoSerifSemiCondensedExtraLightItalic,
25348 #[cfg(feature = "static")]
25349 Font::RobotoSerifSemiCondensedLightItalic,
25350 #[cfg(feature = "static")]
25351 Font::RobotoSerifSemiCondensedItalic,
25352 #[cfg(feature = "static")]
25353 Font::RobotoSerifSemiCondensedMediumItalic,
25354 #[cfg(feature = "static")]
25355 Font::RobotoSerifSemiCondensedSemiBoldItalic,
25356 #[cfg(feature = "static")]
25357 Font::RobotoSerifSemiCondensedBoldItalic,
25358 #[cfg(feature = "static")]
25359 Font::RobotoSerifSemiCondensedExtraBoldItalic,
25360 #[cfg(feature = "static")]
25361 Font::RobotoSerifSemiCondensedBlackItalic,
25362 #[cfg(feature = "static")]
25363 Font::RobotoSerifThinItalic,
25364 #[cfg(feature = "static")]
25365 Font::RobotoSerifExtraLightItalic,
25366 #[cfg(feature = "static")]
25367 Font::RobotoSerifLightItalic,
25368 #[cfg(feature = "static")]
25369 Font::RobotoSerifItalic,
25370 #[cfg(feature = "static")]
25371 Font::RobotoSerifMediumItalic,
25372 #[cfg(feature = "static")]
25373 Font::RobotoSerifSemiBoldItalic,
25374 #[cfg(feature = "static")]
25375 Font::RobotoSerifBoldItalic,
25376 #[cfg(feature = "static")]
25377 Font::RobotoSerifExtraBoldItalic,
25378 #[cfg(feature = "static")]
25379 Font::RobotoSerifBlackItalic,
25380 #[cfg(feature = "static")]
25381 Font::RobotoSerifSemiExpandedThinItalic,
25382 #[cfg(feature = "static")]
25383 Font::RobotoSerifSemiExpandedExtraLightItalic,
25384 #[cfg(feature = "static")]
25385 Font::RobotoSerifSemiExpandedLightItalic,
25386 #[cfg(feature = "static")]
25387 Font::RobotoSerifSemiExpandedItalic,
25388 #[cfg(feature = "static")]
25389 Font::RobotoSerifSemiExpandedMediumItalic,
25390 #[cfg(feature = "static")]
25391 Font::RobotoSerifSemiExpandedSemiBoldItalic,
25392 #[cfg(feature = "static")]
25393 Font::RobotoSerifSemiExpandedBoldItalic,
25394 #[cfg(feature = "static")]
25395 Font::RobotoSerifSemiExpandedExtraBoldItalic,
25396 #[cfg(feature = "static")]
25397 Font::RobotoSerifSemiExpandedBlackItalic,
25398 #[cfg(feature = "static")]
25399 Font::RobotoSerifExpandedThinItalic,
25400 #[cfg(feature = "static")]
25401 Font::RobotoSerifExpandedExtraLightItalic,
25402 #[cfg(feature = "static")]
25403 Font::RobotoSerifExpandedLightItalic,
25404 #[cfg(feature = "static")]
25405 Font::RobotoSerifExpandedItalic,
25406 #[cfg(feature = "static")]
25407 Font::RobotoSerifExpandedMediumItalic,
25408 #[cfg(feature = "static")]
25409 Font::RobotoSerifExpandedSemiBoldItalic,
25410 #[cfg(feature = "static")]
25411 Font::RobotoSerifExpandedBoldItalic,
25412 #[cfg(feature = "static")]
25413 Font::RobotoSerifExpandedExtraBoldItalic,
25414 #[cfg(feature = "static")]
25415 Font::RobotoSerifExpandedBlackItalic,
25416 #[cfg(feature = "static")]
25417 Font::RobotoSerifExtraExpandedThinItalic,
25418 #[cfg(feature = "static")]
25419 Font::RobotoSerifExtraExpandedExtraLightItalic,
25420 #[cfg(feature = "static")]
25421 Font::RobotoSerifExtraExpandedLightItalic,
25422 #[cfg(feature = "static")]
25423 Font::RobotoSerifExtraExpandedItalic,
25424 #[cfg(feature = "static")]
25425 Font::RobotoSerifExtraExpandedMediumItalic,
25426 #[cfg(feature = "static")]
25427 Font::RobotoSerifExtraExpandedSemiBoldItalic,
25428 #[cfg(feature = "static")]
25429 Font::RobotoSerifExtraExpandedBoldItalic,
25430 #[cfg(feature = "static")]
25431 Font::RobotoSerifExtraExpandedExtraBoldItalic,
25432 #[cfg(feature = "static")]
25433 Font::RobotoSerifExtraExpandedBlackItalic,
25434 #[cfg(feature = "static")]
25435 Font::RobotoSerif28ptUltraCondensedThinItalic,
25436 #[cfg(feature = "static")]
25437 Font::RobotoSerif28ptUltraCondensedExtraLightItalic,
25438 #[cfg(feature = "static")]
25439 Font::RobotoSerif28ptUltraCondensedLightItalic,
25440 #[cfg(feature = "static")]
25441 Font::RobotoSerif28ptUltraCondensedItalic,
25442 #[cfg(feature = "static")]
25443 Font::RobotoSerif28ptUltraCondensedMediumItalic,
25444 #[cfg(feature = "static")]
25445 Font::RobotoSerif28ptUltraCondensedSemiBoldItalic,
25446 #[cfg(feature = "static")]
25447 Font::RobotoSerif28ptUltraCondensedBoldItalic,
25448 #[cfg(feature = "static")]
25449 Font::RobotoSerif28ptUltraCondensedExtraBoldItalic,
25450 #[cfg(feature = "static")]
25451 Font::RobotoSerif28ptUltraCondensedBlackItalic,
25452 #[cfg(feature = "static")]
25453 Font::RobotoSerif28ptExtraCondensedThinItalic,
25454 #[cfg(feature = "static")]
25455 Font::RobotoSerif28ptExtraCondensedExtraLightItalic,
25456 #[cfg(feature = "static")]
25457 Font::RobotoSerif28ptExtraCondensedLightItalic,
25458 #[cfg(feature = "static")]
25459 Font::RobotoSerif28ptExtraCondensedItalic,
25460 #[cfg(feature = "static")]
25461 Font::RobotoSerif28ptExtraCondensedMediumItalic,
25462 #[cfg(feature = "static")]
25463 Font::RobotoSerif28ptExtraCondensedSemiBoldItalic,
25464 #[cfg(feature = "static")]
25465 Font::RobotoSerif28ptExtraCondensedBoldItalic,
25466 #[cfg(feature = "static")]
25467 Font::RobotoSerif28ptExtraCondensedExtraBoldItalic,
25468 #[cfg(feature = "static")]
25469 Font::RobotoSerif28ptExtraCondensedBlackItalic,
25470 #[cfg(feature = "static")]
25471 Font::RobotoSerif28ptCondensedThinItalic,
25472 #[cfg(feature = "static")]
25473 Font::RobotoSerif28ptCondensedExtraLightItalic,
25474 #[cfg(feature = "static")]
25475 Font::RobotoSerif28ptCondensedLightItalic,
25476 #[cfg(feature = "static")]
25477 Font::RobotoSerif28ptCondensedItalic,
25478 #[cfg(feature = "static")]
25479 Font::RobotoSerif28ptCondensedMediumItalic,
25480 #[cfg(feature = "static")]
25481 Font::RobotoSerif28ptCondensedSemiBoldItalic,
25482 #[cfg(feature = "static")]
25483 Font::RobotoSerif28ptCondensedBoldItalic,
25484 #[cfg(feature = "static")]
25485 Font::RobotoSerif28ptCondensedExtraBoldItalic,
25486 #[cfg(feature = "static")]
25487 Font::RobotoSerif28ptCondensedBlackItalic,
25488 #[cfg(feature = "static")]
25489 Font::RobotoSerif28ptSemiCondensedThinItalic,
25490 #[cfg(feature = "static")]
25491 Font::RobotoSerif28ptSemiCondensedExtraLightItalic,
25492 #[cfg(feature = "static")]
25493 Font::RobotoSerif28ptSemiCondensedLightItalic,
25494 #[cfg(feature = "static")]
25495 Font::RobotoSerif28ptSemiCondensedItalic,
25496 #[cfg(feature = "static")]
25497 Font::RobotoSerif28ptSemiCondensedMediumItalic,
25498 #[cfg(feature = "static")]
25499 Font::RobotoSerif28ptSemiCondensedSemiBoldItalic,
25500 #[cfg(feature = "static")]
25501 Font::RobotoSerif28ptSemiCondensedBoldItalic,
25502 #[cfg(feature = "static")]
25503 Font::RobotoSerif28ptSemiCondensedExtraBoldItalic,
25504 #[cfg(feature = "static")]
25505 Font::RobotoSerif28ptSemiCondensedBlackItalic,
25506 #[cfg(feature = "static")]
25507 Font::RobotoSerif28ptThinItalic,
25508 #[cfg(feature = "static")]
25509 Font::RobotoSerif28ptExtraLightItalic,
25510 #[cfg(feature = "static")]
25511 Font::RobotoSerif28ptLightItalic,
25512 #[cfg(feature = "static")]
25513 Font::RobotoSerif28ptItalic,
25514 #[cfg(feature = "static")]
25515 Font::RobotoSerif28ptMediumItalic,
25516 #[cfg(feature = "static")]
25517 Font::RobotoSerif28ptSemiBoldItalic,
25518 #[cfg(feature = "static")]
25519 Font::RobotoSerif28ptBoldItalic,
25520 #[cfg(feature = "static")]
25521 Font::RobotoSerif28ptExtraBoldItalic,
25522 #[cfg(feature = "static")]
25523 Font::RobotoSerif28ptBlackItalic,
25524 #[cfg(feature = "static")]
25525 Font::RobotoSerif28ptSemiExpandedThinItalic,
25526 #[cfg(feature = "static")]
25527 Font::RobotoSerif28ptSemiExpandedExtraLightItalic,
25528 #[cfg(feature = "static")]
25529 Font::RobotoSerif28ptSemiExpandedLightItalic,
25530 #[cfg(feature = "static")]
25531 Font::RobotoSerif28ptSemiExpandedItalic,
25532 #[cfg(feature = "static")]
25533 Font::RobotoSerif28ptSemiExpandedMediumItalic,
25534 #[cfg(feature = "static")]
25535 Font::RobotoSerif28ptSemiExpandedSemiBoldItalic,
25536 #[cfg(feature = "static")]
25537 Font::RobotoSerif28ptSemiExpandedBoldItalic,
25538 #[cfg(feature = "static")]
25539 Font::RobotoSerif28ptSemiExpandedExtraBoldItalic,
25540 #[cfg(feature = "static")]
25541 Font::RobotoSerif28ptSemiExpandedBlackItalic,
25542 #[cfg(feature = "static")]
25543 Font::RobotoSerif28ptExpandedThinItalic,
25544 #[cfg(feature = "static")]
25545 Font::RobotoSerif28ptExpandedExtraLightItalic,
25546 #[cfg(feature = "static")]
25547 Font::RobotoSerif28ptExpandedLightItalic,
25548 #[cfg(feature = "static")]
25549 Font::RobotoSerif28ptExpandedItalic,
25550 #[cfg(feature = "static")]
25551 Font::RobotoSerif28ptExpandedMediumItalic,
25552 #[cfg(feature = "static")]
25553 Font::RobotoSerif28ptExpandedSemiBoldItalic,
25554 #[cfg(feature = "static")]
25555 Font::RobotoSerif28ptExpandedBoldItalic,
25556 #[cfg(feature = "static")]
25557 Font::RobotoSerif28ptExpandedExtraBoldItalic,
25558 #[cfg(feature = "static")]
25559 Font::RobotoSerif28ptExpandedBlackItalic,
25560 #[cfg(feature = "static")]
25561 Font::RobotoSerif28ptExtraExpandedThinItalic,
25562 #[cfg(feature = "static")]
25563 Font::RobotoSerif28ptExtraExpandedExtraLightItalic,
25564 #[cfg(feature = "static")]
25565 Font::RobotoSerif28ptExtraExpandedLightItalic,
25566 #[cfg(feature = "static")]
25567 Font::RobotoSerif28ptExtraExpandedItalic,
25568 #[cfg(feature = "static")]
25569 Font::RobotoSerif28ptExtraExpandedMediumItalic,
25570 #[cfg(feature = "static")]
25571 Font::RobotoSerif28ptExtraExpandedSemiBoldItalic,
25572 #[cfg(feature = "static")]
25573 Font::RobotoSerif28ptExtraExpandedBoldItalic,
25574 #[cfg(feature = "static")]
25575 Font::RobotoSerif28ptExtraExpandedExtraBoldItalic,
25576 #[cfg(feature = "static")]
25577 Font::RobotoSerif28ptExtraExpandedBlackItalic,
25578 #[cfg(feature = "static")]
25579 Font::RobotoSerif36ptUltraCondensedThinItalic,
25580 #[cfg(feature = "static")]
25581 Font::RobotoSerif36ptUltraCondensedExtraLightItalic,
25582 #[cfg(feature = "static")]
25583 Font::RobotoSerif36ptUltraCondensedLightItalic,
25584 #[cfg(feature = "static")]
25585 Font::RobotoSerif36ptUltraCondensedItalic,
25586 #[cfg(feature = "static")]
25587 Font::RobotoSerif36ptUltraCondensedMediumItalic,
25588 #[cfg(feature = "static")]
25589 Font::RobotoSerif36ptUltraCondensedSemiBoldItalic,
25590 #[cfg(feature = "static")]
25591 Font::RobotoSerif36ptUltraCondensedBoldItalic,
25592 #[cfg(feature = "static")]
25593 Font::RobotoSerif36ptUltraCondensedExtraBoldItalic,
25594 #[cfg(feature = "static")]
25595 Font::RobotoSerif36ptUltraCondensedBlackItalic,
25596 #[cfg(feature = "static")]
25597 Font::RobotoSerif36ptExtraCondensedThinItalic,
25598 #[cfg(feature = "static")]
25599 Font::RobotoSerif36ptExtraCondensedExtraLightItalic,
25600 #[cfg(feature = "static")]
25601 Font::RobotoSerif36ptExtraCondensedLightItalic,
25602 #[cfg(feature = "static")]
25603 Font::RobotoSerif36ptExtraCondensedItalic,
25604 #[cfg(feature = "static")]
25605 Font::RobotoSerif36ptExtraCondensedMediumItalic,
25606 #[cfg(feature = "static")]
25607 Font::RobotoSerif36ptExtraCondensedSemiBoldItalic,
25608 #[cfg(feature = "static")]
25609 Font::RobotoSerif36ptExtraCondensedBoldItalic,
25610 #[cfg(feature = "static")]
25611 Font::RobotoSerif36ptExtraCondensedExtraBoldItalic,
25612 #[cfg(feature = "static")]
25613 Font::RobotoSerif36ptExtraCondensedBlackItalic,
25614 #[cfg(feature = "static")]
25615 Font::RobotoSerif36ptCondensedThinItalic,
25616 #[cfg(feature = "static")]
25617 Font::RobotoSerif36ptCondensedExtraLightItalic,
25618 #[cfg(feature = "static")]
25619 Font::RobotoSerif36ptCondensedLightItalic,
25620 #[cfg(feature = "static")]
25621 Font::RobotoSerif36ptCondensedItalic,
25622 #[cfg(feature = "static")]
25623 Font::RobotoSerif36ptCondensedMediumItalic,
25624 #[cfg(feature = "static")]
25625 Font::RobotoSerif36ptCondensedSemiBoldItalic,
25626 #[cfg(feature = "static")]
25627 Font::RobotoSerif36ptCondensedBoldItalic,
25628 #[cfg(feature = "static")]
25629 Font::RobotoSerif36ptCondensedExtraBoldItalic,
25630 #[cfg(feature = "static")]
25631 Font::RobotoSerif36ptCondensedBlackItalic,
25632 #[cfg(feature = "static")]
25633 Font::RobotoSerif36ptSemiCondensedThinItalic,
25634 #[cfg(feature = "static")]
25635 Font::RobotoSerif36ptSemiCondensedExtraLightItalic,
25636 #[cfg(feature = "static")]
25637 Font::RobotoSerif36ptSemiCondensedLightItalic,
25638 #[cfg(feature = "static")]
25639 Font::RobotoSerif36ptSemiCondensedItalic,
25640 #[cfg(feature = "static")]
25641 Font::RobotoSerif36ptSemiCondensedMediumItalic,
25642 #[cfg(feature = "static")]
25643 Font::RobotoSerif36ptSemiCondensedSemiBoldItalic,
25644 #[cfg(feature = "static")]
25645 Font::RobotoSerif36ptSemiCondensedBoldItalic,
25646 #[cfg(feature = "static")]
25647 Font::RobotoSerif36ptSemiCondensedExtraBoldItalic,
25648 #[cfg(feature = "static")]
25649 Font::RobotoSerif36ptSemiCondensedBlackItalic,
25650 #[cfg(feature = "static")]
25651 Font::RobotoSerif36ptThinItalic,
25652 #[cfg(feature = "static")]
25653 Font::RobotoSerif36ptExtraLightItalic,
25654 #[cfg(feature = "static")]
25655 Font::RobotoSerif36ptLightItalic,
25656 #[cfg(feature = "static")]
25657 Font::RobotoSerif36ptItalic,
25658 #[cfg(feature = "static")]
25659 Font::RobotoSerif36ptMediumItalic,
25660 #[cfg(feature = "static")]
25661 Font::RobotoSerif36ptSemiBoldItalic,
25662 #[cfg(feature = "static")]
25663 Font::RobotoSerif36ptBoldItalic,
25664 #[cfg(feature = "static")]
25665 Font::RobotoSerif36ptExtraBoldItalic,
25666 #[cfg(feature = "static")]
25667 Font::RobotoSerif36ptBlackItalic,
25668 #[cfg(feature = "static")]
25669 Font::RobotoSerif36ptSemiExpandedThinItalic,
25670 #[cfg(feature = "static")]
25671 Font::RobotoSerif36ptSemiExpandedExtraLightItalic,
25672 #[cfg(feature = "static")]
25673 Font::RobotoSerif36ptSemiExpandedLightItalic,
25674 #[cfg(feature = "static")]
25675 Font::RobotoSerif36ptSemiExpandedItalic,
25676 #[cfg(feature = "static")]
25677 Font::RobotoSerif36ptSemiExpandedMediumItalic,
25678 #[cfg(feature = "static")]
25679 Font::RobotoSerif36ptSemiExpandedSemiBoldItalic,
25680 #[cfg(feature = "static")]
25681 Font::RobotoSerif36ptSemiExpandedBoldItalic,
25682 #[cfg(feature = "static")]
25683 Font::RobotoSerif36ptSemiExpandedExtraBoldItalic,
25684 #[cfg(feature = "static")]
25685 Font::RobotoSerif36ptSemiExpandedBlackItalic,
25686 #[cfg(feature = "static")]
25687 Font::RobotoSerif36ptExpandedThinItalic,
25688 #[cfg(feature = "static")]
25689 Font::RobotoSerif36ptExpandedExtraLightItalic,
25690 #[cfg(feature = "static")]
25691 Font::RobotoSerif36ptExpandedLightItalic,
25692 #[cfg(feature = "static")]
25693 Font::RobotoSerif36ptExpandedItalic,
25694 #[cfg(feature = "static")]
25695 Font::RobotoSerif36ptExpandedMediumItalic,
25696 #[cfg(feature = "static")]
25697 Font::RobotoSerif36ptExpandedSemiBoldItalic,
25698 #[cfg(feature = "static")]
25699 Font::RobotoSerif36ptExpandedBoldItalic,
25700 #[cfg(feature = "static")]
25701 Font::RobotoSerif36ptExpandedExtraBoldItalic,
25702 #[cfg(feature = "static")]
25703 Font::RobotoSerif36ptExpandedBlackItalic,
25704 #[cfg(feature = "static")]
25705 Font::RobotoSerif36ptExtraExpandedThinItalic,
25706 #[cfg(feature = "static")]
25707 Font::RobotoSerif36ptExtraExpandedExtraLightItalic,
25708 #[cfg(feature = "static")]
25709 Font::RobotoSerif36ptExtraExpandedLightItalic,
25710 #[cfg(feature = "static")]
25711 Font::RobotoSerif36ptExtraExpandedItalic,
25712 #[cfg(feature = "static")]
25713 Font::RobotoSerif36ptExtraExpandedMediumItalic,
25714 #[cfg(feature = "static")]
25715 Font::RobotoSerif36ptExtraExpandedSemiBoldItalic,
25716 #[cfg(feature = "static")]
25717 Font::RobotoSerif36ptExtraExpandedBoldItalic,
25718 #[cfg(feature = "static")]
25719 Font::RobotoSerif36ptExtraExpandedExtraBoldItalic,
25720 #[cfg(feature = "static")]
25721 Font::RobotoSerif36ptExtraExpandedBlackItalic,
25722 #[cfg(feature = "static")]
25723 Font::RobotoSerif72ptUltraCondensedThinItalic,
25724 #[cfg(feature = "static")]
25725 Font::RobotoSerif72ptUltraCondensedExtraLightItalic,
25726 #[cfg(feature = "static")]
25727 Font::RobotoSerif72ptUltraCondensedLightItalic,
25728 #[cfg(feature = "static")]
25729 Font::RobotoSerif72ptUltraCondensedItalic,
25730 #[cfg(feature = "static")]
25731 Font::RobotoSerif72ptUltraCondensedMediumItalic,
25732 #[cfg(feature = "static")]
25733 Font::RobotoSerif72ptUltraCondensedSemiBoldItalic,
25734 #[cfg(feature = "static")]
25735 Font::RobotoSerif72ptUltraCondensedBoldItalic,
25736 #[cfg(feature = "static")]
25737 Font::RobotoSerif72ptUltraCondensedExtraBoldItalic,
25738 #[cfg(feature = "static")]
25739 Font::RobotoSerif72ptUltraCondensedBlackItalic,
25740 #[cfg(feature = "static")]
25741 Font::RobotoSerif72ptExtraCondensedThinItalic,
25742 #[cfg(feature = "static")]
25743 Font::RobotoSerif72ptExtraCondensedExtraLightItalic,
25744 #[cfg(feature = "static")]
25745 Font::RobotoSerif72ptExtraCondensedLightItalic,
25746 #[cfg(feature = "static")]
25747 Font::RobotoSerif72ptExtraCondensedItalic,
25748 #[cfg(feature = "static")]
25749 Font::RobotoSerif72ptExtraCondensedMediumItalic,
25750 #[cfg(feature = "static")]
25751 Font::RobotoSerif72ptExtraCondensedSemiBoldItalic,
25752 #[cfg(feature = "static")]
25753 Font::RobotoSerif72ptExtraCondensedBoldItalic,
25754 #[cfg(feature = "static")]
25755 Font::RobotoSerif72ptExtraCondensedExtraBoldItalic,
25756 #[cfg(feature = "static")]
25757 Font::RobotoSerif72ptExtraCondensedBlackItalic,
25758 #[cfg(feature = "static")]
25759 Font::RobotoSerif72ptCondensedThinItalic,
25760 #[cfg(feature = "static")]
25761 Font::RobotoSerif72ptCondensedExtraLightItalic,
25762 #[cfg(feature = "static")]
25763 Font::RobotoSerif72ptCondensedLightItalic,
25764 #[cfg(feature = "static")]
25765 Font::RobotoSerif72ptCondensedItalic,
25766 #[cfg(feature = "static")]
25767 Font::RobotoSerif72ptCondensedMediumItalic,
25768 #[cfg(feature = "static")]
25769 Font::RobotoSerif72ptCondensedSemiBoldItalic,
25770 #[cfg(feature = "static")]
25771 Font::RobotoSerif72ptCondensedBoldItalic,
25772 #[cfg(feature = "static")]
25773 Font::RobotoSerif72ptCondensedExtraBoldItalic,
25774 #[cfg(feature = "static")]
25775 Font::RobotoSerif72ptCondensedBlackItalic,
25776 #[cfg(feature = "static")]
25777 Font::RobotoSerif72ptSemiCondensedThinItalic,
25778 #[cfg(feature = "static")]
25779 Font::RobotoSerif72ptSemiCondensedExtraLightItalic,
25780 #[cfg(feature = "static")]
25781 Font::RobotoSerif72ptSemiCondensedLightItalic,
25782 #[cfg(feature = "static")]
25783 Font::RobotoSerif72ptSemiCondensedItalic,
25784 #[cfg(feature = "static")]
25785 Font::RobotoSerif72ptSemiCondensedMediumItalic,
25786 #[cfg(feature = "static")]
25787 Font::RobotoSerif72ptSemiCondensedSemiBoldItalic,
25788 #[cfg(feature = "static")]
25789 Font::RobotoSerif72ptSemiCondensedBoldItalic,
25790 #[cfg(feature = "static")]
25791 Font::RobotoSerif72ptSemiCondensedExtraBoldItalic,
25792 #[cfg(feature = "static")]
25793 Font::RobotoSerif72ptSemiCondensedBlackItalic,
25794 #[cfg(feature = "static")]
25795 Font::RobotoSerif72ptThinItalic,
25796 #[cfg(feature = "static")]
25797 Font::RobotoSerif72ptExtraLightItalic,
25798 #[cfg(feature = "static")]
25799 Font::RobotoSerif72ptLightItalic,
25800 #[cfg(feature = "static")]
25801 Font::RobotoSerif72ptItalic,
25802 #[cfg(feature = "static")]
25803 Font::RobotoSerif72ptMediumItalic,
25804 #[cfg(feature = "static")]
25805 Font::RobotoSerif72ptSemiBoldItalic,
25806 #[cfg(feature = "static")]
25807 Font::RobotoSerif72ptBoldItalic,
25808 #[cfg(feature = "static")]
25809 Font::RobotoSerif72ptExtraBoldItalic,
25810 #[cfg(feature = "static")]
25811 Font::RobotoSerif72ptBlackItalic,
25812 #[cfg(feature = "static")]
25813 Font::RobotoSerif72ptSemiExpandedThinItalic,
25814 #[cfg(feature = "static")]
25815 Font::RobotoSerif72ptSemiExpandedExtraLightItalic,
25816 #[cfg(feature = "static")]
25817 Font::RobotoSerif72ptSemiExpandedLightItalic,
25818 #[cfg(feature = "static")]
25819 Font::RobotoSerif72ptSemiExpandedItalic,
25820 #[cfg(feature = "static")]
25821 Font::RobotoSerif72ptSemiExpandedMediumItalic,
25822 #[cfg(feature = "static")]
25823 Font::RobotoSerif72ptSemiExpandedSemiBoldItalic,
25824 #[cfg(feature = "static")]
25825 Font::RobotoSerif72ptSemiExpandedBoldItalic,
25826 #[cfg(feature = "static")]
25827 Font::RobotoSerif72ptSemiExpandedExtraBoldItalic,
25828 #[cfg(feature = "static")]
25829 Font::RobotoSerif72ptSemiExpandedBlackItalic,
25830 #[cfg(feature = "static")]
25831 Font::RobotoSerif72ptExpandedThinItalic,
25832 #[cfg(feature = "static")]
25833 Font::RobotoSerif72ptExpandedExtraLightItalic,
25834 #[cfg(feature = "static")]
25835 Font::RobotoSerif72ptExpandedLightItalic,
25836 #[cfg(feature = "static")]
25837 Font::RobotoSerif72ptExpandedItalic,
25838 #[cfg(feature = "static")]
25839 Font::RobotoSerif72ptExpandedMediumItalic,
25840 #[cfg(feature = "static")]
25841 Font::RobotoSerif72ptExpandedSemiBoldItalic,
25842 #[cfg(feature = "static")]
25843 Font::RobotoSerif72ptExpandedBoldItalic,
25844 #[cfg(feature = "static")]
25845 Font::RobotoSerif72ptExpandedExtraBoldItalic,
25846 #[cfg(feature = "static")]
25847 Font::RobotoSerif72ptExpandedBlackItalic,
25848 #[cfg(feature = "static")]
25849 Font::RobotoSerif72ptExtraExpandedThinItalic,
25850 #[cfg(feature = "static")]
25851 Font::RobotoSerif72ptExtraExpandedExtraLightItalic,
25852 #[cfg(feature = "static")]
25853 Font::RobotoSerif72ptExtraExpandedLightItalic,
25854 #[cfg(feature = "static")]
25855 Font::RobotoSerif72ptExtraExpandedItalic,
25856 #[cfg(feature = "static")]
25857 Font::RobotoSerif72ptExtraExpandedMediumItalic,
25858 #[cfg(feature = "static")]
25859 Font::RobotoSerif72ptExtraExpandedSemiBoldItalic,
25860 #[cfg(feature = "static")]
25861 Font::RobotoSerif72ptExtraExpandedBoldItalic,
25862 #[cfg(feature = "static")]
25863 Font::RobotoSerif72ptExtraExpandedExtraBoldItalic,
25864 #[cfg(feature = "static")]
25865 Font::RobotoSerif72ptExtraExpandedBlackItalic,
25866 #[cfg(feature = "static")]
25867 Font::RobotoSerif120ptUltraCondensedThinItalic,
25868 #[cfg(feature = "static")]
25869 Font::RobotoSerif120ptUltraCondensedExtraLightItalic,
25870 #[cfg(feature = "static")]
25871 Font::RobotoSerif120ptUltraCondensedLightItalic,
25872 #[cfg(feature = "static")]
25873 Font::RobotoSerif120ptUltraCondensedItalic,
25874 #[cfg(feature = "static")]
25875 Font::RobotoSerif120ptUltraCondensedMediumItalic,
25876 #[cfg(feature = "static")]
25877 Font::RobotoSerif120ptUltraCondensedSemiBoldItalic,
25878 #[cfg(feature = "static")]
25879 Font::RobotoSerif120ptUltraCondensedBoldItalic,
25880 #[cfg(feature = "static")]
25881 Font::RobotoSerif120ptUltraCondensedExtraBoldItalic,
25882 #[cfg(feature = "static")]
25883 Font::RobotoSerif120ptUltraCondensedBlackItalic,
25884 #[cfg(feature = "static")]
25885 Font::RobotoSerif120ptExtraCondensedThinItalic,
25886 #[cfg(feature = "static")]
25887 Font::RobotoSerif120ptExtraCondensedExtraLightItalic,
25888 #[cfg(feature = "static")]
25889 Font::RobotoSerif120ptExtraCondensedLightItalic,
25890 #[cfg(feature = "static")]
25891 Font::RobotoSerif120ptExtraCondensedItalic,
25892 #[cfg(feature = "static")]
25893 Font::RobotoSerif120ptExtraCondensedMediumItalic,
25894 #[cfg(feature = "static")]
25895 Font::RobotoSerif120ptExtraCondensedSemiBoldItalic,
25896 #[cfg(feature = "static")]
25897 Font::RobotoSerif120ptExtraCondensedBoldItalic,
25898 #[cfg(feature = "static")]
25899 Font::RobotoSerif120ptExtraCondensedExtraBoldItalic,
25900 #[cfg(feature = "static")]
25901 Font::RobotoSerif120ptExtraCondensedBlackItalic,
25902 #[cfg(feature = "static")]
25903 Font::RobotoSerif120ptCondensedThinItalic,
25904 #[cfg(feature = "static")]
25905 Font::RobotoSerif120ptCondensedExtraLightItalic,
25906 #[cfg(feature = "static")]
25907 Font::RobotoSerif120ptCondensedLightItalic,
25908 #[cfg(feature = "static")]
25909 Font::RobotoSerif120ptCondensedItalic,
25910 #[cfg(feature = "static")]
25911 Font::RobotoSerif120ptCondensedMediumItalic,
25912 #[cfg(feature = "static")]
25913 Font::RobotoSerif120ptCondensedSemiBoldItalic,
25914 #[cfg(feature = "static")]
25915 Font::RobotoSerif120ptCondensedBoldItalic,
25916 #[cfg(feature = "static")]
25917 Font::RobotoSerif120ptCondensedExtraBoldItalic,
25918 #[cfg(feature = "static")]
25919 Font::RobotoSerif120ptCondensedBlackItalic,
25920 #[cfg(feature = "static")]
25921 Font::RobotoSerif120ptSemiCondensedThinItalic,
25922 #[cfg(feature = "static")]
25923 Font::RobotoSerif120ptSemiCondensedExtraLightItalic,
25924 #[cfg(feature = "static")]
25925 Font::RobotoSerif120ptSemiCondensedLightItalic,
25926 #[cfg(feature = "static")]
25927 Font::RobotoSerif120ptSemiCondensedItalic,
25928 #[cfg(feature = "static")]
25929 Font::RobotoSerif120ptSemiCondensedMediumItalic,
25930 #[cfg(feature = "static")]
25931 Font::RobotoSerif120ptSemiCondensedSemiBoldItalic,
25932 #[cfg(feature = "static")]
25933 Font::RobotoSerif120ptSemiCondensedBoldItalic,
25934 #[cfg(feature = "static")]
25935 Font::RobotoSerif120ptSemiCondensedExtraBoldItalic,
25936 #[cfg(feature = "static")]
25937 Font::RobotoSerif120ptSemiCondensedBlackItalic,
25938 #[cfg(feature = "static")]
25939 Font::RobotoSerif120ptThinItalic,
25940 #[cfg(feature = "static")]
25941 Font::RobotoSerif120ptExtraLightItalic,
25942 #[cfg(feature = "static")]
25943 Font::RobotoSerif120ptLightItalic,
25944 #[cfg(feature = "static")]
25945 Font::RobotoSerif120ptItalic,
25946 #[cfg(feature = "static")]
25947 Font::RobotoSerif120ptMediumItalic,
25948 #[cfg(feature = "static")]
25949 Font::RobotoSerif120ptSemiBoldItalic,
25950 #[cfg(feature = "static")]
25951 Font::RobotoSerif120ptBoldItalic,
25952 #[cfg(feature = "static")]
25953 Font::RobotoSerif120ptExtraBoldItalic,
25954 #[cfg(feature = "static")]
25955 Font::RobotoSerif120ptBlackItalic,
25956 #[cfg(feature = "static")]
25957 Font::RobotoSerif120ptSemiExpandedThinItalic,
25958 #[cfg(feature = "static")]
25959 Font::RobotoSerif120ptSemiExpandedExtraLightItalic,
25960 #[cfg(feature = "static")]
25961 Font::RobotoSerif120ptSemiExpandedLightItalic,
25962 #[cfg(feature = "static")]
25963 Font::RobotoSerif120ptSemiExpandedItalic,
25964 #[cfg(feature = "static")]
25965 Font::RobotoSerif120ptSemiExpandedMediumItalic,
25966 #[cfg(feature = "static")]
25967 Font::RobotoSerif120ptSemiExpandedSemiBoldItalic,
25968 #[cfg(feature = "static")]
25969 Font::RobotoSerif120ptSemiExpandedBoldItalic,
25970 #[cfg(feature = "static")]
25971 Font::RobotoSerif120ptSemiExpandedExtraBoldItalic,
25972 #[cfg(feature = "static")]
25973 Font::RobotoSerif120ptSemiExpandedBlackItalic,
25974 #[cfg(feature = "static")]
25975 Font::RobotoSerif120ptExpandedThinItalic,
25976 #[cfg(feature = "static")]
25977 Font::RobotoSerif120ptExpandedExtraLightItalic,
25978 #[cfg(feature = "static")]
25979 Font::RobotoSerif120ptExpandedLightItalic,
25980 #[cfg(feature = "static")]
25981 Font::RobotoSerif120ptExpandedItalic,
25982 #[cfg(feature = "static")]
25983 Font::RobotoSerif120ptExpandedMediumItalic,
25984 #[cfg(feature = "static")]
25985 Font::RobotoSerif120ptExpandedSemiBoldItalic,
25986 #[cfg(feature = "static")]
25987 Font::RobotoSerif120ptExpandedBoldItalic,
25988 #[cfg(feature = "static")]
25989 Font::RobotoSerif120ptExpandedExtraBoldItalic,
25990 #[cfg(feature = "static")]
25991 Font::RobotoSerif120ptExpandedBlackItalic,
25992 #[cfg(feature = "static")]
25993 Font::RobotoSerif120ptExtraExpandedThinItalic,
25994 #[cfg(feature = "static")]
25995 Font::RobotoSerif120ptExtraExpandedExtraLightItalic,
25996 #[cfg(feature = "static")]
25997 Font::RobotoSerif120ptExtraExpandedLightItalic,
25998 #[cfg(feature = "static")]
25999 Font::RobotoSerif120ptExtraExpandedItalic,
26000 #[cfg(feature = "static")]
26001 Font::RobotoSerif120ptExtraExpandedMediumItalic,
26002 #[cfg(feature = "static")]
26003 Font::RobotoSerif120ptExtraExpandedSemiBoldItalic,
26004 #[cfg(feature = "static")]
26005 Font::RobotoSerif120ptExtraExpandedBoldItalic,
26006 #[cfg(feature = "static")]
26007 Font::RobotoSerif120ptExtraExpandedExtraBoldItalic,
26008 #[cfg(feature = "static")]
26009 Font::RobotoSerif120ptExtraExpandedBlackItalic,
26010 #[cfg(feature = "variable")]
26011 Font::RobotoSerifVariable,
26012 #[cfg(feature = "variable")]
26013 Font::RobotoSerifItalicVariable,
26014 #[cfg(feature = "static")]
26015 Font::RobotoSlabThin,
26016 #[cfg(feature = "static")]
26017 Font::RobotoSlabExtraLight,
26018 #[cfg(feature = "static")]
26019 Font::RobotoSlabLight,
26020 #[cfg(feature = "static")]
26021 Font::RobotoSlabRegular,
26022 #[cfg(feature = "static")]
26023 Font::RobotoSlabMedium,
26024 #[cfg(feature = "static")]
26025 Font::RobotoSlabSemiBold,
26026 #[cfg(feature = "static")]
26027 Font::RobotoSlabBold,
26028 #[cfg(feature = "static")]
26029 Font::RobotoSlabExtraBold,
26030 #[cfg(feature = "static")]
26031 Font::RobotoSlabBlack,
26032 #[cfg(feature = "variable")]
26033 Font::RobotoSlabVariable,
26034 #[cfg(feature = "static")]
26035 Font::RokkittThin,
26036 #[cfg(feature = "static")]
26037 Font::RokkittExtraLight,
26038 #[cfg(feature = "static")]
26039 Font::RokkittLight,
26040 #[cfg(feature = "static")]
26041 Font::RokkittRegular,
26042 #[cfg(feature = "static")]
26043 Font::RokkittMedium,
26044 #[cfg(feature = "static")]
26045 Font::RokkittSemiBold,
26046 #[cfg(feature = "static")]
26047 Font::RokkittBold,
26048 #[cfg(feature = "static")]
26049 Font::RokkittExtraBold,
26050 #[cfg(feature = "static")]
26051 Font::RokkittBlack,
26052 #[cfg(feature = "static")]
26053 Font::RokkittThinItalic,
26054 #[cfg(feature = "static")]
26055 Font::RokkittExtraLightItalic,
26056 #[cfg(feature = "static")]
26057 Font::RokkittLightItalic,
26058 #[cfg(feature = "static")]
26059 Font::RokkittItalic,
26060 #[cfg(feature = "static")]
26061 Font::RokkittMediumItalic,
26062 #[cfg(feature = "static")]
26063 Font::RokkittSemiBoldItalic,
26064 #[cfg(feature = "static")]
26065 Font::RokkittBoldItalic,
26066 #[cfg(feature = "static")]
26067 Font::RokkittExtraBoldItalic,
26068 #[cfg(feature = "static")]
26069 Font::RokkittBlackItalic,
26070 #[cfg(feature = "variable")]
26071 Font::RokkittVariable,
26072 #[cfg(feature = "variable")]
26073 Font::RokkittItalicVariable,
26074 #[cfg(feature = "static")]
26075 Font::RosarivoRegular,
26076 #[cfg(feature = "static")]
26077 Font::RosarivoItalic,
26078 #[cfg(feature = "static")]
26079 Font::RozhaOneRegular,
26080 #[cfg(feature = "static")]
26081 Font::RufinaRegular,
26082 #[cfg(feature = "static")]
26083 Font::RufinaBold,
26084 #[cfg(feature = "static")]
26085 Font::RuwuduRegular,
26086 #[cfg(feature = "static")]
26087 Font::RuwuduMedium,
26088 #[cfg(feature = "static")]
26089 Font::RuwuduSemiBold,
26090 #[cfg(feature = "static")]
26091 Font::RuwuduBold,
26092 #[cfg(feature = "static")]
26093 Font::STIXTwoTextRegular,
26094 #[cfg(feature = "static")]
26095 Font::STIXTwoTextMedium,
26096 #[cfg(feature = "static")]
26097 Font::STIXTwoTextSemiBold,
26098 #[cfg(feature = "static")]
26099 Font::STIXTwoTextBold,
26100 #[cfg(feature = "static")]
26101 Font::STIXTwoTextItalic,
26102 #[cfg(feature = "static")]
26103 Font::STIXTwoTextMediumItalic,
26104 #[cfg(feature = "static")]
26105 Font::STIXTwoTextSemiBoldItalic,
26106 #[cfg(feature = "static")]
26107 Font::STIXTwoTextBoldItalic,
26108 #[cfg(feature = "variable")]
26109 Font::STIXTwoTextVariable,
26110 #[cfg(feature = "variable")]
26111 Font::STIXTwoTextItalicVariable,
26112 #[cfg(feature = "static")]
26113 Font::SahityaRegular,
26114 #[cfg(feature = "static")]
26115 Font::SahityaBold,
26116 #[cfg(feature = "static")]
26117 Font::SanchezRegular,
26118 #[cfg(feature = "static")]
26119 Font::SanchezItalic,
26120 #[cfg(feature = "static")]
26121 Font::SawarabiMinchoRegular,
26122 #[cfg(feature = "static")]
26123 Font::ScheherazadeNewRegular,
26124 #[cfg(feature = "static")]
26125 Font::ScheherazadeNewMedium,
26126 #[cfg(feature = "static")]
26127 Font::ScheherazadeNewSemiBold,
26128 #[cfg(feature = "static")]
26129 Font::ScheherazadeNewBold,
26130 #[cfg(feature = "static")]
26131 Font::ScopeOneRegular,
26132 #[cfg(feature = "static")]
26133 Font::SedanRegular,
26134 #[cfg(feature = "static")]
26135 Font::SedanItalic,
26136 #[cfg(feature = "static")]
26137 Font::SedanSCRegular,
26138 #[cfg(feature = "static")]
26139 Font::ShipporiMinchoRegular,
26140 #[cfg(feature = "static")]
26141 Font::ShipporiMinchoMedium,
26142 #[cfg(feature = "static")]
26143 Font::ShipporiMinchoSemiBold,
26144 #[cfg(feature = "static")]
26145 Font::ShipporiMinchoBold,
26146 #[cfg(feature = "static")]
26147 Font::ShipporiMinchoExtraBold,
26148 #[cfg(feature = "static")]
26149 Font::ShipporiMinchoB1Regular,
26150 #[cfg(feature = "static")]
26151 Font::ShipporiMinchoB1Medium,
26152 #[cfg(feature = "static")]
26153 Font::ShipporiMinchoB1SemiBold,
26154 #[cfg(feature = "static")]
26155 Font::ShipporiMinchoB1Bold,
26156 #[cfg(feature = "static")]
26157 Font::ShipporiMinchoB1ExtraBold,
26158 #[cfg(feature = "static")]
26159 Font::Slabo13pxRegular,
26160 #[cfg(feature = "static")]
26161 Font::Slabo27pxRegular,
26162 #[cfg(feature = "static")]
26163 Font::SolwayLight,
26164 #[cfg(feature = "static")]
26165 Font::SolwayRegular,
26166 #[cfg(feature = "static")]
26167 Font::SolwayMedium,
26168 #[cfg(feature = "static")]
26169 Font::SolwayBold,
26170 #[cfg(feature = "static")]
26171 Font::SolwayExtraBold,
26172 #[cfg(feature = "static")]
26173 Font::SongMyungRegular,
26174 #[cfg(feature = "static")]
26175 Font::SortsMillGoudyRegular,
26176 #[cfg(feature = "static")]
26177 Font::SortsMillGoudyItalic,
26178 #[cfg(feature = "static")]
26179 Font::SourceSerif4ExtraLight,
26180 #[cfg(feature = "static")]
26181 Font::SourceSerif4Light,
26182 #[cfg(feature = "static")]
26183 Font::SourceSerif4Regular,
26184 #[cfg(feature = "static")]
26185 Font::SourceSerif4Medium,
26186 #[cfg(feature = "static")]
26187 Font::SourceSerif4SemiBold,
26188 #[cfg(feature = "static")]
26189 Font::SourceSerif4Bold,
26190 #[cfg(feature = "static")]
26191 Font::SourceSerif4ExtraBold,
26192 #[cfg(feature = "static")]
26193 Font::SourceSerif4Black,
26194 #[cfg(feature = "static")]
26195 Font::SourceSerif418ptExtraLight,
26196 #[cfg(feature = "static")]
26197 Font::SourceSerif418ptLight,
26198 #[cfg(feature = "static")]
26199 Font::SourceSerif418ptRegular,
26200 #[cfg(feature = "static")]
26201 Font::SourceSerif418ptMedium,
26202 #[cfg(feature = "static")]
26203 Font::SourceSerif418ptSemiBold,
26204 #[cfg(feature = "static")]
26205 Font::SourceSerif418ptBold,
26206 #[cfg(feature = "static")]
26207 Font::SourceSerif418ptExtraBold,
26208 #[cfg(feature = "static")]
26209 Font::SourceSerif418ptBlack,
26210 #[cfg(feature = "static")]
26211 Font::SourceSerif436ptExtraLight,
26212 #[cfg(feature = "static")]
26213 Font::SourceSerif436ptLight,
26214 #[cfg(feature = "static")]
26215 Font::SourceSerif436ptRegular,
26216 #[cfg(feature = "static")]
26217 Font::SourceSerif436ptMedium,
26218 #[cfg(feature = "static")]
26219 Font::SourceSerif436ptSemiBold,
26220 #[cfg(feature = "static")]
26221 Font::SourceSerif436ptBold,
26222 #[cfg(feature = "static")]
26223 Font::SourceSerif436ptExtraBold,
26224 #[cfg(feature = "static")]
26225 Font::SourceSerif436ptBlack,
26226 #[cfg(feature = "static")]
26227 Font::SourceSerif448ptExtraLight,
26228 #[cfg(feature = "static")]
26229 Font::SourceSerif448ptLight,
26230 #[cfg(feature = "static")]
26231 Font::SourceSerif448ptRegular,
26232 #[cfg(feature = "static")]
26233 Font::SourceSerif448ptMedium,
26234 #[cfg(feature = "static")]
26235 Font::SourceSerif448ptSemiBold,
26236 #[cfg(feature = "static")]
26237 Font::SourceSerif448ptBold,
26238 #[cfg(feature = "static")]
26239 Font::SourceSerif448ptExtraBold,
26240 #[cfg(feature = "static")]
26241 Font::SourceSerif448ptBlack,
26242 #[cfg(feature = "static")]
26243 Font::SourceSerif4ExtraLightItalic,
26244 #[cfg(feature = "static")]
26245 Font::SourceSerif4LightItalic,
26246 #[cfg(feature = "static")]
26247 Font::SourceSerif4Italic,
26248 #[cfg(feature = "static")]
26249 Font::SourceSerif4MediumItalic,
26250 #[cfg(feature = "static")]
26251 Font::SourceSerif4SemiBoldItalic,
26252 #[cfg(feature = "static")]
26253 Font::SourceSerif4BoldItalic,
26254 #[cfg(feature = "static")]
26255 Font::SourceSerif4ExtraBoldItalic,
26256 #[cfg(feature = "static")]
26257 Font::SourceSerif4BlackItalic,
26258 #[cfg(feature = "static")]
26259 Font::SourceSerif418ptExtraLightItalic,
26260 #[cfg(feature = "static")]
26261 Font::SourceSerif418ptLightItalic,
26262 #[cfg(feature = "static")]
26263 Font::SourceSerif418ptItalic,
26264 #[cfg(feature = "static")]
26265 Font::SourceSerif418ptMediumItalic,
26266 #[cfg(feature = "static")]
26267 Font::SourceSerif418ptSemiBoldItalic,
26268 #[cfg(feature = "static")]
26269 Font::SourceSerif418ptBoldItalic,
26270 #[cfg(feature = "static")]
26271 Font::SourceSerif418ptExtraBoldItalic,
26272 #[cfg(feature = "static")]
26273 Font::SourceSerif418ptBlackItalic,
26274 #[cfg(feature = "static")]
26275 Font::SourceSerif436ptExtraLightItalic,
26276 #[cfg(feature = "static")]
26277 Font::SourceSerif436ptLightItalic,
26278 #[cfg(feature = "static")]
26279 Font::SourceSerif436ptItalic,
26280 #[cfg(feature = "static")]
26281 Font::SourceSerif436ptMediumItalic,
26282 #[cfg(feature = "static")]
26283 Font::SourceSerif436ptSemiBoldItalic,
26284 #[cfg(feature = "static")]
26285 Font::SourceSerif436ptBoldItalic,
26286 #[cfg(feature = "static")]
26287 Font::SourceSerif436ptExtraBoldItalic,
26288 #[cfg(feature = "static")]
26289 Font::SourceSerif436ptBlackItalic,
26290 #[cfg(feature = "static")]
26291 Font::SourceSerif448ptExtraLightItalic,
26292 #[cfg(feature = "static")]
26293 Font::SourceSerif448ptLightItalic,
26294 #[cfg(feature = "static")]
26295 Font::SourceSerif448ptItalic,
26296 #[cfg(feature = "static")]
26297 Font::SourceSerif448ptMediumItalic,
26298 #[cfg(feature = "static")]
26299 Font::SourceSerif448ptSemiBoldItalic,
26300 #[cfg(feature = "static")]
26301 Font::SourceSerif448ptBoldItalic,
26302 #[cfg(feature = "static")]
26303 Font::SourceSerif448ptExtraBoldItalic,
26304 #[cfg(feature = "static")]
26305 Font::SourceSerif448ptBlackItalic,
26306 #[cfg(feature = "variable")]
26307 Font::SourceSerif4Variable,
26308 #[cfg(feature = "variable")]
26309 Font::SourceSerif4ItalicVariable,
26310 #[cfg(feature = "static")]
26311 Font::SpectralExtraLight,
26312 #[cfg(feature = "static")]
26313 Font::SpectralExtraLightItalic,
26314 #[cfg(feature = "static")]
26315 Font::SpectralLight,
26316 #[cfg(feature = "static")]
26317 Font::SpectralLightItalic,
26318 #[cfg(feature = "static")]
26319 Font::SpectralRegular,
26320 #[cfg(feature = "static")]
26321 Font::SpectralItalic,
26322 #[cfg(feature = "static")]
26323 Font::SpectralMedium,
26324 #[cfg(feature = "static")]
26325 Font::SpectralMediumItalic,
26326 #[cfg(feature = "static")]
26327 Font::SpectralSemiBold,
26328 #[cfg(feature = "static")]
26329 Font::SpectralSemiBoldItalic,
26330 #[cfg(feature = "static")]
26331 Font::SpectralBold,
26332 #[cfg(feature = "static")]
26333 Font::SpectralBoldItalic,
26334 #[cfg(feature = "static")]
26335 Font::SpectralExtraBold,
26336 #[cfg(feature = "static")]
26337 Font::SpectralExtraBoldItalic,
26338 #[cfg(feature = "static")]
26339 Font::SpectralSCExtraLight,
26340 #[cfg(feature = "static")]
26341 Font::SpectralSCExtraLightItalic,
26342 #[cfg(feature = "static")]
26343 Font::SpectralSCLight,
26344 #[cfg(feature = "static")]
26345 Font::SpectralSCLightItalic,
26346 #[cfg(feature = "static")]
26347 Font::SpectralSCRegular,
26348 #[cfg(feature = "static")]
26349 Font::SpectralSCItalic,
26350 #[cfg(feature = "static")]
26351 Font::SpectralSCMedium,
26352 #[cfg(feature = "static")]
26353 Font::SpectralSCMediumItalic,
26354 #[cfg(feature = "static")]
26355 Font::SpectralSCSemiBold,
26356 #[cfg(feature = "static")]
26357 Font::SpectralSCSemiBoldItalic,
26358 #[cfg(feature = "static")]
26359 Font::SpectralSCBold,
26360 #[cfg(feature = "static")]
26361 Font::SpectralSCBoldItalic,
26362 #[cfg(feature = "static")]
26363 Font::SpectralSCExtraBold,
26364 #[cfg(feature = "static")]
26365 Font::SpectralSCExtraBoldItalic,
26366 #[cfg(feature = "static")]
26367 Font::SreeKrushnadevarayaRegular,
26368 #[cfg(feature = "static")]
26369 Font::StintUltraCondensedRegular,
26370 #[cfg(feature = "static")]
26371 Font::StintUltraExpandedRegular,
26372 #[cfg(feature = "static")]
26373 Font::StokeLight,
26374 #[cfg(feature = "static")]
26375 Font::StokeRegular,
26376 #[cfg(feature = "static")]
26377 Font::SuezOneRegular,
26378 #[cfg(feature = "static")]
26379 Font::SumanaRegular,
26380 #[cfg(feature = "static")]
26381 Font::SumanaBold,
26382 #[cfg(feature = "static")]
26383 Font::SuraRegular,
26384 #[cfg(feature = "static")]
26385 Font::SuraBold,
26386 #[cfg(feature = "static")]
26387 Font::SurannaRegular,
26388 #[cfg(feature = "static")]
26389 Font::SuravaramRegular,
26390 #[cfg(feature = "static")]
26391 Font::SuwannaphumThin,
26392 #[cfg(feature = "static")]
26393 Font::SuwannaphumLight,
26394 #[cfg(feature = "static")]
26395 Font::SuwannaphumRegular,
26396 #[cfg(feature = "static")]
26397 Font::SuwannaphumBold,
26398 #[cfg(feature = "static")]
26399 Font::SuwannaphumBlack,
26400 #[cfg(feature = "static")]
26401 Font::TaiHeritageProRegular,
26402 #[cfg(feature = "static")]
26403 Font::TaiHeritageProBold,
26404 #[cfg(feature = "static")]
26405 Font::TavirajThin,
26406 #[cfg(feature = "static")]
26407 Font::TavirajThinItalic,
26408 #[cfg(feature = "static")]
26409 Font::TavirajExtraLight,
26410 #[cfg(feature = "static")]
26411 Font::TavirajExtraLightItalic,
26412 #[cfg(feature = "static")]
26413 Font::TavirajLight,
26414 #[cfg(feature = "static")]
26415 Font::TavirajLightItalic,
26416 #[cfg(feature = "static")]
26417 Font::TavirajRegular,
26418 #[cfg(feature = "static")]
26419 Font::TavirajItalic,
26420 #[cfg(feature = "static")]
26421 Font::TavirajMedium,
26422 #[cfg(feature = "static")]
26423 Font::TavirajMediumItalic,
26424 #[cfg(feature = "static")]
26425 Font::TavirajSemiBold,
26426 #[cfg(feature = "static")]
26427 Font::TavirajSemiBoldItalic,
26428 #[cfg(feature = "static")]
26429 Font::TavirajBold,
26430 #[cfg(feature = "static")]
26431 Font::TavirajBoldItalic,
26432 #[cfg(feature = "static")]
26433 Font::TavirajExtraBold,
26434 #[cfg(feature = "static")]
26435 Font::TavirajExtraBoldItalic,
26436 #[cfg(feature = "static")]
26437 Font::TavirajBlack,
26438 #[cfg(feature = "static")]
26439 Font::TavirajBlackItalic,
26440 #[cfg(feature = "static")]
26441 Font::Texturina14ptThin,
26442 #[cfg(feature = "static")]
26443 Font::Texturina14ptExtraLight,
26444 #[cfg(feature = "static")]
26445 Font::Texturina14ptLight,
26446 #[cfg(feature = "static")]
26447 Font::Texturina14ptRegular,
26448 #[cfg(feature = "static")]
26449 Font::Texturina14ptMedium,
26450 #[cfg(feature = "static")]
26451 Font::Texturina14ptSemiBold,
26452 #[cfg(feature = "static")]
26453 Font::Texturina14ptBold,
26454 #[cfg(feature = "static")]
26455 Font::Texturina14ptExtraBold,
26456 #[cfg(feature = "static")]
26457 Font::Texturina14ptBlack,
26458 #[cfg(feature = "static")]
26459 Font::Texturina18ptThin,
26460 #[cfg(feature = "static")]
26461 Font::Texturina18ptExtraLight,
26462 #[cfg(feature = "static")]
26463 Font::Texturina18ptLight,
26464 #[cfg(feature = "static")]
26465 Font::Texturina18ptRegular,
26466 #[cfg(feature = "static")]
26467 Font::Texturina18ptMedium,
26468 #[cfg(feature = "static")]
26469 Font::Texturina18ptSemiBold,
26470 #[cfg(feature = "static")]
26471 Font::Texturina18ptBold,
26472 #[cfg(feature = "static")]
26473 Font::Texturina18ptExtraBold,
26474 #[cfg(feature = "static")]
26475 Font::Texturina18ptBlack,
26476 #[cfg(feature = "static")]
26477 Font::Texturina28ptThin,
26478 #[cfg(feature = "static")]
26479 Font::Texturina28ptExtraLight,
26480 #[cfg(feature = "static")]
26481 Font::Texturina28ptLight,
26482 #[cfg(feature = "static")]
26483 Font::Texturina28ptRegular,
26484 #[cfg(feature = "static")]
26485 Font::Texturina28ptMedium,
26486 #[cfg(feature = "static")]
26487 Font::Texturina28ptSemiBold,
26488 #[cfg(feature = "static")]
26489 Font::Texturina28ptBold,
26490 #[cfg(feature = "static")]
26491 Font::Texturina28ptExtraBold,
26492 #[cfg(feature = "static")]
26493 Font::Texturina28ptBlack,
26494 #[cfg(feature = "static")]
26495 Font::Texturina48ptThin,
26496 #[cfg(feature = "static")]
26497 Font::Texturina48ptExtraLight,
26498 #[cfg(feature = "static")]
26499 Font::Texturina48ptLight,
26500 #[cfg(feature = "static")]
26501 Font::Texturina48ptRegular,
26502 #[cfg(feature = "static")]
26503 Font::Texturina48ptMedium,
26504 #[cfg(feature = "static")]
26505 Font::Texturina48ptSemiBold,
26506 #[cfg(feature = "static")]
26507 Font::Texturina48ptBold,
26508 #[cfg(feature = "static")]
26509 Font::Texturina48ptExtraBold,
26510 #[cfg(feature = "static")]
26511 Font::Texturina48ptBlack,
26512 #[cfg(feature = "static")]
26513 Font::Texturina60ptThin,
26514 #[cfg(feature = "static")]
26515 Font::Texturina60ptExtraLight,
26516 #[cfg(feature = "static")]
26517 Font::Texturina60ptLight,
26518 #[cfg(feature = "static")]
26519 Font::Texturina60ptRegular,
26520 #[cfg(feature = "static")]
26521 Font::Texturina60ptMedium,
26522 #[cfg(feature = "static")]
26523 Font::Texturina60ptSemiBold,
26524 #[cfg(feature = "static")]
26525 Font::Texturina60ptBold,
26526 #[cfg(feature = "static")]
26527 Font::Texturina60ptExtraBold,
26528 #[cfg(feature = "static")]
26529 Font::Texturina60ptBlack,
26530 #[cfg(feature = "static")]
26531 Font::Texturina14ptThinItalic,
26532 #[cfg(feature = "static")]
26533 Font::Texturina14ptExtraLightItalic,
26534 #[cfg(feature = "static")]
26535 Font::Texturina14ptLightItalic,
26536 #[cfg(feature = "static")]
26537 Font::Texturina14ptItalic,
26538 #[cfg(feature = "static")]
26539 Font::Texturina14ptMediumItalic,
26540 #[cfg(feature = "static")]
26541 Font::Texturina14ptSemiBoldItalic,
26542 #[cfg(feature = "static")]
26543 Font::Texturina14ptBoldItalic,
26544 #[cfg(feature = "static")]
26545 Font::Texturina14ptExtraBoldItalic,
26546 #[cfg(feature = "static")]
26547 Font::Texturina14ptBlackItalic,
26548 #[cfg(feature = "static")]
26549 Font::Texturina18ptThinItalic,
26550 #[cfg(feature = "static")]
26551 Font::Texturina18ptExtraLightItalic,
26552 #[cfg(feature = "static")]
26553 Font::Texturina18ptLightItalic,
26554 #[cfg(feature = "static")]
26555 Font::Texturina18ptItalic,
26556 #[cfg(feature = "static")]
26557 Font::Texturina18ptMediumItalic,
26558 #[cfg(feature = "static")]
26559 Font::Texturina18ptSemiBoldItalic,
26560 #[cfg(feature = "static")]
26561 Font::Texturina18ptBoldItalic,
26562 #[cfg(feature = "static")]
26563 Font::Texturina18ptExtraBoldItalic,
26564 #[cfg(feature = "static")]
26565 Font::Texturina18ptBlackItalic,
26566 #[cfg(feature = "static")]
26567 Font::Texturina28ptThinItalic,
26568 #[cfg(feature = "static")]
26569 Font::Texturina28ptExtraLightItalic,
26570 #[cfg(feature = "static")]
26571 Font::Texturina28ptLightItalic,
26572 #[cfg(feature = "static")]
26573 Font::Texturina28ptItalic,
26574 #[cfg(feature = "static")]
26575 Font::Texturina28ptMediumItalic,
26576 #[cfg(feature = "static")]
26577 Font::Texturina28ptSemiBoldItalic,
26578 #[cfg(feature = "static")]
26579 Font::Texturina28ptBoldItalic,
26580 #[cfg(feature = "static")]
26581 Font::Texturina28ptExtraBoldItalic,
26582 #[cfg(feature = "static")]
26583 Font::Texturina28ptBlackItalic,
26584 #[cfg(feature = "static")]
26585 Font::Texturina48ptThinItalic,
26586 #[cfg(feature = "static")]
26587 Font::Texturina48ptExtraLightItalic,
26588 #[cfg(feature = "static")]
26589 Font::Texturina48ptLightItalic,
26590 #[cfg(feature = "static")]
26591 Font::Texturina48ptItalic,
26592 #[cfg(feature = "static")]
26593 Font::Texturina48ptMediumItalic,
26594 #[cfg(feature = "static")]
26595 Font::Texturina48ptSemiBoldItalic,
26596 #[cfg(feature = "static")]
26597 Font::Texturina48ptBoldItalic,
26598 #[cfg(feature = "static")]
26599 Font::Texturina48ptExtraBoldItalic,
26600 #[cfg(feature = "static")]
26601 Font::Texturina48ptBlackItalic,
26602 #[cfg(feature = "static")]
26603 Font::Texturina60ptThinItalic,
26604 #[cfg(feature = "static")]
26605 Font::Texturina60ptExtraLightItalic,
26606 #[cfg(feature = "static")]
26607 Font::Texturina60ptLightItalic,
26608 #[cfg(feature = "static")]
26609 Font::Texturina60ptItalic,
26610 #[cfg(feature = "static")]
26611 Font::Texturina60ptMediumItalic,
26612 #[cfg(feature = "static")]
26613 Font::Texturina60ptSemiBoldItalic,
26614 #[cfg(feature = "static")]
26615 Font::Texturina60ptBoldItalic,
26616 #[cfg(feature = "static")]
26617 Font::Texturina60ptExtraBoldItalic,
26618 #[cfg(feature = "static")]
26619 Font::Texturina60ptBlackItalic,
26620 #[cfg(feature = "variable")]
26621 Font::TexturinaVariable,
26622 #[cfg(feature = "variable")]
26623 Font::TexturinaItalicVariable,
26624 #[cfg(feature = "static")]
26625 Font::TienneRegular,
26626 #[cfg(feature = "static")]
26627 Font::TienneBold,
26628 #[cfg(feature = "static")]
26629 Font::TienneBlack,
26630 #[cfg(feature = "static")]
26631 Font::TinosRegular,
26632 #[cfg(feature = "static")]
26633 Font::TinosItalic,
26634 #[cfg(feature = "static")]
26635 Font::TinosBold,
26636 #[cfg(feature = "static")]
26637 Font::TinosBoldItalic,
26638 #[cfg(feature = "static")]
26639 Font::TiroBanglaRegular,
26640 #[cfg(feature = "static")]
26641 Font::TiroBanglaItalic,
26642 #[cfg(feature = "static")]
26643 Font::TiroDevanagariHindiRegular,
26644 #[cfg(feature = "static")]
26645 Font::TiroDevanagariHindiItalic,
26646 #[cfg(feature = "static")]
26647 Font::TiroDevanagariMarathiRegular,
26648 #[cfg(feature = "static")]
26649 Font::TiroDevanagariMarathiItalic,
26650 #[cfg(feature = "static")]
26651 Font::TiroDevanagariSanskritRegular,
26652 #[cfg(feature = "static")]
26653 Font::TiroDevanagariSanskritItalic,
26654 #[cfg(feature = "static")]
26655 Font::TiroGurmukhiRegular,
26656 #[cfg(feature = "static")]
26657 Font::TiroGurmukhiItalic,
26658 #[cfg(feature = "static")]
26659 Font::TiroKannadaRegular,
26660 #[cfg(feature = "static")]
26661 Font::TiroKannadaItalic,
26662 #[cfg(feature = "static")]
26663 Font::TiroTamilRegular,
26664 #[cfg(feature = "static")]
26665 Font::TiroTamilItalic,
26666 #[cfg(feature = "static")]
26667 Font::TiroTeluguRegular,
26668 #[cfg(feature = "static")]
26669 Font::TiroTeluguItalic,
26670 #[cfg(feature = "static")]
26671 Font::TrirongThin,
26672 #[cfg(feature = "static")]
26673 Font::TrirongThinItalic,
26674 #[cfg(feature = "static")]
26675 Font::TrirongExtraLight,
26676 #[cfg(feature = "static")]
26677 Font::TrirongExtraLightItalic,
26678 #[cfg(feature = "static")]
26679 Font::TrirongLight,
26680 #[cfg(feature = "static")]
26681 Font::TrirongLightItalic,
26682 #[cfg(feature = "static")]
26683 Font::TrirongRegular,
26684 #[cfg(feature = "static")]
26685 Font::TrirongItalic,
26686 #[cfg(feature = "static")]
26687 Font::TrirongMedium,
26688 #[cfg(feature = "static")]
26689 Font::TrirongMediumItalic,
26690 #[cfg(feature = "static")]
26691 Font::TrirongSemiBold,
26692 #[cfg(feature = "static")]
26693 Font::TrirongSemiBoldItalic,
26694 #[cfg(feature = "static")]
26695 Font::TrirongBold,
26696 #[cfg(feature = "static")]
26697 Font::TrirongBoldItalic,
26698 #[cfg(feature = "static")]
26699 Font::TrirongExtraBold,
26700 #[cfg(feature = "static")]
26701 Font::TrirongExtraBoldItalic,
26702 #[cfg(feature = "static")]
26703 Font::TrirongBlack,
26704 #[cfg(feature = "static")]
26705 Font::TrirongBlackItalic,
26706 #[cfg(feature = "static")]
26707 Font::TrocchiRegular,
26708 #[cfg(feature = "static")]
26709 Font::TrykkerRegular,
26710 #[cfg(feature = "static")]
26711 Font::UchenRegular,
26712 #[cfg(feature = "static")]
26713 Font::UltraRegular,
26714 #[cfg(feature = "static")]
26715 Font::UnnaRegular,
26716 #[cfg(feature = "static")]
26717 Font::UnnaItalic,
26718 #[cfg(feature = "static")]
26719 Font::UnnaBold,
26720 #[cfg(feature = "static")]
26721 Font::UnnaBoldItalic,
26722 #[cfg(feature = "static")]
26723 Font::VastShadowRegular,
26724 #[cfg(feature = "static")]
26725 Font::VesperLibreRegular,
26726 #[cfg(feature = "static")]
26727 Font::VesperLibreMedium,
26728 #[cfg(feature = "static")]
26729 Font::VesperLibreBold,
26730 #[cfg(feature = "static")]
26731 Font::VesperLibreBlack,
26732 #[cfg(feature = "static")]
26733 Font::VidalokaRegular,
26734 #[cfg(feature = "static")]
26735 Font::VolkhovRegular,
26736 #[cfg(feature = "static")]
26737 Font::VolkhovItalic,
26738 #[cfg(feature = "static")]
26739 Font::VolkhovBold,
26740 #[cfg(feature = "static")]
26741 Font::VolkhovBoldItalic,
26742 #[cfg(feature = "static")]
26743 Font::VollkornRegular,
26744 #[cfg(feature = "static")]
26745 Font::VollkornMedium,
26746 #[cfg(feature = "static")]
26747 Font::VollkornSemiBold,
26748 #[cfg(feature = "static")]
26749 Font::VollkornBold,
26750 #[cfg(feature = "static")]
26751 Font::VollkornExtraBold,
26752 #[cfg(feature = "static")]
26753 Font::VollkornBlack,
26754 #[cfg(feature = "static")]
26755 Font::VollkornItalic,
26756 #[cfg(feature = "static")]
26757 Font::VollkornMediumItalic,
26758 #[cfg(feature = "static")]
26759 Font::VollkornSemiBoldItalic,
26760 #[cfg(feature = "static")]
26761 Font::VollkornBoldItalic,
26762 #[cfg(feature = "static")]
26763 Font::VollkornExtraBoldItalic,
26764 #[cfg(feature = "static")]
26765 Font::VollkornBlackItalic,
26766 #[cfg(feature = "variable")]
26767 Font::VollkornVariable,
26768 #[cfg(feature = "variable")]
26769 Font::VollkornItalicVariable,
26770 #[cfg(feature = "static")]
26771 Font::VollkornSCRegular,
26772 #[cfg(feature = "static")]
26773 Font::VollkornSCSemiBold,
26774 #[cfg(feature = "static")]
26775 Font::VollkornSCBold,
26776 #[cfg(feature = "static")]
26777 Font::VollkornSCBlack,
26778 #[cfg(feature = "static")]
26779 Font::WellfleetRegular,
26780 #[cfg(feature = "static")]
26781 Font::WittgensteinRegular,
26782 #[cfg(feature = "static")]
26783 Font::WittgensteinMedium,
26784 #[cfg(feature = "static")]
26785 Font::WittgensteinSemiBold,
26786 #[cfg(feature = "static")]
26787 Font::WittgensteinBold,
26788 #[cfg(feature = "static")]
26789 Font::WittgensteinExtraBold,
26790 #[cfg(feature = "static")]
26791 Font::WittgensteinBlack,
26792 #[cfg(feature = "static")]
26793 Font::WittgensteinItalic,
26794 #[cfg(feature = "static")]
26795 Font::WittgensteinMediumItalic,
26796 #[cfg(feature = "static")]
26797 Font::WittgensteinSemiBoldItalic,
26798 #[cfg(feature = "static")]
26799 Font::WittgensteinBoldItalic,
26800 #[cfg(feature = "static")]
26801 Font::WittgensteinExtraBoldItalic,
26802 #[cfg(feature = "static")]
26803 Font::WittgensteinBlackItalic,
26804 #[cfg(feature = "variable")]
26805 Font::WittgensteinVariable,
26806 #[cfg(feature = "variable")]
26807 Font::WittgensteinItalicVariable,
26808 #[cfg(feature = "static")]
26809 Font::YoungSerifRegular,
26810 #[cfg(feature = "static")]
26811 Font::YrsaLight,
26812 #[cfg(feature = "static")]
26813 Font::YrsaRegular,
26814 #[cfg(feature = "static")]
26815 Font::YrsaMedium,
26816 #[cfg(feature = "static")]
26817 Font::YrsaSemiBold,
26818 #[cfg(feature = "static")]
26819 Font::YrsaBold,
26820 #[cfg(feature = "static")]
26821 Font::YrsaLightItalic,
26822 #[cfg(feature = "static")]
26823 Font::YrsaItalic,
26824 #[cfg(feature = "static")]
26825 Font::YrsaMediumItalic,
26826 #[cfg(feature = "static")]
26827 Font::YrsaSemiBoldItalic,
26828 #[cfg(feature = "static")]
26829 Font::YrsaBoldItalic,
26830 #[cfg(feature = "variable")]
26831 Font::YrsaVariable,
26832 #[cfg(feature = "variable")]
26833 Font::YrsaItalicVariable,
26834 #[cfg(feature = "static")]
26835 Font::YujiBokuRegular,
26836 #[cfg(feature = "static")]
26837 Font::YujiMaiRegular,
26838 #[cfg(feature = "static")]
26839 Font::YujiSyukuRegular,
26840 #[cfg(feature = "static")]
26841 Font::ZenAntiqueRegular,
26842 #[cfg(feature = "static")]
26843 Font::ZenAntiqueSoftRegular,
26844 #[cfg(feature = "static")]
26845 Font::ZenOldMinchoRegular,
26846 #[cfg(feature = "static")]
26847 Font::ZenOldMinchoMedium,
26848 #[cfg(feature = "static")]
26849 Font::ZenOldMinchoSemiBold,
26850 #[cfg(feature = "static")]
26851 Font::ZenOldMinchoBold,
26852 #[cfg(feature = "static")]
26853 Font::ZenOldMinchoBlack,
26854 #[cfg(feature = "static")]
26855 Font::ZillaSlabLight,
26856 #[cfg(feature = "static")]
26857 Font::ZillaSlabLightItalic,
26858 #[cfg(feature = "static")]
26859 Font::ZillaSlabRegular,
26860 #[cfg(feature = "static")]
26861 Font::ZillaSlabItalic,
26862 #[cfg(feature = "static")]
26863 Font::ZillaSlabMedium,
26864 #[cfg(feature = "static")]
26865 Font::ZillaSlabMediumItalic,
26866 #[cfg(feature = "static")]
26867 Font::ZillaSlabSemiBold,
26868 #[cfg(feature = "static")]
26869 Font::ZillaSlabSemiBoldItalic,
26870 #[cfg(feature = "static")]
26871 Font::ZillaSlabBold,
26872 #[cfg(feature = "static")]
26873 Font::ZillaSlabBoldItalic,
26874 #[cfg(feature = "static")]
26875 Font::ZillaSlabHighlightRegular,
26876 #[cfg(feature = "static")]
26877 Font::ZillaSlabHighlightBold,
26878 ]
26879 }
26880 }
26881 }
26882}