Artifact pymatgen-test-files_2024.10.29-1_arm64-2024-11-17T23:17:01Z

Metadata
bd_uninstallable: null
filename: pymatgen-test-files_2024.10.29-1_arm64-2024-11-17T23:17:01Z.build
source: pymatgen-test-files
version: 2024.10.29-1

File

pymatgen-test-files_2024.10.29-1_arm64-2024-11-17T23:17:01Z.build
   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
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
sbuild (Debian sbuild) 0.86.3~bpo12+1 (03 November 2024) on debusine-worker-arm64-demeter-10.freexian.com

+==============================================================================+
| pymatgen-test-files 2024.10.29-1 (arm64)     Sun, 17 Nov 2024 23:17:01 +0000 |
+==============================================================================+

Package: pymatgen-test-files
Version: 2024.10.29-1
Source Version: 2024.10.29-1
Distribution: sid
Machine Architecture: arm64
Host Architecture: arm64
Build Architecture: arm64
Build Type: binary

I: No tarballs found in /var/lib/debusine/worker/.cache/sbuild
Unpacking /var/lib/debusine/worker/system-images/957781/system.tar.xz to /tmp/tmp.sbuild.DvJvEwy8Nq...
I: NOTICE: Log filtering will replace 'sbuild-unshare-dummy-location' with '<<CHROOT>>'

+------------------------------------------------------------------------------+
| Chroot Setup Commands                                                        |
+------------------------------------------------------------------------------+


rm -f /etc/resolv.conf
----------------------


I: Finished running 'rm -f /etc/resolv.conf'.

Finished processing commands.
--------------------------------------------------------------------------------
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/dpkg-dbgsym_1.22.12~1.gbp82cafd_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/dpkg_1.22.12~1.gbp82cafd_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/dselect-dbgsym_1.22.12~1.gbp82cafd_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/dselect_1.22.12~1.gbp82cafd_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/libdpkg-dev_1.22.12~1.gbp82cafd_arm64.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/dpkg-dev_1.22.12~1.gbp82cafd_all.deb to /<<CHROOT>>...
Copying /tmp/debusine-fetch-exec-upload-r7uq8agt/libdpkg-perl_1.22.12~1.gbp82cafd_all.deb to /<<CHROOT>>...
I: NOTICE: Log filtering will replace 'build/pymatgen-test-files-kvcfXd/resolver-asW9mf' with '<<RESOLVERDIR>>'

+------------------------------------------------------------------------------+
| Update chroot                                                                |
+------------------------------------------------------------------------------+

Get:1 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ InRelease
Ign:1 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ InRelease
Get:2 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ Release [606 B]
Get:3 http://deb.debian.org/debian sid InRelease [202 kB]
Get:2 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ Release [606 B]
Get:4 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ Release.gpg
Ign:4 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ Release.gpg
Get:5 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ Packages [9246 B]
Get:6 http://deb.debian.org/debian sid/main arm64 Packages [9955 kB]
Get:7 http://deb.debian.org/debian sid/main arm64 Components [4907 kB]
Fetched 15.1 MB in 2s (6407 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
Calculating upgrade...
The following packages will be upgraded:
  apt bsdextrautils bsdutils debianutils dpkg dpkg-dev libapt-pkg6.0t64
  libaudit-common libaudit1 libblkid1 libbrotli1 libcap-ng0 libdpkg-perl
  libglib2.0-0t64 libmarkdown2 libmount1 libpcre2-8-0 libseccomp2 libselinux1
  libsemanage2 libsmartcols1 libsystemd0 libudev1 libuuid1 libxml2 login
  login.defs mount passwd util-linux
30 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 9274 kB/12.8 MB of archives.
After this operation, 603 kB disk space will be freed.
Get:1 http://deb.debian.org/debian sid/main arm64 bsdutils arm64 1:2.40.2-11 [104 kB]
Get:2 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ dpkg 1.22.12~1.gbp82cafd [1513 kB]
Get:3 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ dpkg-dev 1.22.12~1.gbp82cafd [1337 kB]
Get:4 http://deb.debian.org/debian sid/main arm64 debianutils arm64 5.21 [92.1 kB]
Get:5 http://deb.debian.org/debian sid/main arm64 libsystemd0 arm64 257~rc2-3 [416 kB]
Get:6 file:/build/pymatgen-test-files-kvcfXd/resolver-PnpcmN/apt_archive ./ libdpkg-perl 1.22.12~1.gbp82cafd [647 kB]
Get:7 http://deb.debian.org/debian sid/main arm64 libudev1 arm64 257~rc2-3 [139 kB]
Get:8 http://deb.debian.org/debian sid/main arm64 libapt-pkg6.0t64 arm64 2.9.11 [921 kB]
Get:9 http://deb.debian.org/debian sid/main arm64 bsdextrautils arm64 2.40.2-11 [91.2 kB]
Get:10 http://deb.debian.org/debian sid/main arm64 libblkid1 arm64 2.40.2-11 [162 kB]
Get:11 http://deb.debian.org/debian sid/main arm64 libmount1 arm64 2.40.2-11 [190 kB]
Get:12 http://deb.debian.org/debian sid/main arm64 libsmartcols1 arm64 2.40.2-11 [135 kB]
Get:13 http://deb.debian.org/debian sid/main arm64 mount arm64 2.40.2-11 [153 kB]
Get:14 http://deb.debian.org/debian sid/main arm64 libuuid1 arm64 2.40.2-11 [35.7 kB]
Get:15 http://deb.debian.org/debian sid/main arm64 util-linux arm64 2.40.2-11 [1170 kB]
Get:16 http://deb.debian.org/debian sid/main arm64 libpcre2-8-0 arm64 10.44-4 [243 kB]
Get:17 http://deb.debian.org/debian sid/main arm64 libselinux1 arm64 3.7-3+b1 [72.1 kB]
Get:18 http://deb.debian.org/debian sid/main arm64 libseccomp2 arm64 2.5.5-1+b3 [46.8 kB]
Get:19 http://deb.debian.org/debian sid/main arm64 apt arm64 2.9.11 [1287 kB]
Get:20 http://deb.debian.org/debian sid/main arm64 libaudit-common all 1:4.0.2-2 [12.7 kB]
Get:21 http://deb.debian.org/debian sid/main arm64 libcap-ng0 arm64 0.8.5-3+b1 [17.0 kB]
Get:22 http://deb.debian.org/debian sid/main arm64 libaudit1 arm64 1:4.0.2-2 [54.2 kB]
Get:23 http://deb.debian.org/debian sid/main arm64 login arm64 1:4.16.0-2+really2.40.2-11 [80.0 kB]
Get:24 http://deb.debian.org/debian sid/main arm64 login.defs all 1:4.16.0-5 [185 kB]
Get:25 http://deb.debian.org/debian sid/main arm64 libsemanage2 arm64 3.7-2+b1 [84.5 kB]
Get:26 http://deb.debian.org/debian sid/main arm64 passwd arm64 1:4.16.0-5 [1210 kB]
Get:27 http://deb.debian.org/debian sid/main arm64 libbrotli1 arm64 1.1.0-2+b6 [297 kB]
Get:28 http://deb.debian.org/debian sid/main arm64 libglib2.0-0t64 arm64 2.82.2-3 [1411 kB]
Get:29 http://deb.debian.org/debian sid/main arm64 libmarkdown2 arm64 2.2.7-2.1 [33.1 kB]
Get:30 http://deb.debian.org/debian sid/main arm64 libxml2 arm64 2.12.7+dfsg+really2.9.14-0.2+b1 [630 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 9274 kB in 0s (57.4 MB/s)
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17129 files and directories currently installed.)
Preparing to unpack .../bsdutils_1%3a2.40.2-11_arm64.deb ...
Unpacking bsdutils (1:2.40.2-11) over (1:2.40.2-10) ...
Setting up bsdutils (1:2.40.2-11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17129 files and directories currently installed.)
Preparing to unpack .../debianutils_5.21_arm64.deb ...
Unpacking debianutils (5.21) over (5.20+b1) ...
Setting up debianutils (5.21) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17128 files and directories currently installed.)
Preparing to unpack .../libsystemd0_257~rc2-3_arm64.deb ...
Unpacking libsystemd0:arm64 (257~rc2-3) over (257~rc1-4) ...
Setting up libsystemd0:arm64 (257~rc2-3) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17128 files and directories currently installed.)
Preparing to unpack .../libudev1_257~rc2-3_arm64.deb ...
Unpacking libudev1:arm64 (257~rc2-3) over (257~rc1-4) ...
Setting up libudev1:arm64 (257~rc2-3) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17128 files and directories currently installed.)
Preparing to unpack .../libapt-pkg6.0t64_2.9.11_arm64.deb ...
Unpacking libapt-pkg6.0t64:arm64 (2.9.11) over (2.9.10) ...
Setting up libapt-pkg6.0t64:arm64 (2.9.11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17128 files and directories currently installed.)
Preparing to unpack .../dpkg_1.22.12~1.gbp82cafd_arm64.deb ...
Unpacking dpkg (1.22.12~1.gbp82cafd) over (1.22.11) ...
Setting up dpkg (1.22.12~1.gbp82cafd) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17127 files and directories currently installed.)
Preparing to unpack .../bsdextrautils_2.40.2-11_arm64.deb ...
Unpacking bsdextrautils (2.40.2-11) over (2.40.2-10) ...
Preparing to unpack .../libblkid1_2.40.2-11_arm64.deb ...
Unpacking libblkid1:arm64 (2.40.2-11) over (2.40.2-10) ...
Setting up libblkid1:arm64 (2.40.2-11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17123 files and directories currently installed.)
Preparing to unpack .../libmount1_2.40.2-11_arm64.deb ...
Unpacking libmount1:arm64 (2.40.2-11) over (2.40.2-10) ...
Setting up libmount1:arm64 (2.40.2-11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17123 files and directories currently installed.)
Preparing to unpack .../libsmartcols1_2.40.2-11_arm64.deb ...
Unpacking libsmartcols1:arm64 (2.40.2-11) over (2.40.2-10) ...
Setting up libsmartcols1:arm64 (2.40.2-11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17123 files and directories currently installed.)
Preparing to unpack .../mount_2.40.2-11_arm64.deb ...
Unpacking mount (2.40.2-11) over (2.40.2-10) ...
Preparing to unpack .../libuuid1_2.40.2-11_arm64.deb ...
Unpacking libuuid1:arm64 (2.40.2-11) over (2.40.2-10) ...
Setting up libuuid1:arm64 (2.40.2-11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17123 files and directories currently installed.)
Preparing to unpack .../util-linux_2.40.2-11_arm64.deb ...
Unpacking util-linux (2.40.2-11) over (2.40.2-10) ...
Setting up util-linux (2.40.2-11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17120 files and directories currently installed.)
Preparing to unpack .../libpcre2-8-0_10.44-4_arm64.deb ...
Unpacking libpcre2-8-0:arm64 (10.44-4) over (10.42-4+b2) ...
Setting up libpcre2-8-0:arm64 (10.44-4) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17119 files and directories currently installed.)
Preparing to unpack .../libselinux1_3.7-3+b1_arm64.deb ...
Unpacking libselinux1:arm64 (3.7-3+b1) over (3.7-3) ...
Setting up libselinux1:arm64 (3.7-3+b1) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17120 files and directories currently installed.)
Preparing to unpack .../libseccomp2_2.5.5-1+b3_arm64.deb ...
Unpacking libseccomp2:arm64 (2.5.5-1+b3) over (2.5.5-1+b2) ...
Setting up libseccomp2:arm64 (2.5.5-1+b3) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17120 files and directories currently installed.)
Preparing to unpack .../archives/apt_2.9.11_arm64.deb ...
Unpacking apt (2.9.11) over (2.9.10) ...
Setting up apt (2.9.11) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17117 files and directories currently installed.)
Preparing to unpack .../libaudit-common_1%3a4.0.2-2_all.deb ...
Unpacking libaudit-common (1:4.0.2-2) over (1:4.0.1-3) ...
Setting up libaudit-common (1:4.0.2-2) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17117 files and directories currently installed.)
Preparing to unpack .../libcap-ng0_0.8.5-3+b1_arm64.deb ...
Unpacking libcap-ng0:arm64 (0.8.5-3+b1) over (0.8.5-3) ...
Setting up libcap-ng0:arm64 (0.8.5-3+b1) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17118 files and directories currently installed.)
Preparing to unpack .../libaudit1_1%3a4.0.2-2_arm64.deb ...
Unpacking libaudit1:arm64 (1:4.0.2-2) over (1:4.0.1-3) ...
Setting up libaudit1:arm64 (1:4.0.2-2) ...
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 17118 files and directories currently installed.)
Preparing to unpack .../0-login_1%3a4.16.0-2+really2.40.2-11_arm64.deb ...
Unpacking login (1:4.16.0-2+really2.40.2-11) over (1:4.16.0-2+really2.40.2-10) ...
Preparing to unpack .../1-login.defs_1%3a4.16.0-5_all.deb ...
Unpacking login.defs (1:4.16.0-5) over (1:4.16.0-4) ...
Preparing to unpack .../2-libsemanage2_3.7-2+b1_arm64.deb ...
Unpacking libsemanage2:arm64 (3.7-2+b1) over (3.7-2) ...
Preparing to unpack .../3-passwd_1%3a4.16.0-5_arm64.deb ...
Unpacking passwd (1:4.16.0-5) over (1:4.16.0-4) ...
Preparing to unpack .../4-dpkg-dev_1.22.12~1.gbp82cafd_all.deb ...
Unpacking dpkg-dev (1.22.12~1.gbp82cafd) over (1.22.11) ...
Preparing to unpack .../5-libdpkg-perl_1.22.12~1.gbp82cafd_all.deb ...
Unpacking libdpkg-perl (1.22.12~1.gbp82cafd) over (1.22.11) ...
Preparing to unpack .../6-libbrotli1_1.1.0-2+b6_arm64.deb ...
Unpacking libbrotli1:arm64 (1.1.0-2+b6) over (1.1.0-2+b5) ...
Preparing to unpack .../7-libglib2.0-0t64_2.82.2-3_arm64.deb ...
Unpacking libglib2.0-0t64:arm64 (2.82.2-3) over (2.82.2-2) ...
Preparing to unpack .../8-libmarkdown2_2.2.7-2.1_arm64.deb ...
Unpacking libmarkdown2:arm64 (2.2.7-2.1) over (2.2.7-2+b1) ...
Preparing to unpack .../9-libxml2_2.12.7+dfsg+really2.9.14-0.2+b1_arm64.deb ...
Unpacking libxml2:arm64 (2.12.7+dfsg+really2.9.14-0.2+b1) over (2.12.7+dfsg+really2.9.14-0.1) ...
Setting up bsdextrautils (2.40.2-11) ...
Setting up login.defs (1:4.16.0-5) ...
Installing new version of config file /etc/login.defs ...
Setting up libbrotli1:arm64 (1.1.0-2+b6) ...
Setting up libglib2.0-0t64:arm64 (2.82.2-3) ...
No schema files found: doing nothing.
Setting up libdpkg-perl (1.22.12~1.gbp82cafd) ...
Setting up mount (2.40.2-11) ...
Setting up libsemanage2:arm64 (3.7-2+b1) ...
Setting up libxml2:arm64 (2.12.7+dfsg+really2.9.14-0.2+b1) ...
Setting up libmarkdown2:arm64 (2.2.7-2.1) ...
Setting up login (1:4.16.0-2+really2.40.2-11) ...
Setting up dpkg-dev (1.22.12~1.gbp82cafd) ...
Setting up passwd (1:4.16.0-5) ...
Processing triggers for man-db (2.13.0-1) ...
Processing triggers for libc-bin (2.40-3) ...

+------------------------------------------------------------------------------+
| Fetch source files                                                           |
+------------------------------------------------------------------------------+


Local sources
-------------

/tmp/debusine-fetch-exec-upload-r7uq8agt/pymatgen-test-files_2024.10.29-1.dsc exists in /tmp/debusine-fetch-exec-upload-r7uq8agt; copying to chroot
I: NOTICE: Log filtering will replace 'build/pymatgen-test-files-kvcfXd/pymatgen-test-files-2024.10.29' with '<<PKGBUILDDIR>>'
I: NOTICE: Log filtering will replace 'build/pymatgen-test-files-kvcfXd' with '<<BUILDDIR>>'

+------------------------------------------------------------------------------+
| Install package build dependencies                                           |
+------------------------------------------------------------------------------+


Setup apt archive
-----------------

Merged Build-Depends: debhelper-compat (= 13), build-essential, fakeroot
Filtered Build-Depends: debhelper-compat (= 13), build-essential, fakeroot
dpkg-deb: warning: root directory has unusual owner or group 998:999.
Hint: either pass --root-owner-group, see dpkg-build-api(7) or add an explicit 'Rules-Requires-Root: no' in debian/control.
dpkg-deb: warning: ignoring 1 warning about the control file(s)
dpkg-deb: building package 'sbuild-build-depends-main-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-main-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [609 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [617 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [649 B]
Fetched 1875 B in 0s (140 kB/s)
Reading package lists...
Get:1 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ InRelease
Ign:1 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ InRelease
Get:2 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release [606 B]
Get:2 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release [606 B]
Get:3 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release.gpg
Ign:3 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release.gpg
Reading package lists...
Reading package lists...

Install main build dependencies (apt-based resolver)
----------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
  autoconf automake autopoint autotools-dev build-essential cpp cpp-14
  cpp-14-aarch64-linux-gnu cpp-aarch64-linux-gnu debhelper dh-autoreconf
  dh-strip-nondeterminism dwz fakeroot g++ g++-14 g++-14-aarch64-linux-gnu
  g++-aarch64-linux-gnu gcc gcc-14 gcc-14-aarch64-linux-gnu
  gcc-aarch64-linux-gnu libasan8 libc-dev-bin libc6-dev libcc1-0 libcrypt-dev
  libdebhelper-perl libelf1t64 libfakeroot libfile-stripnondeterminism-perl
  libgcc-14-dev libhwasan0 libisl23 libitm1 liblsan0 libmpc3 libmpfr6
  libstdc++-14-dev libtool libtsan2 libubsan1 linux-libc-dev m4 po-debconf
  rpcsvc-proto
Suggested packages:
  autoconf-archive gnu-standards autoconf-doc cpp-doc gcc-14-locales
  cpp-14-doc dh-make gcc-14-doc gcc-multilib manpages-dev flex bison gdb
  gcc-doc gdb-aarch64-linux-gnu libc-devtools glibc-doc libstdc++-14-doc
  libtool-doc gfortran | fortran95-compiler gcj-jdk m4-doc libmail-box-perl
Recommended packages:
  manpages manpages-dev libarchive-cpio-perl libltdl-dev libmail-sendmail-perl
The following NEW packages will be installed:
  autoconf automake autopoint autotools-dev build-essential cpp cpp-14
  cpp-14-aarch64-linux-gnu cpp-aarch64-linux-gnu debhelper dh-autoreconf
  dh-strip-nondeterminism dwz fakeroot g++ g++-14 g++-14-aarch64-linux-gnu
  g++-aarch64-linux-gnu gcc gcc-14 gcc-14-aarch64-linux-gnu
  gcc-aarch64-linux-gnu libasan8 libc-dev-bin libc6-dev libcc1-0 libcrypt-dev
  libdebhelper-perl libelf1t64 libfakeroot libfile-stripnondeterminism-perl
  libgcc-14-dev libhwasan0 libisl23 libitm1 liblsan0 libmpc3 libmpfr6
  libstdc++-14-dev libtool libtsan2 libubsan1 linux-libc-dev m4 po-debconf
  rpcsvc-proto sbuild-build-depends-main-dummy
0 upgraded, 47 newly installed, 0 to remove and 0 not upgraded.
Need to get 61.0 MB of archives.
After this operation, 238 MB of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-main-dummy 0.invalid.0 [884 B]
Get:2 http://deb.debian.org/debian sid/main arm64 m4 arm64 1.4.19-4 [277 kB]
Get:3 http://deb.debian.org/debian sid/main arm64 autoconf all 2.72-3 [493 kB]
Get:4 http://deb.debian.org/debian sid/main arm64 autotools-dev all 20220109.1 [51.6 kB]
Get:5 http://deb.debian.org/debian sid/main arm64 automake all 1:1.16.5-1.3 [823 kB]
Get:6 http://deb.debian.org/debian sid/main arm64 autopoint all 0.22.5-2 [723 kB]
Get:7 http://deb.debian.org/debian sid/main arm64 libc-dev-bin arm64 2.40-3 [50.9 kB]
Get:8 http://deb.debian.org/debian sid/main arm64 linux-libc-dev all 6.11.7-1 [2454 kB]
Get:9 http://deb.debian.org/debian sid/main arm64 libcrypt-dev arm64 1:4.4.36-5 [122 kB]
Get:10 http://deb.debian.org/debian sid/main arm64 rpcsvc-proto arm64 1.4.3-1+b1 [60.5 kB]
Get:11 http://deb.debian.org/debian sid/main arm64 libc6-dev arm64 2.40-3 [1591 kB]
Get:12 http://deb.debian.org/debian sid/main arm64 libisl23 arm64 0.27-1 [601 kB]
Get:13 http://deb.debian.org/debian sid/main arm64 libmpfr6 arm64 4.2.1-1+b2 [680 kB]
Get:14 http://deb.debian.org/debian sid/main arm64 libmpc3 arm64 1.3.1-1+b3 [50.5 kB]
Get:15 http://deb.debian.org/debian sid/main arm64 cpp-14-aarch64-linux-gnu arm64 14.2.0-8 [9166 kB]
Get:16 http://deb.debian.org/debian sid/main arm64 cpp-14 arm64 14.2.0-8 [1284 B]
Get:17 http://deb.debian.org/debian sid/main arm64 cpp-aarch64-linux-gnu arm64 4:14.2.0-1 [4832 B]
Get:18 http://deb.debian.org/debian sid/main arm64 cpp arm64 4:14.2.0-1 [1568 B]
Get:19 http://deb.debian.org/debian sid/main arm64 libcc1-0 arm64 14.2.0-8 [42.2 kB]
Get:20 http://deb.debian.org/debian sid/main arm64 libitm1 arm64 14.2.0-8 [24.2 kB]
Get:21 http://deb.debian.org/debian sid/main arm64 libasan8 arm64 14.2.0-8 [2579 kB]
Get:22 http://deb.debian.org/debian sid/main arm64 liblsan0 arm64 14.2.0-8 [1161 kB]
Get:23 http://deb.debian.org/debian sid/main arm64 libtsan2 arm64 14.2.0-8 [2386 kB]
Get:24 http://deb.debian.org/debian sid/main arm64 libubsan1 arm64 14.2.0-8 [1039 kB]
Get:25 http://deb.debian.org/debian sid/main arm64 libhwasan0 arm64 14.2.0-8 [1442 kB]
Get:26 http://deb.debian.org/debian sid/main arm64 libgcc-14-dev arm64 14.2.0-8 [2365 kB]
Get:27 http://deb.debian.org/debian sid/main arm64 gcc-14-aarch64-linux-gnu arm64 14.2.0-8 [17.7 MB]
Get:28 http://deb.debian.org/debian sid/main arm64 gcc-14 arm64 14.2.0-8 [519 kB]
Get:29 http://deb.debian.org/debian sid/main arm64 gcc-aarch64-linux-gnu arm64 4:14.2.0-1 [1440 B]
Get:30 http://deb.debian.org/debian sid/main arm64 gcc arm64 4:14.2.0-1 [5136 B]
Get:31 http://deb.debian.org/debian sid/main arm64 libstdc++-14-dev arm64 14.2.0-8 [2267 kB]
Get:32 http://deb.debian.org/debian sid/main arm64 g++-14-aarch64-linux-gnu arm64 14.2.0-8 [10.1 MB]
Get:33 http://deb.debian.org/debian sid/main arm64 g++-14 arm64 14.2.0-8 [20.2 kB]
Get:34 http://deb.debian.org/debian sid/main arm64 g++-aarch64-linux-gnu arm64 4:14.2.0-1 [1200 B]
Get:35 http://deb.debian.org/debian sid/main arm64 g++ arm64 4:14.2.0-1 [1332 B]
Get:36 http://deb.debian.org/debian sid/main arm64 build-essential arm64 12.12 [4624 B]
Get:37 http://deb.debian.org/debian sid/main arm64 libdebhelper-perl all 13.20 [89.7 kB]
Get:38 http://deb.debian.org/debian sid/main arm64 libtool all 2.4.7-8 [517 kB]
Get:39 http://deb.debian.org/debian sid/main arm64 dh-autoreconf all 20 [17.1 kB]
Get:40 http://deb.debian.org/debian sid/main arm64 libfile-stripnondeterminism-perl all 1.14.0-1 [19.5 kB]
Get:41 http://deb.debian.org/debian sid/main arm64 dh-strip-nondeterminism all 1.14.0-1 [8448 B]
Get:42 http://deb.debian.org/debian sid/main arm64 libelf1t64 arm64 0.192-4 [189 kB]
Get:43 http://deb.debian.org/debian sid/main arm64 dwz arm64 0.15-1+b1 [102 kB]
Get:44 http://deb.debian.org/debian sid/main arm64 po-debconf all 1.0.21+nmu1 [248 kB]
Get:45 http://deb.debian.org/debian sid/main arm64 debhelper all 13.20 [915 kB]
Get:46 http://deb.debian.org/debian sid/main arm64 libfakeroot arm64 1.36-1 [29.1 kB]
Get:47 http://deb.debian.org/debian sid/main arm64 fakeroot arm64 1.36-1 [74.4 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 61.0 MB in 1s (102 MB/s)
Selecting previously unselected package m4.
(Reading database ... 17119 files and directories currently installed.)
Preparing to unpack .../00-m4_1.4.19-4_arm64.deb ...
Unpacking m4 (1.4.19-4) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../01-autoconf_2.72-3_all.deb ...
Unpacking autoconf (2.72-3) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../02-autotools-dev_20220109.1_all.deb ...
Unpacking autotools-dev (20220109.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../03-automake_1%3a1.16.5-1.3_all.deb ...
Unpacking automake (1:1.16.5-1.3) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../04-autopoint_0.22.5-2_all.deb ...
Unpacking autopoint (0.22.5-2) ...
Selecting previously unselected package libc-dev-bin.
Preparing to unpack .../05-libc-dev-bin_2.40-3_arm64.deb ...
Unpacking libc-dev-bin (2.40-3) ...
Selecting previously unselected package linux-libc-dev.
Preparing to unpack .../06-linux-libc-dev_6.11.7-1_all.deb ...
Unpacking linux-libc-dev (6.11.7-1) ...
Selecting previously unselected package libcrypt-dev:arm64.
Preparing to unpack .../07-libcrypt-dev_1%3a4.4.36-5_arm64.deb ...
Unpacking libcrypt-dev:arm64 (1:4.4.36-5) ...
Selecting previously unselected package rpcsvc-proto.
Preparing to unpack .../08-rpcsvc-proto_1.4.3-1+b1_arm64.deb ...
Unpacking rpcsvc-proto (1.4.3-1+b1) ...
Selecting previously unselected package libc6-dev:arm64.
Preparing to unpack .../09-libc6-dev_2.40-3_arm64.deb ...
Unpacking libc6-dev:arm64 (2.40-3) ...
Selecting previously unselected package libisl23:arm64.
Preparing to unpack .../10-libisl23_0.27-1_arm64.deb ...
Unpacking libisl23:arm64 (0.27-1) ...
Selecting previously unselected package libmpfr6:arm64.
Preparing to unpack .../11-libmpfr6_4.2.1-1+b2_arm64.deb ...
Unpacking libmpfr6:arm64 (4.2.1-1+b2) ...
Selecting previously unselected package libmpc3:arm64.
Preparing to unpack .../12-libmpc3_1.3.1-1+b3_arm64.deb ...
Unpacking libmpc3:arm64 (1.3.1-1+b3) ...
Selecting previously unselected package cpp-14-aarch64-linux-gnu.
Preparing to unpack .../13-cpp-14-aarch64-linux-gnu_14.2.0-8_arm64.deb ...
Unpacking cpp-14-aarch64-linux-gnu (14.2.0-8) ...
Selecting previously unselected package cpp-14.
Preparing to unpack .../14-cpp-14_14.2.0-8_arm64.deb ...
Unpacking cpp-14 (14.2.0-8) ...
Selecting previously unselected package cpp-aarch64-linux-gnu.
Preparing to unpack .../15-cpp-aarch64-linux-gnu_4%3a14.2.0-1_arm64.deb ...
Unpacking cpp-aarch64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package cpp.
Preparing to unpack .../16-cpp_4%3a14.2.0-1_arm64.deb ...
Unpacking cpp (4:14.2.0-1) ...
Selecting previously unselected package libcc1-0:arm64.
Preparing to unpack .../17-libcc1-0_14.2.0-8_arm64.deb ...
Unpacking libcc1-0:arm64 (14.2.0-8) ...
Selecting previously unselected package libitm1:arm64.
Preparing to unpack .../18-libitm1_14.2.0-8_arm64.deb ...
Unpacking libitm1:arm64 (14.2.0-8) ...
Selecting previously unselected package libasan8:arm64.
Preparing to unpack .../19-libasan8_14.2.0-8_arm64.deb ...
Unpacking libasan8:arm64 (14.2.0-8) ...
Selecting previously unselected package liblsan0:arm64.
Preparing to unpack .../20-liblsan0_14.2.0-8_arm64.deb ...
Unpacking liblsan0:arm64 (14.2.0-8) ...
Selecting previously unselected package libtsan2:arm64.
Preparing to unpack .../21-libtsan2_14.2.0-8_arm64.deb ...
Unpacking libtsan2:arm64 (14.2.0-8) ...
Selecting previously unselected package libubsan1:arm64.
Preparing to unpack .../22-libubsan1_14.2.0-8_arm64.deb ...
Unpacking libubsan1:arm64 (14.2.0-8) ...
Selecting previously unselected package libhwasan0:arm64.
Preparing to unpack .../23-libhwasan0_14.2.0-8_arm64.deb ...
Unpacking libhwasan0:arm64 (14.2.0-8) ...
Selecting previously unselected package libgcc-14-dev:arm64.
Preparing to unpack .../24-libgcc-14-dev_14.2.0-8_arm64.deb ...
Unpacking libgcc-14-dev:arm64 (14.2.0-8) ...
Selecting previously unselected package gcc-14-aarch64-linux-gnu.
Preparing to unpack .../25-gcc-14-aarch64-linux-gnu_14.2.0-8_arm64.deb ...
Unpacking gcc-14-aarch64-linux-gnu (14.2.0-8) ...
Selecting previously unselected package gcc-14.
Preparing to unpack .../26-gcc-14_14.2.0-8_arm64.deb ...
Unpacking gcc-14 (14.2.0-8) ...
Selecting previously unselected package gcc-aarch64-linux-gnu.
Preparing to unpack .../27-gcc-aarch64-linux-gnu_4%3a14.2.0-1_arm64.deb ...
Unpacking gcc-aarch64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package gcc.
Preparing to unpack .../28-gcc_4%3a14.2.0-1_arm64.deb ...
Unpacking gcc (4:14.2.0-1) ...
Selecting previously unselected package libstdc++-14-dev:arm64.
Preparing to unpack .../29-libstdc++-14-dev_14.2.0-8_arm64.deb ...
Unpacking libstdc++-14-dev:arm64 (14.2.0-8) ...
Selecting previously unselected package g++-14-aarch64-linux-gnu.
Preparing to unpack .../30-g++-14-aarch64-linux-gnu_14.2.0-8_arm64.deb ...
Unpacking g++-14-aarch64-linux-gnu (14.2.0-8) ...
Selecting previously unselected package g++-14.
Preparing to unpack .../31-g++-14_14.2.0-8_arm64.deb ...
Unpacking g++-14 (14.2.0-8) ...
Selecting previously unselected package g++-aarch64-linux-gnu.
Preparing to unpack .../32-g++-aarch64-linux-gnu_4%3a14.2.0-1_arm64.deb ...
Unpacking g++-aarch64-linux-gnu (4:14.2.0-1) ...
Selecting previously unselected package g++.
Preparing to unpack .../33-g++_4%3a14.2.0-1_arm64.deb ...
Unpacking g++ (4:14.2.0-1) ...
Selecting previously unselected package build-essential.
Preparing to unpack .../34-build-essential_12.12_arm64.deb ...
Unpacking build-essential (12.12) ...
Selecting previously unselected package libdebhelper-perl.
Preparing to unpack .../35-libdebhelper-perl_13.20_all.deb ...
Unpacking libdebhelper-perl (13.20) ...
Selecting previously unselected package libtool.
Preparing to unpack .../36-libtool_2.4.7-8_all.deb ...
Unpacking libtool (2.4.7-8) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../37-dh-autoreconf_20_all.deb ...
Unpacking dh-autoreconf (20) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../38-libfile-stripnondeterminism-perl_1.14.0-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (1.14.0-1) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../39-dh-strip-nondeterminism_1.14.0-1_all.deb ...
Unpacking dh-strip-nondeterminism (1.14.0-1) ...
Selecting previously unselected package libelf1t64:arm64.
Preparing to unpack .../40-libelf1t64_0.192-4_arm64.deb ...
Unpacking libelf1t64:arm64 (0.192-4) ...
Selecting previously unselected package dwz.
Preparing to unpack .../41-dwz_0.15-1+b1_arm64.deb ...
Unpacking dwz (0.15-1+b1) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../42-po-debconf_1.0.21+nmu1_all.deb ...
Unpacking po-debconf (1.0.21+nmu1) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../43-debhelper_13.20_all.deb ...
Unpacking debhelper (13.20) ...
Selecting previously unselected package libfakeroot:arm64.
Preparing to unpack .../44-libfakeroot_1.36-1_arm64.deb ...
Unpacking libfakeroot:arm64 (1.36-1) ...
Selecting previously unselected package fakeroot.
Preparing to unpack .../45-fakeroot_1.36-1_arm64.deb ...
Unpacking fakeroot (1.36-1) ...
Selecting previously unselected package sbuild-build-depends-main-dummy.
Preparing to unpack .../46-sbuild-build-depends-main-dummy_0.invalid.0_arm64.deb ...
Unpacking sbuild-build-depends-main-dummy (0.invalid.0) ...
Setting up libfile-stripnondeterminism-perl (1.14.0-1) ...
Setting up po-debconf (1.0.21+nmu1) ...
Setting up libdebhelper-perl (13.20) ...
Setting up linux-libc-dev (6.11.7-1) ...
Setting up m4 (1.4.19-4) ...
Setting up libfakeroot:arm64 (1.36-1) ...
Setting up libelf1t64:arm64 (0.192-4) ...
Setting up fakeroot (1.36-1) ...
update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
Setting up autotools-dev (20220109.1) ...
Setting up rpcsvc-proto (1.4.3-1+b1) ...
Setting up libmpfr6:arm64 (4.2.1-1+b2) ...
Setting up libmpc3:arm64 (1.3.1-1+b3) ...
Setting up autopoint (0.22.5-2) ...
Setting up autoconf (2.72-3) ...
Setting up libubsan1:arm64 (14.2.0-8) ...
Setting up dh-strip-nondeterminism (1.14.0-1) ...
Setting up dwz (0.15-1+b1) ...
Setting up libhwasan0:arm64 (14.2.0-8) ...
Setting up libcrypt-dev:arm64 (1:4.4.36-5) ...
Setting up libasan8:arm64 (14.2.0-8) ...
Setting up libtsan2:arm64 (14.2.0-8) ...
Setting up libisl23:arm64 (0.27-1) ...
Setting up libc-dev-bin (2.40-3) ...
Setting up libcc1-0:arm64 (14.2.0-8) ...
Setting up liblsan0:arm64 (14.2.0-8) ...
Setting up libitm1:arm64 (14.2.0-8) ...
Setting up automake (1:1.16.5-1.3) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up cpp-14-aarch64-linux-gnu (14.2.0-8) ...
Setting up libc6-dev:arm64 (2.40-3) ...
Setting up libgcc-14-dev:arm64 (14.2.0-8) ...
Setting up libstdc++-14-dev:arm64 (14.2.0-8) ...
Setting up cpp-aarch64-linux-gnu (4:14.2.0-1) ...
Setting up cpp-14 (14.2.0-8) ...
Setting up cpp (4:14.2.0-1) ...
Setting up gcc-14-aarch64-linux-gnu (14.2.0-8) ...
Setting up gcc-aarch64-linux-gnu (4:14.2.0-1) ...
Setting up g++-14-aarch64-linux-gnu (14.2.0-8) ...
Setting up gcc-14 (14.2.0-8) ...
Setting up g++-aarch64-linux-gnu (4:14.2.0-1) ...
Setting up g++-14 (14.2.0-8) ...
Setting up libtool (2.4.7-8) ...
Setting up gcc (4:14.2.0-1) ...
Setting up dh-autoreconf (20) ...
Setting up g++ (4:14.2.0-1) ...
update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode
Setting up build-essential (12.12) ...
Setting up debhelper (13.20) ...
Setting up sbuild-build-depends-main-dummy (0.invalid.0) ...
Processing triggers for man-db (2.13.0-1) ...
Processing triggers for libc-bin (2.40-3) ...

+------------------------------------------------------------------------------+
| Check architectures                                                          |
+------------------------------------------------------------------------------+

Arch check ok (arm64 included in all)

+------------------------------------------------------------------------------+
| Build environment                                                            |
+------------------------------------------------------------------------------+

Kernel: Linux 6.1.0-27-cloud-arm64 #1 SMP Debian 6.1.115-1 (2024-11-01) arm64 (aarch64)
Toolchain package versions: binutils_2.43.1-5 dpkg-dev_1.22.12~1.gbp82cafd g++-14_14.2.0-8 gcc-14_14.2.0-8 libc6-dev_2.40-3 libstdc++-14-dev_14.2.0-8 libstdc++6_14.2.0-8 linux-libc-dev_6.11.7-1
Package versions: appstream_1.0.3-1+b1 apt_2.9.11 autoconf_2.72-3 automake_1:1.16.5-1.3 autopoint_0.22.5-2 autotools-dev_20220109.1 base-files_13.5 base-passwd_3.6.5 bash_5.2.32-1+b2 binutils_2.43.1-5 binutils-aarch64-linux-gnu_2.43.1-5 binutils-common_2.43.1-5 bsdextrautils_2.40.2-11 bsdutils_1:2.40.2-11 build-essential_12.12 bzip2_1.0.8-6 ca-certificates_20240203 coreutils_9.5-1+b1 cpp_4:14.2.0-1 cpp-14_14.2.0-8 cpp-14-aarch64-linux-gnu_14.2.0-8 cpp-aarch64-linux-gnu_4:14.2.0-1 dash_0.5.12-9+b1 debconf_1.5.87 debhelper_13.20 debian-archive-keyring_2023.4 debianutils_5.21 dh-autoreconf_20 dh-strip-nondeterminism_1.14.0-1 diffstat_1.66-1+b1 diffutils_1:3.10-1+b1 dpkg_1.22.12~1.gbp82cafd dpkg-dev_1.22.12~1.gbp82cafd dwz_0.15-1+b1 e2fsprogs_1.47.1-1+b1 fakeroot_1.36-1 file_1:5.45-3+b1 findutils_4.10.0-3 g++_4:14.2.0-1 g++-14_14.2.0-8 g++-14-aarch64-linux-gnu_14.2.0-8 g++-aarch64-linux-gnu_4:14.2.0-1 gcc_4:14.2.0-1 gcc-14_14.2.0-8 gcc-14-aarch64-linux-gnu_14.2.0-8 gcc-14-base_14.2.0-8 gcc-aarch64-linux-gnu_4:14.2.0-1 gettext_0.22.5-2 gettext-base_0.22.5-2 gpg_2.2.45-2 gpgconf_2.2.45-2 gpgv_2.2.45-2 grep_3.11-4+b1 groff-base_1.23.0-5 gzip_1.12-1.1+b1 hostname_3.25 init-system-helpers_1.67 intltool-debian_0.35.0+20060710.6 iso-codes_4.17.0-1 libacl1_2.3.2-2+b1 libaliased-perl_0.34-3 libappstream5_1.0.3-1+b1 libapt-pkg-perl_0.1.40+b6 libapt-pkg6.0t64_2.9.11 libarchive-zip-perl_1.68-1 libasan8_14.2.0-8 libassuan9_3.0.1-2 libatomic1_14.2.0-8 libattr1_1:2.5.2-2 libaudit-common_1:4.0.2-2 libaudit1_1:4.0.2-2 libb-hooks-endofscope-perl_0.28-1 libb-hooks-op-check-perl_0.22-3+b2 libberkeleydb-perl_0.66-1 libbinutils_2.43.1-5 libblkid1_2.40.2-11 libbrotli1_1.1.0-2+b6 libbsd0_0.12.2-2 libbz2-1.0_1.0.8-6 libc-bin_2.40-3 libc-dev-bin_2.40-3 libc6_2.40-3 libc6-dev_2.40-3 libcap-ng0_0.8.5-3+b1 libcap2_1:2.66-5+b1 libcapture-tiny-perl_0.48-2 libcc1-0_14.2.0-8 libcgi-pm-perl_4.66-1 libclass-data-inheritable-perl_0.10-1 libclass-inspector-perl_1.36-3 libclass-method-modifiers-perl_2.15-1 libclass-xsaccessor-perl_1.19-4+b4 libclone-perl_0.47-1+b1 libcom-err2_1.47.1-1+b1 libconfig-tiny-perl_2.30-1 libconst-fast-perl_0.014-2 libcpanel-json-xs-perl_4.38-1+b1 libcrypt-dev_1:4.4.36-5 libcrypt1_1:4.4.36-5 libctf-nobfd0_2.43.1-5 libctf0_2.43.1-5 libcurl3t64-gnutls_8.11.0-1 libdata-dpath-perl_0.60-1 libdata-messagepack-perl_1.02-1+b4 libdata-optlist-perl_0.114-1 libdata-validate-domain-perl_0.15-1 libdata-validate-ip-perl_0.31-1 libdata-validate-uri-perl_0.07-3 libdb5.3t64_5.3.28+dfsg2-9 libdebconfclient0_0.273 libdebhelper-perl_13.20 libdevel-callchecker-perl_0.009-1+b1 libdevel-size-perl_0.84-1+b1 libdevel-stacktrace-perl_2.0500-1 libdpkg-perl_1.22.12~1.gbp82cafd libdynaloader-functions-perl_0.004-1 libelf1t64_0.192-4 libemail-address-xs-perl_1.05-1+b4 libencode-locale-perl_1.05-3 libexception-class-perl_1.45-1 libext2fs2t64_1.47.1-1+b1 libfakeroot_1.36-1 libffi8_3.4.6-1 libfile-basedir-perl_0.09-2 libfile-find-rule-perl_0.34-3 libfile-listing-perl_6.16-1 libfile-sharedir-perl_1.118-3 libfile-stripnondeterminism-perl_1.14.0-1 libfont-ttf-perl_1.06-2 libgcc-14-dev_14.2.0-8 libgcc-s1_14.2.0-8 libgcrypt20_1.11.0-6 libgdbm-compat4t64_1.24-2 libgdbm6t64_1.24-2 libglib2.0-0t64_2.82.2-3 libgmp10_2:6.3.0+dfsg-2+b2 libgnutls30t64_3.8.8-2 libgomp1_14.2.0-8 libgpg-error0_1.50-4 libgprofng0_2.43.1-5 libgssapi-krb5-2_1.21.3-3 libhogweed6t64_3.10-1+b1 libhtml-form-perl_6.12-1 libhtml-html5-entities-perl_0.004-3 libhtml-parser-perl_3.83-1+b1 libhtml-tagset-perl_3.24-1 libhtml-tokeparser-simple-perl_3.16-4 libhtml-tree-perl_5.07-3 libhttp-cookies-perl_6.11-1 libhttp-date-perl_6.06-1 libhttp-message-perl_7.00-2 libhttp-negotiate-perl_6.01-2 libhwasan0_14.2.0-8 libicu72_72.1-5+b1 libidn2-0_2.3.7-2+b1 libimport-into-perl_1.002005-2 libio-html-perl_1.004-3 libio-interactive-perl_1.025-1 libio-socket-ssl-perl_2.089-1 libio-string-perl_1.08-4 libipc-run3-perl_0.049-1 libipc-system-simple-perl_1.30-2 libisl23_0.27-1 libiterator-perl_0.03+ds1-2 libiterator-util-perl_0.02+ds1-2 libitm1_14.2.0-8 libjansson4_2.14-2+b3 libjson-maybexs-perl_1.004008-1 libk5crypto3_1.21.3-3 libkeyutils1_1.6.3-4 libkrb5-3_1.21.3-3 libkrb5support0_1.21.3-3 libldap-2.5-0_2.5.18+dfsg-3+b1 liblist-compare-perl_0.55-2 liblist-someutils-perl_0.59-1 liblist-utilsby-perl_0.12-2 liblsan0_14.2.0-8 liblwp-mediatypes-perl_6.04-2 liblwp-protocol-https-perl_6.14-1 liblz1_1.15~pre2-1 liblz4-1_1.9.4-3+b1 liblzma5_5.6.3-1+b1 liblzo2-2_2.10-3+b1 libmagic-mgc_1:5.45-3+b1 libmagic1t64_1:5.45-3+b1 libmarkdown2_2.2.7-2.1 libmd0_1.1.0-2+b1 libmldbm-perl_2.05-4 libmodule-implementation-perl_0.09-2 libmodule-runtime-perl_0.016-2 libmoo-perl_2.005005-1 libmoox-aliases-perl_0.001006-2 libmount1_2.40.2-11 libmouse-perl_2.5.11-1+b1 libmpc3_1.3.1-1+b3 libmpfr6_4.2.1-1+b2 libnamespace-clean-perl_0.27-2 libnet-domain-tld-perl_1.75-4 libnet-http-perl_6.23-1 libnet-ipv6addr-perl_1.02-1 libnet-netmask-perl_2.0002-2 libnet-ssleay-perl_1.94-2 libnetaddr-ip-perl_4.079+dfsg-2+b4 libnettle8t64_3.10-1+b1 libnghttp2-14_1.64.0-1 libnghttp3-9_1.4.0-1+b1 libngtcp2-16_1.6.0-1 libngtcp2-crypto-gnutls8_1.6.0-1 libnumber-compare-perl_0.03-3 libp11-kit0_0.25.5-2+b1 libpackage-stash-perl_0.40-1 libpam-modules_1.5.3-7+b1 libpam-modules-bin_1.5.3-7+b1 libpam-runtime_1.5.3-7 libpam0g_1.5.3-7+b1 libparams-classify-perl_0.015-2+b4 libparams-util-perl_1.102-3+b1 libpath-tiny-perl_0.146-1 libpcre2-8-0_10.44-4 libperl5.40_5.40.0-7 libperlio-gzip-perl_0.20-1+b4 libperlio-utf8-strict-perl_0.010-1+b3 libpipeline1_1.5.8-1 libproc-processtable-perl_0.636-1+b3 libpsl5t64_0.21.2-1.1+b1 libreadline8t64_8.2-5 libregexp-wildcards-perl_1.05-3 librole-tiny-perl_2.002004-1 librtmp1_2.4+20151223.gitfa8646d.1-2+b5 libsasl2-2_2.1.28+dfsg1-8 libsasl2-modules-db_2.1.28+dfsg1-8 libseccomp2_2.5.5-1+b3 libselinux1_3.7-3+b1 libsemanage-common_3.7-2 libsemanage2_3.7-2+b1 libsepol2_3.7-1 libsereal-decoder-perl_5.004+ds-1+b3 libsereal-encoder-perl_5.004+ds-1+b3 libsframe1_2.43.1-5 libsmartcols1_2.40.2-11 libsort-versions-perl_1.62-3 libsqlite3-0_3.46.1-1 libss2_1.47.1-1+b1 libssh2-1t64_1.11.1-1 libssl3t64_3.3.2-2 libstdc++-14-dev_14.2.0-8 libstdc++6_14.2.0-8 libstemmer0d_2.2.0-4+b2 libstrictures-perl_2.000006-1 libsub-exporter-perl_0.990-1 libsub-exporter-progressive-perl_0.001013-3 libsub-identify-perl_0.14-3+b3 libsub-install-perl_0.929-1 libsub-name-perl_0.27-1+b3 libsub-quote-perl_2.006008-1 libsyntax-keyword-try-perl_0.30-1+b1 libsystemd0_257~rc2-3 libtasn1-6_4.19.0-3+b3 libterm-readkey-perl_2.38-2+b4 libtext-glob-perl_0.11-3 libtext-levenshteinxs-perl_0.03-5+b4 libtext-markdown-discount-perl_0.16-1+b3 libtext-xslate-perl_3.5.9-2+b1 libtime-duration-perl_1.21-2 libtime-moment-perl_0.44-2+b4 libtimedate-perl_2.3300-2 libtinfo6_6.5-2+b1 libtool_2.4.7-8 libtry-tiny-perl_0.32-1 libtsan2_14.2.0-8 libubsan1_14.2.0-8 libuchardet0_0.0.8-1+b2 libudev1_257~rc2-3 libunicode-utf8-perl_0.62-2+b3 libunistring5_1.2-1+b1 liburi-perl_5.30-1 libuuid1_2.40.2-11 libvariable-magic-perl_0.64-1+b1 libwww-mechanize-perl_2.19-1 libwww-perl_6.77-1 libwww-robotrules-perl_6.02-1 libxml-libxml-perl_2.0207+dfsg+really+2.0134-5+b1 libxml-namespacesupport-perl_1.12-2 libxml-sax-base-perl_1.09-3 libxml-sax-perl_1.02+dfsg-3 libxml2_2.12.7+dfsg+really2.9.14-0.2+b1 libxmlb2_0.3.21-1 libxs-parse-keyword-perl_0.46-1+b1 libxxhash0_0.8.2-2+b2 libyaml-0-2_0.2.5-1+b2 libyaml-libyaml-perl_0.902.0+ds-2+b1 libzstd1_1.5.6+dfsg-1+b1 lintian_2.120.0 linux-libc-dev_6.11.7-1 login_1:4.16.0-2+really2.40.2-11 login.defs_1:4.16.0-5 logsave_1.47.1-1+b1 lzop_1.04-2+b1 m4_1.4.19-4 make_4.3-4.1+b1 man-db_2.13.0-1 mawk_1.3.4.20240905-1 mount_2.40.2-11 ncurses-base_6.5-2 ncurses-bin_6.5-2+b1 netbase_6.4 openssl_3.3.2-2 openssl-provider-legacy_3.3.2-2 passwd_1:4.16.0-5 patch_2.7.6-7+b1 patchutils_0.4.2-1+b1 perl_5.40.0-7 perl-base_5.40.0-7 perl-modules-5.40_5.40.0-7 perl-openssl-defaults_7+b2 plzip_1.11-2 po-debconf_1.0.21+nmu1 readline-common_8.2-5 rpcsvc-proto_1.4.3-1+b1 sbuild-build-depends-main-dummy_0.invalid.0 sed_4.9-2+b1 sensible-utils_0.0.24 shared-mime-info_2.4-5+b1 sysvinit-utils_3.11-1 t1utils_1.41-4+b1 tar_1.35+dfsg-3+b1 tzdata_2024b-3 ucf_3.0043+nmu1 unzip_6.0-28+b1 util-linux_2.40.2-11 xz-utils_5.6.3-1+b1 zlib1g_1:1.3.dfsg+really1.3.1-1+b1

+------------------------------------------------------------------------------+
| Build                                                                        |
+------------------------------------------------------------------------------+


Unpack source
-------------

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 3.0 (quilt)
Source: pymatgen-test-files
Binary: pymatgen-test-files
Architecture: all
Version: 2024.10.29-1
Maintainer: Debichem Team <debichem-devel@lists.alioth.debian.org>
Uploaders: Drew Parsons <dparsons@debian.org>
Homepage: https://pymatgen.org/
Standards-Version: 4.7.0
Vcs-Browser: https://salsa.debian.org/debichem-team/pymatgen-test-files
Vcs-Git: https://salsa.debian.org/debichem-team/pymatgen-test-files.git
Build-Depends: debhelper-compat (= 13)
Package-List:
 pymatgen-test-files deb python optional arch=all
Checksums-Sha1:
 b85e43755ddcee3ec7d117b760475971b2b0fcf3 209885300 pymatgen-test-files_2024.10.29.orig.tar.xz
 9daf774988382103576e2e85de94f64c9cbe313c 7232 pymatgen-test-files_2024.10.29-1.debian.tar.xz
Checksums-Sha256:
 9c754aaceac1b3963ab4c04ed507a9fa9f6ed34c6536e706187fd9b1105e0b0e 209885300 pymatgen-test-files_2024.10.29.orig.tar.xz
 7107c065c7282ed679f5e5e44beacd29006d8e6938397d130b155405b0c8e12f 7232 pymatgen-test-files_2024.10.29-1.debian.tar.xz
Files:
 38226f605c42e0bc285a412c8794acfb 209885300 pymatgen-test-files_2024.10.29.orig.tar.xz
 ce5bf7c39ff09a3f12b19ef3d91a77ca 7232 pymatgen-test-files_2024.10.29-1.debian.tar.xz

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEI8mpPlhYGekSbQo2Vz7x5L1aAfoFAmcszhwACgkQVz7x5L1a
AfoD7A//WfvD7LfvvRHhJwho3fhRpRpKVSn9EDm0ZLq/cgZEJMPb3gDvmSUaqsRS
vBGRp58D4iswJrOH5PBvfIAD7Lp3Q92tYn+pDz1HV6WpwHT7TJkstYSB0DGDjUS0
ywcWgldEw9wEKP1sYR2v6bBdrDoW9tZahsi8LwqjoPb95zi3KmuVlxMTM6ki0cbR
SvwLiBSYk7RhrzkhU1UT7UcEeKQ64u5QGvyUa88milra68ur1ewGGsuz6TFkdWQE
2X5sL1BFtWBjOkB07Du1rpVI1b52Qs6HERmSwAbdn2v24ie4s76ZRJ/rUmtwhpiG
6/vXOIsjGbNiNO36J/+pTjjKR8QO6q7WzGwy8S4z1NOw0d4OjtOS8DItPo5WzY5g
ne4RX4UM/F8M0dWvBxonjVtqwEp3GjODIV/ufVURbbjx/dUGfGbQAm9ZS9OTNEKB
pJ4QbX3XHJtTI2pQbixe3+n8zAUSlFE3mWKr17HgIRNQsxpO14WRYz25e8G9rP6F
F5++KFaJz9IafX23n6jld9Z5PM3F42GJRehp5ZYzWqAIx+t4K4hjXbIK3Piz538L
8FB9iMdSQ6mX64q88oUl+JCEiKHMdK4f7P3ptb6aX1cQ1gLafNntOaqx0LiPvaUo
Szon2jUBuD1QG2Yk8BZrdpIZsL3jbkGK+iOkCRO7t2KGhWKS38Q=
=TFV4
-----END PGP SIGNATURE-----

gpgv: Signature made Thu Nov  7 14:26:36 2024 UTC
gpgv:                using RSA key 23C9A93E585819E9126D0A36573EF1E4BD5A01FA
gpgv: Can't check signature: No public key
dpkg-source: warning: cannot verify inline signature for ./pymatgen-test-files_2024.10.29-1.dsc: no acceptable signature found
dpkg-source: info: extracting pymatgen-test-files in /<<PKGBUILDDIR>>
dpkg-source: info: unpacking pymatgen-test-files_2024.10.29.orig.tar.xz
dpkg-source: info: unpacking pymatgen-test-files_2024.10.29-1.debian.tar.xz

Check disk space
----------------

Sufficient free space for build

User Environment
----------------

APT_CONFIG=/var/lib/sbuild/apt.conf
HOME=/sbuild-nonexistent
LANG=en_US.UTF-8
LC_ALL=C.UTF-8
LOGNAME=debusine-worker
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
SHELL=/bin/sh
USER=debusine-worker

dpkg-buildpackage
-----------------

Command: dpkg-buildpackage -us -uc -b -rfakeroot
dpkg-buildpackage: info: source package pymatgen-test-files
dpkg-buildpackage: info: source version 2024.10.29-1
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Drew Parsons <dparsons@debian.org>
 dpkg-source --before-build .
dpkg-buildpackage: info: host architecture arm64
dpkg-source: info: using options from pymatgen-test-files-2024.10.29/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/
 debian/rules clean
dh clean
   dh_clean
   debian/rules execute_after_dh_clean
make[1]: Entering directory '/<<PKGBUILDDIR>>'
rm -rf tests/files/piezo_sensitivity/*cops.pkl
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
 debian/rules binary
dh binary
   dh_update_autotools_config
   dh_autoreconf
   debian/rules execute_before_dh_auto_configure
make[1]: Entering directory '/<<PKGBUILDDIR>>'
cd debian/binary_patches; for f in `find tests/files -type f`; do p=`dirname $f`; cp $f /<<PKGBUILDDIR>>/$p; done
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   create-stamp debian/debhelper-build-stamp
   dh_prep
   dh_auto_install --destdir=debian/pymatgen-test-files/
   dh_installdocs
   dh_installchangelogs
   dh_installexamples
   dh_lintian
   dh_perl
   dh_link
   dh_strip_nondeterminism
   dh_compress
   dh_fixperms
   debian/rules execute_after_dh_fixperms
make[1]: Entering directory '/<<PKGBUILDDIR>>'
chmod a-x debian/pymatgen-test-files/usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout_doscar_lso
chmod a-x debian/pymatgen-test-files/usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/*.gz
make[1]: Leaving directory '/<<PKGBUILDDIR>>'
   dh_missing
   dh_installdeb
   dh_gencontrol
   dh_md5sums
   dh_builddeb
dpkg-deb: building package 'pymatgen-test-files' in '../pymatgen-test-files_2024.10.29-1_all.deb'.
 dpkg-genbuildinfo --build=binary -O../pymatgen-test-files_2024.10.29-1_arm64.buildinfo
 dpkg-genchanges --build=binary -O../pymatgen-test-files_2024.10.29-1_arm64.changes
dpkg-genchanges: info: binary-only upload (no source code included)
 dpkg-source --after-build .
dpkg-source: info: using options from pymatgen-test-files-2024.10.29/debian/source/options: --extend-diff-ignore=^[^/]*[.]egg-info/
dpkg-buildpackage: info: binary-only upload (no source included)
--------------------------------------------------------------------------------
Build finished at 2024-11-17T23:19:36Z

Finished
--------

I: Built successfully

+------------------------------------------------------------------------------+
| Changes                                                                      |
+------------------------------------------------------------------------------+


pymatgen-test-files_2024.10.29-1_arm64.changes:
-----------------------------------------------

Format: 1.8
Date: Thu, 07 Nov 2024 15:01:51 +0100
Source: pymatgen-test-files
Binary: pymatgen-test-files
Architecture: all
Version: 2024.10.29-1
Distribution: sid
Urgency: medium
Maintainer: Debichem Team <debichem-devel@lists.alioth.debian.org>
Changed-By: Drew Parsons <dparsons@debian.org>
Description:
 pymatgen-test-files - Python Materials Genomics for materials analysis (test files)
Changes:
 pymatgen-test-files (2024.10.29-1) unstable; urgency=medium
 .
   * New upstream release
   * update debian/copyright
     - nonfree PF_sd*.cif files moved to cif subdir
     - update list of excluded files (main source moved to src subdir)
Checksums-Sha1:
 95a77576ad294e0225495b0e23b44d57dff7f9b1 209483580 pymatgen-test-files_2024.10.29-1_all.deb
 4563ee0fed73b87f713cdf550c5cc6b728a884cb 4682 pymatgen-test-files_2024.10.29-1_arm64.buildinfo
Checksums-Sha256:
 80129ed670c6ef1951c6c22096cae2b0f4133b22a601d518304fa3fdd41dafc1 209483580 pymatgen-test-files_2024.10.29-1_all.deb
 abad208a76471feaf562b5f24fee0bde167534419d43928e521c6848ac93a43b 4682 pymatgen-test-files_2024.10.29-1_arm64.buildinfo
Files:
 b0f9154d61f238412992b3c10cee596e 209483580 python optional pymatgen-test-files_2024.10.29-1_all.deb
 52e14c065c8c5a5d6bbb87d8ca691d0a 4682 python optional pymatgen-test-files_2024.10.29-1_arm64.buildinfo

+------------------------------------------------------------------------------+
| Buildinfo                                                                    |
+------------------------------------------------------------------------------+

Format: 1.0
Source: pymatgen-test-files
Binary: pymatgen-test-files
Architecture: all
Version: 2024.10.29-1
Checksums-Md5:
 b0f9154d61f238412992b3c10cee596e 209483580 pymatgen-test-files_2024.10.29-1_all.deb
Checksums-Sha1:
 95a77576ad294e0225495b0e23b44d57dff7f9b1 209483580 pymatgen-test-files_2024.10.29-1_all.deb
Checksums-Sha256:
 80129ed670c6ef1951c6c22096cae2b0f4133b22a601d518304fa3fdd41dafc1 209483580 pymatgen-test-files_2024.10.29-1_all.deb
Build-Origin: Debian
Build-Architecture: arm64
Build-Date: Sun, 17 Nov 2024 23:19:34 +0000
Build-Path: /<<PKGBUILDDIR>>
Build-Tainted-By:
 merged-usr-via-aliased-dirs
Installed-Build-Depends:
 autoconf (= 2.72-3),
 automake (= 1:1.16.5-1.3),
 autopoint (= 0.22.5-2),
 autotools-dev (= 20220109.1),
 base-files (= 13.5),
 base-passwd (= 3.6.5),
 bash (= 5.2.32-1+b2),
 binutils (= 2.43.1-5),
 binutils-aarch64-linux-gnu (= 2.43.1-5),
 binutils-common (= 2.43.1-5),
 bsdextrautils (= 2.40.2-11),
 bsdutils (= 1:2.40.2-11),
 build-essential (= 12.12),
 bzip2 (= 1.0.8-6),
 coreutils (= 9.5-1+b1),
 cpp (= 4:14.2.0-1),
 cpp-14 (= 14.2.0-8),
 cpp-14-aarch64-linux-gnu (= 14.2.0-8),
 cpp-aarch64-linux-gnu (= 4:14.2.0-1),
 dash (= 0.5.12-9+b1),
 debconf (= 1.5.87),
 debhelper (= 13.20),
 debianutils (= 5.21),
 dh-autoreconf (= 20),
 dh-strip-nondeterminism (= 1.14.0-1),
 diffutils (= 1:3.10-1+b1),
 dpkg (= 1.22.12~1.gbp82cafd),
 dpkg-dev (= 1.22.12~1.gbp82cafd),
 dwz (= 0.15-1+b1),
 file (= 1:5.45-3+b1),
 findutils (= 4.10.0-3),
 g++ (= 4:14.2.0-1),
 g++-14 (= 14.2.0-8),
 g++-14-aarch64-linux-gnu (= 14.2.0-8),
 g++-aarch64-linux-gnu (= 4:14.2.0-1),
 gcc (= 4:14.2.0-1),
 gcc-14 (= 14.2.0-8),
 gcc-14-aarch64-linux-gnu (= 14.2.0-8),
 gcc-14-base (= 14.2.0-8),
 gcc-aarch64-linux-gnu (= 4:14.2.0-1),
 gettext (= 0.22.5-2),
 gettext-base (= 0.22.5-2),
 grep (= 3.11-4+b1),
 groff-base (= 1.23.0-5),
 gzip (= 1.12-1.1+b1),
 hostname (= 3.25),
 init-system-helpers (= 1.67),
 intltool-debian (= 0.35.0+20060710.6),
 libacl1 (= 2.3.2-2+b1),
 libarchive-zip-perl (= 1.68-1),
 libasan8 (= 14.2.0-8),
 libatomic1 (= 14.2.0-8),
 libattr1 (= 1:2.5.2-2),
 libaudit-common (= 1:4.0.2-2),
 libaudit1 (= 1:4.0.2-2),
 libbinutils (= 2.43.1-5),
 libblkid1 (= 2.40.2-11),
 libbz2-1.0 (= 1.0.8-6),
 libc-bin (= 2.40-3),
 libc-dev-bin (= 2.40-3),
 libc6 (= 2.40-3),
 libc6-dev (= 2.40-3),
 libcap-ng0 (= 0.8.5-3+b1),
 libcap2 (= 1:2.66-5+b1),
 libcc1-0 (= 14.2.0-8),
 libcrypt-dev (= 1:4.4.36-5),
 libcrypt1 (= 1:4.4.36-5),
 libctf-nobfd0 (= 2.43.1-5),
 libctf0 (= 2.43.1-5),
 libdb5.3t64 (= 5.3.28+dfsg2-9),
 libdebconfclient0 (= 0.273),
 libdebhelper-perl (= 13.20),
 libdpkg-perl (= 1.22.12~1.gbp82cafd),
 libelf1t64 (= 0.192-4),
 libfile-stripnondeterminism-perl (= 1.14.0-1),
 libgcc-14-dev (= 14.2.0-8),
 libgcc-s1 (= 14.2.0-8),
 libgdbm-compat4t64 (= 1.24-2),
 libgdbm6t64 (= 1.24-2),
 libgmp10 (= 2:6.3.0+dfsg-2+b2),
 libgomp1 (= 14.2.0-8),
 libgprofng0 (= 2.43.1-5),
 libhwasan0 (= 14.2.0-8),
 libicu72 (= 72.1-5+b1),
 libisl23 (= 0.27-1),
 libitm1 (= 14.2.0-8),
 libjansson4 (= 2.14-2+b3),
 liblsan0 (= 14.2.0-8),
 liblzma5 (= 5.6.3-1+b1),
 libmagic-mgc (= 1:5.45-3+b1),
 libmagic1t64 (= 1:5.45-3+b1),
 libmd0 (= 1.1.0-2+b1),
 libmount1 (= 2.40.2-11),
 libmpc3 (= 1.3.1-1+b3),
 libmpfr6 (= 4.2.1-1+b2),
 libpam-modules (= 1.5.3-7+b1),
 libpam-modules-bin (= 1.5.3-7+b1),
 libpam-runtime (= 1.5.3-7),
 libpam0g (= 1.5.3-7+b1),
 libpcre2-8-0 (= 10.44-4),
 libperl5.40 (= 5.40.0-7),
 libpipeline1 (= 1.5.8-1),
 libseccomp2 (= 2.5.5-1+b3),
 libselinux1 (= 3.7-3+b1),
 libsframe1 (= 2.43.1-5),
 libsmartcols1 (= 2.40.2-11),
 libssl3t64 (= 3.3.2-2),
 libstdc++-14-dev (= 14.2.0-8),
 libstdc++6 (= 14.2.0-8),
 libsystemd0 (= 257~rc2-3),
 libtinfo6 (= 6.5-2+b1),
 libtool (= 2.4.7-8),
 libtsan2 (= 14.2.0-8),
 libubsan1 (= 14.2.0-8),
 libuchardet0 (= 0.0.8-1+b2),
 libudev1 (= 257~rc2-3),
 libunistring5 (= 1.2-1+b1),
 libuuid1 (= 2.40.2-11),
 libxml2 (= 2.12.7+dfsg+really2.9.14-0.2+b1),
 libzstd1 (= 1.5.6+dfsg-1+b1),
 linux-libc-dev (= 6.11.7-1),
 m4 (= 1.4.19-4),
 make (= 4.3-4.1+b1),
 man-db (= 2.13.0-1),
 mawk (= 1.3.4.20240905-1),
 ncurses-base (= 6.5-2),
 ncurses-bin (= 6.5-2+b1),
 openssl-provider-legacy (= 3.3.2-2),
 patch (= 2.7.6-7+b1),
 perl (= 5.40.0-7),
 perl-base (= 5.40.0-7),
 perl-modules-5.40 (= 5.40.0-7),
 po-debconf (= 1.0.21+nmu1),
 rpcsvc-proto (= 1.4.3-1+b1),
 sed (= 4.9-2+b1),
 sensible-utils (= 0.0.24),
 sysvinit-utils (= 3.11-1),
 tar (= 1.35+dfsg-3+b1),
 util-linux (= 2.40.2-11),
 xz-utils (= 5.6.3-1+b1),
 zlib1g (= 1:1.3.dfsg+really1.3.1-1+b1)
Environment:
 DEB_BUILD_OPTIONS="parallel=4"
 LANG="en_US.UTF-8"
 LC_ALL="C.UTF-8"
 SOURCE_DATE_EPOCH="1730988111"


+------------------------------------------------------------------------------+
| Package contents                                                             |
+------------------------------------------------------------------------------+


pymatgen-test-files_2024.10.29-1_all.deb
----------------------------------------

 new Debian package, version 2.0.
 size 209483580 bytes: control archive=38236 bytes.
    1185 bytes,    32 lines      control
  189360 bytes,  1486 lines      md5sums
 Package: pymatgen-test-files
 Version: 2024.10.29-1
 Architecture: all
 Maintainer: Debichem Team <debichem-devel@lists.alioth.debian.org>
 Installed-Size: 566951
 Recommends: python3-pymatgen
 Breaks: python3-pymatgen (<< 2023.2.22~)
 Section: python
 Priority: optional
 Multi-Arch: foreign
 Homepage: https://pymatgen.org/
 Description: Python Materials Genomics for materials analysis (test files)
  Pymatgen (Python Materials Genomics) is a robust, open-source Python
  library for materials analysis. These are some of the main features:
  .
  1.Highly flexible classes for the representation of Element, Site,
  Molecule, Structure objects.
  .
  2. Extensive input/output support, including support for VASP
  (http://cms.mpi.univie.ac.at/vasp/), ABINIT (http://www.abinit.org/),
  CIF, Gaussian, XYZ, and many other file formats.
  .
  3. Powerful analysis tools, including generation of phase diagrams,
  Pourbaix diagrams, diffusion analyses, reactions, etc.
  .
  4. Electronic structure analyses, such as density of states and band
  structure.
  .
  5. Integration with the Materials Project REST API, Crystallography
  Open Database.
  .
  This package provides the test files used by pymatgen tests.

drwxr-xr-x root/root         0 2024-11-07 14:01 ./
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/
-rw-r--r-- root/root      4047 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/README.md.gz
-rw-r--r-- root/root      1349 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/changelog.Debian.gz
-rw-r--r-- root/root      9711 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/copyright
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/
-rw-r--r-- root/root    310007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/.pytest-split-durations
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/alchemy/
-rw-r--r-- root/root     10099 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/alchemy/transformations.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/
-rw-r--r-- root/root    129949 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/PC_65_fragments.json
-rw-r--r-- root/root      3499 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/PC_65_principle.json
-rw-r--r-- root/root    126870 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/neg_EC_40_fragments.json
-rw-r--r-- root/root      2708 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/neg_EC_40_principle.json
-rw-r--r-- root/root     39580 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/neg_TFSI_fragments.json
-rw-r--r-- root/root      4141 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/neg_TFSI_principle.json
-rw-r--r-- root/root      1805 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/pc_frag1_mg.json
-rw-r--r-- root/root      4237 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_dissociation/pc_mg.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_valence/
-rw-r--r-- root/root      6007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_valence/Li4Fe3Mn1(PO4)4.json
-rw-r--r-- root/root      3310 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/bond_valence/LiMn2O4.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/
-rw-r--r-- root/root      1285 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_A--2_KNO2_icsd_36202.json
-rw-r--r-- root/root      2727 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_A--2_SO2_icsd_24645.json
-rw-r--r-- root/root       768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_C--8_CsCl_icsd_622367.json
-rw-r--r-- root/root     12104 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_I--12_Mg3Cr2Al18_icsd_606797.json
-rw-r--r-- root/root      2814 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_L--2_CO2_icsd_16428.json
-rw-r--r-- root/root      1574 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_L--2_Cu2O_icsd_52043.json
-rw-r--r-- root/root      2926 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_L--2_HgCl2_icsd_23277.json
-rw-r--r-- root/root       985 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_L--2_XeF2_icsd_260950.json
-rw-r--r-- root/root      4644 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_O--6_LaFeO3_icsd_93611.json
-rw-r--r-- root/root       840 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_O--6_NaCl_icsd_61662.json
-rw-r--r-- root/root      9646 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_O--6_Sr3Fe2O7_icsd_2648.json
-rw-r--r-- root/root      5546 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_PB--7_PaCl5_icsd_15391.json
-rw-r--r-- root/root      2052 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--1_CO_icsd_26962.json
-rw-r--r-- root/root      2260 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--1_ClF_icsd_406442.json
-rw-r--r-- root/root     14808 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--4_BaCrSi4O10_icsd_83463.json
-rw-r--r-- root/root     14709 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--4_BaCuSi4O10_icsd_71865.json
-rw-r--r-- root/root     14132 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--4_BaFeSi4O10_icsd_6256.json
-rw-r--r-- root/root      5720 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--4_Pd2P2O7_icsd_415239.json
-rw-r--r-- root/root      5814 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--4_PdSO4_icsd_79559.json
-rw-r--r-- root/root      2558 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--4_XeF4_icsd_26626.json
-rw-r--r-- root/root      5496 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--5_BrF5_icsd_31690.json
-rw-r--r-- root/root      3501 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_S--5_V2O5_icsd_41030.json
-rw-r--r-- root/root     19679 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_SA--8_ThMo2O8_icsd_37236.json
-rw-r--r-- root/root      4772 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_SA--8_ThTi2O6_icsd_27017.json
-rw-r--r-- root/root      3493 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_SBT--8_PuBr3_icsd_31588.json
-rw-r--r-- root/root      4723 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_SS--4_SeF4_icsd_85451.json
-rw-r--r-- root/root      4586 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_SS--4_XeO2F2_icsd_10203.json
-rw-r--r-- root/root      9215 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_ST--7_K2TaF7_icsd_46005.json
-rw-r--r-- root/root     37730 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_CCl4_icsd_246796.json
-rw-r--r-- root/root      9255 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_CrPO4_icsd_60836.json
-rw-r--r-- root/root      4566 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_FePO4_icsd_4266.json
-rw-r--r-- root/root      9117 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_LiNdP4O12_icsd_14.json
-rw-r--r-- root/root      2494 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_SiO2_icsd_174.json
-rw-r--r-- root/root      3158 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_SiO2_icsd_34927.json
-rw-r--r-- root/root      3250 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--4_ZrSiO4_icsd_69643.json
-rw-r--r-- root/root      3113 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--5_PF5_icsd_62554.json
-rw-r--r-- root/root      8999 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--5_cod_YMn0.63In0.37O3_4105420.json
-rw-r--r-- root/root       972 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_T--6_MoS2_icsd_38401.json
-rw-r--r-- root/root      7778 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TL--3_BF3_icsd_20904.json
-rw-r--r-- root/root      4876 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TL--3_CaCO3_icsd_32100.json
-rw-r--r-- root/root      2559 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TL--3_CaCO3_icsd_40107.json
-rw-r--r-- root/root      7465 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TS--3_ClF3_icsd_203121.json
-rw-r--r-- root/root      7535 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TT_1--9_RbTh3F13_icsd_9915.json
-rw-r--r-- root/root      2977 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TY--3_K2SO3_icsd_60762.json
-rw-r--r-- root/root      3791 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/json/test_TY--3_NH3_icsd_29321.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/structure_environments/
-rw-r--r-- root/root      1310 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/structure_environments/mp-554015.json.gz
-rw-r--r-- root/root    124900 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/structure_environments/se_mp-5020.json
-rw-r--r-- root/root    186870 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/structure_environments/se_mp-7000.json
-rw-r--r-- root/root  10669676 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/chemenv/structure_environments/se_mp-743972.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/cost/
-rw-r--r-- root/root       279 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/cost/costdb_1.csv
-rw-r--r-- root/root       409 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/cost/costdb_2.csv
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/dimensionality/
-rw-r--r-- root/root      3509 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/dimensionality/PH7CN3O3F.json.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/elasticity/
-rw-r--r-- root/root      3322 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/elasticity/Sn_def_stress.json
-rw-r--r-- root/root     44135 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/elasticity/test_toec_data.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/functional_groups/
-rw-r--r-- root/root      1554 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/functional_groups/func_group_test.mol
-rw-r--r-- root/root       910 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/functional_groups/func_group_test_no_h.mol
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/
-rw-r--r-- root/root       419 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/PC.xyz
-rw-r--r-- root/root       162 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/PC_frag1.xyz
-rw-r--r-- root/root       461 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/TFSI.xyz
-rw-r--r-- root/root       494 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/butadiene.xyz
-rw-r--r-- root/root       788 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/cyclohexene.xyz
-rw-r--r-- root/root       297 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/graphs/ethylene.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/
-rw-r--r-- root/root       592 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/benzene.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/
-rw-r--r-- root/root       563 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/EC.xyz
-rw-r--r-- root/root       455 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/LiEC.xyz
-rw-r--r-- root/root       419 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/PC.xyz
-rw-r--r-- root/root       162 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/PC_frag1.xyz
-rw-r--r-- root/root       461 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/TFSI.xyz
-rw-r--r-- root/root      1459 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/phsh.xyz
-rw-r--r-- root/root      1546 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/water_cluster_K.xyz
-rw-r--r-- root/root      1345 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/local_env/fragmenter_files/water_cluster_Mg.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/
-rw-r--r-- root/root     10027 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Ca3Co2O6.json
-rw-r--r-- root/root     16345 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/CoS2.json
-rw-r--r-- root/root     34445 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Cr2FeS4.json
-rw-r--r-- root/root      5425 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Cr2NiO4.json
-rw-r--r-- root/root      3435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Cr2WO6.json
-rw-r--r-- root/root      3566 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/CuO.json
-rw-r--r-- root/root      4000 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/LaMnO3.json
-rw-r--r-- root/root     75396 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/LiMnPO4.json
-rw-r--r-- root/root     15224 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Mn3Al.json
-rw-r--r-- root/root     15055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/MnNi2Sn.json
-rw-r--r-- root/root     11969 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/MnSi.json
-rw-r--r-- root/root      8640 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/NbFe2.json
-rw-r--r-- root/root     12542 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Ni(SbO3)2.json
-rw-r--r-- root/root     24715 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/Ta2CoO6.json
-rw-r--r-- root/root    230324 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetic_orderings/mag_orderings_test_cases.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetism/
-rw-r--r-- root/root      1373 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/magnetism/magnetic_deformation.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/
-rw-r--r-- root/root       186 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si2O_cluster.xyz
-rw-r--r-- root/root       186 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si2O_cluster_2.xyz
-rw-r--r-- root/root       186 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si2O_cluster_permuted.xyz
-rw-r--r-- root/root       186 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si2O_cluster_perturbed.xyz
-rw-r--r-- root/root       186 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si2O_cluster_rotated.xyz
-rw-r--r-- root/root       489 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si_cluster.xyz
-rw-r--r-- root/root       496 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si_cluster_2.xyz
-rw-r--r-- root/root       489 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si_cluster_permuted.xyz
-rw-r--r-- root/root       492 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si_cluster_perturbed.xyz
-rw-r--r-- root/root       495 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/Si_cluster_rotated.xyz
-rw-r--r-- root/root       592 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/benzene1.xyz
-rw-r--r-- root/root       592 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/benzene2.xyz
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/c1.xyz
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/c2.xyz
-rw-r--r-- root/root      4905 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/cdi_23_1.xyz
-rw-r--r-- root/root      4905 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/cdi_23_2.xyz
-rw-r--r-- root/root       886 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/cyclohexane1.xyz
-rw-r--r-- root/root       886 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/cyclohexane2.xyz
-rw-r--r-- root/root       297 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/ethene1.xyz
-rw-r--r-- root/root       297 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/ethene2.xyz
-rw-r--r-- root/root       274 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/grouped_mol_list.txt
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/j1.xyz
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/j2.xyz
-rw-r--r-- root/root      1851 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/k1.sdf
-rw-r--r-- root/root      1860 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/k2.sdf
-rw-r--r-- root/root       197 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/mol_list.txt
-rw-r--r-- root/root        35 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/oxygen1.xyz
-rw-r--r-- root/root        39 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/oxygen2.xyz
-rw-r--r-- root/root      1769 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/t1.xyz
-rw-r--r-- root/root      1769 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/t2.xyz
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/t3.xyz
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/t4.xyz
-rw-r--r-- root/root      1768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/t5.xyz
-rw-r--r-- root/root      1549 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/thiane1.sdf
-rw-r--r-- root/root      1549 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/thiane2.sdf
-rw-r--r-- root/root      1759 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/thiane_ethynyl1.sdf
-rw-r--r-- root/root      1733 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/thiane_ethynyl2.sdf
-rw-r--r-- root/root       739 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/toluene1.xyz
-rw-r--r-- root/root       739 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/molecule_matcher/toluene2.xyz
-rw-r--r-- root/root     14060 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/pd_entries_test.csv
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/phase_diagram/
-rw-r--r-- root/root     14045 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/phase_diagram/reaction_entries_test.csv
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/
-rw-r--r-- root/root      2645 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/becops.pkl
-rw-r--r-- root/root      3772 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/fcmops.pkl
-rw-r--r-- root/root      1095 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/istops.npy
-rw-r--r-- root/root      1690 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/pb2tizro6.json
-rw-r--r-- root/root     11245 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/pointops.npy
-rw-r--r-- root/root       848 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/pztborn.npy
-rw-r--r-- root/root      7328 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/pztfcm.npy
-rw-r--r-- root/root      2240 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/pztist.npy
-rw-r--r-- root/root     74979 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/piezo_sensitivity/sharedops.npy
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/pourbaix_diagram/
-rw-r--r-- root/root    255471 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/pourbaix_diagram/pourbaix_test_data.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/quasirrho/
lrwxrwxrwx root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/quasirrho/Frequency_no_equal.qout -> ../../io/qchem/new_qchem_files/Frequency_no_equal.qout
-rw-r--r-- root/root     21844 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/quasirrho/co2.log.gz
-rw-r--r-- root/root   2487597 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/quasirrho/quasirrho_gaufreq.log
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/solar/
-rw-r--r-- root/root   2307659 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/solar/vasprun.xml
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/
-rw-r--r-- root/root      9167 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/LiCoO2_k_exafs.json
-rw-r--r-- root/root      3270 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/LiCoO2_k_xanes.json
-rw-r--r-- root/root      3435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/ZnO_l2_xanes.json
-rw-r--r-- root/root      3440 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/ZnO_l3_xanes.json
-rw-r--r-- root/root      5766 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/site1_k_xanes.json
-rw-r--r-- root/root      5779 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/spectrum_test/site2_k_xanes.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/struct_predictor/
-rw-r--r-- root/root       132 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/struct_predictor/test_lambda.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/
-rw-r--r-- root/root       552 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/MgBH42.xyz
-rw-r--r-- root/root    194729 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/mol_1_3_bond.qcout
-rw-r--r-- root/root      1243 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/molecule_with_halogen_bonds_1.xyz
-rw-r--r-- root/root      1042 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/molecule_with_halogen_bonds_2.xyz
-rw-r--r-- root/root      1278 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/t1.xyz
-rw-r--r-- root/root      1278 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/t2.xyz
-rw-r--r-- root/root      1278 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/t3.xyz
-rw-r--r-- root/root       606 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/thiophene1.xyz
-rw-r--r-- root/root       627 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structural_change/thiophene2.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_matcher/
-rw-r--r-- root/root      1368 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_matcher/Al3F9.json
-rw-r--r-- root/root      2879 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_matcher/Al3F9_distorted.json
-rw-r--r-- root/root      5641 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_matcher/Li3GaPCO7.json
-rw-r--r-- root/root      5875 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_matcher/Na2Fe2PAsO4S4.json
-rw-r--r-- root/root      5887 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_matcher/Na2Fe2PNO4Se4.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_prediction/
-rw-r--r-- root/root      4499 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_prediction/Ag7P3S11_mp-683910_primitive.cif
-rw-r--r-- root/root       822 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/structure_prediction/FeN_mp-6988.cif
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/topological/
-rw-r--r-- root/root  15602496 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/topological/WAVECAR-NonSOC
-rw-r--r-- root/root  29420128 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/topological/WAVECAR-SOC
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/wulff/
-rw-r--r-- root/root    152388 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/analysis/wulff/surface_samples.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/
-rw-r--r-- root/root     24025 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/CaMoO2_batt.json
-rw-r--r-- root/root     32177 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/FeF3_batt.json
-rw-r--r-- root/root    103562 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/LiCoO2_batt.json
-rw-r--r-- root/root     52933 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/LiTiO2_batt.json
-rw-r--r-- root/root     15534 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/MgVO_batt.json
-rw-r--r-- root/root      3441 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/Mg_batt.json
-rw-r--r-- root/root    144133 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/battery/MnO2_batt.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/apps/borg/
-rw-r--r-- root/root       128 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/apps/borg/assimilated.json
lrwxrwxrwx root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/apps/borg/vasprun.xml.xe.gz -> ../../io/vasp/outputs/vasprun.xe.xml.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/
-rw-r--r-- root/root       853 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/AgO_kpath_test.cif
-rw-r--r-- root/root     17528 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/C26H16BeN2O2S2.cif
-rw-r--r-- root/root      1077 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Co8.cif
-rw-r--r-- root/root      1751 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/CoO19128.cif
-rw-r--r-- root/root     28970 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Cod_2100513.cif
-rw-r--r-- root/root     13785 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Cod_4115344.cif
-rw-r--r-- root/root     10878 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/CsI3Pb.cif
-rw-r--r-- root/root      1109 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/CsSnI3.cif
-rw-r--r-- root/root      5102 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Cu7Te5.cif
-rw-r--r-- root/root      1396 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/CuCl.cif
-rw-r--r-- root/root      3885 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Fe.cif
-rw-r--r-- root/root      2206 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Fe3O4.cif
-rw-r--r-- root/root      2861 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/FePO4.cif
-rw-r--r-- root/root      2601 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/FePO4a.cif
-rw-r--r-- root/root      1806 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Graphite.cif
-rw-r--r-- root/root      1125 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/H6PbCI3N_mp-977013_symmetrized.cif
-rw-r--r-- root/root      2628 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/ICSD59959.cif
-rw-r--r-- root/root      1379 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/La2CoO4.cif
-rw-r--r-- root/root      1569 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/La4Fe4O12.cif
-rw-r--r-- root/root       693 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Li.cif
-rw-r--r-- root/root      1834 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Li10GeP2S12.cif
-rw-r--r-- root/root      5517 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Li2O.cif
-rw-r--r-- root/root      2862 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Li4Fe3Mn1(PO4)4.cif
-rw-r--r-- root/root      2047 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Li8Fe2NiCoO8.cif
-rw-r--r-- root/root      2863 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/LiFePO4.cif
-rw-r--r-- root/root      1063 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/MgNiF6.cif
-rw-r--r-- root/root      4924 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/MultiStructure.cif
-rw-r--r-- root/root       704 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/OneLineSymmP1.cif
-rw-r--r-- root/root     27563 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/P24Ru4H252C296S24N16.cif
-rw-r--r-- root/root      1950 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/Senegalite_implicit_hydrogen.cif
-rw-r--r-- root/root      1825 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/V2O3.cif
-rw-r--r-- root/root      5480 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/bad_occu.cif
-rw-r--r-- root/root      2245 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/bcc_1927.cif
-rw-r--r-- root/root      1811 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/btet_1915.cif
-rw-r--r-- root/root      1457 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/cif_finite_precision_frac_coord_error.cif
-rw-r--r-- root/root      4917 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/cif_implicit_hydrogens_cod_1011130.cif
-rw-r--r-- root/root      4318 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/garnet.cif
-rw-r--r-- root/root      1627 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/hex_1170.cif
-rw-r--r-- root/root      1863 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/monoc_1028.cif
-rw-r--r-- root/root      7158 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/nosymm.cif
-rw-r--r-- root/root       932 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/orac_632475.cif
-rw-r--r-- root/root      2116 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/orcc_1003.cif
-rw-r--r-- root/root      1751 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/orci_1010.cif
-rw-r--r-- root/root      1627 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/rhomb_1170.cif
-rw-r--r-- root/root       841 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/rhomb_3478.cif
-rw-r--r-- root/root      1206 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/rhomb_3478_conv.cif
-rw-r--r-- root/root      3933 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/site_type_symbol_test.cif
-rw-r--r-- root/root      2730 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/cif/srycoo.cif
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/bader/
-rw-r--r-- root/root   6113824 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/bader/AECCAR0.gz
-rw-r--r-- root/root   5551882 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/bader/AECCAR2.gz
-rw-r--r-- root/root  11622815 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/bader/CHGCAR.gz
-rw-r--r-- root/root   6279574 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/bader/_CHGCAR_sum.gz
-rw-r--r-- root/root     46521 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/bader/elec.cube.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/
-rw-r--r-- root/root       765 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/DDEC6_even_tempered_atomic_spin_moments.xyz
-rw-r--r-- root/root      2152 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/DDEC6_even_tempered_bond_orders.xyz
-rw-r--r-- root/root      3837 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/DDEC6_even_tempered_net_atomic_charges.xyz
-rw-r--r-- root/root       428 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/DDEC_atomic_Rcubed_moments.xyz
-rw-r--r-- root/root       428 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/DDEC_atomic_Rfourth_moments.xyz
-rw-r--r-- root/root       428 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_polarized/DDEC_atomic_Rsquared_moments.xyz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/
-rw-r--r-- root/root    856559 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/CHGCAR.gz
-rw-r--r-- root/root      5046 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/DDEC6_even_tempered_bond_orders.xyz
-rw-r--r-- root/root      2093 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/DDEC6_even_tempered_net_atomic_charges.xyz
-rw-r--r-- root/root       485 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/DDEC_atomic_Rcubed_moments.xyz
-rw-r--r-- root/root       485 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/DDEC_atomic_Rfourth_moments.xyz
-rw-r--r-- root/root       485 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/DDEC_atomic_Rsquared_moments.xyz
-rw-r--r-- root/root     21922 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/VASP_DDEC_analysis.output
-rw-r--r-- root/root      2187 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/chargemol/spin_unpolarized/overlap_populations.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/critic2/
-rw-r--r-- root/root       789 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/critic2/MoS2.cif
-rw-r--r-- root/root     20088 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/critic2/MoS2_critic2_stdout.txt
-rw-r--r-- root/root     20980 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/critic2/MoS2_critic2_stdout_new_format.txt
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/enumlib/
-rw-r--r-- root/root      2442 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/enumlib/EnumerateTest.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/gulp/
-rw-r--r-- root/root     11933 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/command_line/gulp/example21.gout
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/
-rw-r--r-- root/root      5916 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Be_gb_fin.cif
-rw-r--r-- root/root      5916 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Be_gb_init.cif
-rw-r--r-- root/root       737 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Be_mp-87_conventional_standard.cif
-rw-r--r-- root/root       736 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Bi_mp-23152_primitive.cif
-rw-r--r-- root/root      1012 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Br_mp-23154_conventional_standard.cif
-rw-r--r-- root/root       828 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Cu_mp-30_conventional_standard.cif
-rw-r--r-- root/root       690 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Cu_mp-30_primitive.cif
-rw-r--r-- root/root      1765 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Fe_gb_fin.cif
-rw-r--r-- root/root      1774 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Fe_gb_init.cif
-rw-r--r-- root/root      1781 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Mo_gb_init.cif
-rw-r--r-- root/root       736 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Pa_mp-62_conventional_standard.cif
-rw-r--r-- root/root      5917 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/grain_boundary/Zn_gb_init.cif
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/core/structure/
-rw-r--r-- root/root      7808 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/structure/CON_vesta.xyz
-rw-r--r-- root/root       777 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/core/structure/Fe310.json.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/tensors/
-rw-r--r-- root/root    132176 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/tensors/ieee_conversion_data.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/trajectory/
-rw-r--r-- root/root      3216 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/core/trajectory/LiMnO2_chgnet_relax.traj
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/
-rw-r--r-- root/root  20540968 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/C_48_bandstructure.json
-rw-r--r-- root/root     28710 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/CaO_2605_bandstructure.json
-rw-r--r-- root/root       735 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/CaO_2605_structure.json
-rw-r--r-- root/root   1719643 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/Cu2O_361_bandstructure.json
-rw-r--r-- root/root    206212 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/Cu2O_361_bandstructure_continuous.json.gz
-rw-r--r-- root/root     74405 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/Cu_30_bandstructure.json
-rw-r--r-- root/root     56206 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/InN_22205_bandstructure.json
-rw-r--r-- root/root   3571495 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/N2_12103_bandstructure.json
-rw-r--r-- root/root    281891 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/NaCl_phonon_bandstructure.json
-rw-r--r-- root/root     81873 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/NiO_19009_bandstructure.json
-rw-r--r-- root/root    189567 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/Si_phonon_bandstructure.json
-rw-r--r-- root/root   5872630 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/SrTiO3_phonon_bandstructure.json
-rw-r--r-- root/root     80462 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/VBr2_971787_bandstructure.json
-rw-r--r-- root/root    535596 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/bandstructure/bs_ZnS_old.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/
-rw-r--r-- root/root       708 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/BoltzTraP.def
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.condtens
-rw-r--r-- root/root     83565 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.energyso
-rw-r--r-- root/root    448140 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.engre
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.halltens
-rw-r--r-- root/root      4716 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.intrans
-rw-r--r-- root/root     13325 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.outputtrans
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.sigxx
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.sigxxx
-rw-r--r-- root/root       602 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.struct
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.trace
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap.transdos
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap_BZ.cube
-rw-r--r-- root/root    521136 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap_band.dat
-rw-r--r-- root/root     15919 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap_band.gpl
-rw-r--r-- root/root    402696 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap_deriv.dat
-rw-r--r-- root/root   1192296 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/bands/boltztrap_mass.dat
-rw-r--r-- root/root     46711 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dft_bs_sym_line.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/
-rw-r--r-- root/root      1580 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/BoltzTraP.def
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.condtens
-rw-r--r-- root/root     53469 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.energyso
-rw-r--r-- root/root    298764 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.engre
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.halltens
-rw-r--r-- root/root       748 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.intrans
-rw-r--r-- root/root     23095 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.outputtrans
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dx2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dx2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dxy
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dxy.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dxz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dxz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dyz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dyz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dz2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_dz2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_px
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_px.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_py
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_py.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_pz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_pz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_s
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_0_s.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dx2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dx2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dxy
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dxy.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dxz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dxz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dyz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dyz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dz2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_dz2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_px
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_px.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_py
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_py.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_pz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_pz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_s
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.proj_1_s.transdos
-rw-r--r-- root/root   1551117 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.sigxx
-rw-r--r-- root/root   4329237 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.sigxxx
-rw-r--r-- root/root       602 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.struct
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.trace
-rw-r--r-- root/root    470847 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap.transdos
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/boltztrap_BZ.cube
-rw-r--r-- root/root    272636 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/fort.152
-rw-r--r-- root/root    298764 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_dw/fort.45
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/
-rw-r--r-- root/root      1580 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/BoltzTraP.def
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.condtens
-rw-r--r-- root/root     53469 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.energyso
-rw-r--r-- root/root    298764 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.engre
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.halltens
-rw-r--r-- root/root       748 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.intrans
-rw-r--r-- root/root     23095 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.outputtrans
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dx2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dx2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dxy
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dxy.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dxz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dxz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dyz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dyz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dz2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_dz2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_px
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_px.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_py
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_py.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_pz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_pz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_s
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_0_s.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dx2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dx2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dxy
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dxy.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dxz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dxz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dyz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dyz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dz2
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_dz2.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_px
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_px.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_py
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_py.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_pz
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_pz.transdos
-rw-r--r-- root/root     53467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_s
-rw-r--r-- root/root    316397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.proj_1_s.transdos
-rw-r--r-- root/root   1551117 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.sigxx
-rw-r--r-- root/root   4329237 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.sigxxx
-rw-r--r-- root/root       602 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.struct
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.trace
-rw-r--r-- root/root    470847 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap.transdos
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/boltztrap_BZ.cube
-rw-r--r-- root/root    270296 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/fort.152
-rw-r--r-- root/root    298764 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/dos_up/fort.45
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/
-rw-r--r-- root/root       708 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/BoltzTraP.def
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.condtens
-rw-r--r-- root/root     11889 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.energyso
-rw-r--r-- root/root     93372 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.engre
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.halltens
-rw-r--r-- root/root       489 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.intrans
-rw-r--r-- root/root     10518 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.outputtrans
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.sigxx
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.sigxxx
-rw-r--r-- root/root       602 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.struct
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.trace
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap.transdos
-rw-r--r-- root/root  14280394 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/fermi/boltztrap_BZ.cube
-rw-r--r-- root/root       607 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/structure_mp-12103.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/
-rw-r--r-- root/root       831 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/BoltzTraP.def
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.banddat
-rw-r--r-- root/root   4318891 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.condtens
-rw-r--r-- root/root     45370 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.condtens_fixdoping
-rw-r--r-- root/root    257426 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.energy
-rw-r--r-- root/root    673388 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.engre
-rw-r--r-- root/root   4318615 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.halltens
-rw-r--r-- root/root     45098 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.halltens_fixdoping
-rw-r--r-- root/root       736 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.intrans
-rw-r--r-- root/root      4441 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.outputtrans
-rw-r--r-- root/root    242580 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.sigxx
-rw-r--r-- root/root    690420 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.sigxxx
-rw-r--r-- root/root       286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.struct
-rw-r--r-- root/root   1372132 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.trace
-rw-r--r-- root/root     68506 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap.transdos
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap_BZ.cube
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/boltztrap_band.gpl
-rw-r--r-- root/root     15033 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/fort.25
-rw-r--r-- root/root     45370 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/fort.26
-rw-r--r-- root/root     45098 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap/transp/fort.27
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/
-rw-r--r-- root/root    649512 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/N2_bandstructure.json
-rw-r--r-- root/root     25688 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/PbTe_bandstructure.json
-rw-r--r-- root/root    125954 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/bztInterp.json.gz
-rw-r--r-- root/root   4146526 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/bztTranspProps.json.gz
-rw-r--r-- root/root    911382 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/vasprun.xml
-rw-r--r-- root/root   1804744 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/boltztrap2/vasprun_spin.xml
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/
-rw-r--r-- root/root       957 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/BWDF.lobster.AlN.gz
-rw-r--r-- root/root       558 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/BWDFCOHP.lobster.NaCl.gz
-rw-r--r-- root/root       131 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/CHARGE.LCFO.lobster.ALN.gz
-rw-r--r-- root/root       276 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/CHARGE.lobster.MnO
-rw-r--r-- root/root       153 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/CHARGE.lobster.MnO2.gz
-rw-r--r-- root/root     64239 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.B2H6.spin
-rw-r--r-- root/root     11031 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.B2H6.spin.average.2
-rw-r--r-- root/root      3786 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.GeTe
-rw-r--r-- root/root     79057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.GeTe.multi.orbitalwise
-rw-r--r-- root/root    182047 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.GeTe.multi.orbitalwise.full
-rw-r--r-- root/root      3537 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.GeTe_4center
-rw-r--r-- root/root    128515 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COBICAR.lobster.gz
-rw-r--r-- root/root      9380 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.LCFO.lobster.NaCl.gz
-rw-r--r-- root/root     14665 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.lobster.BiSe.gz
-rw-r--r-- root/root      1720 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.lobster.KF.gz
-rw-r--r-- root/root     50296 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.lobster.Na2UO4.gz
-rw-r--r-- root/root     11456 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.lobster.gz
-rw-r--r-- root/root     22111 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.lobster.notot.orbitalwise.gz
-rw-r--r-- root/root     24737 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COHPCAR.lobster.orbitalwise.gz
-rw-r--r-- root/root     13670 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COOPCAR.lobster.BiSe.gz
-rw-r--r-- root/root      1720 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COOPCAR.lobster.KF.gz
-rw-r--r-- root/root     50296 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COOPCAR.lobster.Na2UO4.gz
-rw-r--r-- root/root     10259 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COOPCAR.lobster.gz
-rw-r--r-- root/root    344034 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COPL
-rw-r--r-- root/root    156559 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/COPL.BiSe
-rw-r--r-- root/root      3164 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/CTRL
-rw-r--r-- root/root     12027 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/CTRL.BiSe
-rw-r--r-- root/root       441 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/C_transferMatrices.lobster.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o4_2p.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o4_2s.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o5_2p.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o5_2s.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o6_2p.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o6_2s.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o7_2p.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o7_2s.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o8_2p.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o8_2s.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o9_2p.lobster
-rw-r--r-- root/root    195346 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_o9_2s.lobster
-rw-r--r-- root/root    195347 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_si1_3p.lobster
-rw-r--r-- root/root    195347 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_si1_3s.lobster
-rw-r--r-- root/root    195347 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_si2_3p.lobster
-rw-r--r-- root/root    195347 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_si2_3s.lobster
-rw-r--r-- root/root    195347 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_si3_3p.lobster
-rw-r--r-- root/root    195347 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/FATBAND_si3_3s.lobster
-rw-r--r-- root/root      4211 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/KPOINTS
-rw-r--r-- root/root   8662383 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_Spin/vasprun.xml
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o4_2p.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o4_2s.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o5_2p.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o5_2s.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o6_2p.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o6_2s.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o7_2p.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o7_2s.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o8_2p.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o8_2s.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o9_2p.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_o9_2s.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_si1_3p.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_si1_3s.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_si2_3p.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_si2_3s.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_si3_3p.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/FATBAND_si3_3s.lobster
-rw-r--r-- root/root      4211 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/KPOINTS
-rw-r--r-- root/root    826842 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/lobster_band_structure.json
-rw-r--r-- root/root   1648270 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/lobster_band_structure_spin.json
-rw-r--r-- root/root   4350771 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p/vasprun.xml
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o4_2p_x.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o4_2p_y.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o4_2p_z.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o4_2s.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o5_2p_x.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o5_2p_y.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o5_2p_z.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o5_2s.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o6_2p_x.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o6_2p_y.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o6_2p_z.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o6_2s.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o7_2p_x.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o7_2p_y.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o7_2p_z.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o7_2s.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o8_2p_x.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o8_2p_y.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o8_2p_z.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o8_2s.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o9_2p_x.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o9_2p_y.lobster
-rw-r--r-- root/root    100056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o9_2p_z.lobster
-rw-r--r-- root/root    100054 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_o9_2s.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si1_3p_x.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si1_3p_y.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si1_3p_z.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si1_3s.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si2_3p_x.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si2_3p_y.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si2_3p_z.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si2_3s.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si3_3p_x.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si3_3p_y.lobster
-rw-r--r-- root/root    100057 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si3_3p_z.lobster
-rw-r--r-- root/root    100055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/FATBAND_si3_3s.lobster
-rw-r--r-- root/root      4211 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/KPOINTS
-rw-r--r-- root/root       840 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/POSCAR
-rw-r--r-- root/root    212022 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Fatband_SiO2/Test_p_x/vasprun.xml
-rw-r--r-- root/root       259 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/GROSSPOP.LCFO.lobster.AlN.gz
-rw-r--r-- root/root      2956 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/GROSSPOP.lobster
-rw-r--r-- root/root       259 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/GROSSPOP_511_nsp.lobster.NaCl.gz
-rw-r--r-- root/root       250 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/GROSSPOP_511_sp.lobster.AlN.gz
-rw-r--r-- root/root       657 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/IBZKPT_2_2_2_Li
-rw-r--r-- root/root      1107 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/IBZKPT_3_3_3_Li
-rw-r--r-- root/root      6254 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOBILIST.lobster
-rw-r--r-- root/root       426 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOBILIST.lobster.additional_case
-rw-r--r-- root/root     12508 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOBILIST.lobster.spinpolarized
-rw-r--r-- root/root       853 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOBILIST.lobster.spinpolarized.additional_case
-rw-r--r-- root/root       262 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOBILIST.lobster.withoutorbitals
-rw-r--r-- root/root     11258 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST.LCFO.lobster.AlN.gz
-rw-r--r-- root/root       470 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST.lobster
-rw-r--r-- root/root       901 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST.lobster.BiSe
-rw-r--r-- root/root       524 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST.lobster.KF_nospin
-rw-r--r-- root/root       901 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST.lobster.back
-rw-r--r-- root/root       169 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST.lobster.gz
-rw-r--r-- root/root     14156 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST_511_nsp.lobster.NaCl.gz
-rw-r--r-- root/root     10190 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST_511_sp.lobster.AlN.gz
-rw-r--r-- root/root       582 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOHPLIST_non_orbitalwise.LCFO.lobster.AlN.gz
-rw-r--r-- root/root       470 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOOPLIST.lobster
-rw-r--r-- root/root       901 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOOPLIST.lobster.BiSe
-rw-r--r-- root/root       524 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/ICOOPLIST.lobster.KF
-rw-r--r-- root/root    972692 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/LCAOWaveFunctionAfterLSO1PlotOfSpin1Kpoint1band1.gz
-rw-r--r-- root/root       268 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/MadelungEnergies.lobster.perovskite
-rw-r--r-- root/root       276 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Na_hamiltonMatrices.lobster.gz
-rw-r--r-- root/root      4239 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/NcICOBILIST.lobster
-rw-r--r-- root/root       340 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/NcICOBILIST.lobster.gz
-rw-r--r-- root/root      2119 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/NcICOBILIST.lobster.nospin
-rw-r--r-- root/root       234 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/NcICOBILIST.lobster.nospin.withoutorbitals
-rw-r--r-- root/root       469 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/NcICOBILIST.lobster.withoutorbitals
-rw-r--r-- root/root       167 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POLARIZATION.lobster.AlN.gz
-rw-r--r-- root/root      1266 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR
-rw-r--r-- root/root       570 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.B2H6
-rw-r--r-- root/root      1033 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.BiSe
-rw-r--r-- root/root       876 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.COBI
-rw-r--r-- root/root       180 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.GaAs
-rw-r--r-- root/root       572 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.GeTe
-rw-r--r-- root/root       143 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.Li
-rw-r--r-- root/root      1695 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.Na2UO4
-rw-r--r-- root/root      1293 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.SiO2
-rw-r--r-- root/root       312 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.W
-rw-r--r-- root/root       572 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.lobster
-rw-r--r-- root/root       423 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.orbitalwise
-rw-r--r-- root/root       876 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR.perovskite
-rw-r--r-- root/root        69 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POSCAR_O.gz
-rw-r--r-- root/root    486101 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/POTCAR.GaAs
-rw-r--r-- root/root       452 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Si_coefficientMatricesLSO1.lobster.gz
-rw-r--r-- root/root       181 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/Si_overlapMatrices.lobster.gz
-rw-r--r-- root/root       529 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/SitePotentials.lobster.perovskite
-rw-r--r-- root/root    901114 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/bandOverlaps.lobster.1
-rw-r--r-- root/root     31370 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/bandOverlaps.lobster.2
-rw-r--r-- root/root    316191 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/bandOverlaps.lobster.new.1
-rw-r--r-- root/root    158105 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/bandOverlaps.lobster.new.2
-rw-r--r-- root/root     17033 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/cobi.json
-rw-r--r-- root/root     35952 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/cohp.json
-rw-r--r-- root/root     13110 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/cohp.str
-rw-r--r-- root/root    661736 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/complete_cohp_forb.json
-rw-r--r-- root/root    133522 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/complete_cohp_lmto.json
-rw-r--r-- root/root     43017 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/complete_cohp_lobster.json
-rw-r--r-- root/root    134185 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/complete_cohp_orbitalwise.json
-rw-r--r-- root/root     68077 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/complete_coop_lobster.json
-rw-r--r-- root/root     13072 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/coop.json
-rw-r--r-- root/root      6089 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/coop.str
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/
-rw-r--r-- root/root       153 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.NaCl.gz
-rw-r--r-- root/root       209 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.NaSi.gz
-rw-r--r-- root/root       189 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.mp-2284.gz
-rw-r--r-- root/root       160 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.mp-241.gz
-rw-r--r-- root/root       157 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.mp-2741.gz
-rw-r--r-- root/root       176 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.mp-353.gz
-rw-r--r-- root/root       156 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.mp-706.gz
-rw-r--r-- root/root       149 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/CHARGE.lobster.mp_632319.gz
-rw-r--r-- root/root   5985393 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/COHPCAR.lobster.NaSi.gz
-rw-r--r-- root/root   2832932 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/COHPCAR.lobster.mp-190.gz
-rw-r--r-- root/root   4653907 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/COHPCAR.lobster.mp-353.gz
-rw-r--r-- root/root       344 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/GROSSPOP.lobster.mp-2284.gz
-rw-r--r-- root/root       223 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/GROSSPOP.lobster.mp-2741.gz
-rw-r--r-- root/root       284 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/GROSSPOP.lobster.mp-706.gz
-rw-r--r-- root/root      8809 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOBILIST.lobster.NaCl.gz
-rw-r--r-- root/root     91637 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOBILIST.lobster.mp_470.gz
-rw-r--r-- root/root      4754 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.NaCl.gz
-rw-r--r-- root/root     67495 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.NaSi.gz
-rw-r--r-- root/root      4171 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.mp-7000.gz
-rw-r--r-- root/root      1664 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.mp_190.gz
-rw-r--r-- root/root      1649 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.mp_190_2.gz
-rw-r--r-- root/root      1711 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.mp_353.gz
-rw-r--r-- root/root      6030 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOHPLIST.lobster.mp_632319.gz
-rw-r--r-- root/root      9332 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/ICOOPLIST.lobster.NaCl.gz
-rw-r--r-- root/root        88 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.NaCl.gz
-rw-r--r-- root/root       249 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.NaSi.gz
-rw-r--r-- root/root       112 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.mp-241.gz
-rw-r--r-- root/root       183 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.mp-7000.gz
-rw-r--r-- root/root        99 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.mp_190.gz
-rw-r--r-- root/root       118 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.mp_353.gz
-rw-r--r-- root/root       144 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.mp_470.gz
-rw-r--r-- root/root        99 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/environments/POSCAR.mp_632319.gz
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/hamiltonMatrices.lobster
-rw-r--r-- root/root       214 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterin.1
-rw-r--r-- root/root       297 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterin.2
-rw-r--r-- root/root       168 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterin.3
-rw-r--r-- root/root       163 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterin.4.gz
-rw-r--r-- root/root      1353 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.GaAs
-rw-r--r-- root/root      2030 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.fatband_grosspop_densityofenergy
-rw-r--r-- root/root      1717 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.normal
-rw-r--r-- root/root       938 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.normal2.gz
-rw-r--r-- root/root      2011 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.onethread
-rw-r--r-- root/root      1950 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.saveprojection
-rw-r--r-- root/root      2339 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.skip_cobi_madelung
-rw-r--r-- root/root      1903 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.skipping_all
-rw-r--r-- root/root      1834 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout.twospins
-rw-r--r-- root/root      2130 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout_cobi_madelung
-rw-r--r-- root/root      1685 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout_doscar_lso
-rw-r--r-- root/root       829 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout_from_projection
-rw-r--r-- root/root      1424 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/cohp/lobsterout_v511.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/
-rw-r--r-- root/root      4234 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/LobsterCompleteDos_MnO.json
-rw-r--r-- root/root      3040 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/LobsterCompleteDos_MnO_nonspin.json
-rw-r--r-- root/root      2381 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/LobsterCompleteDos_nonspin.json
-rw-r--r-- root/root      3083 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/LobsterCompleteDos_spin.json
-rw-r--r-- root/root   2388457 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/complete_dos.json
-rw-r--r-- root/root    180897 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/dos_spin_polarization_mp-865805.json
-rw-r--r-- root/root   4332725 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/pdag3_complete_dos.json.gz
-rw-r--r-- root/root       612 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/structure_KF.json
-rw-r--r-- root/root       634 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/dos/structure_MnO.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/plotter/
-rw-r--r-- root/root     61850 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/plotter/SrBa2Sn2O7.json
-rw-r--r-- root/root       468 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/electronic_structure/plotter/complete_dos_limits.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/
-rw-r--r-- root/root     12659 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/Fe2O3_exp.json
-rw-r--r-- root/root    455144 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/Li-Fe-P-O_entries.json
-rw-r--r-- root/root     43040 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/Mn-O_entries.json
-rw-r--r-- root/root    111943 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/TiO2_entries.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/compatibility/
-rw-r--r-- root/root      1561 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/compatibility/MP2020Compatibility_alternate.yaml
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/entries/correction_calculator/
-rw-r--r-- root/root    172180 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/entries/correction_calculator/calc_compounds_norm.json.gz
-rw-r--r-- root/root    172152 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/entries/correction_calculator/calc_missing_compounds.json.gz
-rw-r--r-- root/root      4173 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/entries/correction_calculator/exp_compounds_norm.json.gz
-rw-r--r-- root/root      3422 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/entries/correction_calculator/exp_no_error_compounds.json.gz
-rw-r--r-- root/root     18955 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/entries_thermo_type_GGA_GGA_U_R2SCAN.json
-rw-r--r-- root/root      2433 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/entries/structure_CO2.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/
-rw-r--r-- root/root    135868 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/14-Si.LDA.fhi
-rw-r--r-- root/root       811 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/14si.4.hgh
-rw-r--r-- root/root    305169 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/14si.pspnc
-rw-r--r-- root/root     73988 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/28ni.paw.tar.xz
-rw-r--r-- root/root     15144 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/Fe_magmoms_collinear_GSR.tar.xz
-rw-r--r-- root/root     18312 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/Fe_magmoms_noncollinear_GSR.tar.xz
-rw-r--r-- root/root     57451 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/H-wdr.oncvpsp
-rw-r--r-- root/root    570592 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/O.GGA_PBE-JTH-paw.xml
-rw-r--r-- root/root       569 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/Pb-d-3_r.psp8
-rw-r--r-- root/root      7072 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/Si2_GSR.nc
-rw-r--r-- root/root     10148 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/badyaml.log
-rw-r--r-- root/root       903 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/gan.cif
-rw-r--r-- root/root       590 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/ge.oncvpsp
-rw-r--r-- root/root    109088 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/mgb2_nscf.abo
-rw-r--r-- root/root     47719 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/mgb2_nscf.log
-rw-r--r-- root/root     81064 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/mgb2_scf.abo
-rw-r--r-- root/root     69562 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/mgb2_scf.log
-rw-r--r-- root/root      1579 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/si.cif
-rw-r--r-- root/root     49268 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/abinit/sic_relax.abo
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/
-rw-r--r-- root/root      1490 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/RhB18_adf.inp
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/analytical_freq/
-rw-r--r-- root/root    161055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/analytical_freq/adf.out
-rw-r--r-- root/root     13183 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/analytical_freq/logfile
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/numerical_freq/
-rw-r--r-- root/root    135897 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/numerical_freq/adf.out
-rw-r--r-- root/root     17037 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/numerical_freq/logfile
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/sp/
-rw-r--r-- root/root    115604 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/sp/adf.out
-rw-r--r-- root/root      5539 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/adf/sp/logfile
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/md-si/
-rw-r--r-- root/root      1205 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/md-si/control.in.gz
-rw-r--r-- root/root        94 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/md-si/geometry.in.gz
-rw-r--r-- root/root       244 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/md-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-no-kgrid-si/
-rw-r--r-- root/root     43588 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-no-kgrid-si/aims.out.gz
-rw-r--r-- root/root      1265 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-no-kgrid-si/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-no-kgrid-si/geometry.in.gz
-rw-r--r-- root/root       225 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-no-kgrid-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-o2/
-rw-r--r-- root/root     33061 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-o2/aims.out.gz
-rw-r--r-- root/root      1035 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-o2/control.in.gz
-rw-r--r-- root/root       175 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-o2/geometry.in.gz
-rw-r--r-- root/root       174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-o2/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-si/
-rw-r--r-- root/root     52402 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-si/aims.out.gz
-rw-r--r-- root/root      1264 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-si/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-si/geometry.in.gz
-rw-r--r-- root/root       222 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/relax-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-no-kgrid-si/
-rw-r--r-- root/root      1264 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-no-kgrid-si/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-no-kgrid-si/geometry.in.gz
-rw-r--r-- root/root       177 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-no-kgrid-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-o2/
-rw-r--r-- root/root      1047 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-o2/control.in.gz
-rw-r--r-- root/root       175 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-o2/geometry.in.gz
-rw-r--r-- root/root       135 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-o2/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-si/
-rw-r--r-- root/root      1263 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-si/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-si/geometry.in.gz
-rw-r--r-- root/root       174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-from-prev-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-no-kgrid-si/
-rw-r--r-- root/root      1151 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-no-kgrid-si/control.in.gz
-rw-r--r-- root/root       176 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-no-kgrid-si/geometry.in.gz
-rw-r--r-- root/root       175 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-no-kgrid-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-o2/
-rw-r--r-- root/root      1018 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-o2/control.in.gz
-rw-r--r-- root/root       175 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-o2/geometry.in.gz
-rw-r--r-- root/root       135 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-o2/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-density/
-rw-r--r-- root/root      1391 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-density/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-density/geometry.in.gz
-rw-r--r-- root/root       992 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-density/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-output/
-rw-r--r-- root/root      1397 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-output/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-output/geometry.in.gz
-rw-r--r-- root/root      1008 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs-output/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs/
-rw-r--r-- root/root      1390 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs/geometry.in.gz
-rw-r--r-- root/root       992 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-bs/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-gw/
-rw-r--r-- root/root      1420 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-gw/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-gw/geometry.in.gz
-rw-r--r-- root/root      1046 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si-gw/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si/
-rw-r--r-- root/root      1232 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si/control.in.gz
-rw-r--r-- root/root       204 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si/geometry.in.gz
-rw-r--r-- root/root       174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/aims_input_generator_ref/static-si/parameters.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/
-rw-r--r-- root/root      1369 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/control.in.h2o.gz
-rw-r--r-- root/root      1565 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/control.in.si.gz
-rw-r--r-- root/root      1546 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/control.in.si.no_sd.gz
-rw-r--r-- root/root       181 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/geometry.in.h2o.gz
-rw-r--r-- root/root       192 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/geometry.in.h2o.ref.gz
-rw-r--r-- root/root       237 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/geometry.in.si.gz
-rw-r--r-- root/root       263 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/geometry.in.si.ref.gz
-rw-r--r-- root/root       369 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/h2o_ref.json.gz
-rw-r--r-- root/root       581 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/input_files/si_ref.json.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/output_files/
-rw-r--r-- root/root     27951 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/output_files/h2o.out.gz
-rw-r--r-- root/root      1413 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/output_files/h2o_ref.json.gz
-rw-r--r-- root/root     24352 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/output_files/si.out.gz
-rw-r--r-- root/root      2074 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/output_files/si_ref.json.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/parser_checks/
-rw-r--r-- root/root      2461 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/parser_checks/calc_chunk.out.gz
-rw-r--r-- root/root       644 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/parser_checks/header_chunk.out.gz
-rw-r--r-- root/root      1242 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/parser_checks/molecular_calc_chunk.out.gz
-rw-r--r-- root/root       346 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/parser_checks/molecular_header_chunk.out.gz
-rw-r--r-- root/root      1824 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/parser_checks/numerical_stress.out.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/species_directory/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/species_directory/light/
-rw-r--r-- root/root       768 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/species_directory/light/01_H_default.gz
-rw-r--r-- root/root       889 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/species_directory/light/08_O_default.gz
-rw-r--r-- root/root      1095 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/aims/species_directory/light/14_Si_default.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/
-rw-r--r-- root/root      1269 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/bestsqs_nacl.cif
-rw-r--r-- root/root      1171 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/bestsqs_nacl.out
-rw-r--r-- root/root       894 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/bestsqs_pzt.cif
-rw-r--r-- root/root       805 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/bestsqs_pzt.out
-rw-r--r-- root/root      1042 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/perfect_match_zzn_rs.json
-rw-r--r-- root/root     11949 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/pzt-structs-2.json
-rw-r--r-- root/root     14588 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/atat/mcsqs/pzt-structs.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/babel/
-rw-r--r-- root/root       623 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/babel/Ethane_e.pdb
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/
-rw-r--r-- root/root       964 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/CsCl-manual-oxi-ref.mcif
-rw-r--r-- root/root      2011 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/GdB4-str-magnitudes-ref.mcif
-rw-r--r-- root/root      2013 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/GdB4-writer-ref.mcif
-rw-r--r-- root/root      3082 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/LaMnO3_magnetic.mcif
-rw-r--r-- root/root      1929 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/Mn3Ge_IR2.mcif
-rw-r--r-- root/root      3946 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/bad-unicode-gh-2947.mcif
-rw-r--r-- root/root      3846 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/magnetic.disordered.example.CuMnO2.mcif
-rw-r--r-- root/root      1352 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/magnetic.example.CuO.mcif.gz
-rw-r--r-- root/root      4508 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/magnetic.example.NiO.mcif
-rw-r--r-- root/root      4190 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/magnetic.incommensurate.example.Cr.mcif
-rw-r--r-- root/root      3765 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cif/mcif/magnetic.ncl.example.GdB4.mcif
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/
-rw-r--r-- root/root     47493 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/BAND.bs
-rw-r--r-- root/root       259 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/CP2K-1.dos
-rw-r--r-- root/root       939 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/CP2K-CHI-1_0.data
-rw-r--r-- root/root      1263 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/CP2K-GTENSOR-1_0.data
-rw-r--r-- root/root       929 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/CP2K-HYPERFINE-1_0.eprhyp
-rw-r--r-- root/root      3652 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/Si
-rw-r--r-- root/root       705 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/Static-ALPHA_k1-1.pdos
-rw-r--r-- root/root      3728 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/cp2k.inp
-rw-r--r-- root/root     78877 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/cp2k.out
-rw-r--r-- root/root        87 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cp2k/include.inc
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cssr/
-rw-r--r-- root/root      1161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cssr/EDI.cssr
-rw-r--r-- root/root      1191 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cssr/EDI_oxistate_decorated.cssr
-rw-r--r-- root/root       125 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cssr/Si.cssr
-rw-r--r-- root/root       551 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/cube-gh-2817.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/exciting/
-rw-r--r-- root/root      2055 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/exciting/input_exciting1.xml
-rw-r--r-- root/root      1049 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/exciting/input_exciting2.xml
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/
-rw-r--r-- root/root     42861 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/ATOMS
-rw-r--r-- root/root       495 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/HEADER
-rw-r--r-- root/root       299 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/PARAMETERS
-rw-r--r-- root/root       299 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/PARAMETERS.2
-rw-r--r-- root/root       335 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/POTENTIALS
-rw-r--r-- root/root       589 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/Pt37_atoms.inp.gz
-rw-r--r-- root/root     23381 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff.inp
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_dist_test/
-rw-r--r-- root/root      2900 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_dist_test/HEADER
-rw-r--r-- root/root       158 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_dist_test/PARAMETERS
-rw-r--r-- root/root     31308 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_dist_test/feff.inp
-rw-r--r-- root/root     57334 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_eels_powder.inp
-rw-r--r-- root/root     57340 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_eels_x.inp
-rw-r--r-- root/root      9657 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_radial_shell.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/
-rw-r--r-- root/root       207 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/PARAMETERS
-rw-r--r-- root/root       645 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/feff.inp
-rw-r--r-- root/root       256 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/ldos.inp
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/ldos00.dat
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/ldos01.dat
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/ldos02.dat
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/ldos03.dat
-rw-r--r-- root/root      1396 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/feff_reci_dos/pot.inp
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/ldos00.dat
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/ldos01.dat
-rw-r--r-- root/root      7286 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/ldos02.dat
-rw-r--r-- root/root      8090 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/feff/xmu.dat
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/fiesta/
-rw-r--r-- root/root     39007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/fiesta/log_fiesta
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/
-rw-r--r-- root/root      3669 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/C60_gau.com
-rw-r--r-- root/root     82538 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/CH2O_CO2.log
-rw-r--r-- root/root     31505 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/EC.log.gz
-rw-r--r-- root/root     70123 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/H2O_gau.out
-rw-r--r-- root/root    260386 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/H2O_gau_vib.out
-rw-r--r-- root/root    312107 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/H2O_scan_G16.out
-rw-r--r-- root/root      2819 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/MethylPyrrolidine_drawn.gjf
-rw-r--r-- root/root    424828 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/acene-n_gaussian09_opt.out
-rw-r--r-- root/root      4780 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/g305_hb.txt
-rw-r--r-- root/root       855 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/l-cysteine.inp
-rw-r--r-- root/root    338165 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/l-cysteine.out
-rw-r--r-- root/root     61774 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/methane.log
-rw-r--r-- root/root    123745 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/so2_scan.log
-rw-r--r-- root/root    522397 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/so2_scan_opt.log
-rw-r--r-- root/root     18266 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/gaussian/so2_td.log
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/
-rw-r--r-- root/root      1667 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/cocktail.xyz
-rw-r--r-- root/root    109843 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/crambin.data
-rw-r--r-- root/root    298623 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/data.peptide
-rw-r--r-- root/root       684 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/data.quartz
-rw-r--r-- root/root      2974 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.rdx.gz
-rw-r--r-- root/root       894 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.rdx_wc.0
-rw-r--r-- root/root       894 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.rdx_wc.100
-rw-r--r-- root/root       889 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.rdx_wc.25
-rw-r--r-- root/root       895 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.rdx_wc.50
-rw-r--r-- root/root       893 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.rdx_wc.75
-rw-r--r-- root/root     15848 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/dump.tatb
-rw-r--r-- root/root      1168 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/ec.data.gz
-rw-r--r-- root/root    208421 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/ec_fec.xyz.gz
-rw-r--r-- root/root      3849 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/ethane.data
-rw-r--r-- root/root      1395 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/fec.data.gz
-rw-r--r-- root/root      1357 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/ff_ethane.yaml
-rw-r--r-- root/root       935 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/in.peptide
-rw-r--r-- root/root      1635 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/kappa.txt
-rw-r--r-- root/root      3262 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/lgps.cif
-rw-r--r-- root/root       831 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/lgps.in
-rw-r--r-- root/root       404 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/li.data
-rw-r--r-- root/root        20 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/li_2.xyz
-rw-r--r-- root/root       621 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/li_ec.xyz
-rw-r--r-- root/root       621 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/li_ec_2.xyz
-rw-r--r-- root/root       231 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/li_minimal.data
-rw-r--r-- root/root      2918 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/log.13Oct16.ehex.g++.8.gz
-rw-r--r-- root/root      3698 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/log.5Oct16.comb.Si.elastic.g++.1.gz
-rw-r--r-- root/root      2401 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/log.5Oct16.peptide.g++.1.gz
-rw-r--r-- root/root       195 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/peo_bulk.xyz
-rw-r--r-- root/root       216 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/peo_head.xyz
-rw-r--r-- root/root       215 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/peo_tail.xyz
-rw-r--r-- root/root     69268 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/tatb.data
-rw-r--r-- root/root     38624 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/topologies_ice.json.gz
-rw-r--r-- root/root     15869 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/lammps/virus.data
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/
-rw-r--r-- root/root    476974 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/CPprop_all.txt
-rw-r--r-- root/root    474330 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/CPprop_fudged_nuclei.txt
-rw-r--r-- root/root      2642 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/cp_fake_type.txt
-rw-r--r-- root/root      2642 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/cp_just_atom.txt
-rw-r--r-- root/root      2608 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/cp_just_bond.txt
-rw-r--r-- root/root      2605 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/cp_just_cage.txt
-rw-r--r-- root/root      2608 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/cp_just_ring.txt
-rw-r--r-- root/root      2639 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/cp_unknown_atom.txt
-rw-r--r-- root/root      1460 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/multiwfn/mol_all.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/
-rw-r--r-- root/root      4448 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/C1N1Cl1_1.nwout
-rw-r--r-- root/root    802979 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/CH3CH2O.nwout
-rw-r--r-- root/root    239127 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/CH4.nwout
-rw-r--r-- root/root    689937 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/H4C3O3_1.nwout
-rw-r--r-- root/root    806943 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/N2O4.nwout
-rw-r--r-- root/root   1938352 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/anthrachinon_wfs_15_carboxyl.nwout
-rw-r--r-- root/root   3489152 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/anthrachinon_wfs_16_ethyl.nwout
-rw-r--r-- root/root       849 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/ch4.nw
-rw-r--r-- root/root    117272 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/nwchem/phen_tddft.log
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/
-rw-r--r-- root/root       200 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/CCO.npy
-rw-r--r-- root/root       363 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/CCO.xyz
-rw-r--r-- root/root       404 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/FEC-r.xyz
-rw-r--r-- root/root       404 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/FEC-s.xyz
-rw-r--r-- root/root       208 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/FEC.npy
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/FEC_bad.npy
-rw-r--r-- root/root       136 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/Li.npy
-rw-r--r-- root/root        27 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/Li.xyz
-rw-r--r-- root/root       184 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/PF6.npy
-rw-r--r-- root/root       164 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/openff/classical_md_mols/PF6.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/packmol/
-rw-r--r-- root/root       788 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/packmol/LiTFSi.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/packmol/subdir with spaces/
-rw-r--r-- root/root       739 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/packmol/subdir with spaces/EMC.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/
-rw-r--r-- root/root    860165 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/FORCE_CONSTANTS
-rw-r--r-- root/root    485041 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/NaCl_band.yaml
-rw-r--r-- root/root     12280 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/NaCl_partial_dos.dat
-rw-r--r-- root/root     11868 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/NaCl_phonopy.yaml
-rw-r--r-- root/root      8260 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/NaCl_total_dos.dat
-rw-r--r-- root/root       743 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/POSCAR-NaCl
-rw-r--r-- root/root      2222 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/phonopy/POSCAR-unitcell
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwmat/
-rw-r--r-- root/root      7076 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwmat/DOS.spinup_projected
-rw-r--r-- root/root      6355 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwmat/MOVEMENT.lzma
-rw-r--r-- root/root        63 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwmat/OUT.FERMI.lzma
-rw-r--r-- root/root      6808 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwmat/REPORT
-rw-r--r-- root/root       766 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwmat/atom.config
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwscf/
-rw-r--r-- root/root     12071 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/pwscf/Si.pwscf.out
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/
-rw-r--r-- root/root       359 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/131.0.gz
-rw-r--r-- root/root      9811 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/132.0.gz
-rw-r--r-- root/root   2766371 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/53.0.gz
-rw-r--r-- root/root      6990 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/6.1.1.freq.out.gz
-rw-r--r-- root/root     10136 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/6.1.1.opt.out.gz
-rw-r--r-- root/root     11844 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/6.1.1.wb97xv.out.gz
-rw-r--r-- root/root     73121 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/CdBr2.qcout
-rw-r--r-- root/root       375 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/MgBF4_b_overalpped.qcinp
-rw-r--r-- root/root     13043 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/MgBF4_b_overalpped.qcout
-rw-r--r-- root/root     38641 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/aux_mpi_time_mol.qcout
-rw-r--r-- root/root     15612 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/bsse.qcout
-rw-r--r-- root/root     20906 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/chelpg_charges.qcout
-rw-r--r-- root/root    319548 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/crazy_scf_values.qcout
-rw-r--r-- root/root     73861 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/crowd_gradient_number.qcout
-rw-r--r-- root/root    536675 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/crowd_nbo_charges.qcout
-rw-r--r-- root/root     10617 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/exit_code_134.qcout
-rw-r--r-- root/root   1480705 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/extra_scf_print.qcout
-rw-r--r-- root/root    455467 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/ferrocenium_1pos.qcout
-rw-r--r-- root/root     18579 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/freq_seg_too_small.qcout
-rw-r--r-- root/root     14034 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/ghost_atoms.qcout
-rw-r--r-- root/root     60474 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/gmd_scf.qcout
-rw-r--r-- root/root     65709 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/h2o_aimd.qcout
-rw-r--r-- root/root      4852 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/hf.qcout
-rw-r--r-- root/root     16002 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/hf_opt_failed.qcout
-rw-r--r-- root/root     18548 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/hirshfeld_population.qcout
-rw-r--r-- root/root    123378 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/homo_lumo_nan_values.qcout
-rw-r--r-- root/root     24058 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/insufficient_memory.qcout
-rw-r--r-- root/root     45003 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/killed.qcout
-rw-r--r-- root/root    667000 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/multi_job.json
-rw-r--r-- root/root     23203 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/negative_eigen.qcout
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/
-rw-r--r-- root/root   1891191 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/1570.qout
-rw-r--r-- root/root    325841 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/1570_2.qout
-rw-r--r-- root/root   1915646 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/1746.qout
-rw-r--r-- root/root   1886620 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/2068.qout
-rw-r--r-- root/root   2328647 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/2620.qout
-rw-r--r-- root/root  22399489 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/3C.qout
-rw-r--r-- root/root     82255 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/DinfH.qout
-rw-r--r-- root/root    103092 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/Frequency_no_equal.qout
-rw-r--r-- root/root   1007487 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/MECLi_solv_eps10.qcout
-rw-r--r-- root/root     16958 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/N2.qcout
-rw-r--r-- root/root    133162 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/Optimization_no_equal.qout
-rw-r--r-- root/root     25067 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/VCGenSCFMan.qcout
-rw-r--r-- root/root    246600 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/VCLi_solv_eps10.qcout
-rw-r--r-- root/root     34961 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/VC_solv_eps10.2.qcout
-rw-r--r-- root/root    248270 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/VC_solv_eps10.qcout
-rw-r--r-- root/root     22551 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/almo.out
-rw-r--r-- root/root      6498 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/basis_not_supported.qout
-rw-r--r-- root/root     36112 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/ccsd.qout
-rw-r--r-- root/root     24319 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/ccsdt.qout
-rw-r--r-- root/root     60001 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cdft_dc.qout
-rw-r--r-- root/root     17600 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cdft_simple.qout
-rw-r--r-- root/root     28424 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cmirs_benzene.qcout
-rw-r--r-- root/root     16173 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cmirs_benzene_single.qcout
-rw-r--r-- root/root     28474 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cmirs_dielst10.qcout
-rw-r--r-- root/root     16225 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cmirs_dielst10_single.qcout
-rw-r--r-- root/root     16302 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/cmirs_water_single.qcout
-rw-r--r-- root/root    546371 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/custom_gdm_gdmqls_opt.qout
-rw-r--r-- root/root      1389 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/custom_smd.qin
-rw-r--r-- root/root     95462 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/e2pert.qin
-rw-r--r-- root/root     17072 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/fodft.out
-rw-r--r-- root/root     17225 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/fodft_2.out
-rw-r--r-- root/root     17273 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/fodft_3.out
-rw-r--r-- root/root     21626 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/gap.qout
-rw-r--r-- root/root     26612 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/gdm.qout
-rw-r--r-- root/root  27144513 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/hyper.qout
-rw-r--r-- root/root     27791 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/isosvp_dielst10.qcout
-rw-r--r-- root/root     15171 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/isosvp_dielst10_single.qcout
-rw-r--r-- root/root     27794 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/isosvp_water.qcout
-rw-r--r-- root/root     15174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/isosvp_water_single.qcout
-rw-r--r-- root/root     20068 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/julian.qcout.gz
-rw-r--r-- root/root     16742 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/lebdevpts.qout
-rw-r--r-- root/root      4919 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/molecule_read_error.qout
-rw-r--r-- root/root       173 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/mpi_error.qout
-rw-r--r-- root/root    424727 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo.qout
-rw-r--r-- root/root    184524 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo5_1.qout
-rw-r--r-- root/root       510 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo7.qin
-rw-r--r-- root/root   1198307 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo7_1.qout
-rw-r--r-- root/root   2832806 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo7_2.qout
-rw-r--r-- root/root    767247 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo7_3.qout
-rw-r--r-- root/root  27144513 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/nbo7_inf.qout
-rw-r--r-- root/root  13700134 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/os_gap.qout
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/parse_hess/
-rw-r--r-- root/root      1152 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/parse_hess/132.0
-rw-r--r-- root/root      1933 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/parse_hess/HESS
-rw-r--r-- root/root       857 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pcm.qin
-rw-r--r-- root/root       991 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pes_scan.qin
-rw-r--r-- root/root  11720217 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pes_scan_double_variable.qout
-rw-r--r-- root/root   4625191 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pes_scan_single_variable.qout
-rw-r--r-- root/root     15438 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pod1.out
-rw-r--r-- root/root     15482 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pod2_gs.out
-rw-r--r-- root/root     50298 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pt_n2_gs_rimp2_pvqz_90.0.qcout
-rw-r--r-- root/root     77007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pt_n2_n_wb_180.0.qcout
-rw-r--r-- root/root    346602 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/pt_n2_trip_wb_90.0.qcout
-rw-r--r-- root/root   1477926 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/roothaan_diis_gdm.qout
-rw-r--r-- root/root     20237 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/single_point.qout
-rw-r--r-- root/root    210842 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/svd_failed.qout
-rw-r--r-- root/root   2907572 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/switch_to_cartesian.qout
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/test_structure_change/
-rw-r--r-- root/root       199 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/test_structure_change/frag_1.xyz
-rw-r--r-- root/root       199 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/test_structure_change/frag_2.xyz
-rw-r--r-- root/root    111104 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/ts.out
-rw-r--r-- root/root   3629702 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/unable.qout
-rw-r--r-- root/root    531391 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/unexpected_ts.out
-rw-r--r-- root/root    162457 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/new_qchem_files/v6_old_driver.out
-rw-r--r-- root/root      3405 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/no_reading.qcout
-rw-r--r-- root/root    607326 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/not_enough_total_memory.qcout
-rw-r--r-- root/root      5011 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/odd.json
-rw-r--r-- root/root     77479 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/opt_fail_no_message.qcout
-rw-r--r-- root/root     34328 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/ordinal_not_in_range.qcout.gz
-rw-r--r-- root/root       623 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/partial_hessian.qcinp
-rw-r--r-- root/root     14897 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/pcm_solvent_deprecated.qcout
-rw-r--r-- root/root      1366 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/pcm_solvent_qc42_format.qcinp
-rw-r--r-- root/root    113477 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/pt_dft_180.0.qcout
-rw-r--r-- root/root      1736 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/pt_n2_wb97mv_0.0.in
-rw-r--r-- root/root     29783 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem43_batch_job.qcout
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/
-rw-r--r-- root/root     11228 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf-rimp2.qcout
-rw-r--r-- root/root     10186 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_b3lyp.qcout
-rw-r--r-- root/root     16934 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_ccsd(t).qcout
-rw-r--r-- root/root     10313 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_cosmo.qcout
-rw-r--r-- root/root      9349 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_hf.qcout
-rw-r--r-- root/root     11664 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_lxygjos.qcout
-rw-r--r-- root/root     11492 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_mosmp2.qcout
-rw-r--r-- root/root      9773 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_mp2.qcout
-rw-r--r-- root/root     10174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_pcm.qcout
-rw-r--r-- root/root     21281 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_qcisd(t).qcout
-rw-r--r-- root/root     17129 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_riccsd(t).qcout
-rw-r--r-- root/root     10068 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_tpssh.qcout
-rw-r--r-- root/root    157541 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_wb97xd_gen_scfman.qcout
-rw-r--r-- root/root     10638 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_xyg3.qcout
-rw-r--r-- root/root     12389 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/qchem_energies/hf_xygjos.qcout
-rw-r--r-- root/root    210587 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/quinoxaline_anion.qcout
-rw-r--r-- root/root      9064 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/scf_no_message_fail.qcout
-rw-r--r-- root/root      9065 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/scf_opt_no_message_fail.qcout
-rw-r--r-- root/root  10927807 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/single_job.json
-rw-r--r-- root/root       527 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/test_ref.qin
-rw-r--r-- root/root       589 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/test_ref_vdw.qin
-rw-r--r-- root/root    145606 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/tfsi_nbo.qcout
-rw-r--r-- root/root     92384 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/thiophene_wfs_5_carboxyl.qcout
-rw-r--r-- root/root     35365 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/time_nan_values.qcout
-rw-r--r-- root/root    153176 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/qchem/unable_to_determine_lambda_in_geom_opt.qcout
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/res/
-rw-r--r-- root/root      1600 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/res/coc-115925-9326-14.res
-rw-r--r-- root/root      2956 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/res/spins-in-last-col.res
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/shengbte/
-rw-r--r-- root/root       555 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/shengbte/CONTROL-CSLD_Si
-rw-r--r-- root/root       115 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/template_input_file.txt
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/
-rw-r--r-- root/root    692018 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/POTCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_1_polarization/
-rw-r--r-- root/root    164161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_1_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_1_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_2_polarization/
-rw-r--r-- root/root    164161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_2_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_2_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_3_polarization/
-rw-r--r-- root/root    164161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_3_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_3_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_4_polarization/
-rw-r--r-- root/root    164161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_4_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_4_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_5_polarization/
-rw-r--r-- root/root    164161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_5_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_5_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_6_polarization/
-rw-r--r-- root/root    160479 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_6_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_6_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_7_polarization/
-rw-r--r-- root/root    164309 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_7_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_7_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_8_polarization/
-rw-r--r-- root/root    164161 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_8_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/interpolation_8_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/nonpolar_polarization/
-rw-r--r-- root/root    158369 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/nonpolar_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/nonpolar_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/polar_polarization/
-rw-r--r-- root/root    232676 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/polar_polarization/OUTCAR
-rw-r--r-- root/root       264 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/BTO_221_99_polarization/polar_polarization/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/ipa/
-rw-r--r-- root/root       401 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/ipa/INCAR
-rw-r--r-- root/root   1087338 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/ipa/OUTCAR
-rw-r--r-- root/root        14 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/ipa/WAVECAR
-rw-r--r-- root/root        14 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/ipa/WAVEDER
-rw-r--r-- root/root   4778075 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/ipa/vasprun.xml
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/static/
-rw-r--r-- root/root       350 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/static/INCAR
-rw-r--r-- root/root    132209 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/static/OUTCAR
-rw-r--r-- root/root       164 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/static/POSCAR
-rw-r--r-- root/root        14 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/static/WAVECAR
-rw-r--r-- root/root    498316 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/absorption/static/vasprun.xml
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/fe_monomer/
-rw-r--r-- root/root     85984 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/fe_monomer/OUTCAR
-rw-r--r-- root/root     34730 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/fe_monomer/vasprun.xml.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/grid_data_files/
-rw-r--r-- root/root   8650403 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/grid_data_files/vasp_inputs_for_grid_check.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/kpoints_opt/
-rw-r--r-- root/root        45 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/kpoints_opt/KPOINTS
-rw-r--r-- root/root       429 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/kpoints_opt/KPOINTS_OPT
-rw-r--r-- root/root    788207 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/kpoints_opt/vasprun.xml.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/00/
-rw-r--r-- root/root   3957239 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/00/OUTCAR
-rw-r--r-- root/root      1038 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/00/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/01/
-rw-r--r-- root/root      3702 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/01/CONTCAR
-rw-r--r-- root/root   8686657 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/01/OUTCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/02/
-rw-r--r-- root/root      3702 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/02/CONTCAR
-rw-r--r-- root/root   8613205 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/02/OUTCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/03/
-rw-r--r-- root/root      3702 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/03/CONTCAR
-rw-r--r-- root/root   8686655 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/03/OUTCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/04/
-rw-r--r-- root/root   3953289 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/04/OUTCAR
-rw-r--r-- root/root      1872 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb1/neb/04/POSCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb2/
-rw-r--r-- root/root     57848 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/neb_analysis/neb2/neb_analysis2.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/
-rw-r--r-- root/root      8465 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/CONTCAR
-rw-r--r-- root/root       240 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/INCAR
-rw-r--r-- root/root        24 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/KPOINTS
-rw-r--r-- root/root   1936535 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/OUTCAR
-rw-r--r-- root/root      8465 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/POSCAR
-rw-r--r-- root/root    611443 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/hydromagnesite/POTCAR
-rw-r--r-- root/root    996265 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/basic/vasprun.xml.chemical_shift.scstep
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/
-rw-r--r-- root/root   1072544 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/core.diff.chemical.shifts.OUTCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/
-rw-r--r-- root/root      8465 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/CONTCAR
-rw-r--r-- root/root       240 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/INCAR
-rw-r--r-- root/root        24 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/KPOINTS
-rw-r--r-- root/root   1936535 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/OUTCAR
-rw-r--r-- root/root      8465 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/POSCAR
-rw-r--r-- root/root    611443 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/cs/core.diff/hydromagnesite/POTCAR
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/
-rw-r--r-- root/root      4956 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/CONTCAR
-rw-r--r-- root/root       197 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/INCAR
-rw-r--r-- root/root    274379 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/OUTCAR
-rw-r--r-- root/root      4946 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/POSCAR
-rw-r--r-- root/root    772006 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/POTCAR
-rw-r--r-- root/root    235485 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/nmr/efg/AlPO4/vasprun.xml
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/relaxation/
-rw-r--r-- root/root   5480580 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/relaxation/CHGCAR
-rw-r--r-- root/root    106024 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/relaxation/OUTCAR
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/relaxation/WAVECAR
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/relaxation/WAVEDER
-rw-r--r-- root/root     17277 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/relaxation/vasprun.xml.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/reproduce_eps/
-rw-r--r-- root/root   1119872 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/reproduce_eps/WAVEDER
-rw-r--r-- root/root   1603084 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/reproduce_eps/vasprun.xml
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/scan_relaxation/
-rw-r--r-- root/root    131167 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/scan_relaxation/OUTCAR
-rw-r--r-- root/root     29661 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/scan_relaxation/vasprun.xml.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/static_silicon/
-rw-r--r-- root/root        26 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/static_silicon/CHGCAR
-rw-r--r-- root/root      1314 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/static_silicon/OSZICAR
-rw-r--r-- root/root     61474 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/static_silicon/OUTCAR
-rw-r--r-- root/root     29136 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/fixtures/static_silicon/vasprun.xml.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/
-rw-r--r-- root/root      1548 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/FePO4.vasp
-rw-r--r-- root/root       483 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/INCAR
-rw-r--r-- root/root       258 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/INCAR.lobster
-rw-r--r-- root/root       259 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/INCAR.lobster2
-rw-r--r-- root/root       246 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/INCAR.lobster3
-rw-r--r-- root/root       285 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/INCAR_2
-rw-r--r-- root/root       238 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/INCAR_C2
-rw-r--r-- root/root        76 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS
-rw-r--r-- root/root       855 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_Si_bands
-rw-r--r-- root/root        57 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_auto
-rw-r--r-- root/root       859 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_band
-rw-r--r-- root/root     26331 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_band.lobster
-rw-r--r-- root/root        89 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_cartesian
-rw-r--r-- root/root       100 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_explicit
-rw-r--r-- root/root       145 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_explicit_tet
-rw-r--r-- root/root        99 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_force_hybrid_like_calc
-rw-r--r-- root/root        34 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/KPOINTS_gamma
-rw-r--r-- root/root      1517 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR
-rw-r--r-- root/root       499 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR.AlN
-rw-r--r-- root/root       174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR.lobster.nonspin_DOS
-rw-r--r-- root/root       112 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR.lobster.nonspin_DOSzip.gz
-rw-r--r-- root/root       174 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR.lobster.spin_DOS
-rw-r--r-- root/root      1056 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_Al12O18
-rw-r--r-- root/root       157 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_C2
-rw-r--r-- root/root       543 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_Fe3O4
-rw-r--r-- root/root      4374 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_Li2O
-rw-r--r-- root/root       950 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_LiFePO4
-rw-r--r-- root/root       167 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_MnO
-rw-r--r-- root/root      1172 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_O2
-rw-r--r-- root/root       353 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_bcc
-rw-r--r-- root/root       761 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_fcc
-rw-r--r-- root/root       382 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_fit_symm_s1
-rw-r--r-- root/root       382 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_fit_symm_s2
-rw-r--r-- root/root       353 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_hcp
-rw-r--r-- root/root       381 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_overlap
-rw-r--r-- root/root      6388 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_symbols_natoms_multilines
-rw-r--r-- root/root      4044 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POSCAR_tricky_symmetry
-rw-r--r-- root/root    233637 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POTCAR_2_LiFePO4.gz
-rw-r--r-- root/root     74900 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POTCAR_C2.gz
-rw-r--r-- root/root    120737 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POTCAR_Fe3O4.gz
-rw-r--r-- root/root    233633 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POTCAR_LiFePO4.gz
-rw-r--r-- root/root        76 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POTCAR_spec
-rw-r--r-- root/root    154046 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/POTCAR_split_charged.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/
-rw-r--r-- root/root    213571 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POTCAR.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POTPAW_PBE_54/
-rw-r--r-- root/root     88176 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POTPAW_PBE_54/POTCAR.Al.gz
-rw-r--r-- root/root    106198 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POTPAW_PBE_54/POTCAR.Fe_pv.gz
-rw-r--r-- root/root     87604 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POTPAW_PBE_54/POTCAR.Si.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/
-rw-r--r-- root/root     83256 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.Fe.gz
-rw-r--r-- root/root     83115 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.Fe_pv.gz
-rw-r--r-- root/root     64529 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.Li_sv.gz
-rw-r--r-- root/root     81389 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.Mn_pv.gz
-rw-r--r-- root/root     70719 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.Na_pv.gz
-rw-r--r-- root/root     62543 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.O.gz
-rw-r--r-- root/root     69570 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.P.gz
-rw-r--r-- root/root     69829 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE/POTCAR.Si.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_52/
-rw-r--r-- root/root    105880 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_52/POTCAR.Fe_pv.gz
-rw-r--r-- root/root     97260 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_52/POTCAR.O.gz
-rw-r--r-- root/root     91205 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_52/POTCAR.P.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/
-rw-r--r-- root/root    105839 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.Fe.gz
-rw-r--r-- root/root    202277 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.Fe_O.gz
-rw-r--r-- root/root    105857 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.Fe_pv.gz
-rw-r--r-- root/root    106379 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.Fe_pv_with_hash.gz
-rw-r--r-- root/root     95949 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.Li_sv_GW.gz
-rw-r--r-- root/root     97399 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.O.gz
-rw-r--r-- root/root     80089 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.O_GW.gz
-rw-r--r-- root/root     91285 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_GGA_PAW_PBE_54/POTCAR.P.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW/
-rw-r--r-- root/root     83140 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW/POTCAR.Fe.gz
-rw-r--r-- root/root     66462 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW/POTCAR.P.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW_64/
-rw-r--r-- root/root     88418 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW_64/POTCAR.Al.gz
-rw-r--r-- root/root    106384 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW_64/POTCAR.Fe_pv.gz
-rw-r--r-- root/root     87777 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_LDA_PAW_64/POTCAR.Si.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_PAW_PBE_64/
-rw-r--r-- root/root    106185 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_PAW_PBE_64/POTCAR.Fe_pv.gz
-rw-r--r-- root/root     97614 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_PAW_PBE_64/POTCAR.O.gz
-rw-r--r-- root/root     91547 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/POT_PAW_PBE_64/POTCAR.P.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_data/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_data/POT_GGA_PAW_PBE/
-rw-r--r-- root/root     83095 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_data/POT_GGA_PAW_PBE/POTCAR.Fe_pv.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_data/POT_GGA_PAW_PBE_54/
-rw-r--r-- root/root    106127 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_data/POT_GGA_PAW_PBE_54/POTCAR.Fe_pv_with_hash.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_header/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_header/POT_GGA_PAW_PBE/
-rw-r--r-- root/root     83161 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/fake_potcars/modified_potcars_header/POT_GGA_PAW_PBE/POTCAR.Fe_pv.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/wrong_potcars/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/wrong_potcars/POT_GGA_PAW_PBE/
-rw-r--r-- root/root     70804 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/wrong_potcars/POT_GGA_PAW_PBE/POTCAR.Fe.gz
-rw-r--r-- root/root     56461 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/inputs/wrong_potcars/POT_GGA_PAW_PBE/POTCAR.P.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/
-rw-r--r-- root/root   4476471 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CHGCAR.Fe3O4.gz
-rw-r--r-- root/root   2401056 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CHGCAR.Fe3O4_ref.gz
-rw-r--r-- root/root   4890917 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CHGCAR.NiO_SOC.gz
-rw-r--r-- root/root    187606 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CHGCAR.nospin.gz
-rw-r--r-- root/root   1313959 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CHGCAR.spin.gz
-rw-r--r-- root/root     13279 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CONTCAR.MD
-rw-r--r-- root/root      2791 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CONTCAR.MD.npt
-rw-r--r-- root/root     10859 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/CONTCAR_Li2O
-rw-r--r-- root/root      4577 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/DOSCAR.LCFO.lobster.AlN
-rw-r--r-- root/root      1349 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/DOSCAR.lobster.nonspin
-rw-r--r-- root/root      2009 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/DOSCAR.lobster.spin
-rw-r--r-- root/root       723 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/DYNMAT
-rw-r--r-- root/root     24161 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/EIGENVAL.gz
-rw-r--r-- root/root      7649 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/EIGENVAL.ispin2.gz
-rw-r--r-- root/root      9153 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/EIGENVAL_separate_spins.gz
-rw-r--r-- root/root    114114 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/ELFCAR.gz
-rw-r--r-- root/root      8157 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/IBZKPT.lobster
-rw-r--r-- root/root    209397 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/LOCPOT.gz
-rw-r--r-- root/root       394 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/LOCPOT.vasp642.gz
-rw-r--r-- root/root     38262 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OSZICAR
-rw-r--r-- root/root    229104 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.Al
-rw-r--r-- root/root    232676 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.BaTiO3.polar
-rw-r--r-- root/root    440814 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.CL.gz
-rw-r--r-- root/root    228160 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.LOPTICS
-rw-r--r-- root/root    160873 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.LOPTICS.vasp544
-rw-r--r-- root/root    211497 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.LaSnNO2.polar
-rw-r--r-- root/root     53817 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.LinearResponseU.gz
-rw-r--r-- root/root     45039 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.NiO_SOC.gz
-rw-r--r-- root/root     22940 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.bad_core_poten.gz
-rw-r--r-- root/root    261831 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.dielectric
-rw-r--r-- root/root    359632 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.electrostaticerror.gz
-rw-r--r-- root/root     24244 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.etest1.gz
-rw-r--r-- root/root     31233 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.etest2.gz
-rw-r--r-- root/root     25794 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.etest3.gz
-rw-r--r-- root/root     32087 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.etest4.gz
-rw-r--r-- root/root    935659 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.gz
-rw-r--r-- root/root     82352 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.icorelevel
-rw-r--r-- root/root    512475 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.lepsilon.gz
-rw-r--r-- root/root    470520 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.lepsilon_old_born.gz
-rw-r--r-- root/root     13552 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.serial.gz
-rw-r--r-- root/root   1120310 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.stopped.gz
-rw-r--r-- root/root    146488 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.total_tensor.Li2O.gz
-rw-r--r-- root/root    137415 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.vasp.6.2.0.gz
-rw-r--r-- root/root     35630 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR.vasp.6.2.1.mpi.gz
-rw-r--r-- root/root    123727 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR_fc
-rw-r--r-- root/root     69415 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR_merged_numbers
-rw-r--r-- root/root    282329 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR_merged_numbers2
-rw-r--r-- root/root     35545 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/OUTCAR_vasp_6.3.gz
-rwxr-xr-x root/root     87417 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.SOC.gz
-rw-r--r-- root/root    126911 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.gz
-rw-r--r-- root/root    102050 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.new_format_5.4.4.gz
-rw-r--r-- root/root    150264 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.phase.gz
-rw-r--r-- root/root     44712 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.simple
-rw-r--r-- root/root    291461 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.split1.gz
-rw-r--r-- root/root    291421 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.split2.gz
-rw-r--r-- root/root      4480 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.H2.ncl
-rw-r--r-- root/root      2304 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.H2_low_symm
-rw-r--r-- root/root      1296 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.H2_low_symm.gamma
-rw-r--r-- root/root     24768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.N2
-rw-r--r-- root/root     24768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.N2.45210
-rw-r--r-- root/root     24768 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.N2.malformed
-rw-r--r-- root/root     49536 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.N2.spin
-rw-r--r-- root/root      4480 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVECAR.frac_encut
-rw-r--r-- root/root    387200 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVEDER
-rw-r--r-- root/root   1155200 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVEDER.Si
-rw-r--r-- root/root   1550009 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WAVEDERF.Si.gz
-rw-r--r-- root/root     54558 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/WSWQ.gz
-rw-r--r-- root/root     15516 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR.MD
-rw-r--r-- root/root       652 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_4
-rw-r--r-- root/root       756 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_5
-rw-r--r-- root/root      1860 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_6
-rw-r--r-- root/root       592 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_monatomic.gz
-rw-r--r-- root/root    231007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_traj
-rw-r--r-- root/root    231007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_traj_combine_test_1
-rw-r--r-- root/root    111001 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_traj_combine_test_2
-rw-r--r-- root/root    462007 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/XDATCAR_traj_combine_test_full
-rw-r--r-- root/root     32851 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.Al.xml.gz
-rw-r--r-- root/root     87599 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.BSE.xml.gz
-rw-r--r-- root/root   1187230 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.C2.xml.gz
-rw-r--r-- root/root     56861 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.GW0.xml.gz
-rw-r--r-- root/root     29274 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.LiF.xml.gz
-rw-r--r-- root/root     29773 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.LiH_bad_efermi.xml.gz
-rw-r--r-- root/root      6129 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.bad.xml.gz
-rw-r--r-- root/root    181061 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.bad_fermi.xml.gz
-rw-r--r-- root/root    592695 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.bad_random_seed.xml.gz
-rw-r--r-- root/root     34760 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.charged.xml.gz
-rw-r--r-- root/root     54385 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.chi.xml.gz
-rw-r--r-- root/root   4528644 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dfpt.ionic.xml.gz
-rw-r--r-- root/root    187299 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dfpt.phonon.xml.gz
-rw-r--r-- root/root    148491 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dfpt.unconverged.xml.gz
-rw-r--r-- root/root    231267 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dfpt.xml.gz
-rw-r--r-- root/root     29184 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dielectric.xml.gz
-rw-r--r-- root/root    156916 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dielectric_5.4.4.xml.gz
-rw-r--r-- root/root    183604 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dielectric_6.0.8.xml.gz
-rw-r--r-- root/root    156922 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.dielectric_bad.xml.gz
-rw-r--r-- root/root    241919 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.ediffg_set_to_0.xml.gz
-rw-r--r-- root/root      9186 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.etest1.xml.gz
-rw-r--r-- root/root      8992 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.etest2.xml.gz
-rw-r--r-- root/root      9661 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.etest3.xml.gz
-rw-r--r-- root/root      9810 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.etest4.xml.gz
-rw-r--r-- root/root     49082 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.force_hybrid_like_calc.xml.gz
-rw-r--r-- root/root    580717 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.hse06.xml.gz
-rw-r--r-- root/root     69923 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.indirect.xml.gz
-rw-r--r-- root/root  14667988 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.int_Te_SOC.xml.gz
-rw-r--r-- root/root   1023677 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.lifepo4.xml.gz
-rw-r--r-- root/root   3691127 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.lvel.Si2H.xml.gz
-rw-r--r-- root/root    452763 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.magmom_ldau.xml.gz
-rw-r--r-- root/root     43346 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.md.xml.gz
-rw-r--r-- root/root    308725 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.ml_md.xml.gz
-rw-r--r-- root/root   2247808 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.nonlm.xml.gz
-rw-r--r-- root/root     67781 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.optical_transitions.xml.gz
-rw-r--r-- root/root   3228658 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.pbesol.xml.gz
-rw-r--r-- root/root   3228669 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.pbesol_vdw.xml.gz
-rw-r--r-- root/root    329081 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.r2scan.xml.gz
-rw-r--r-- root/root    329202 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.random.xml.gz
-rw-r--r-- root/root    330359 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.rscan.xml.gz
-rw-r--r-- root/root   1185138 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.sc_overflow.xml.gz
-rw-r--r-- root/root    329193 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.scan.xml.gz
-rw-r--r-- root/root    197620 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.scan_rvv10.xml.gz
-rw-r--r-- root/root      6479 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.split.charged.xml.gz
-rw-r--r-- root/root    265062 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.unconverged.xml.gz
-rw-r--r-- root/root     79697 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.uniform.xml.gz
-rw-r--r-- root/root    329188 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.unknown.xml.gz
-rw-r--r-- root/root     74820 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.vdw.xml.gz
-rw-r--r-- root/root     28749 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.wrong_sp.xml.gz
-rw-r--r-- root/root     28746 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.xe.xml.gz
-rw-r--r-- root/root   1185131 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun.xml.gz
-rw-r--r-- root/root      8800 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun_Li_no_projected.xml.gz
-rw-r--r-- root/root    121050 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun_Si_bands.xml.gz
-rw-r--r-- root/root    882253 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/vasprun_eig_separate_spins.xml.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/wannier90/
-rw-r--r-- root/root     77868 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/wannier90/UNK.H2.ncl
-rw-r--r-- root/root    248932 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/wannier90/UNK.N2.std
-rw-r--r-- root/root     46188 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/wannier90/UNK.ncl
-rw-r--r-- root/root     23108 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/wannier90/UNK.std
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xr/
-rw-r--r-- root/root      1772 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xr/EDI.xr
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/
-rw-r--r-- root/root       436 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r0.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r1.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r2.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r3.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r4.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r5.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r6.xyz
-rw-r--r-- root/root       436 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r7.xyz
-rw-r--r-- root/root       436 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c0_r8.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r0.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r1.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r10.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r11.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r12.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r13.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r14.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r15.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r16.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r17.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r2.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r3.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r4.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r5.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r6.xyz
-rw-r--r-- root/root       437 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r7.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r8.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/c1_r9.xyz
-rw-r--r-- root/root       104 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/expected_constrains.txt
-rw-r--r-- root/root       936 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/expected_output/expected_crest_best.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/
-rw-r--r-- root/root     27898 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/FW.json
-rw-r--r-- root/root       591 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/FW_submit.script
-rw-r--r-- root/root      1104 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/coord
-rw-r--r-- root/root       976 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/coord.original
-rw-r--r-- root/root      3092 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/cregen_0.tmp
-rw-r--r-- root/root      3093 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/cregen_1.tmp
-rw-r--r-- root/root       936 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_best.xyz
-rw-r--r-- root/root      1872 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_conformers.xyz
-rw-r--r-- root/root       435 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_in.xyz
-rw-r--r-- root/root     25803 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_out.out
-rw-r--r-- root/root     48295 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_0.xyz
-rw-r--r-- root/root    228967 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_1.xyz
-rw-r--r-- root/root    235301 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_2.xyz
-rw-r--r-- root/root     51526 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_3.xyz
-rw-r--r-- root/root     24118 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_4.xyz
-rw-r--r-- root/root     28492 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_5.xyz
-rw-r--r-- root/root     24118 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/crest_rotamers_6.xyz
-rw-r--r-- root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/lr6_job-28275610.error
-rw-r--r-- root/root      2115 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/lr6_job-28275610.out
-rw-r--r-- root/root       637 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xtb/sample_CREST_output/wbo
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xyz/
-rw-r--r-- root/root       199 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xyz/acetylene.xyz
-rw-r--r-- root/root    996298 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/xyz/multiple_frame.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/zeopp/
-rw-r--r-- root/root      1942 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/io/zeopp/EDI_voro.xyz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/dos/
-rw-r--r-- root/root     13581 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/dos/NaCl_complete_ph_dos.json
-rw-r--r-- root/root      7542 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/dos/NaCl_ph_dos.json
-rw-r--r-- root/root      4856 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/dos/ir_spectra_mp-991652_DDB.json
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/eq/
-rw-r--r-- root/root       495 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/eq/POSCAR_InP
-rw-r--r-- root/root       512 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/eq/POSCAR_Si
-rw-r--r-- root/root    307899 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/gruneisen_band_Si.yaml
-rw-r--r-- root/root    319505 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/gruneisen_eq_plus_minus_InP.yaml
-rw-r--r-- root/root   1242753 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/gruneisen_mesh_InP.yaml
-rw-r--r-- root/root   1242081 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/gruneisen_mesh_InP_without_struct.yaml
-rw-r--r-- root/root   1242752 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/gruneisen_mesh_Si.yaml
-rw-r--r-- root/root      1199 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/gruneisen/gruneisen_mesh_only_one_q_InP.yaml
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/thermal_displacement_matrices/
-rw-r--r-- root/root      2734 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/thermal_displacement_matrices/POSCAR
-rw-r--r-- root/root    107270 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/phonon/thermal_displacement_matrices/thermal_displacement_matrices.yaml
-rw-r--r-- root/root      2645 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/piezo_sensitivity
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/
-rw-r--r-- root/root      1201 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/Au_slab_init.cif
-rw-r--r-- root/root       209 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/CONTCAR.relax1.gz
-rw-r--r-- root/root     96336 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/Cu_entries.txt
-rw-r--r-- root/root      1225 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/Cu_slab_fin.cif
-rw-r--r-- root/root      1225 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/Cu_slab_init.cif
-rw-r--r-- root/root  16588851 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/LOCPOT.gz
-rw-r--r-- root/root     46578 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/La_fcc_entries.txt
-rw-r--r-- root/root     60827 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/La_hcp_entries.txt
-rw-r--r-- root/root      8340 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/MgO_slab_entries.txt
-rw-r--r-- root/root     32180 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/OUTCAR.relax1.gz
-rw-r--r-- root/root      1995 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/ZnO-wz.cif
-rw-r--r-- root/root     12805 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/cs_entries_o_ads.json
-rw-r--r-- root/root      4798 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/cs_entries_slabs.json
-rw-r--r-- root/root      2104 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/icsd_LiCoO2.cif
-rw-r--r-- root/root      2518 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/icsd_TeI.cif
-rw-r--r-- root/root      2627 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/icsd_batio3.cif
-rw-r--r-- root/root       805 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/isolated_O_entry.txt
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/
-rw-r--r-- root/root      2333 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Fe_bcc_100_zigzag_rt2xrt2.cif
-rw-r--r-- root/root      1671 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_100_missing_row_1x1.cif
-rw-r--r-- root/root      2423 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_110_missing_row_1x2.cif
-rw-r--r-- root/root      1298 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_111_adatom_bridge_1x1.cif
-rw-r--r-- root/root      1297 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_111_adatom_ft_1x1.cif
-rw-r--r-- root/root      1298 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_111_adatom_h_1x1.cif
-rw-r--r-- root/root      1298 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_111_adatom_ht_1x1.cif
-rw-r--r-- root/root      1297 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_111_adatom_t_1x1.cif
-rw-r--r-- root/root      1672 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Ni_fcc_111_missing_row_1x2.cif
-rw-r--r-- root/root      2147 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Si_diamond_100_2x1.cif
-rw-r--r-- root/root      1957 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Si_diamond_110_1x1.cif
-rw-r--r-- root/root      2715 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/reconstructions/Si_diamond_111_1x2.cif
-rw-r--r-- root/root     11422 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/surfaces/ucell_entries.txt
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/analyzer/
-rw-r--r-- root/root        97 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/analyzer/Carbon_Disulfide.xyz
-rw-r--r-- root/root      1018 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/analyzer/b12h12.xyz
-rw-r--r-- root/root      3606 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/analyzer/c60.xyz
-rw-r--r-- root/root       251 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/analyzer/dh.xyz
-rw-r--r-- root/root      1351 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/analyzer/tric_684654.json
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/site_symmetries/
-rw-r--r-- root/root       250 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/site_symmetries/point_ops.json.gz
-rw-r--r-- root/root       573 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/site_symmetries/shared_ops.json.gz
drwxr-xr-x root/root         0 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/space_group_structs/
-rw-r--r-- root/root      5997 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/symmetry/space_group_structs/ICSD_170.cif
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/transformations/
-rw-r--r-- root/root      5656 2024-10-29 17:12 ./usr/share/doc/pymatgen-test-files/examples/files/transformations/TiO2_super.json
-rw-r--r-- root/root       649 2024-11-07 14:01 ./usr/share/doc/pymatgen-test-files/examples/files/transformations/icet-sqs-fcc-Mg_75-Al_25-scaling_8.json.gz
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/lintian/
drwxr-xr-x root/root         0 2024-11-07 14:01 ./usr/share/lintian/overrides/
-rw-r--r-- root/root       213 2024-11-07 14:01 ./usr/share/lintian/overrides/pymatgen-test-files


lintian
-------


Setup apt archive
-----------------

Merged Build-Depends: lintian
Filtered Build-Depends: lintian
dpkg-deb: warning: root directory has unusual owner or group 998:999.
Hint: either pass --root-owner-group, see dpkg-build-api(7) or add an explicit 'Rules-Requires-Root: no' in debian/control.
dpkg-deb: warning: ignoring 1 warning about the control file(s)
dpkg-deb: building package 'sbuild-build-depends-lintian-dummy' in '/<<RESOLVERDIR>>/apt_archive/sbuild-build-depends-lintian-dummy.deb'.
Ign:1 copy:/<<RESOLVERDIR>>/apt_archive ./ InRelease
Get:2 copy:/<<RESOLVERDIR>>/apt_archive ./ Release [615 B]
Ign:3 copy:/<<RESOLVERDIR>>/apt_archive ./ Release.gpg
Get:4 copy:/<<RESOLVERDIR>>/apt_archive ./ Sources [1199 B]
Get:5 copy:/<<RESOLVERDIR>>/apt_archive ./ Packages [1261 B]
Fetched 3075 B in 0s (253 kB/s)
Reading package lists...
Get:1 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ InRelease
Ign:1 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ InRelease
Get:2 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release [606 B]
Get:2 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release [606 B]
Get:3 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release.gpg
Ign:3 file:/<<BUILDDIR>>/resolver-PnpcmN/apt_archive ./ Release.gpg
Reading package lists...
Reading package lists...

Install lintian build dependencies (apt-based resolver)
-------------------------------------------------------

Installing build dependencies
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
  sbuild-build-depends-lintian-dummy
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 856 B of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 copy:/<<RESOLVERDIR>>/apt_archive ./ sbuild-build-depends-lintian-dummy 0.invalid.0 [856 B]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 856 B in 0s (0 B/s)
Selecting previously unselected package sbuild-build-depends-lintian-dummy.
(Reading database ... 22542 files and directories currently installed.)
Preparing to unpack .../sbuild-build-depends-lintian-dummy_0.invalid.0_arm64.deb ...
Unpacking sbuild-build-depends-lintian-dummy (0.invalid.0) ...
Setting up sbuild-build-depends-lintian-dummy (0.invalid.0) ...
Running lintian...
W: pymatgen-test-files changes: distribution-and-changes-mismatch sid unstable
W: pymatgen-test-files: executable-not-elf-or-script [usr/share/doc/pymatgen-test-files/examples/files/io/vasp/outputs/PROCAR.SOC.gz]

I: Lintian run was successful.

+------------------------------------------------------------------------------+
| Post Build                                                                   |
+------------------------------------------------------------------------------+


+------------------------------------------------------------------------------+
| Cleanup                                                                      |
+------------------------------------------------------------------------------+

Purging /<<BUILDDIR>>
Not cleaning session: cloned chroot in use

+------------------------------------------------------------------------------+
| Summary                                                                      |
+------------------------------------------------------------------------------+

Build Architecture: arm64
Build Type: binary
Build-Space: 1349428
Build-Time: 98
Distribution: sid
Host Architecture: arm64
Install-Time: 17
Job: /tmp/debusine-fetch-exec-upload-r7uq8agt/pymatgen-test-files_2024.10.29-1.dsc
Lintian: warn
Machine Architecture: arm64
Package: pymatgen-test-files
Package-Time: 155
Source-Version: 2024.10.29-1
Space: 1349428
Status: successful
Version: 2024.10.29-1
--------------------------------------------------------------------------------
Finished at 2024-11-17T23:19:36Z
Build needed 00:02:35, 1349428k disk space

Relations

Relation Direction Type Name
relates-to Source package pymatgen-test-files_2024.10.29-1
relates-to Binary package dpkg-dbgsym_1.22.12~1.gbp82cafd_arm64
relates-to Binary package dpkg_1.22.12~1.gbp82cafd_arm64
relates-to Binary package dselect-dbgsym_1.22.12~1.gbp82cafd_arm64
relates-to Binary package dselect_1.22.12~1.gbp82cafd_arm64
relates-to Binary package libdpkg-dev_1.22.12~1.gbp82cafd_arm64
relates-to Binary package dpkg-dev_1.22.12~1.gbp82cafd_all
relates-to Binary package libdpkg-perl_1.22.12~1.gbp82cafd_all
relates-to Binary package pymatgen-test-files_2024.10.29-1_all
relates-to Binary packages pymatgen-test-files_2024.10.29-1

build log System build a package - 1 month ago 5 days, 16 hours
BETA