summaryrefslogtreecommitdiff
path: root/graphics/py-matplotlib/PLIST
blob: 91578afec3ccce4151bcd799953badf7b9a91572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
@comment $NetBSD: PLIST,v 1.14 2012/04/17 17:17:03 drochner Exp $
${PYSITELIB}/matplotlib/__init__.py
${PYSITELIB}/matplotlib/__init__.pyc
${PYSITELIB}/matplotlib/__init__.pyo
${PYSITELIB}/matplotlib/_cm.py
${PYSITELIB}/matplotlib/_cm.pyc
${PYSITELIB}/matplotlib/_cm.pyo
${PYSITELIB}/matplotlib/_cntr.so
${PYSITELIB}/matplotlib/_delaunay.so
${PYSITELIB}/matplotlib/_image.so
${PYSITELIB}/matplotlib/_mathtext_data.py
${PYSITELIB}/matplotlib/_mathtext_data.pyc
${PYSITELIB}/matplotlib/_mathtext_data.pyo
${PYSITELIB}/matplotlib/_path.so
${PYSITELIB}/matplotlib/_png.so
${PYSITELIB}/matplotlib/_pylab_helpers.py
${PYSITELIB}/matplotlib/_pylab_helpers.pyc
${PYSITELIB}/matplotlib/_pylab_helpers.pyo
${PYSITELIB}/matplotlib/_tri.so
${PYSITELIB}/matplotlib/afm.py
${PYSITELIB}/matplotlib/afm.pyc
${PYSITELIB}/matplotlib/afm.pyo
${PYSITELIB}/matplotlib/animation.py
${PYSITELIB}/matplotlib/animation.pyc
${PYSITELIB}/matplotlib/animation.pyo
${PYSITELIB}/matplotlib/artist.py
${PYSITELIB}/matplotlib/artist.pyc
${PYSITELIB}/matplotlib/artist.pyo
${PYSITELIB}/matplotlib/axes.py
${PYSITELIB}/matplotlib/axes.pyc
${PYSITELIB}/matplotlib/axes.pyo
${PYSITELIB}/matplotlib/axis.py
${PYSITELIB}/matplotlib/axis.pyc
${PYSITELIB}/matplotlib/axis.pyo
${PYSITELIB}/matplotlib/backend_bases.py
${PYSITELIB}/matplotlib/backend_bases.pyc
${PYSITELIB}/matplotlib/backend_bases.pyo
${PYSITELIB}/matplotlib/backends/Matplotlib.nib/classes.nib
${PYSITELIB}/matplotlib/backends/Matplotlib.nib/info.nib
${PYSITELIB}/matplotlib/backends/Matplotlib.nib/keyedobjects.nib
${PYSITELIB}/matplotlib/backends/__init__.py
${PYSITELIB}/matplotlib/backends/__init__.pyc
${PYSITELIB}/matplotlib/backends/__init__.pyo
${PYSITELIB}/matplotlib/backends/_backend_agg.so
${PYSITELIB}/matplotlib/backends/backend_agg.py
${PYSITELIB}/matplotlib/backends/backend_agg.pyc
${PYSITELIB}/matplotlib/backends/backend_agg.pyo
${PYSITELIB}/matplotlib/backends/backend_cairo.py
${PYSITELIB}/matplotlib/backends/backend_cairo.pyc
${PYSITELIB}/matplotlib/backends/backend_cairo.pyo
${PYSITELIB}/matplotlib/backends/backend_cocoaagg.py
${PYSITELIB}/matplotlib/backends/backend_cocoaagg.pyc
${PYSITELIB}/matplotlib/backends/backend_cocoaagg.pyo
${PYSITELIB}/matplotlib/backends/backend_emf.py
${PYSITELIB}/matplotlib/backends/backend_emf.pyc
${PYSITELIB}/matplotlib/backends/backend_emf.pyo
${PYSITELIB}/matplotlib/backends/backend_fltkagg.py
${PYSITELIB}/matplotlib/backends/backend_fltkagg.pyc
${PYSITELIB}/matplotlib/backends/backend_fltkagg.pyo
${PYSITELIB}/matplotlib/backends/backend_gdk.py
${PYSITELIB}/matplotlib/backends/backend_gdk.pyc
${PYSITELIB}/matplotlib/backends/backend_gdk.pyo
${PYSITELIB}/matplotlib/backends/backend_gtk.py
${PYSITELIB}/matplotlib/backends/backend_gtk.pyc
${PYSITELIB}/matplotlib/backends/backend_gtk.pyo
${PYSITELIB}/matplotlib/backends/backend_gtkagg.py
${PYSITELIB}/matplotlib/backends/backend_gtkagg.pyc
${PYSITELIB}/matplotlib/backends/backend_gtkagg.pyo
${PYSITELIB}/matplotlib/backends/backend_gtkcairo.py
${PYSITELIB}/matplotlib/backends/backend_gtkcairo.pyc
${PYSITELIB}/matplotlib/backends/backend_gtkcairo.pyo
${PYSITELIB}/matplotlib/backends/backend_macosx.py
${PYSITELIB}/matplotlib/backends/backend_macosx.pyc
${PYSITELIB}/matplotlib/backends/backend_macosx.pyo
${PYSITELIB}/matplotlib/backends/backend_mixed.py
${PYSITELIB}/matplotlib/backends/backend_mixed.pyc
${PYSITELIB}/matplotlib/backends/backend_mixed.pyo
${PYSITELIB}/matplotlib/backends/backend_pdf.py
${PYSITELIB}/matplotlib/backends/backend_pdf.pyc
${PYSITELIB}/matplotlib/backends/backend_pdf.pyo
${PYSITELIB}/matplotlib/backends/backend_ps.py
${PYSITELIB}/matplotlib/backends/backend_ps.pyc
${PYSITELIB}/matplotlib/backends/backend_ps.pyo
${PYSITELIB}/matplotlib/backends/backend_qt.py
${PYSITELIB}/matplotlib/backends/backend_qt.pyc
${PYSITELIB}/matplotlib/backends/backend_qt.pyo
${PYSITELIB}/matplotlib/backends/backend_qt4.py
${PYSITELIB}/matplotlib/backends/backend_qt4.pyc
${PYSITELIB}/matplotlib/backends/backend_qt4.pyo
${PYSITELIB}/matplotlib/backends/backend_qt4agg.py
${PYSITELIB}/matplotlib/backends/backend_qt4agg.pyc
${PYSITELIB}/matplotlib/backends/backend_qt4agg.pyo
${PYSITELIB}/matplotlib/backends/backend_qtagg.py
${PYSITELIB}/matplotlib/backends/backend_qtagg.pyc
${PYSITELIB}/matplotlib/backends/backend_qtagg.pyo
${PYSITELIB}/matplotlib/backends/backend_svg.py
${PYSITELIB}/matplotlib/backends/backend_svg.pyc
${PYSITELIB}/matplotlib/backends/backend_svg.pyo
${PYSITELIB}/matplotlib/backends/backend_template.py
${PYSITELIB}/matplotlib/backends/backend_template.pyc
${PYSITELIB}/matplotlib/backends/backend_template.pyo
${PYSITELIB}/matplotlib/backends/backend_tkagg.py
${PYSITELIB}/matplotlib/backends/backend_tkagg.pyc
${PYSITELIB}/matplotlib/backends/backend_tkagg.pyo
${PYSITELIB}/matplotlib/backends/backend_wx.py
${PYSITELIB}/matplotlib/backends/backend_wx.pyc
${PYSITELIB}/matplotlib/backends/backend_wx.pyo
${PYSITELIB}/matplotlib/backends/backend_wxagg.py
${PYSITELIB}/matplotlib/backends/backend_wxagg.pyc
${PYSITELIB}/matplotlib/backends/backend_wxagg.pyo
${PYSITELIB}/matplotlib/backends/qt4_compat.py
${PYSITELIB}/matplotlib/backends/qt4_compat.pyc
${PYSITELIB}/matplotlib/backends/qt4_compat.pyo
${PYSITELIB}/matplotlib/backends/qt4_editor/__init__.py
${PYSITELIB}/matplotlib/backends/qt4_editor/__init__.pyc
${PYSITELIB}/matplotlib/backends/qt4_editor/__init__.pyo
${PYSITELIB}/matplotlib/backends/qt4_editor/figureoptions.py
${PYSITELIB}/matplotlib/backends/qt4_editor/figureoptions.pyc
${PYSITELIB}/matplotlib/backends/qt4_editor/figureoptions.pyo
${PYSITELIB}/matplotlib/backends/qt4_editor/formlayout.py
${PYSITELIB}/matplotlib/backends/qt4_editor/formlayout.pyc
${PYSITELIB}/matplotlib/backends/qt4_editor/formlayout.pyo
${PYSITELIB}/matplotlib/backends/tkagg.py
${PYSITELIB}/matplotlib/backends/tkagg.pyc
${PYSITELIB}/matplotlib/backends/tkagg.pyo
${PYSITELIB}/matplotlib/backends/windowing.py
${PYSITELIB}/matplotlib/backends/windowing.pyc
${PYSITELIB}/matplotlib/backends/windowing.pyo
${PYSITELIB}/matplotlib/bezier.py
${PYSITELIB}/matplotlib/bezier.pyc
${PYSITELIB}/matplotlib/bezier.pyo
${PYSITELIB}/matplotlib/blocking_input.py
${PYSITELIB}/matplotlib/blocking_input.pyc
${PYSITELIB}/matplotlib/blocking_input.pyo
${PYSITELIB}/matplotlib/cbook.py
${PYSITELIB}/matplotlib/cbook.pyc
${PYSITELIB}/matplotlib/cbook.pyo
${PYSITELIB}/matplotlib/cm.py
${PYSITELIB}/matplotlib/cm.pyc
${PYSITELIB}/matplotlib/cm.pyo
${PYSITELIB}/matplotlib/collections.py
${PYSITELIB}/matplotlib/collections.pyc
${PYSITELIB}/matplotlib/collections.pyo
${PYSITELIB}/matplotlib/colorbar.py
${PYSITELIB}/matplotlib/colorbar.pyc
${PYSITELIB}/matplotlib/colorbar.pyo
${PYSITELIB}/matplotlib/colors.py
${PYSITELIB}/matplotlib/colors.pyc
${PYSITELIB}/matplotlib/colors.pyo
${PYSITELIB}/matplotlib/container.py
${PYSITELIB}/matplotlib/container.pyc
${PYSITELIB}/matplotlib/container.pyo
${PYSITELIB}/matplotlib/contour.py
${PYSITELIB}/matplotlib/contour.pyc
${PYSITELIB}/matplotlib/contour.pyo
${PYSITELIB}/matplotlib/dates.py
${PYSITELIB}/matplotlib/dates.pyc
${PYSITELIB}/matplotlib/dates.pyo
${PYSITELIB}/matplotlib/delaunay/__init__.py
${PYSITELIB}/matplotlib/delaunay/__init__.pyc
${PYSITELIB}/matplotlib/delaunay/__init__.pyo
${PYSITELIB}/matplotlib/delaunay/interpolate.py
${PYSITELIB}/matplotlib/delaunay/interpolate.pyc
${PYSITELIB}/matplotlib/delaunay/interpolate.pyo
${PYSITELIB}/matplotlib/delaunay/testfuncs.py
${PYSITELIB}/matplotlib/delaunay/testfuncs.pyc
${PYSITELIB}/matplotlib/delaunay/testfuncs.pyo
${PYSITELIB}/matplotlib/delaunay/triangulate.py
${PYSITELIB}/matplotlib/delaunay/triangulate.pyc
${PYSITELIB}/matplotlib/delaunay/triangulate.pyo
${PYSITELIB}/matplotlib/docstring.py
${PYSITELIB}/matplotlib/docstring.pyc
${PYSITELIB}/matplotlib/docstring.pyo
${PYSITELIB}/matplotlib/dviread.py
${PYSITELIB}/matplotlib/dviread.pyc
${PYSITELIB}/matplotlib/dviread.pyo
${PYSITELIB}/matplotlib/figure.py
${PYSITELIB}/matplotlib/figure.pyc
${PYSITELIB}/matplotlib/figure.pyo
${PYSITELIB}/matplotlib/finance.py
${PYSITELIB}/matplotlib/finance.pyc
${PYSITELIB}/matplotlib/finance.pyo
${PYSITELIB}/matplotlib/font_manager.py
${PYSITELIB}/matplotlib/font_manager.pyc
${PYSITELIB}/matplotlib/font_manager.pyo
${PYSITELIB}/matplotlib/fontconfig_pattern.py
${PYSITELIB}/matplotlib/fontconfig_pattern.pyc
${PYSITELIB}/matplotlib/fontconfig_pattern.pyo
${PYSITELIB}/matplotlib/ft2font.so
${PYSITELIB}/matplotlib/gridspec.py
${PYSITELIB}/matplotlib/gridspec.pyc
${PYSITELIB}/matplotlib/gridspec.pyo
${PYSITELIB}/matplotlib/hatch.py
${PYSITELIB}/matplotlib/hatch.pyc
${PYSITELIB}/matplotlib/hatch.pyo
${PYSITELIB}/matplotlib/image.py
${PYSITELIB}/matplotlib/image.pyc
${PYSITELIB}/matplotlib/image.pyo
${PYSITELIB}/matplotlib/legend.py
${PYSITELIB}/matplotlib/legend.pyc
${PYSITELIB}/matplotlib/legend.pyo
${PYSITELIB}/matplotlib/legend_handler.py
${PYSITELIB}/matplotlib/legend_handler.pyc
${PYSITELIB}/matplotlib/legend_handler.pyo
${PYSITELIB}/matplotlib/lines.py
${PYSITELIB}/matplotlib/lines.pyc
${PYSITELIB}/matplotlib/lines.pyo
${PYSITELIB}/matplotlib/markers.py
${PYSITELIB}/matplotlib/markers.pyc
${PYSITELIB}/matplotlib/markers.pyo
${PYSITELIB}/matplotlib/mathtext.py
${PYSITELIB}/matplotlib/mathtext.pyc
${PYSITELIB}/matplotlib/mathtext.pyo
${PYSITELIB}/matplotlib/mlab.py
${PYSITELIB}/matplotlib/mlab.pyc
${PYSITELIB}/matplotlib/mlab.pyo
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmex10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmmi10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmr10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmsy10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/cmtt10.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagd8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagdo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagk8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pagko8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkd8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkdi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkl8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pbkli8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrbo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pcrro8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvb8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvbo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvbo8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvl8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvlo8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvr8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvro8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/phvro8an.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pncri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pplri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/psyr.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/ptmri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putb8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putbi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putr8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/putri8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pzcmi8a.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/afm/pzdr.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-BoldOblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier-Oblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Courier.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-BoldOblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica-Oblique.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Helvetica.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Symbol.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Bold.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-BoldItalic.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Italic.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/Times-Roman.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/ZapfDingbats.afm
${PYSITELIB}/matplotlib/mpl-data/fonts/pdfcorefonts/readme.txt
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/COPYRIGHT.TXT
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/LICENSE_STIX
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/README.TXT
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/RELEASENOTES.TXT
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneral.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralBolIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXGeneralItalic.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUni.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniBolIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXNonUniIta.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFiveSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizFourSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizOneSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizThreeSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymBol.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/STIXSizTwoSymReg.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/Vera.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraBI.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraBd.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraIt.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMoBI.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMoBd.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMoIt.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraMono.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraSe.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/VeraSeBd.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmb10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmex10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmmi10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmr10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmss10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmsy10.ttf
${PYSITELIB}/matplotlib/mpl-data/fonts/ttf/cmtt10.ttf
${PYSITELIB}/matplotlib/mpl-data/images/back.png
${PYSITELIB}/matplotlib/mpl-data/images/back.ppm
${PYSITELIB}/matplotlib/mpl-data/images/back.svg
${PYSITELIB}/matplotlib/mpl-data/images/back.xpm
${PYSITELIB}/matplotlib/mpl-data/images/filesave.png
${PYSITELIB}/matplotlib/mpl-data/images/filesave.ppm
${PYSITELIB}/matplotlib/mpl-data/images/filesave.svg
${PYSITELIB}/matplotlib/mpl-data/images/filesave.xpm
${PYSITELIB}/matplotlib/mpl-data/images/forward.png
${PYSITELIB}/matplotlib/mpl-data/images/forward.ppm
${PYSITELIB}/matplotlib/mpl-data/images/forward.svg
${PYSITELIB}/matplotlib/mpl-data/images/forward.xpm
${PYSITELIB}/matplotlib/mpl-data/images/hand.png
${PYSITELIB}/matplotlib/mpl-data/images/hand.ppm
${PYSITELIB}/matplotlib/mpl-data/images/hand.svg
${PYSITELIB}/matplotlib/mpl-data/images/hand.xpm
${PYSITELIB}/matplotlib/mpl-data/images/home.png
${PYSITELIB}/matplotlib/mpl-data/images/home.ppm
${PYSITELIB}/matplotlib/mpl-data/images/home.svg
${PYSITELIB}/matplotlib/mpl-data/images/home.xpm
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.png
${PYSITELIB}/matplotlib/mpl-data/images/matplotlib.svg
${PYSITELIB}/matplotlib/mpl-data/images/move.png
${PYSITELIB}/matplotlib/mpl-data/images/move.ppm
${PYSITELIB}/matplotlib/mpl-data/images/move.svg
${PYSITELIB}/matplotlib/mpl-data/images/move.xpm
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.png
${PYSITELIB}/matplotlib/mpl-data/images/qt4_editor_options.svg
${PYSITELIB}/matplotlib/mpl-data/images/stock_close.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_close.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_down.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_down.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_left.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_left.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_refresh.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_refresh.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_right.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_right.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_save_as.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_save_as.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_up.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_up.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-in.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-in.xpm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-out.ppm
${PYSITELIB}/matplotlib/mpl-data/images/stock_zoom-out.xpm
${PYSITELIB}/matplotlib/mpl-data/images/subplots.png
${PYSITELIB}/matplotlib/mpl-data/images/subplots.ppm
${PYSITELIB}/matplotlib/mpl-data/images/subplots.xpm
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.png
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.ppm
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.svg
${PYSITELIB}/matplotlib/mpl-data/images/zoom_to_rect.xpm
${PYSITELIB}/matplotlib/mpl-data/lineprops.glade
${PYSITELIB}/matplotlib/mpl-data/matplotlib.conf
${PYSITELIB}/matplotlib/mpl-data/matplotlibrc
${PYSITELIB}/matplotlib/mpl.py
${PYSITELIB}/matplotlib/mpl.pyc
${PYSITELIB}/matplotlib/mpl.pyo
${PYSITELIB}/matplotlib/nxutils.so
${PYSITELIB}/matplotlib/offsetbox.py
${PYSITELIB}/matplotlib/offsetbox.pyc
${PYSITELIB}/matplotlib/offsetbox.pyo
${PYSITELIB}/matplotlib/patches.py
${PYSITELIB}/matplotlib/patches.pyc
${PYSITELIB}/matplotlib/patches.pyo
${PYSITELIB}/matplotlib/path.py
${PYSITELIB}/matplotlib/path.pyc
${PYSITELIB}/matplotlib/path.pyo
${PYSITELIB}/matplotlib/patheffects.py
${PYSITELIB}/matplotlib/patheffects.pyc
${PYSITELIB}/matplotlib/patheffects.pyo
${PYSITELIB}/matplotlib/projections/__init__.py
${PYSITELIB}/matplotlib/projections/__init__.pyc
${PYSITELIB}/matplotlib/projections/__init__.pyo
${PYSITELIB}/matplotlib/projections/geo.py
${PYSITELIB}/matplotlib/projections/geo.pyc
${PYSITELIB}/matplotlib/projections/geo.pyo
${PYSITELIB}/matplotlib/projections/polar.py
${PYSITELIB}/matplotlib/projections/polar.pyc
${PYSITELIB}/matplotlib/projections/polar.pyo
${PYSITELIB}/matplotlib/pylab.py
${PYSITELIB}/matplotlib/pylab.pyc
${PYSITELIB}/matplotlib/pylab.pyo
${PYSITELIB}/matplotlib/pyparsing.py
${PYSITELIB}/matplotlib/pyparsing.pyc
${PYSITELIB}/matplotlib/pyparsing.pyo
${PYSITELIB}/matplotlib/pyplot.py
${PYSITELIB}/matplotlib/pyplot.pyc
${PYSITELIB}/matplotlib/pyplot.pyo
${PYSITELIB}/matplotlib/quiver.py
${PYSITELIB}/matplotlib/quiver.pyc
${PYSITELIB}/matplotlib/quiver.pyo
${PYSITELIB}/matplotlib/rcsetup.py
${PYSITELIB}/matplotlib/rcsetup.pyc
${PYSITELIB}/matplotlib/rcsetup.pyo
${PYSITELIB}/matplotlib/sankey.py
${PYSITELIB}/matplotlib/sankey.pyc
${PYSITELIB}/matplotlib/sankey.pyo
${PYSITELIB}/matplotlib/scale.py
${PYSITELIB}/matplotlib/scale.pyc
${PYSITELIB}/matplotlib/scale.pyo
${PYSITELIB}/matplotlib/sphinxext/__init__.py
${PYSITELIB}/matplotlib/sphinxext/__init__.pyc
${PYSITELIB}/matplotlib/sphinxext/__init__.pyo
${PYSITELIB}/matplotlib/sphinxext/ipython_console_highlighting.py
${PYSITELIB}/matplotlib/sphinxext/ipython_console_highlighting.pyc
${PYSITELIB}/matplotlib/sphinxext/ipython_console_highlighting.pyo
${PYSITELIB}/matplotlib/sphinxext/mathmpl.py
${PYSITELIB}/matplotlib/sphinxext/mathmpl.pyc
${PYSITELIB}/matplotlib/sphinxext/mathmpl.pyo
${PYSITELIB}/matplotlib/sphinxext/only_directives.py
${PYSITELIB}/matplotlib/sphinxext/only_directives.pyc
${PYSITELIB}/matplotlib/sphinxext/only_directives.pyo
${PYSITELIB}/matplotlib/sphinxext/plot_directive.py
${PYSITELIB}/matplotlib/sphinxext/plot_directive.pyc
${PYSITELIB}/matplotlib/sphinxext/plot_directive.pyo
${PYSITELIB}/matplotlib/spines.py
${PYSITELIB}/matplotlib/spines.pyc
${PYSITELIB}/matplotlib/spines.pyo
${PYSITELIB}/matplotlib/table.py
${PYSITELIB}/matplotlib/table.pyc
${PYSITELIB}/matplotlib/table.pyo
${PYSITELIB}/matplotlib/testing/__init__.py
${PYSITELIB}/matplotlib/testing/__init__.pyc
${PYSITELIB}/matplotlib/testing/__init__.pyo
${PYSITELIB}/matplotlib/testing/compare.py
${PYSITELIB}/matplotlib/testing/compare.pyc
${PYSITELIB}/matplotlib/testing/compare.pyo
${PYSITELIB}/matplotlib/testing/decorators.py
${PYSITELIB}/matplotlib/testing/decorators.pyc
${PYSITELIB}/matplotlib/testing/decorators.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.py
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/Duration.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.py
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/Epoch.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/EpochConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/StrConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDbl.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblConverter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.py
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/UnitDblFormatter.pyo
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.py
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.pyc
${PYSITELIB}/matplotlib/testing/jpl_units/__init__.pyo
${PYSITELIB}/matplotlib/testing/noseclasses.py
${PYSITELIB}/matplotlib/testing/noseclasses.pyc
${PYSITELIB}/matplotlib/testing/noseclasses.pyo
${PYSITELIB}/matplotlib/tests/__init__.py
${PYSITELIB}/matplotlib/tests/__init__.pyc
${PYSITELIB}/matplotlib/tests/__init__.pyo
${PYSITELIB}/matplotlib/tests/baseline_images/dviread/test.map
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g01.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g02.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g04.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn0g16.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn2c08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn2c16.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p01.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p02.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p04.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn3p08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn4a08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn4a16.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn6a08.png
${PYSITELIB}/matplotlib/tests/baseline_images/pngsuite/basn6a16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/arc_ellipse.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/arc_ellipse.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/arc_ellipse.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axhspan_epoch.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/axvspan_epoch.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/canonical.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/canonical.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/canonical.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/const_xy.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/const_xy.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/const_xy.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_between_interpolate.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_units.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_units.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/fill_units.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_001.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_002.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_003.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_004.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/formatter_ticker_005.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hexbin_extent.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hexbin_extent.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/hexbin_extent.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow_clip.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow_clip.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/imshow_clip.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery_line.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery_line.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/markevery_line.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/nonfinite_limits.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/offset_points.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/offset_points.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/offset_points.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/pcolormesh.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/pcolormesh.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/pcolormesh.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_axes.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_axes.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_axes.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_coords.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_coords.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_coords.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_rmin.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_rmin.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_rmin.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_theta_position.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_theta_position.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_theta_position.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units_2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units_2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_units_2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_180.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polar_wrap_360.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/polycollection_joinstyle.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/shaped_data.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/shaped_data.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/shaped_data.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_date.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_date.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_date.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_point.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_point.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/single_point.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/symlog2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/units_strings.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/units_strings.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_axes/units_strings.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_backend_pdf/pdf_use14corefonts.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/DateFormatter_fractionalSeconds.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/RRuleLocator_bounds.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhline.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhline.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhspan.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhspan.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axhspan.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvline.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvline.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvspan.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvspan.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_axvspan.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_empty.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_empty.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_dates/date_empty.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cliff-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cloverleaf-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/cosine_peak-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/exponential-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gauss-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/gentle-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/saddle-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/sphere-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/steep-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-lin-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-lin-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-nn-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-nn-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-ref-con.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_delaunay/trig-ref-img.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_today.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_today.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_figure/figure_today.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/figimage-0.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/figimage-1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_clip.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_clip.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_clip.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_interps.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_interps.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/image_interps.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/imshow.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/imshow.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/imshow.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_image/interp_nearest_vs_none.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_legend/legend_auto2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_cm_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stix_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathfont_stixsans_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_00.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_01.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_02.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_03.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_04.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_05.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_06.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_07.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_08.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_09.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_10.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_11.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_12.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_13.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_14.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_15.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_16.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_17.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_18.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_19.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_20.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_21.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_22.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_23.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_24.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_25.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_26.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_27.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_28.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_29.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_30.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_31.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_32.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_33.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_34.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_35.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_36.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_37.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_38.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_39.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_40.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_41.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_42.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_43.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_44.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_45.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_46.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_47.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_48.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_49.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_50.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_51.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_52.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_53.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_54.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_55.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_56.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_57.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_58.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_59.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_60.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_61.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_62.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_63.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_64.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_cm_65.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_00.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_01.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_02.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_03.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_04.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_05.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_06.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_07.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_08.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_09.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_10.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_11.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_12.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_13.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_14.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_15.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_16.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_17.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_18.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_19.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_20.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_21.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_22.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_23.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_24.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_25.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_26.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_27.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_28.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_29.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_30.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_31.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_32.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_33.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_34.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_35.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_36.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_37.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_38.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_39.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_40.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_41.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_42.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_43.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_44.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_45.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_46.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_47.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_48.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_49.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_50.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_51.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_52.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_53.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_54.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_55.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_56.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_57.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_58.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_59.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_60.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_61.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_62.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_63.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_64.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stix_65.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_00.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_01.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_02.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_03.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_04.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_05.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_06.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_07.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_08.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_09.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_10.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_11.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_12.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_13.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_14.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_15.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_16.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_17.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_18.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_19.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_20.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_21.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_22.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_23.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_24.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_25.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_26.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_27.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_28.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_29.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_30.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_31.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_32.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_33.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_34.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_35.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_36.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_37.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_38.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_39.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_40.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_41.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_42.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_43.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_44.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_45.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_46.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_47.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_48.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_49.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_50.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_51.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_52.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_53.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_54.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_55.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_56.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_57.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_58.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_59.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_60.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_61.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_62.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_63.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_64.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_mathtext/mathtext_stixsans_65.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_png/pngsuite.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipper_edge.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipper_edge.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipper_edge.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/clipping_diamond.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/fft_peaks.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/fft_peaks.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/fft_peaks.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/hatch_simplify.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/overflow.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/overflow.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/overflow.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/para_equal_perp.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/simplify_curve.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/simplify_curve.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_simplification/simplify_curve.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_spines/spines_axes_positions.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/font_styles.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/font_styles.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/font_styles.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/multiline.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/multiline.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_text/multiline.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout1.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout2.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout3.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout4.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout5.svg
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.pdf
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.png
${PYSITELIB}/matplotlib/tests/baseline_images/test_tightlayout/tight_layout6.svg
${PYSITELIB}/matplotlib/tests/test_agg.py
${PYSITELIB}/matplotlib/tests/test_agg.pyc
${PYSITELIB}/matplotlib/tests/test_agg.pyo
${PYSITELIB}/matplotlib/tests/test_axes.py
${PYSITELIB}/matplotlib/tests/test_axes.pyc
${PYSITELIB}/matplotlib/tests/test_axes.pyo
${PYSITELIB}/matplotlib/tests/test_backend_pdf.py
${PYSITELIB}/matplotlib/tests/test_backend_pdf.pyc
${PYSITELIB}/matplotlib/tests/test_backend_pdf.pyo
${PYSITELIB}/matplotlib/tests/test_backend_svg.py
${PYSITELIB}/matplotlib/tests/test_backend_svg.pyc
${PYSITELIB}/matplotlib/tests/test_backend_svg.pyo
${PYSITELIB}/matplotlib/tests/test_basic.py
${PYSITELIB}/matplotlib/tests/test_basic.pyc
${PYSITELIB}/matplotlib/tests/test_basic.pyo
${PYSITELIB}/matplotlib/tests/test_cbook.py
${PYSITELIB}/matplotlib/tests/test_cbook.pyc
${PYSITELIB}/matplotlib/tests/test_cbook.pyo
${PYSITELIB}/matplotlib/tests/test_dates.py
${PYSITELIB}/matplotlib/tests/test_dates.pyc
${PYSITELIB}/matplotlib/tests/test_dates.pyo
${PYSITELIB}/matplotlib/tests/test_delaunay.py
${PYSITELIB}/matplotlib/tests/test_delaunay.pyc
${PYSITELIB}/matplotlib/tests/test_delaunay.pyo
${PYSITELIB}/matplotlib/tests/test_dviread.py
${PYSITELIB}/matplotlib/tests/test_dviread.pyc
${PYSITELIB}/matplotlib/tests/test_dviread.pyo
${PYSITELIB}/matplotlib/tests/test_figure.py
${PYSITELIB}/matplotlib/tests/test_figure.pyc
${PYSITELIB}/matplotlib/tests/test_figure.pyo
${PYSITELIB}/matplotlib/tests/test_image.py
${PYSITELIB}/matplotlib/tests/test_image.pyc
${PYSITELIB}/matplotlib/tests/test_image.pyo
${PYSITELIB}/matplotlib/tests/test_legend.py
${PYSITELIB}/matplotlib/tests/test_legend.pyc
${PYSITELIB}/matplotlib/tests/test_legend.pyo
${PYSITELIB}/matplotlib/tests/test_mathtext.py
${PYSITELIB}/matplotlib/tests/test_mathtext.pyc
${PYSITELIB}/matplotlib/tests/test_mathtext.pyo
${PYSITELIB}/matplotlib/tests/test_mlab.py
${PYSITELIB}/matplotlib/tests/test_mlab.pyc
${PYSITELIB}/matplotlib/tests/test_mlab.pyo
${PYSITELIB}/matplotlib/tests/test_png.py
${PYSITELIB}/matplotlib/tests/test_png.pyc
${PYSITELIB}/matplotlib/tests/test_png.pyo
${PYSITELIB}/matplotlib/tests/test_simplification.py
${PYSITELIB}/matplotlib/tests/test_simplification.pyc
${PYSITELIB}/matplotlib/tests/test_simplification.pyo
${PYSITELIB}/matplotlib/tests/test_spines.py
${PYSITELIB}/matplotlib/tests/test_spines.pyc
${PYSITELIB}/matplotlib/tests/test_spines.pyo
${PYSITELIB}/matplotlib/tests/test_text.py
${PYSITELIB}/matplotlib/tests/test_text.pyc
${PYSITELIB}/matplotlib/tests/test_text.pyo
${PYSITELIB}/matplotlib/tests/test_tightlayout.py
${PYSITELIB}/matplotlib/tests/test_tightlayout.pyc
${PYSITELIB}/matplotlib/tests/test_tightlayout.pyo
${PYSITELIB}/matplotlib/tests/test_transforms.py
${PYSITELIB}/matplotlib/tests/test_transforms.pyc
${PYSITELIB}/matplotlib/tests/test_transforms.pyo
${PYSITELIB}/matplotlib/texmanager.py
${PYSITELIB}/matplotlib/texmanager.pyc
${PYSITELIB}/matplotlib/texmanager.pyo
${PYSITELIB}/matplotlib/text.py
${PYSITELIB}/matplotlib/text.pyc
${PYSITELIB}/matplotlib/text.pyo
${PYSITELIB}/matplotlib/textpath.py
${PYSITELIB}/matplotlib/textpath.pyc
${PYSITELIB}/matplotlib/textpath.pyo
${PYSITELIB}/matplotlib/ticker.py
${PYSITELIB}/matplotlib/ticker.pyc
${PYSITELIB}/matplotlib/ticker.pyo
${PYSITELIB}/matplotlib/tight_bbox.py
${PYSITELIB}/matplotlib/tight_bbox.pyc
${PYSITELIB}/matplotlib/tight_bbox.pyo
${PYSITELIB}/matplotlib/tight_layout.py
${PYSITELIB}/matplotlib/tight_layout.pyc
${PYSITELIB}/matplotlib/tight_layout.pyo
${PYSITELIB}/matplotlib/transforms.py
${PYSITELIB}/matplotlib/transforms.pyc
${PYSITELIB}/matplotlib/transforms.pyo
${PYSITELIB}/matplotlib/tri/__init__.py
${PYSITELIB}/matplotlib/tri/__init__.pyc
${PYSITELIB}/matplotlib/tri/__init__.pyo
${PYSITELIB}/matplotlib/tri/triangulation.py
${PYSITELIB}/matplotlib/tri/triangulation.pyc
${PYSITELIB}/matplotlib/tri/triangulation.pyo
${PYSITELIB}/matplotlib/tri/tricontour.py
${PYSITELIB}/matplotlib/tri/tricontour.pyc
${PYSITELIB}/matplotlib/tri/tricontour.pyo
${PYSITELIB}/matplotlib/tri/tripcolor.py
${PYSITELIB}/matplotlib/tri/tripcolor.pyc
${PYSITELIB}/matplotlib/tri/tripcolor.pyo
${PYSITELIB}/matplotlib/tri/triplot.py
${PYSITELIB}/matplotlib/tri/triplot.pyc
${PYSITELIB}/matplotlib/tri/triplot.pyo
${PYSITELIB}/matplotlib/ttconv.so
${PYSITELIB}/matplotlib/type1font.py
${PYSITELIB}/matplotlib/type1font.pyc
${PYSITELIB}/matplotlib/type1font.pyo
${PYSITELIB}/matplotlib/units.py
${PYSITELIB}/matplotlib/units.pyc
${PYSITELIB}/matplotlib/units.pyo
${PYSITELIB}/matplotlib/widgets.py
${PYSITELIB}/matplotlib/widgets.pyc
${PYSITELIB}/matplotlib/widgets.pyo
${PYSITELIB}/mpl_toolkits/__init__.py
${PYSITELIB}/mpl_toolkits/__init__.pyc
${PYSITELIB}/mpl_toolkits/__init__.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/__init__.py
${PYSITELIB}/mpl_toolkits/axes_grid/__init__.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/__init__.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.py
${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/anchored_artists.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.py
${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/angle_helper.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_divider.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_grid.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_rgb.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.py
${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axes_size.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.py
${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axis_artist.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.py
${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axisline_style.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/axislines.py
${PYSITELIB}/mpl_toolkits/axes_grid/axislines.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/axislines.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.py
${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/clip_path.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/colorbar.py
${PYSITELIB}/mpl_toolkits/axes_grid/colorbar.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/colorbar.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/floating_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.py
${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/grid_finder.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.py
${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/grid_helper_curvelinear.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.py
${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/inset_locator.pyo
${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid/parasite_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.py
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/__init__.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.py
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/anchored_artists.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_divider.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_grid.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_rgb.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.py
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/axes_size.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/colorbar.py
${PYSITELIB}/mpl_toolkits/axes_grid1/colorbar.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/colorbar.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.py
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/inset_locator.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/mpl_axes.pyo
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.py
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.pyc
${PYSITELIB}/mpl_toolkits/axes_grid1/parasite_axes.pyo
${PYSITELIB}/mpl_toolkits/axisartist/__init__.py
${PYSITELIB}/mpl_toolkits/axisartist/__init__.pyc
${PYSITELIB}/mpl_toolkits/axisartist/__init__.pyo
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.py
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.pyc
${PYSITELIB}/mpl_toolkits/axisartist/angle_helper.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.py
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axis_artist.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.py
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axisline_style.pyo
${PYSITELIB}/mpl_toolkits/axisartist/axislines.py
${PYSITELIB}/mpl_toolkits/axisartist/axislines.pyc
${PYSITELIB}/mpl_toolkits/axisartist/axislines.pyo
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.py
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.pyc
${PYSITELIB}/mpl_toolkits/axisartist/clip_path.pyo
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.py
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.pyc
${PYSITELIB}/mpl_toolkits/axisartist/floating_axes.pyo
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.py
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.pyc
${PYSITELIB}/mpl_toolkits/axisartist/grid_finder.pyo
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.py
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.pyc
${PYSITELIB}/mpl_toolkits/axisartist/grid_helper_curvelinear.pyo
${PYSITELIB}/mpl_toolkits/exceltools.py
${PYSITELIB}/mpl_toolkits/exceltools.pyc
${PYSITELIB}/mpl_toolkits/exceltools.pyo
${PYSITELIB}/mpl_toolkits/gtktools.py
${PYSITELIB}/mpl_toolkits/gtktools.pyc
${PYSITELIB}/mpl_toolkits/gtktools.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.py
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/__init__.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/art3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/axes3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/axis3d.pyo
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.py
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.pyc
${PYSITELIB}/mpl_toolkits/mplot3d/proj3d.pyo
${PYSITELIB}/pylab.py
${PYSITELIB}/pylab.pyc
${PYSITELIB}/pylab.pyo