aboutsummaryrefslogtreecommitdiffstats
path: root/packages/all-poky-linux/tzdata/sysroot
blob: 4ce694d430b3fbe79b31a6a5d3b95263f2c98308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
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
drwxr-xr-x -          -                4096 ./sysroot-providers
-rw-r--r-- -          -                   6 ./sysroot-providers/tzdata
drwxr-xr-x -          -                4096 ./usr
drwxr-xr-x -          -                4096 ./usr/share
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Africa
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Abidjan
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Accra
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Addis_Ababa
-rw-r--r-- -          -                 470 ./usr/share/zoneinfo/Africa/Algiers
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Asmara
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Asmera
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Bamako
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Bangui
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Banjul
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/Africa/Bissau
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Blantyre
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Brazzaville
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Bujumbura
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/Africa/Cairo
-rw-r--r-- -          -                1919 ./usr/share/zoneinfo/Africa/Casablanca
-rw-r--r-- -          -                 562 ./usr/share/zoneinfo/Africa/Ceuta
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Conakry
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Dakar
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Dar_es_Salaam
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Djibouti
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Douala
-rw-r--r-- -          -                1830 ./usr/share/zoneinfo/Africa/El_Aaiun
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Freetown
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Gaborone
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Harare
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/Africa/Johannesburg
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/Africa/Juba
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Kampala
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/Africa/Khartoum
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Kigali
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Kinshasa
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Lagos
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Libreville
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Lome
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Luanda
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Lubumbashi
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Lusaka
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Malabo
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/Africa/Maputo
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/Africa/Maseru
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/Africa/Mbabane
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Mogadishu
-rw-r--r-- -          -                 164 ./usr/share/zoneinfo/Africa/Monrovia
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Africa/Nairobi
-rw-r--r-- -          -                 160 ./usr/share/zoneinfo/Africa/Ndjamena
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Niamey
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Nouakchott
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Ouagadougou
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/Africa/Porto-Novo
-rw-r--r-- -          -                 173 ./usr/share/zoneinfo/Africa/Sao_Tome
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Africa/Timbuktu
-rw-r--r-- -          -                 431 ./usr/share/zoneinfo/Africa/Tripoli
-rw-r--r-- -          -                 449 ./usr/share/zoneinfo/Africa/Tunis
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/Africa/Windhoek
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/America
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/America/Adak
-rw-r--r-- -          -                 977 ./usr/share/zoneinfo/America/Anchorage
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Anguilla
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Antigua
-rw-r--r-- -          -                 592 ./usr/share/zoneinfo/America/Araguaina
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/America/Argentina
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/Buenos_Aires
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/Catamarca
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/ComodRivadavia
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/Cordoba
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/America/Argentina/Jujuy
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/America/Argentina/La_Rioja
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/Mendoza
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/Rio_Gallegos
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/America/Argentina/Salta
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/America/Argentina/San_Juan
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/America/Argentina/San_Luis
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/America/Argentina/Tucuman
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Argentina/Ushuaia
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Aruba
-rw-r--r-- -          -                 884 ./usr/share/zoneinfo/America/Asuncion
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/America/Atikokan
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/America/Atka
-rw-r--r-- -          -                 682 ./usr/share/zoneinfo/America/Bahia
-rw-r--r-- -          -                 530 ./usr/share/zoneinfo/America/Bahia_Banderas
-rw-r--r-- -          -                 278 ./usr/share/zoneinfo/America/Barbados
-rw-r--r-- -          -                 394 ./usr/share/zoneinfo/America/Belem
-rw-r--r-- -          -                1045 ./usr/share/zoneinfo/America/Belize
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Blanc-Sablon
-rw-r--r-- -          -                 430 ./usr/share/zoneinfo/America/Boa_Vista
-rw-r--r-- -          -                 179 ./usr/share/zoneinfo/America/Bogota
-rw-r--r-- -          -                 999 ./usr/share/zoneinfo/America/Boise
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Buenos_Aires
-rw-r--r-- -          -                 768 ./usr/share/zoneinfo/America/Cambridge_Bay
-rw-r--r-- -          -                 952 ./usr/share/zoneinfo/America/Campo_Grande
-rw-r--r-- -          -                 529 ./usr/share/zoneinfo/America/Cancun
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/America/Caracas
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Catamarca
-rw-r--r-- -          -                 151 ./usr/share/zoneinfo/America/Cayenne
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/America/Cayman
-rw-r--r-- -          -                1754 ./usr/share/zoneinfo/America/Chicago
-rw-r--r-- -          -                 340 ./usr/share/zoneinfo/America/Chihuahua
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/America/Coral_Harbour
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Cordoba
-rw-r--r-- -          -                 232 ./usr/share/zoneinfo/America/Costa_Rica
-rw-r--r-- -          -                 240 ./usr/share/zoneinfo/America/Creston
-rw-r--r-- -          -                 934 ./usr/share/zoneinfo/America/Cuiaba
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Curacao
-rw-r--r-- -          -                 447 ./usr/share/zoneinfo/America/Danmarkshavn
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/America/Dawson
-rw-r--r-- -          -                 683 ./usr/share/zoneinfo/America/Dawson_Creek
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/America/Denver
-rw-r--r-- -          -                 899 ./usr/share/zoneinfo/America/Detroit
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Dominica
-rw-r--r-- -          -                 970 ./usr/share/zoneinfo/America/Edmonton
-rw-r--r-- -          -                 436 ./usr/share/zoneinfo/America/Eirunepe
-rw-r--r-- -          -                 176 ./usr/share/zoneinfo/America/El_Salvador
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/America/Ensenada
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/America/Fortaleza
-rw-r--r-- -          -                1448 ./usr/share/zoneinfo/America/Fort_Nelson
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/America/Fort_Wayne
-rw-r--r-- -          -                 880 ./usr/share/zoneinfo/America/Glace_Bay
-rw-r--r-- -          -                 465 ./usr/share/zoneinfo/America/Godthab
-rw-r--r-- -          -                1580 ./usr/share/zoneinfo/America/Goose_Bay
-rw-r--r-- -          -                 853 ./usr/share/zoneinfo/America/Grand_Turk
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Grenada
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Guadeloupe
-rw-r--r-- -          -                 212 ./usr/share/zoneinfo/America/Guatemala
-rw-r--r-- -          -                 179 ./usr/share/zoneinfo/America/Guayaquil
-rw-r--r-- -          -                 181 ./usr/share/zoneinfo/America/Guyana
-rw-r--r-- -          -                1672 ./usr/share/zoneinfo/America/Halifax
-rw-r--r-- -          -                1117 ./usr/share/zoneinfo/America/Havana
-rw-r--r-- -          -                 286 ./usr/share/zoneinfo/America/Hermosillo
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/America/Indiana
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/America/Indiana/Indianapolis
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/America/Indiana/Knox
-rw-r--r-- -          -                 567 ./usr/share/zoneinfo/America/Indiana/Marengo
-rw-r--r-- -          -                 683 ./usr/share/zoneinfo/America/Indiana/Petersburg
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/America/Indianapolis
-rw-r--r-- -          -                 522 ./usr/share/zoneinfo/America/Indiana/Tell_City
-rw-r--r-- -          -                 369 ./usr/share/zoneinfo/America/Indiana/Vevay
-rw-r--r-- -          -                 558 ./usr/share/zoneinfo/America/Indiana/Vincennes
-rw-r--r-- -          -                 612 ./usr/share/zoneinfo/America/Indiana/Winamac
-rw-r--r-- -          -                 701 ./usr/share/zoneinfo/America/Inuvik
-rw-r--r-- -          -                 740 ./usr/share/zoneinfo/America/Iqaluit
-rw-r--r-- -          -                 339 ./usr/share/zoneinfo/America/Jamaica
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/America/Jujuy
-rw-r--r-- -          -                 966 ./usr/share/zoneinfo/America/Juneau
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/America/Kentucky
-rw-r--r-- -          -                1242 ./usr/share/zoneinfo/America/Kentucky/Louisville
-rw-r--r-- -          -                 972 ./usr/share/zoneinfo/America/Kentucky/Monticello
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/America/Knox_IN
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Kralendijk
-rw-r--r-- -          -                 170 ./usr/share/zoneinfo/America/La_Paz
-rw-r--r-- -          -                 283 ./usr/share/zoneinfo/America/Lima
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/America/Los_Angeles
-rw-r--r-- -          -                1242 ./usr/share/zoneinfo/America/Louisville
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Lower_Princes
-rw-r--r-- -          -                 502 ./usr/share/zoneinfo/America/Maceio
-rw-r--r-- -          -                 295 ./usr/share/zoneinfo/America/Managua
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/America/Manaus
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Marigot
-rw-r--r-- -          -                 178 ./usr/share/zoneinfo/America/Martinique
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/America/Matamoros
-rw-r--r-- -          -                 367 ./usr/share/zoneinfo/America/Mazatlan
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Mendoza
-rw-r--r-- -          -                 917 ./usr/share/zoneinfo/America/Menominee
-rw-r--r-- -          -                 303 ./usr/share/zoneinfo/America/Merida
-rw-r--r-- -          -                 595 ./usr/share/zoneinfo/America/Metlakatla
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/America/Mexico_City
-rw-r--r-- -          -                 550 ./usr/share/zoneinfo/America/Miquelon
-rw-r--r-- -          -                1493 ./usr/share/zoneinfo/America/Moncton
-rw-r--r-- -          -                 293 ./usr/share/zoneinfo/America/Monterrey
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/America/Montevideo
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/America/Montreal
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Montserrat
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/America/Nassau
-rw-r--r-- -          -                1744 ./usr/share/zoneinfo/America/New_York
-rw-r--r-- -          -                 835 ./usr/share/zoneinfo/America/Nipigon
-rw-r--r-- -          -                 975 ./usr/share/zoneinfo/America/Nome
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/America/Noronha
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/America/North_Dakota
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/America/North_Dakota/Beulah
-rw-r--r-- -          -                 990 ./usr/share/zoneinfo/America/North_Dakota/Center
-rw-r--r-- -          -                 990 ./usr/share/zoneinfo/America/North_Dakota/New_Salem
-rw-r--r-- -          -                 465 ./usr/share/zoneinfo/America/Nuuk
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/America/Ojinaga
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/America/Panama
-rw-r--r-- -          -                 769 ./usr/share/zoneinfo/America/Pangnirtung
-rw-r--r-- -          -                 187 ./usr/share/zoneinfo/America/Paramaribo
-rw-r--r-- -          -                 240 ./usr/share/zoneinfo/America/Phoenix
-rw-r--r-- -          -                 565 ./usr/share/zoneinfo/America/Port-au-Prince
-rw-r--r-- -          -                 418 ./usr/share/zoneinfo/America/Porto_Acre
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Port_of_Spain
-rw-r--r-- -          -                 394 ./usr/share/zoneinfo/America/Porto_Velho
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Puerto_Rico
-rw-r--r-- -          -                1209 ./usr/share/zoneinfo/America/Punta_Arenas
-rw-r--r-- -          -                 835 ./usr/share/zoneinfo/America/Rainy_River
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/America/Rankin_Inlet
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/America/Recife
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/America/Regina
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/America/Resolute
-rw-r--r-- -          -                 418 ./usr/share/zoneinfo/America/Rio_Branco
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/America/Rosario
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/America/Santa_Isabel
-rw-r--r-- -          -                 409 ./usr/share/zoneinfo/America/Santarem
-rw-r--r-- -          -                1282 ./usr/share/zoneinfo/America/Santiago
-rw-r--r-- -          -                 317 ./usr/share/zoneinfo/America/Santo_Domingo
-rw-r--r-- -          -                 952 ./usr/share/zoneinfo/America/Sao_Paulo
-rw-r--r-- -          -                 479 ./usr/share/zoneinfo/America/Scoresbysund
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/America/Shiprock
-rw-r--r-- -          -                 956 ./usr/share/zoneinfo/America/Sitka
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/St_Barthelemy
-rw-r--r-- -          -                1878 ./usr/share/zoneinfo/America/St_Johns
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/St_Kitts
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/St_Lucia
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/St_Thomas
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/St_Vincent
-rw-r--r-- -          -                 368 ./usr/share/zoneinfo/America/Swift_Current
-rw-r--r-- -          -                 194 ./usr/share/zoneinfo/America/Tegucigalpa
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/America/Thule
-rw-r--r-- -          -                 881 ./usr/share/zoneinfo/America/Thunder_Bay
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/America/Tijuana
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/America/Toronto
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Tortola
-rw-r--r-- -          -                1330 ./usr/share/zoneinfo/America/Vancouver
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/America/Virgin
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/America/Whitehorse
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/America/Winnipeg
-rw-r--r-- -          -                 946 ./usr/share/zoneinfo/America/Yakutat
-rw-r--r-- -          -                 729 ./usr/share/zoneinfo/America/Yellowknife
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Antarctica
-rw-r--r-- -          -                 243 ./usr/share/zoneinfo/Antarctica/Casey
-rw-r--r-- -          -                 197 ./usr/share/zoneinfo/Antarctica/Davis
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/Antarctica/DumontDUrville
-rw-r--r-- -          -                 976 ./usr/share/zoneinfo/Antarctica/Macquarie
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Antarctica/Mawson
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/Antarctica/McMurdo
-rw-r--r-- -          -                 887 ./usr/share/zoneinfo/Antarctica/Palmer
-rw-r--r-- -          -                 132 ./usr/share/zoneinfo/Antarctica/Rothera
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/Antarctica/South_Pole
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Antarctica/Syowa
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/Antarctica/Troll
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Antarctica/Vostok
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Arctic
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/Arctic/Longyearbyen
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Asia
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Aden
-rw-r--r-- -          -                 609 ./usr/share/zoneinfo/Asia/Almaty
-rw-r--r-- -          -                 922 ./usr/share/zoneinfo/Asia/Amman
-rw-r--r-- -          -                 743 ./usr/share/zoneinfo/Asia/Anadyr
-rw-r--r-- -          -                 606 ./usr/share/zoneinfo/Asia/Aqtau
-rw-r--r-- -          -                 615 ./usr/share/zoneinfo/Asia/Aqtobe
-rw-r--r-- -          -                 375 ./usr/share/zoneinfo/Asia/Ashgabat
-rw-r--r-- -          -                 375 ./usr/share/zoneinfo/Asia/Ashkhabad
-rw-r--r-- -          -                 616 ./usr/share/zoneinfo/Asia/Atyrau
-rw-r--r-- -          -                 630 ./usr/share/zoneinfo/Asia/Baghdad
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Asia/Bahrain
-rw-r--r-- -          -                 744 ./usr/share/zoneinfo/Asia/Baku
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Asia/Bangkok
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/Asia/Barnaul
-rw-r--r-- -          -                 732 ./usr/share/zoneinfo/Asia/Beirut
-rw-r--r-- -          -                 618 ./usr/share/zoneinfo/Asia/Bishkek
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/Asia/Brunei
-rw-r--r-- -          -                 220 ./usr/share/zoneinfo/Asia/Calcutta
-rw-r--r-- -          -                 750 ./usr/share/zoneinfo/Asia/Chita
-rw-r--r-- -          -                 619 ./usr/share/zoneinfo/Asia/Choibalsan
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/Asia/Chongqing
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/Asia/Chungking
-rw-r--r-- -          -                 247 ./usr/share/zoneinfo/Asia/Colombo
-rw-r--r-- -          -                 231 ./usr/share/zoneinfo/Asia/Dacca
-rw-r--r-- -          -                1047 ./usr/share/zoneinfo/Asia/Damascus
-rw-r--r-- -          -                 231 ./usr/share/zoneinfo/Asia/Dhaka
-rw-r--r-- -          -                 170 ./usr/share/zoneinfo/Asia/Dili
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Dubai
-rw-r--r-- -          -                 366 ./usr/share/zoneinfo/Asia/Dushanbe
-rw-r--r-- -          -                 940 ./usr/share/zoneinfo/Asia/Famagusta
-rw-r--r-- -          -                1230 ./usr/share/zoneinfo/Asia/Gaza
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/Asia/Harbin
-rw-r--r-- -          -                1248 ./usr/share/zoneinfo/Asia/Hebron
-rw-r--r-- -          -                 236 ./usr/share/zoneinfo/Asia/Ho_Chi_Minh
-rw-r--r-- -          -                 775 ./usr/share/zoneinfo/Asia/Hong_Kong
-rw-r--r-- -          -                 594 ./usr/share/zoneinfo/Asia/Hovd
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/Asia/Irkutsk
-rw-r--r-- -          -                1200 ./usr/share/zoneinfo/Asia/Istanbul
-rw-r--r-- -          -                 248 ./usr/share/zoneinfo/Asia/Jakarta
-rw-r--r-- -          -                 171 ./usr/share/zoneinfo/Asia/Jayapura
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/Asia/Jerusalem
-rw-r--r-- -          -                 159 ./usr/share/zoneinfo/Asia/Kabul
-rw-r--r-- -          -                 727 ./usr/share/zoneinfo/Asia/Kamchatka
-rw-r--r-- -          -                 266 ./usr/share/zoneinfo/Asia/Karachi
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Kashgar
-rw-r--r-- -          -                 161 ./usr/share/zoneinfo/Asia/Kathmandu
-rw-r--r-- -          -                 161 ./usr/share/zoneinfo/Asia/Katmandu
-rw-r--r-- -          -                 775 ./usr/share/zoneinfo/Asia/Khandyga
-rw-r--r-- -          -                 220 ./usr/share/zoneinfo/Asia/Kolkata
-rw-r--r-- -          -                 741 ./usr/share/zoneinfo/Asia/Krasnoyarsk
-rw-r--r-- -          -                 256 ./usr/share/zoneinfo/Asia/Kuala_Lumpur
-rw-r--r-- -          -                 320 ./usr/share/zoneinfo/Asia/Kuching
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Kuwait
-rw-r--r-- -          -                 791 ./usr/share/zoneinfo/Asia/Macao
-rw-r--r-- -          -                 791 ./usr/share/zoneinfo/Asia/Macau
-rw-r--r-- -          -                 751 ./usr/share/zoneinfo/Asia/Magadan
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/Asia/Makassar
-rw-r--r-- -          -                 238 ./usr/share/zoneinfo/Asia/Manila
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Muscat
-rw-r--r-- -          -                 597 ./usr/share/zoneinfo/Asia/Nicosia
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/Asia/Novokuznetsk
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/Asia/Novosibirsk
-rw-r--r-- -          -                 741 ./usr/share/zoneinfo/Asia/Omsk
-rw-r--r-- -          -                 625 ./usr/share/zoneinfo/Asia/Oral
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Asia/Phnom_Penh
-rw-r--r-- -          -                 247 ./usr/share/zoneinfo/Asia/Pontianak
-rw-r--r-- -          -                 183 ./usr/share/zoneinfo/Asia/Pyongyang
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Asia/Qatar
-rw-r--r-- -          -                 615 ./usr/share/zoneinfo/Asia/Qostanay
-rw-r--r-- -          -                 624 ./usr/share/zoneinfo/Asia/Qyzylorda
-rw-r--r-- -          -                 187 ./usr/share/zoneinfo/Asia/Rangoon
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Riyadh
-rw-r--r-- -          -                 236 ./usr/share/zoneinfo/Asia/Saigon
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/Asia/Sakhalin
-rw-r--r-- -          -                 366 ./usr/share/zoneinfo/Asia/Samarkand
-rw-r--r-- -          -                 415 ./usr/share/zoneinfo/Asia/Seoul
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/Asia/Shanghai
-rw-r--r-- -          -                 256 ./usr/share/zoneinfo/Asia/Singapore
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/Asia/Srednekolymsk
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/Asia/Taipei
-rw-r--r-- -          -                 366 ./usr/share/zoneinfo/Asia/Tashkent
-rw-r--r-- -          -                 629 ./usr/share/zoneinfo/Asia/Tbilisi
-rw-r--r-- -          -                2004 ./usr/share/zoneinfo/Asia/Tehran
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/Asia/Tel_Aviv
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/Asia/Thimbu
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/Asia/Thimphu
-rw-r--r-- -          -                 213 ./usr/share/zoneinfo/Asia/Tokyo
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/Asia/Tomsk
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/Asia/Ujung_Pandang
-rw-r--r-- -          -                 594 ./usr/share/zoneinfo/Asia/Ulaanbaatar
-rw-r--r-- -          -                 594 ./usr/share/zoneinfo/Asia/Ulan_Bator
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Asia/Urumqi
-rw-r--r-- -          -                 771 ./usr/share/zoneinfo/Asia/Ust-Nera
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Asia/Vientiane
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/Asia/Vladivostok
-rw-r--r-- -          -                 741 ./usr/share/zoneinfo/Asia/Yakutsk
-rw-r--r-- -          -                 187 ./usr/share/zoneinfo/Asia/Yangon
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/Asia/Yekaterinburg
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/Asia/Yerevan
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Atlantic
-rw-r--r-- -          -                1453 ./usr/share/zoneinfo/Atlantic/Azores
-rw-r--r-- -          -                1024 ./usr/share/zoneinfo/Atlantic/Bermuda
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Atlantic/Canary
-rw-r--r-- -          -                 175 ./usr/share/zoneinfo/Atlantic/Cape_Verde
-rw-r--r-- -          -                 441 ./usr/share/zoneinfo/Atlantic/Faeroe
-rw-r--r-- -          -                 441 ./usr/share/zoneinfo/Atlantic/Faroe
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/Atlantic/Jan_Mayen
-rw-r--r-- -          -                1453 ./usr/share/zoneinfo/Atlantic/Madeira
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/Atlantic/Reykjavik
-rw-r--r-- -          -                 132 ./usr/share/zoneinfo/Atlantic/South_Georgia
-rw-r--r-- -          -                 789 ./usr/share/zoneinfo/Atlantic/Stanley
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/Atlantic/St_Helena
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Australia
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Australia/ACT
-rw-r--r-- -          -                 921 ./usr/share/zoneinfo/Australia/Adelaide
-rw-r--r-- -          -                 289 ./usr/share/zoneinfo/Australia/Brisbane
-rw-r--r-- -          -                 941 ./usr/share/zoneinfo/Australia/Broken_Hill
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Australia/Canberra
-rw-r--r-- -          -                1003 ./usr/share/zoneinfo/Australia/Currie
-rw-r--r-- -          -                 234 ./usr/share/zoneinfo/Australia/Darwin
-rw-r--r-- -          -                 314 ./usr/share/zoneinfo/Australia/Eucla
-rw-r--r-- -          -                1003 ./usr/share/zoneinfo/Australia/Hobart
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/Australia/LHI
-rw-r--r-- -          -                 325 ./usr/share/zoneinfo/Australia/Lindeman
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/Australia/Lord_Howe
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Australia/Melbourne
-rw-r--r-- -          -                 234 ./usr/share/zoneinfo/Australia/North
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Australia/NSW
-rw-r--r-- -          -                 306 ./usr/share/zoneinfo/Australia/Perth
-rw-r--r-- -          -                 289 ./usr/share/zoneinfo/Australia/Queensland
-rw-r--r-- -          -                 921 ./usr/share/zoneinfo/Australia/South
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Australia/Sydney
-rw-r--r-- -          -                1003 ./usr/share/zoneinfo/Australia/Tasmania
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Australia/Victoria
-rw-r--r-- -          -                 306 ./usr/share/zoneinfo/Australia/West
-rw-r--r-- -          -                 941 ./usr/share/zoneinfo/Australia/Yancowinna
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Brazil
-rw-r--r-- -          -                 418 ./usr/share/zoneinfo/Brazil/Acre
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/Brazil/DeNoronha
-rw-r--r-- -          -                 952 ./usr/share/zoneinfo/Brazil/East
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/Brazil/West
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Canada
-rw-r--r-- -          -                1672 ./usr/share/zoneinfo/Canada/Atlantic
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/Canada/Central
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/Canada/Eastern
-rw-r--r-- -          -                 970 ./usr/share/zoneinfo/Canada/Mountain
-rw-r--r-- -          -                1878 ./usr/share/zoneinfo/Canada/Newfoundland
-rw-r--r-- -          -                1330 ./usr/share/zoneinfo/Canada/Pacific
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/Canada/Saskatchewan
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/Canada/Yukon
-rw-r--r-- -          -                 621 ./usr/share/zoneinfo/CET
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Chile
-rw-r--r-- -          -                1282 ./usr/share/zoneinfo/Chile/Continental
-rw-r--r-- -          -                1102 ./usr/share/zoneinfo/Chile/EasterIsland
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/CST6CDT
-rw-r--r-- -          -                1117 ./usr/share/zoneinfo/Cuba
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/EET
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/Egypt
-rw-r--r-- -          -                1496 ./usr/share/zoneinfo/Eire
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/EST
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/EST5EDT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Etc
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/GMT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/GMT-0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/GMT+0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/GMT0
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-1
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+1
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/Etc/GMT-10
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT+10
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/Etc/GMT-11
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT+11
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/Etc/GMT-12
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT+12
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/Etc/GMT-13
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/Etc/GMT-14
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-2
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+2
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-3
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+3
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-4
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+4
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-5
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+5
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-6
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+6
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-7
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+7
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-8
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+8
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/Etc/GMT-9
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Etc/GMT+9
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/Greenwich
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/UCT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/Universal
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/UTC
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Etc/Zulu
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Europe
-rw-r--r-- -          -                1071 ./usr/share/zoneinfo/Europe/Amsterdam
-rw-r--r-- -          -                 389 ./usr/share/zoneinfo/Europe/Andorra
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/Europe/Astrakhan
-rw-r--r-- -          -                 682 ./usr/share/zoneinfo/Europe/Athens
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/Europe/Belfast
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Europe/Belgrade
-rw-r--r-- -          -                 705 ./usr/share/zoneinfo/Europe/Berlin
-rw-r--r-- -          -                 723 ./usr/share/zoneinfo/Europe/Bratislava
-rw-r--r-- -          -                1103 ./usr/share/zoneinfo/Europe/Brussels
-rw-r--r-- -          -                 661 ./usr/share/zoneinfo/Europe/Bucharest
-rw-r--r-- -          -                 766 ./usr/share/zoneinfo/Europe/Budapest
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/Europe/Busingen
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/Europe/Chisinau
-rw-r--r-- -          -                 623 ./usr/share/zoneinfo/Europe/Copenhagen
-rw-r--r-- -          -                1496 ./usr/share/zoneinfo/Europe/Dublin
-rw-r--r-- -          -                1220 ./usr/share/zoneinfo/Europe/Gibraltar
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/Europe/Guernsey
-rw-r--r-- -          -                 481 ./usr/share/zoneinfo/Europe/Helsinki
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/Europe/Isle_of_Man
-rw-r--r-- -          -                1200 ./usr/share/zoneinfo/Europe/Istanbul
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/Europe/Jersey
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/Europe/Kaliningrad
-rw-r--r-- -          -                 549 ./usr/share/zoneinfo/Europe/Kiev
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/Europe/Kirov
-rw-r--r-- -          -                1454 ./usr/share/zoneinfo/Europe/Lisbon
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Europe/Ljubljana
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/Europe/London
-rw-r--r-- -          -                1087 ./usr/share/zoneinfo/Europe/Luxembourg
-rw-r--r-- -          -                 897 ./usr/share/zoneinfo/Europe/Madrid
-rw-r--r-- -          -                 928 ./usr/share/zoneinfo/Europe/Malta
-rw-r--r-- -          -                 481 ./usr/share/zoneinfo/Europe/Mariehamn
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/Europe/Minsk
-rw-r--r-- -          -                1114 ./usr/share/zoneinfo/Europe/Monaco
-rw-r--r-- -          -                 908 ./usr/share/zoneinfo/Europe/Moscow
-rw-r--r-- -          -                 597 ./usr/share/zoneinfo/Europe/Nicosia
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/Europe/Oslo
-rw-r--r-- -          -                1105 ./usr/share/zoneinfo/Europe/Paris
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Europe/Podgorica
-rw-r--r-- -          -                 723 ./usr/share/zoneinfo/Europe/Prague
-rw-r--r-- -          -                 694 ./usr/share/zoneinfo/Europe/Riga
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/Europe/Rome
-rw-r--r-- -          -                 732 ./usr/share/zoneinfo/Europe/Samara
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/Europe/San_Marino
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Europe/Sarajevo
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/Europe/Saratov
-rw-r--r-- -          -                 865 ./usr/share/zoneinfo/Europe/Simferopol
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Europe/Skopje
-rw-r--r-- -          -                 592 ./usr/share/zoneinfo/Europe/Sofia
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/Europe/Stockholm
-rw-r--r-- -          -                 675 ./usr/share/zoneinfo/Europe/Tallinn
-rw-r--r-- -          -                 604 ./usr/share/zoneinfo/Europe/Tirane
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/Europe/Tiraspol
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/Europe/Ulyanovsk
-rw-r--r-- -          -                 530 ./usr/share/zoneinfo/Europe/Uzhgorod
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/Europe/Vaduz
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/Europe/Vatican
-rw-r--r-- -          -                 658 ./usr/share/zoneinfo/Europe/Vienna
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/Europe/Vilnius
-rw-r--r-- -          -                 735 ./usr/share/zoneinfo/Europe/Volgograd
-rw-r--r-- -          -                 923 ./usr/share/zoneinfo/Europe/Warsaw
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/Europe/Zagreb
-rw-r--r-- -          -                 560 ./usr/share/zoneinfo/Europe/Zaporozhye
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/Europe/Zurich
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/Factory
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/GB
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/GB-Eire
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/GMT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/GMT-0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/GMT+0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/GMT0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Greenwich
-rw-r--r-- -          -                 775 ./usr/share/zoneinfo/Hongkong
-rw-r--r-- -          -                 112 ./usr/share/zoneinfo/HST
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/Iceland
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Indian
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Indian/Antananarivo
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Indian/Chagos
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Indian/Christmas
-rw-r--r-- -          -                 140 ./usr/share/zoneinfo/Indian/Cocos
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Indian/Comoro
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Indian/Kerguelen
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Indian/Mahe
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/Indian/Maldives
-rw-r--r-- -          -                 179 ./usr/share/zoneinfo/Indian/Mauritius
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/Indian/Mayotte
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Indian/Reunion
-rw-r--r-- -          -                2004 ./usr/share/zoneinfo/Iran
-rw-r--r-- -          -                4463 ./usr/share/zoneinfo/iso3166.tab
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/Israel
-rw-r--r-- -          -                 339 ./usr/share/zoneinfo/Jamaica
-rw-r--r-- -          -                 213 ./usr/share/zoneinfo/Japan
-rw-r--r-- -          -                 219 ./usr/share/zoneinfo/Kwajalein
-rw-r--r-- -          -                3388 ./usr/share/zoneinfo/leapseconds
-rw-r--r-- -          -               10659 ./usr/share/zoneinfo/leap-seconds.list
-rw-r--r-- -          -                 431 ./usr/share/zoneinfo/Libya
-rw-r--r-- -          -                 621 ./usr/share/zoneinfo/MET
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Mexico
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/Mexico/BajaNorte
-rw-r--r-- -          -                 367 ./usr/share/zoneinfo/Mexico/BajaSur
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/Mexico/General
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/MST
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/MST7MDT
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/Navajo
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/NZ
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/NZ-CHAT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/Pacific
-rw-r--r-- -          -                 407 ./usr/share/zoneinfo/Pacific/Apia
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/Pacific/Auckland
-rw-r--r-- -          -                 201 ./usr/share/zoneinfo/Pacific/Bougainville
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/Pacific/Chatham
-rw-r--r-- -          -                 195 ./usr/share/zoneinfo/Pacific/Chuuk
-rw-r--r-- -          -                1102 ./usr/share/zoneinfo/Pacific/Easter
-rw-r--r-- -          -                 342 ./usr/share/zoneinfo/Pacific/Efate
-rw-r--r-- -          -                 172 ./usr/share/zoneinfo/Pacific/Enderbury
-rw-r--r-- -          -                 153 ./usr/share/zoneinfo/Pacific/Fakaofo
-rw-r--r-- -          -                 428 ./usr/share/zoneinfo/Pacific/Fiji
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/Pacific/Funafuti
-rw-r--r-- -          -                 175 ./usr/share/zoneinfo/Pacific/Galapagos
-rw-r--r-- -          -                 132 ./usr/share/zoneinfo/Pacific/Gambier
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/Pacific/Guadalcanal
-rw-r--r-- -          -                 350 ./usr/share/zoneinfo/Pacific/Guam
-rw-r--r-- -          -                 221 ./usr/share/zoneinfo/Pacific/Honolulu
-rw-r--r-- -          -                 221 ./usr/share/zoneinfo/Pacific/Johnston
-rw-r--r-- -          -                 172 ./usr/share/zoneinfo/Pacific/Kanton
-rw-r--r-- -          -                 174 ./usr/share/zoneinfo/Pacific/Kiritimati
-rw-r--r-- -          -                 242 ./usr/share/zoneinfo/Pacific/Kosrae
-rw-r--r-- -          -                 219 ./usr/share/zoneinfo/Pacific/Kwajalein
-rw-r--r-- -          -                 218 ./usr/share/zoneinfo/Pacific/Majuro
-rw-r--r-- -          -                 139 ./usr/share/zoneinfo/Pacific/Marquesas
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/Pacific/Midway
-rw-r--r-- -          -                 183 ./usr/share/zoneinfo/Pacific/Nauru
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/Pacific/Niue
-rw-r--r-- -          -                 247 ./usr/share/zoneinfo/Pacific/Norfolk
-rw-r--r-- -          -                 198 ./usr/share/zoneinfo/Pacific/Noumea
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/Pacific/Pago_Pago
-rw-r--r-- -          -                 148 ./usr/share/zoneinfo/Pacific/Palau
-rw-r--r-- -          -                 153 ./usr/share/zoneinfo/Pacific/Pitcairn
-rw-r--r-- -          -                 214 ./usr/share/zoneinfo/Pacific/Pohnpei
-rw-r--r-- -          -                 214 ./usr/share/zoneinfo/Pacific/Ponape
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/Pacific/Port_Moresby
-rw-r--r-- -          -                 406 ./usr/share/zoneinfo/Pacific/Rarotonga
-rw-r--r-- -          -                 350 ./usr/share/zoneinfo/Pacific/Saipan
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/Pacific/Samoa
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/Pacific/Tahiti
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/Pacific/Tarawa
-rw-r--r-- -          -                 237 ./usr/share/zoneinfo/Pacific/Tongatapu
-rw-r--r-- -          -                 195 ./usr/share/zoneinfo/Pacific/Truk
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/Pacific/Wake
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/Pacific/Wallis
-rw-r--r-- -          -                 195 ./usr/share/zoneinfo/Pacific/Yap
-rw-r--r-- -          -                 923 ./usr/share/zoneinfo/Poland
-rw-r--r-- -          -                1454 ./usr/share/zoneinfo/Portugal
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Africa
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Abidjan
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Accra
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Addis_Ababa
-rw-r--r-- -          -                 470 ./usr/share/zoneinfo/posix/Africa/Algiers
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Asmara
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Asmera
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Bamako
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Bangui
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Banjul
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/posix/Africa/Bissau
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Blantyre
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Brazzaville
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Bujumbura
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/posix/Africa/Cairo
-rw-r--r-- -          -                1919 ./usr/share/zoneinfo/posix/Africa/Casablanca
-rw-r--r-- -          -                 562 ./usr/share/zoneinfo/posix/Africa/Ceuta
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Conakry
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Dakar
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Dar_es_Salaam
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Djibouti
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Douala
-rw-r--r-- -          -                1830 ./usr/share/zoneinfo/posix/Africa/El_Aaiun
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Freetown
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Gaborone
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Harare
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/posix/Africa/Johannesburg
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/posix/Africa/Juba
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Kampala
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/posix/Africa/Khartoum
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Kigali
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Kinshasa
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Lagos
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Libreville
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Lome
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Luanda
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Lubumbashi
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Lusaka
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Malabo
-rw-r--r-- -          -                 131 ./usr/share/zoneinfo/posix/Africa/Maputo
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/posix/Africa/Maseru
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/posix/Africa/Mbabane
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Mogadishu
-rw-r--r-- -          -                 164 ./usr/share/zoneinfo/posix/Africa/Monrovia
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Africa/Nairobi
-rw-r--r-- -          -                 160 ./usr/share/zoneinfo/posix/Africa/Ndjamena
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Niamey
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Nouakchott
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Ouagadougou
-rw-r--r-- -          -                 180 ./usr/share/zoneinfo/posix/Africa/Porto-Novo
-rw-r--r-- -          -                 173 ./usr/share/zoneinfo/posix/Africa/Sao_Tome
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Africa/Timbuktu
-rw-r--r-- -          -                 431 ./usr/share/zoneinfo/posix/Africa/Tripoli
-rw-r--r-- -          -                 449 ./usr/share/zoneinfo/posix/Africa/Tunis
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/posix/Africa/Windhoek
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/America
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/posix/America/Adak
-rw-r--r-- -          -                 977 ./usr/share/zoneinfo/posix/America/Anchorage
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Anguilla
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Antigua
-rw-r--r-- -          -                 592 ./usr/share/zoneinfo/posix/America/Araguaina
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/America/Argentina
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/Buenos_Aires
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/Catamarca
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/ComodRivadavia
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/Cordoba
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/posix/America/Argentina/Jujuy
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/posix/America/Argentina/La_Rioja
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/Mendoza
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/Rio_Gallegos
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/posix/America/Argentina/Salta
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/posix/America/Argentina/San_Juan
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/posix/America/Argentina/San_Luis
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/posix/America/Argentina/Tucuman
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Argentina/Ushuaia
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Aruba
-rw-r--r-- -          -                 884 ./usr/share/zoneinfo/posix/America/Asuncion
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/posix/America/Atikokan
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/posix/America/Atka
-rw-r--r-- -          -                 682 ./usr/share/zoneinfo/posix/America/Bahia
-rw-r--r-- -          -                 530 ./usr/share/zoneinfo/posix/America/Bahia_Banderas
-rw-r--r-- -          -                 278 ./usr/share/zoneinfo/posix/America/Barbados
-rw-r--r-- -          -                 394 ./usr/share/zoneinfo/posix/America/Belem
-rw-r--r-- -          -                1045 ./usr/share/zoneinfo/posix/America/Belize
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Blanc-Sablon
-rw-r--r-- -          -                 430 ./usr/share/zoneinfo/posix/America/Boa_Vista
-rw-r--r-- -          -                 179 ./usr/share/zoneinfo/posix/America/Bogota
-rw-r--r-- -          -                 999 ./usr/share/zoneinfo/posix/America/Boise
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Buenos_Aires
-rw-r--r-- -          -                 768 ./usr/share/zoneinfo/posix/America/Cambridge_Bay
-rw-r--r-- -          -                 952 ./usr/share/zoneinfo/posix/America/Campo_Grande
-rw-r--r-- -          -                 529 ./usr/share/zoneinfo/posix/America/Cancun
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/posix/America/Caracas
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Catamarca
-rw-r--r-- -          -                 151 ./usr/share/zoneinfo/posix/America/Cayenne
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/posix/America/Cayman
-rw-r--r-- -          -                1754 ./usr/share/zoneinfo/posix/America/Chicago
-rw-r--r-- -          -                 340 ./usr/share/zoneinfo/posix/America/Chihuahua
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/posix/America/Coral_Harbour
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Cordoba
-rw-r--r-- -          -                 232 ./usr/share/zoneinfo/posix/America/Costa_Rica
-rw-r--r-- -          -                 240 ./usr/share/zoneinfo/posix/America/Creston
-rw-r--r-- -          -                 934 ./usr/share/zoneinfo/posix/America/Cuiaba
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Curacao
-rw-r--r-- -          -                 447 ./usr/share/zoneinfo/posix/America/Danmarkshavn
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/posix/America/Dawson
-rw-r--r-- -          -                 683 ./usr/share/zoneinfo/posix/America/Dawson_Creek
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/posix/America/Denver
-rw-r--r-- -          -                 899 ./usr/share/zoneinfo/posix/America/Detroit
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Dominica
-rw-r--r-- -          -                 970 ./usr/share/zoneinfo/posix/America/Edmonton
-rw-r--r-- -          -                 436 ./usr/share/zoneinfo/posix/America/Eirunepe
-rw-r--r-- -          -                 176 ./usr/share/zoneinfo/posix/America/El_Salvador
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/posix/America/Ensenada
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/posix/America/Fortaleza
-rw-r--r-- -          -                1448 ./usr/share/zoneinfo/posix/America/Fort_Nelson
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/posix/America/Fort_Wayne
-rw-r--r-- -          -                 880 ./usr/share/zoneinfo/posix/America/Glace_Bay
-rw-r--r-- -          -                 465 ./usr/share/zoneinfo/posix/America/Godthab
-rw-r--r-- -          -                1580 ./usr/share/zoneinfo/posix/America/Goose_Bay
-rw-r--r-- -          -                 853 ./usr/share/zoneinfo/posix/America/Grand_Turk
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Grenada
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Guadeloupe
-rw-r--r-- -          -                 212 ./usr/share/zoneinfo/posix/America/Guatemala
-rw-r--r-- -          -                 179 ./usr/share/zoneinfo/posix/America/Guayaquil
-rw-r--r-- -          -                 181 ./usr/share/zoneinfo/posix/America/Guyana
-rw-r--r-- -          -                1672 ./usr/share/zoneinfo/posix/America/Halifax
-rw-r--r-- -          -                1117 ./usr/share/zoneinfo/posix/America/Havana
-rw-r--r-- -          -                 286 ./usr/share/zoneinfo/posix/America/Hermosillo
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/America/Indiana
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/posix/America/Indiana/Indianapolis
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/posix/America/Indiana/Knox
-rw-r--r-- -          -                 567 ./usr/share/zoneinfo/posix/America/Indiana/Marengo
-rw-r--r-- -          -                 683 ./usr/share/zoneinfo/posix/America/Indiana/Petersburg
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/posix/America/Indianapolis
-rw-r--r-- -          -                 522 ./usr/share/zoneinfo/posix/America/Indiana/Tell_City
-rw-r--r-- -          -                 369 ./usr/share/zoneinfo/posix/America/Indiana/Vevay
-rw-r--r-- -          -                 558 ./usr/share/zoneinfo/posix/America/Indiana/Vincennes
-rw-r--r-- -          -                 612 ./usr/share/zoneinfo/posix/America/Indiana/Winamac
-rw-r--r-- -          -                 701 ./usr/share/zoneinfo/posix/America/Inuvik
-rw-r--r-- -          -                 740 ./usr/share/zoneinfo/posix/America/Iqaluit
-rw-r--r-- -          -                 339 ./usr/share/zoneinfo/posix/America/Jamaica
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/posix/America/Jujuy
-rw-r--r-- -          -                 966 ./usr/share/zoneinfo/posix/America/Juneau
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/America/Kentucky
-rw-r--r-- -          -                1242 ./usr/share/zoneinfo/posix/America/Kentucky/Louisville
-rw-r--r-- -          -                 972 ./usr/share/zoneinfo/posix/America/Kentucky/Monticello
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/posix/America/Knox_IN
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Kralendijk
-rw-r--r-- -          -                 170 ./usr/share/zoneinfo/posix/America/La_Paz
-rw-r--r-- -          -                 283 ./usr/share/zoneinfo/posix/America/Lima
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/posix/America/Los_Angeles
-rw-r--r-- -          -                1242 ./usr/share/zoneinfo/posix/America/Louisville
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Lower_Princes
-rw-r--r-- -          -                 502 ./usr/share/zoneinfo/posix/America/Maceio
-rw-r--r-- -          -                 295 ./usr/share/zoneinfo/posix/America/Managua
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/posix/America/Manaus
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Marigot
-rw-r--r-- -          -                 178 ./usr/share/zoneinfo/posix/America/Martinique
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/posix/America/Matamoros
-rw-r--r-- -          -                 367 ./usr/share/zoneinfo/posix/America/Mazatlan
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Mendoza
-rw-r--r-- -          -                 917 ./usr/share/zoneinfo/posix/America/Menominee
-rw-r--r-- -          -                 303 ./usr/share/zoneinfo/posix/America/Merida
-rw-r--r-- -          -                 595 ./usr/share/zoneinfo/posix/America/Metlakatla
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/posix/America/Mexico_City
-rw-r--r-- -          -                 550 ./usr/share/zoneinfo/posix/America/Miquelon
-rw-r--r-- -          -                1493 ./usr/share/zoneinfo/posix/America/Moncton
-rw-r--r-- -          -                 293 ./usr/share/zoneinfo/posix/America/Monterrey
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/posix/America/Montevideo
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/posix/America/Montreal
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Montserrat
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/posix/America/Nassau
-rw-r--r-- -          -                1744 ./usr/share/zoneinfo/posix/America/New_York
-rw-r--r-- -          -                 835 ./usr/share/zoneinfo/posix/America/Nipigon
-rw-r--r-- -          -                 975 ./usr/share/zoneinfo/posix/America/Nome
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/posix/America/Noronha
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/America/North_Dakota
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/posix/America/North_Dakota/Beulah
-rw-r--r-- -          -                 990 ./usr/share/zoneinfo/posix/America/North_Dakota/Center
-rw-r--r-- -          -                 990 ./usr/share/zoneinfo/posix/America/North_Dakota/New_Salem
-rw-r--r-- -          -                 465 ./usr/share/zoneinfo/posix/America/Nuuk
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/posix/America/Ojinaga
-rw-r--r-- -          -                 149 ./usr/share/zoneinfo/posix/America/Panama
-rw-r--r-- -          -                 769 ./usr/share/zoneinfo/posix/America/Pangnirtung
-rw-r--r-- -          -                 187 ./usr/share/zoneinfo/posix/America/Paramaribo
-rw-r--r-- -          -                 240 ./usr/share/zoneinfo/posix/America/Phoenix
-rw-r--r-- -          -                 565 ./usr/share/zoneinfo/posix/America/Port-au-Prince
-rw-r--r-- -          -                 418 ./usr/share/zoneinfo/posix/America/Porto_Acre
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Port_of_Spain
-rw-r--r-- -          -                 394 ./usr/share/zoneinfo/posix/America/Porto_Velho
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Puerto_Rico
-rw-r--r-- -          -                1209 ./usr/share/zoneinfo/posix/America/Punta_Arenas
-rw-r--r-- -          -                 835 ./usr/share/zoneinfo/posix/America/Rainy_River
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/posix/America/Rankin_Inlet
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/posix/America/Recife
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/posix/America/Regina
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/posix/America/Resolute
-rw-r--r-- -          -                 418 ./usr/share/zoneinfo/posix/America/Rio_Branco
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/America/Rosario
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/posix/America/Santa_Isabel
-rw-r--r-- -          -                 409 ./usr/share/zoneinfo/posix/America/Santarem
-rw-r--r-- -          -                1282 ./usr/share/zoneinfo/posix/America/Santiago
-rw-r--r-- -          -                 317 ./usr/share/zoneinfo/posix/America/Santo_Domingo
-rw-r--r-- -          -                 952 ./usr/share/zoneinfo/posix/America/Sao_Paulo
-rw-r--r-- -          -                 479 ./usr/share/zoneinfo/posix/America/Scoresbysund
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/posix/America/Shiprock
-rw-r--r-- -          -                 956 ./usr/share/zoneinfo/posix/America/Sitka
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/St_Barthelemy
-rw-r--r-- -          -                1878 ./usr/share/zoneinfo/posix/America/St_Johns
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/St_Kitts
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/St_Lucia
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/St_Thomas
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/St_Vincent
-rw-r--r-- -          -                 368 ./usr/share/zoneinfo/posix/America/Swift_Current
-rw-r--r-- -          -                 194 ./usr/share/zoneinfo/posix/America/Tegucigalpa
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/posix/America/Thule
-rw-r--r-- -          -                 881 ./usr/share/zoneinfo/posix/America/Thunder_Bay
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/posix/America/Tijuana
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/posix/America/Toronto
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Tortola
-rw-r--r-- -          -                1330 ./usr/share/zoneinfo/posix/America/Vancouver
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/America/Virgin
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/posix/America/Whitehorse
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/posix/America/Winnipeg
-rw-r--r-- -          -                 946 ./usr/share/zoneinfo/posix/America/Yakutat
-rw-r--r-- -          -                 729 ./usr/share/zoneinfo/posix/America/Yellowknife
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Antarctica
-rw-r--r-- -          -                 243 ./usr/share/zoneinfo/posix/Antarctica/Casey
-rw-r--r-- -          -                 197 ./usr/share/zoneinfo/posix/Antarctica/Davis
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/posix/Antarctica/DumontDUrville
-rw-r--r-- -          -                 976 ./usr/share/zoneinfo/posix/Antarctica/Macquarie
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Antarctica/Mawson
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/posix/Antarctica/McMurdo
-rw-r--r-- -          -                 887 ./usr/share/zoneinfo/posix/Antarctica/Palmer
-rw-r--r-- -          -                 132 ./usr/share/zoneinfo/posix/Antarctica/Rothera
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/posix/Antarctica/South_Pole
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Antarctica/Syowa
-rw-r--r-- -          -                 177 ./usr/share/zoneinfo/posix/Antarctica/Troll
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Antarctica/Vostok
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Arctic
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/posix/Arctic/Longyearbyen
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Asia
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Aden
-rw-r--r-- -          -                 609 ./usr/share/zoneinfo/posix/Asia/Almaty
-rw-r--r-- -          -                 922 ./usr/share/zoneinfo/posix/Asia/Amman
-rw-r--r-- -          -                 743 ./usr/share/zoneinfo/posix/Asia/Anadyr
-rw-r--r-- -          -                 606 ./usr/share/zoneinfo/posix/Asia/Aqtau
-rw-r--r-- -          -                 615 ./usr/share/zoneinfo/posix/Asia/Aqtobe
-rw-r--r-- -          -                 375 ./usr/share/zoneinfo/posix/Asia/Ashgabat
-rw-r--r-- -          -                 375 ./usr/share/zoneinfo/posix/Asia/Ashkhabad
-rw-r--r-- -          -                 616 ./usr/share/zoneinfo/posix/Asia/Atyrau
-rw-r--r-- -          -                 630 ./usr/share/zoneinfo/posix/Asia/Baghdad
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Asia/Bahrain
-rw-r--r-- -          -                 744 ./usr/share/zoneinfo/posix/Asia/Baku
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Asia/Bangkok
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/posix/Asia/Barnaul
-rw-r--r-- -          -                 732 ./usr/share/zoneinfo/posix/Asia/Beirut
-rw-r--r-- -          -                 618 ./usr/share/zoneinfo/posix/Asia/Bishkek
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/posix/Asia/Brunei
-rw-r--r-- -          -                 220 ./usr/share/zoneinfo/posix/Asia/Calcutta
-rw-r--r-- -          -                 750 ./usr/share/zoneinfo/posix/Asia/Chita
-rw-r--r-- -          -                 619 ./usr/share/zoneinfo/posix/Asia/Choibalsan
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/posix/Asia/Chongqing
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/posix/Asia/Chungking
-rw-r--r-- -          -                 247 ./usr/share/zoneinfo/posix/Asia/Colombo
-rw-r--r-- -          -                 231 ./usr/share/zoneinfo/posix/Asia/Dacca
-rw-r--r-- -          -                1047 ./usr/share/zoneinfo/posix/Asia/Damascus
-rw-r--r-- -          -                 231 ./usr/share/zoneinfo/posix/Asia/Dhaka
-rw-r--r-- -          -                 170 ./usr/share/zoneinfo/posix/Asia/Dili
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Dubai
-rw-r--r-- -          -                 366 ./usr/share/zoneinfo/posix/Asia/Dushanbe
-rw-r--r-- -          -                 940 ./usr/share/zoneinfo/posix/Asia/Famagusta
-rw-r--r-- -          -                1230 ./usr/share/zoneinfo/posix/Asia/Gaza
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/posix/Asia/Harbin
-rw-r--r-- -          -                1248 ./usr/share/zoneinfo/posix/Asia/Hebron
-rw-r--r-- -          -                 236 ./usr/share/zoneinfo/posix/Asia/Ho_Chi_Minh
-rw-r--r-- -          -                 775 ./usr/share/zoneinfo/posix/Asia/Hong_Kong
-rw-r--r-- -          -                 594 ./usr/share/zoneinfo/posix/Asia/Hovd
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/posix/Asia/Irkutsk
-rw-r--r-- -          -                1200 ./usr/share/zoneinfo/posix/Asia/Istanbul
-rw-r--r-- -          -                 248 ./usr/share/zoneinfo/posix/Asia/Jakarta
-rw-r--r-- -          -                 171 ./usr/share/zoneinfo/posix/Asia/Jayapura
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/posix/Asia/Jerusalem
-rw-r--r-- -          -                 159 ./usr/share/zoneinfo/posix/Asia/Kabul
-rw-r--r-- -          -                 727 ./usr/share/zoneinfo/posix/Asia/Kamchatka
-rw-r--r-- -          -                 266 ./usr/share/zoneinfo/posix/Asia/Karachi
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Kashgar
-rw-r--r-- -          -                 161 ./usr/share/zoneinfo/posix/Asia/Kathmandu
-rw-r--r-- -          -                 161 ./usr/share/zoneinfo/posix/Asia/Katmandu
-rw-r--r-- -          -                 775 ./usr/share/zoneinfo/posix/Asia/Khandyga
-rw-r--r-- -          -                 220 ./usr/share/zoneinfo/posix/Asia/Kolkata
-rw-r--r-- -          -                 741 ./usr/share/zoneinfo/posix/Asia/Krasnoyarsk
-rw-r--r-- -          -                 256 ./usr/share/zoneinfo/posix/Asia/Kuala_Lumpur
-rw-r--r-- -          -                 320 ./usr/share/zoneinfo/posix/Asia/Kuching
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Kuwait
-rw-r--r-- -          -                 791 ./usr/share/zoneinfo/posix/Asia/Macao
-rw-r--r-- -          -                 791 ./usr/share/zoneinfo/posix/Asia/Macau
-rw-r--r-- -          -                 751 ./usr/share/zoneinfo/posix/Asia/Magadan
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/posix/Asia/Makassar
-rw-r--r-- -          -                 238 ./usr/share/zoneinfo/posix/Asia/Manila
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Muscat
-rw-r--r-- -          -                 597 ./usr/share/zoneinfo/posix/Asia/Nicosia
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/posix/Asia/Novokuznetsk
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/posix/Asia/Novosibirsk
-rw-r--r-- -          -                 741 ./usr/share/zoneinfo/posix/Asia/Omsk
-rw-r--r-- -          -                 625 ./usr/share/zoneinfo/posix/Asia/Oral
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Asia/Phnom_Penh
-rw-r--r-- -          -                 247 ./usr/share/zoneinfo/posix/Asia/Pontianak
-rw-r--r-- -          -                 183 ./usr/share/zoneinfo/posix/Asia/Pyongyang
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Asia/Qatar
-rw-r--r-- -          -                 615 ./usr/share/zoneinfo/posix/Asia/Qostanay
-rw-r--r-- -          -                 624 ./usr/share/zoneinfo/posix/Asia/Qyzylorda
-rw-r--r-- -          -                 187 ./usr/share/zoneinfo/posix/Asia/Rangoon
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Riyadh
-rw-r--r-- -          -                 236 ./usr/share/zoneinfo/posix/Asia/Saigon
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/posix/Asia/Sakhalin
-rw-r--r-- -          -                 366 ./usr/share/zoneinfo/posix/Asia/Samarkand
-rw-r--r-- -          -                 415 ./usr/share/zoneinfo/posix/Asia/Seoul
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/posix/Asia/Shanghai
-rw-r--r-- -          -                 256 ./usr/share/zoneinfo/posix/Asia/Singapore
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/posix/Asia/Srednekolymsk
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/posix/Asia/Taipei
-rw-r--r-- -          -                 366 ./usr/share/zoneinfo/posix/Asia/Tashkent
-rw-r--r-- -          -                 629 ./usr/share/zoneinfo/posix/Asia/Tbilisi
-rw-r--r-- -          -                2004 ./usr/share/zoneinfo/posix/Asia/Tehran
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/posix/Asia/Tel_Aviv
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/posix/Asia/Thimbu
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/posix/Asia/Thimphu
-rw-r--r-- -          -                 213 ./usr/share/zoneinfo/posix/Asia/Tokyo
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/posix/Asia/Tomsk
-rw-r--r-- -          -                 190 ./usr/share/zoneinfo/posix/Asia/Ujung_Pandang
-rw-r--r-- -          -                 594 ./usr/share/zoneinfo/posix/Asia/Ulaanbaatar
-rw-r--r-- -          -                 594 ./usr/share/zoneinfo/posix/Asia/Ulan_Bator
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Asia/Urumqi
-rw-r--r-- -          -                 771 ./usr/share/zoneinfo/posix/Asia/Ust-Nera
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Asia/Vientiane
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/posix/Asia/Vladivostok
-rw-r--r-- -          -                 741 ./usr/share/zoneinfo/posix/Asia/Yakutsk
-rw-r--r-- -          -                 187 ./usr/share/zoneinfo/posix/Asia/Yangon
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/posix/Asia/Yekaterinburg
-rw-r--r-- -          -                 708 ./usr/share/zoneinfo/posix/Asia/Yerevan
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Atlantic
-rw-r--r-- -          -                1453 ./usr/share/zoneinfo/posix/Atlantic/Azores
-rw-r--r-- -          -                1024 ./usr/share/zoneinfo/posix/Atlantic/Bermuda
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Atlantic/Canary
-rw-r--r-- -          -                 175 ./usr/share/zoneinfo/posix/Atlantic/Cape_Verde
-rw-r--r-- -          -                 441 ./usr/share/zoneinfo/posix/Atlantic/Faeroe
-rw-r--r-- -          -                 441 ./usr/share/zoneinfo/posix/Atlantic/Faroe
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/posix/Atlantic/Jan_Mayen
-rw-r--r-- -          -                1453 ./usr/share/zoneinfo/posix/Atlantic/Madeira
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/posix/Atlantic/Reykjavik
-rw-r--r-- -          -                 132 ./usr/share/zoneinfo/posix/Atlantic/South_Georgia
-rw-r--r-- -          -                 789 ./usr/share/zoneinfo/posix/Atlantic/Stanley
-rw-r--r-- -          -                 130 ./usr/share/zoneinfo/posix/Atlantic/St_Helena
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Australia
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Australia/ACT
-rw-r--r-- -          -                 921 ./usr/share/zoneinfo/posix/Australia/Adelaide
-rw-r--r-- -          -                 289 ./usr/share/zoneinfo/posix/Australia/Brisbane
-rw-r--r-- -          -                 941 ./usr/share/zoneinfo/posix/Australia/Broken_Hill
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Australia/Canberra
-rw-r--r-- -          -                1003 ./usr/share/zoneinfo/posix/Australia/Currie
-rw-r--r-- -          -                 234 ./usr/share/zoneinfo/posix/Australia/Darwin
-rw-r--r-- -          -                 314 ./usr/share/zoneinfo/posix/Australia/Eucla
-rw-r--r-- -          -                1003 ./usr/share/zoneinfo/posix/Australia/Hobart
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/posix/Australia/LHI
-rw-r--r-- -          -                 325 ./usr/share/zoneinfo/posix/Australia/Lindeman
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/posix/Australia/Lord_Howe
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Australia/Melbourne
-rw-r--r-- -          -                 234 ./usr/share/zoneinfo/posix/Australia/North
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Australia/NSW
-rw-r--r-- -          -                 306 ./usr/share/zoneinfo/posix/Australia/Perth
-rw-r--r-- -          -                 289 ./usr/share/zoneinfo/posix/Australia/Queensland
-rw-r--r-- -          -                 921 ./usr/share/zoneinfo/posix/Australia/South
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Australia/Sydney
-rw-r--r-- -          -                1003 ./usr/share/zoneinfo/posix/Australia/Tasmania
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Australia/Victoria
-rw-r--r-- -          -                 306 ./usr/share/zoneinfo/posix/Australia/West
-rw-r--r-- -          -                 941 ./usr/share/zoneinfo/posix/Australia/Yancowinna
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Brazil
-rw-r--r-- -          -                 418 ./usr/share/zoneinfo/posix/Brazil/Acre
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/posix/Brazil/DeNoronha
-rw-r--r-- -          -                 952 ./usr/share/zoneinfo/posix/Brazil/East
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/posix/Brazil/West
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Canada
-rw-r--r-- -          -                1672 ./usr/share/zoneinfo/posix/Canada/Atlantic
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/posix/Canada/Central
-rw-r--r-- -          -                1717 ./usr/share/zoneinfo/posix/Canada/Eastern
-rw-r--r-- -          -                 970 ./usr/share/zoneinfo/posix/Canada/Mountain
-rw-r--r-- -          -                1878 ./usr/share/zoneinfo/posix/Canada/Newfoundland
-rw-r--r-- -          -                1330 ./usr/share/zoneinfo/posix/Canada/Pacific
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/posix/Canada/Saskatchewan
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/posix/Canada/Yukon
-rw-r--r-- -          -                 621 ./usr/share/zoneinfo/posix/CET
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Chile
-rw-r--r-- -          -                1282 ./usr/share/zoneinfo/posix/Chile/Continental
-rw-r--r-- -          -                1102 ./usr/share/zoneinfo/posix/Chile/EasterIsland
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/posix/CST6CDT
-rw-r--r-- -          -                1117 ./usr/share/zoneinfo/posix/Cuba
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/posix/EET
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/posix/Egypt
-rw-r--r-- -          -                1496 ./usr/share/zoneinfo/posix/Eire
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/EST
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/posix/EST5EDT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Etc
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/GMT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/GMT-0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/GMT+0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/GMT0
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-1
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+1
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/posix/Etc/GMT-10
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT+10
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/posix/Etc/GMT-11
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT+11
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/posix/Etc/GMT-12
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT+12
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/posix/Etc/GMT-13
-rw-r--r-- -          -                 115 ./usr/share/zoneinfo/posix/Etc/GMT-14
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-2
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+2
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-3
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+3
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-4
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+4
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-5
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+5
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-6
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+6
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-7
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+7
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-8
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+8
-rw-r--r-- -          -                 114 ./usr/share/zoneinfo/posix/Etc/GMT-9
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Etc/GMT+9
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/Greenwich
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/UCT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/Universal
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/UTC
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Etc/Zulu
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Europe
-rw-r--r-- -          -                1071 ./usr/share/zoneinfo/posix/Europe/Amsterdam
-rw-r--r-- -          -                 389 ./usr/share/zoneinfo/posix/Europe/Andorra
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/posix/Europe/Astrakhan
-rw-r--r-- -          -                 682 ./usr/share/zoneinfo/posix/Europe/Athens
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/Europe/Belfast
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Europe/Belgrade
-rw-r--r-- -          -                 705 ./usr/share/zoneinfo/posix/Europe/Berlin
-rw-r--r-- -          -                 723 ./usr/share/zoneinfo/posix/Europe/Bratislava
-rw-r--r-- -          -                1103 ./usr/share/zoneinfo/posix/Europe/Brussels
-rw-r--r-- -          -                 661 ./usr/share/zoneinfo/posix/Europe/Bucharest
-rw-r--r-- -          -                 766 ./usr/share/zoneinfo/posix/Europe/Budapest
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/posix/Europe/Busingen
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/posix/Europe/Chisinau
-rw-r--r-- -          -                 623 ./usr/share/zoneinfo/posix/Europe/Copenhagen
-rw-r--r-- -          -                1496 ./usr/share/zoneinfo/posix/Europe/Dublin
-rw-r--r-- -          -                1220 ./usr/share/zoneinfo/posix/Europe/Gibraltar
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/Europe/Guernsey
-rw-r--r-- -          -                 481 ./usr/share/zoneinfo/posix/Europe/Helsinki
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/Europe/Isle_of_Man
-rw-r--r-- -          -                1200 ./usr/share/zoneinfo/posix/Europe/Istanbul
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/Europe/Jersey
-rw-r--r-- -          -                 904 ./usr/share/zoneinfo/posix/Europe/Kaliningrad
-rw-r--r-- -          -                 549 ./usr/share/zoneinfo/posix/Europe/Kiev
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/posix/Europe/Kirov
-rw-r--r-- -          -                1454 ./usr/share/zoneinfo/posix/Europe/Lisbon
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Europe/Ljubljana
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/Europe/London
-rw-r--r-- -          -                1087 ./usr/share/zoneinfo/posix/Europe/Luxembourg
-rw-r--r-- -          -                 897 ./usr/share/zoneinfo/posix/Europe/Madrid
-rw-r--r-- -          -                 928 ./usr/share/zoneinfo/posix/Europe/Malta
-rw-r--r-- -          -                 481 ./usr/share/zoneinfo/posix/Europe/Mariehamn
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/posix/Europe/Minsk
-rw-r--r-- -          -                1114 ./usr/share/zoneinfo/posix/Europe/Monaco
-rw-r--r-- -          -                 908 ./usr/share/zoneinfo/posix/Europe/Moscow
-rw-r--r-- -          -                 597 ./usr/share/zoneinfo/posix/Europe/Nicosia
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/posix/Europe/Oslo
-rw-r--r-- -          -                1105 ./usr/share/zoneinfo/posix/Europe/Paris
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Europe/Podgorica
-rw-r--r-- -          -                 723 ./usr/share/zoneinfo/posix/Europe/Prague
-rw-r--r-- -          -                 694 ./usr/share/zoneinfo/posix/Europe/Riga
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/posix/Europe/Rome
-rw-r--r-- -          -                 732 ./usr/share/zoneinfo/posix/Europe/Samara
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/posix/Europe/San_Marino
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Europe/Sarajevo
-rw-r--r-- -          -                 726 ./usr/share/zoneinfo/posix/Europe/Saratov
-rw-r--r-- -          -                 865 ./usr/share/zoneinfo/posix/Europe/Simferopol
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Europe/Skopje
-rw-r--r-- -          -                 592 ./usr/share/zoneinfo/posix/Europe/Sofia
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/posix/Europe/Stockholm
-rw-r--r-- -          -                 675 ./usr/share/zoneinfo/posix/Europe/Tallinn
-rw-r--r-- -          -                 604 ./usr/share/zoneinfo/posix/Europe/Tirane
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/posix/Europe/Tiraspol
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/posix/Europe/Ulyanovsk
-rw-r--r-- -          -                 530 ./usr/share/zoneinfo/posix/Europe/Uzhgorod
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/posix/Europe/Vaduz
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/posix/Europe/Vatican
-rw-r--r-- -          -                 658 ./usr/share/zoneinfo/posix/Europe/Vienna
-rw-r--r-- -          -                 676 ./usr/share/zoneinfo/posix/Europe/Vilnius
-rw-r--r-- -          -                 735 ./usr/share/zoneinfo/posix/Europe/Volgograd
-rw-r--r-- -          -                 923 ./usr/share/zoneinfo/posix/Europe/Warsaw
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/posix/Europe/Zagreb
-rw-r--r-- -          -                 560 ./usr/share/zoneinfo/posix/Europe/Zaporozhye
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/posix/Europe/Zurich
-rw-r--r-- -          -                 113 ./usr/share/zoneinfo/posix/Factory
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/GB
-rw-r--r-- -          -                1599 ./usr/share/zoneinfo/posix/GB-Eire
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/GMT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/GMT-0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/GMT+0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/GMT0
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Greenwich
-rw-r--r-- -          -                 775 ./usr/share/zoneinfo/posix/Hongkong
-rw-r--r-- -          -                 112 ./usr/share/zoneinfo/posix/HST
-rw-r--r-- -          -                 753 ./usr/share/zoneinfo/posix/Iceland
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Indian
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Indian/Antananarivo
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Indian/Chagos
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Indian/Christmas
-rw-r--r-- -          -                 140 ./usr/share/zoneinfo/posix/Indian/Cocos
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Indian/Comoro
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Indian/Kerguelen
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Indian/Mahe
-rw-r--r-- -          -                 152 ./usr/share/zoneinfo/posix/Indian/Maldives
-rw-r--r-- -          -                 179 ./usr/share/zoneinfo/posix/Indian/Mauritius
-rw-r--r-- -          -                 191 ./usr/share/zoneinfo/posix/Indian/Mayotte
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Indian/Reunion
-rw-r--r-- -          -                2004 ./usr/share/zoneinfo/posix/Iran
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/posix/Israel
-rw-r--r-- -          -                 339 ./usr/share/zoneinfo/posix/Jamaica
-rw-r--r-- -          -                 213 ./usr/share/zoneinfo/posix/Japan
-rw-r--r-- -          -                 219 ./usr/share/zoneinfo/posix/Kwajalein
-rw-r--r-- -          -                 431 ./usr/share/zoneinfo/posix/Libya
-rw-r--r-- -          -                 621 ./usr/share/zoneinfo/posix/MET
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Mexico
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/posix/Mexico/BajaNorte
-rw-r--r-- -          -                 367 ./usr/share/zoneinfo/posix/Mexico/BajaSur
-rw-r--r-- -          -                 412 ./usr/share/zoneinfo/posix/Mexico/General
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/MST
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/posix/MST7MDT
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/posix/Navajo
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/posix/NZ
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/posix/NZ-CHAT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/Pacific
-rw-r--r-- -          -                 407 ./usr/share/zoneinfo/posix/Pacific/Apia
-rw-r--r-- -          -                1043 ./usr/share/zoneinfo/posix/Pacific/Auckland
-rw-r--r-- -          -                 201 ./usr/share/zoneinfo/posix/Pacific/Bougainville
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/posix/Pacific/Chatham
-rw-r--r-- -          -                 195 ./usr/share/zoneinfo/posix/Pacific/Chuuk
-rw-r--r-- -          -                1102 ./usr/share/zoneinfo/posix/Pacific/Easter
-rw-r--r-- -          -                 342 ./usr/share/zoneinfo/posix/Pacific/Efate
-rw-r--r-- -          -                 172 ./usr/share/zoneinfo/posix/Pacific/Enderbury
-rw-r--r-- -          -                 153 ./usr/share/zoneinfo/posix/Pacific/Fakaofo
-rw-r--r-- -          -                 428 ./usr/share/zoneinfo/posix/Pacific/Fiji
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/posix/Pacific/Funafuti
-rw-r--r-- -          -                 175 ./usr/share/zoneinfo/posix/Pacific/Galapagos
-rw-r--r-- -          -                 132 ./usr/share/zoneinfo/posix/Pacific/Gambier
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/posix/Pacific/Guadalcanal
-rw-r--r-- -          -                 350 ./usr/share/zoneinfo/posix/Pacific/Guam
-rw-r--r-- -          -                 221 ./usr/share/zoneinfo/posix/Pacific/Honolulu
-rw-r--r-- -          -                 221 ./usr/share/zoneinfo/posix/Pacific/Johnston
-rw-r--r-- -          -                 172 ./usr/share/zoneinfo/posix/Pacific/Kanton
-rw-r--r-- -          -                 174 ./usr/share/zoneinfo/posix/Pacific/Kiritimati
-rw-r--r-- -          -                 242 ./usr/share/zoneinfo/posix/Pacific/Kosrae
-rw-r--r-- -          -                 219 ./usr/share/zoneinfo/posix/Pacific/Kwajalein
-rw-r--r-- -          -                 218 ./usr/share/zoneinfo/posix/Pacific/Majuro
-rw-r--r-- -          -                 139 ./usr/share/zoneinfo/posix/Pacific/Marquesas
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/posix/Pacific/Midway
-rw-r--r-- -          -                 183 ./usr/share/zoneinfo/posix/Pacific/Nauru
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/posix/Pacific/Niue
-rw-r--r-- -          -                 247 ./usr/share/zoneinfo/posix/Pacific/Norfolk
-rw-r--r-- -          -                 198 ./usr/share/zoneinfo/posix/Pacific/Noumea
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/posix/Pacific/Pago_Pago
-rw-r--r-- -          -                 148 ./usr/share/zoneinfo/posix/Pacific/Palau
-rw-r--r-- -          -                 153 ./usr/share/zoneinfo/posix/Pacific/Pitcairn
-rw-r--r-- -          -                 214 ./usr/share/zoneinfo/posix/Pacific/Pohnpei
-rw-r--r-- -          -                 214 ./usr/share/zoneinfo/posix/Pacific/Ponape
-rw-r--r-- -          -                 154 ./usr/share/zoneinfo/posix/Pacific/Port_Moresby
-rw-r--r-- -          -                 406 ./usr/share/zoneinfo/posix/Pacific/Rarotonga
-rw-r--r-- -          -                 350 ./usr/share/zoneinfo/posix/Pacific/Saipan
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/posix/Pacific/Samoa
-rw-r--r-- -          -                 133 ./usr/share/zoneinfo/posix/Pacific/Tahiti
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/posix/Pacific/Tarawa
-rw-r--r-- -          -                 237 ./usr/share/zoneinfo/posix/Pacific/Tongatapu
-rw-r--r-- -          -                 195 ./usr/share/zoneinfo/posix/Pacific/Truk
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/posix/Pacific/Wake
-rw-r--r-- -          -                 134 ./usr/share/zoneinfo/posix/Pacific/Wallis
-rw-r--r-- -          -                 195 ./usr/share/zoneinfo/posix/Pacific/Yap
-rw-r--r-- -          -                 923 ./usr/share/zoneinfo/posix/Poland
-rw-r--r-- -          -                1454 ./usr/share/zoneinfo/posix/Portugal
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/posix/PRC
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/posix/PST8PDT
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/posix/ROC
-rw-r--r-- -          -                 415 ./usr/share/zoneinfo/posix/ROK
-rw-r--r-- -          -                 256 ./usr/share/zoneinfo/posix/Singapore
-rw-r--r-- -          -                1200 ./usr/share/zoneinfo/posix/Turkey
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/UCT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Universal
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/posix/US
-rw-r--r-- -          -                 977 ./usr/share/zoneinfo/posix/US/Alaska
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/posix/US/Aleutian
-rw-r--r-- -          -                 240 ./usr/share/zoneinfo/posix/US/Arizona
-rw-r--r-- -          -                1754 ./usr/share/zoneinfo/posix/US/Central
-rw-r--r-- -          -                1744 ./usr/share/zoneinfo/posix/US/Eastern
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/posix/US/East-Indiana
-rw-r--r-- -          -                 221 ./usr/share/zoneinfo/posix/US/Hawaii
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/posix/US/Indiana-Starke
-rw-r--r-- -          -                 899 ./usr/share/zoneinfo/posix/US/Michigan
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/posix/US/Mountain
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/posix/US/Pacific
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/posix/US/Samoa
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/UTC
-rw-r--r-- -          -                 494 ./usr/share/zoneinfo/posix/WET
-rw-r--r-- -          -                 908 ./usr/share/zoneinfo/posix/W-SU
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/posix/Zulu
-rw-r--r-- -          -                 393 ./usr/share/zoneinfo/PRC
-rw-r--r-- -          -                 951 ./usr/share/zoneinfo/PST8PDT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Africa
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Abidjan
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Accra
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Addis_Ababa
-rw-r--r-- -          -                 794 ./usr/share/zoneinfo/right/Africa/Algiers
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Asmara
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Asmera
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Bamako
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Bangui
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Banjul
-rw-r--r-- -          -                 473 ./usr/share/zoneinfo/right/Africa/Bissau
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Blantyre
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Brazzaville
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Bujumbura
-rw-r--r-- -          -                1600 ./usr/share/zoneinfo/right/Africa/Cairo
-rw-r--r-- -          -                2243 ./usr/share/zoneinfo/right/Africa/Casablanca
-rw-r--r-- -          -                 886 ./usr/share/zoneinfo/right/Africa/Ceuta
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Conakry
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Dakar
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Dar_es_Salaam
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Djibouti
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Douala
-rw-r--r-- -          -                2154 ./usr/share/zoneinfo/right/Africa/El_Aaiun
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Freetown
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Gaborone
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Harare
-rw-r--r-- -          -                 514 ./usr/share/zoneinfo/right/Africa/Johannesburg
-rw-r--r-- -          -                 782 ./usr/share/zoneinfo/right/Africa/Juba
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Kampala
-rw-r--r-- -          -                 782 ./usr/share/zoneinfo/right/Africa/Khartoum
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Kigali
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Kinshasa
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Lagos
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Libreville
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Lome
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Luanda
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Lubumbashi
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Lusaka
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Malabo
-rw-r--r-- -          -                 455 ./usr/share/zoneinfo/right/Africa/Maputo
-rw-r--r-- -          -                 514 ./usr/share/zoneinfo/right/Africa/Maseru
-rw-r--r-- -          -                 514 ./usr/share/zoneinfo/right/Africa/Mbabane
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Mogadishu
-rw-r--r-- -          -                 488 ./usr/share/zoneinfo/right/Africa/Monrovia
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Africa/Nairobi
-rw-r--r-- -          -                 484 ./usr/share/zoneinfo/right/Africa/Ndjamena
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Niamey
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Nouakchott
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Ouagadougou
-rw-r--r-- -          -                 504 ./usr/share/zoneinfo/right/Africa/Porto-Novo
-rw-r--r-- -          -                 497 ./usr/share/zoneinfo/right/Africa/Sao_Tome
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Africa/Timbuktu
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/right/Africa/Tripoli
-rw-r--r-- -          -                 773 ./usr/share/zoneinfo/right/Africa/Tunis
-rw-r--r-- -          -                 962 ./usr/share/zoneinfo/right/Africa/Windhoek
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/America
-rw-r--r-- -          -                1293 ./usr/share/zoneinfo/right/America/Adak
-rw-r--r-- -          -                1301 ./usr/share/zoneinfo/right/America/Anchorage
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Anguilla
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Antigua
-rw-r--r-- -          -                 916 ./usr/share/zoneinfo/right/America/Araguaina
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/America/Argentina
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/Buenos_Aires
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/Catamarca
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/ComodRivadavia
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/Cordoba
-rw-r--r-- -          -                1014 ./usr/share/zoneinfo/right/America/Argentina/Jujuy
-rw-r--r-- -          -                1041 ./usr/share/zoneinfo/right/America/Argentina/La_Rioja
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/Mendoza
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos
-rw-r--r-- -          -                1014 ./usr/share/zoneinfo/right/America/Argentina/Salta
-rw-r--r-- -          -                1041 ./usr/share/zoneinfo/right/America/Argentina/San_Juan
-rw-r--r-- -          -                1041 ./usr/share/zoneinfo/right/America/Argentina/San_Luis
-rw-r--r-- -          -                1050 ./usr/share/zoneinfo/right/America/Argentina/Tucuman
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Argentina/Ushuaia
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Aruba
-rw-r--r-- -          -                1208 ./usr/share/zoneinfo/right/America/Asuncion
-rw-r--r-- -          -                 473 ./usr/share/zoneinfo/right/America/Atikokan
-rw-r--r-- -          -                1293 ./usr/share/zoneinfo/right/America/Atka
-rw-r--r-- -          -                1006 ./usr/share/zoneinfo/right/America/Bahia
-rw-r--r-- -          -                 854 ./usr/share/zoneinfo/right/America/Bahia_Banderas
-rw-r--r-- -          -                 602 ./usr/share/zoneinfo/right/America/Barbados
-rw-r--r-- -          -                 718 ./usr/share/zoneinfo/right/America/Belem
-rw-r--r-- -          -                1369 ./usr/share/zoneinfo/right/America/Belize
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Blanc-Sablon
-rw-r--r-- -          -                 754 ./usr/share/zoneinfo/right/America/Boa_Vista
-rw-r--r-- -          -                 503 ./usr/share/zoneinfo/right/America/Bogota
-rw-r--r-- -          -                1323 ./usr/share/zoneinfo/right/America/Boise
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Buenos_Aires
-rw-r--r-- -          -                1092 ./usr/share/zoneinfo/right/America/Cambridge_Bay
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/right/America/Campo_Grande
-rw-r--r-- -          -                 853 ./usr/share/zoneinfo/right/America/Cancun
-rw-r--r-- -          -                 514 ./usr/share/zoneinfo/right/America/Caracas
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Catamarca
-rw-r--r-- -          -                 475 ./usr/share/zoneinfo/right/America/Cayenne
-rw-r--r-- -          -                 473 ./usr/share/zoneinfo/right/America/Cayman
-rw-r--r-- -          -                2078 ./usr/share/zoneinfo/right/America/Chicago
-rw-r--r-- -          -                 664 ./usr/share/zoneinfo/right/America/Chihuahua
-rw-r--r-- -          -                 473 ./usr/share/zoneinfo/right/America/Coral_Harbour
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Cordoba
-rw-r--r-- -          -                 556 ./usr/share/zoneinfo/right/America/Costa_Rica
-rw-r--r-- -          -                 564 ./usr/share/zoneinfo/right/America/Creston
-rw-r--r-- -          -                1258 ./usr/share/zoneinfo/right/America/Cuiaba
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Curacao
-rw-r--r-- -          -                 771 ./usr/share/zoneinfo/right/America/Danmarkshavn
-rw-r--r-- -          -                1353 ./usr/share/zoneinfo/right/America/Dawson
-rw-r--r-- -          -                1007 ./usr/share/zoneinfo/right/America/Dawson_Creek
-rw-r--r-- -          -                1366 ./usr/share/zoneinfo/right/America/Denver
-rw-r--r-- -          -                1223 ./usr/share/zoneinfo/right/America/Detroit
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Dominica
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/right/America/Edmonton
-rw-r--r-- -          -                 760 ./usr/share/zoneinfo/right/America/Eirunepe
-rw-r--r-- -          -                 500 ./usr/share/zoneinfo/right/America/El_Salvador
-rw-r--r-- -          -                1349 ./usr/share/zoneinfo/right/America/Ensenada
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/right/America/Fortaleza
-rw-r--r-- -          -                1772 ./usr/share/zoneinfo/right/America/Fort_Nelson
-rw-r--r-- -          -                 855 ./usr/share/zoneinfo/right/America/Fort_Wayne
-rw-r--r-- -          -                1204 ./usr/share/zoneinfo/right/America/Glace_Bay
-rw-r--r-- -          -                 789 ./usr/share/zoneinfo/right/America/Godthab
-rw-r--r-- -          -                1904 ./usr/share/zoneinfo/right/America/Goose_Bay
-rw-r--r-- -          -                1177 ./usr/share/zoneinfo/right/America/Grand_Turk
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Grenada
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Guadeloupe
-rw-r--r-- -          -                 536 ./usr/share/zoneinfo/right/America/Guatemala
-rw-r--r-- -          -                 503 ./usr/share/zoneinfo/right/America/Guayaquil
-rw-r--r-- -          -                 505 ./usr/share/zoneinfo/right/America/Guyana
-rw-r--r-- -          -                1996 ./usr/share/zoneinfo/right/America/Halifax
-rw-r--r-- -          -                1441 ./usr/share/zoneinfo/right/America/Havana
-rw-r--r-- -          -                 610 ./usr/share/zoneinfo/right/America/Hermosillo
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/America/Indiana
-rw-r--r-- -          -                 855 ./usr/share/zoneinfo/right/America/Indiana/Indianapolis
-rw-r--r-- -          -                1340 ./usr/share/zoneinfo/right/America/Indiana/Knox
-rw-r--r-- -          -                 891 ./usr/share/zoneinfo/right/America/Indiana/Marengo
-rw-r--r-- -          -                1026 ./usr/share/zoneinfo/right/America/Indiana/Petersburg
-rw-r--r-- -          -                 855 ./usr/share/zoneinfo/right/America/Indianapolis
-rw-r--r-- -          -                 846 ./usr/share/zoneinfo/right/America/Indiana/Tell_City
-rw-r--r-- -          -                 693 ./usr/share/zoneinfo/right/America/Indiana/Vevay
-rw-r--r-- -          -                 891 ./usr/share/zoneinfo/right/America/Indiana/Vincennes
-rw-r--r-- -          -                 936 ./usr/share/zoneinfo/right/America/Indiana/Winamac
-rw-r--r-- -          -                1025 ./usr/share/zoneinfo/right/America/Inuvik
-rw-r--r-- -          -                1064 ./usr/share/zoneinfo/right/America/Iqaluit
-rw-r--r-- -          -                 663 ./usr/share/zoneinfo/right/America/Jamaica
-rw-r--r-- -          -                1014 ./usr/share/zoneinfo/right/America/Jujuy
-rw-r--r-- -          -                1290 ./usr/share/zoneinfo/right/America/Juneau
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/America/Kentucky
-rw-r--r-- -          -                1566 ./usr/share/zoneinfo/right/America/Kentucky/Louisville
-rw-r--r-- -          -                1296 ./usr/share/zoneinfo/right/America/Kentucky/Monticello
-rw-r--r-- -          -                1340 ./usr/share/zoneinfo/right/America/Knox_IN
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Kralendijk
-rw-r--r-- -          -                 494 ./usr/share/zoneinfo/right/America/La_Paz
-rw-r--r-- -          -                 607 ./usr/share/zoneinfo/right/America/Lima
-rw-r--r-- -          -                1618 ./usr/share/zoneinfo/right/America/Los_Angeles
-rw-r--r-- -          -                1566 ./usr/share/zoneinfo/right/America/Louisville
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Lower_Princes
-rw-r--r-- -          -                 826 ./usr/share/zoneinfo/right/America/Maceio
-rw-r--r-- -          -                 619 ./usr/share/zoneinfo/right/America/Managua
-rw-r--r-- -          -                 736 ./usr/share/zoneinfo/right/America/Manaus
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Marigot
-rw-r--r-- -          -                 502 ./usr/share/zoneinfo/right/America/Martinique
-rw-r--r-- -          -                 761 ./usr/share/zoneinfo/right/America/Matamoros
-rw-r--r-- -          -                 691 ./usr/share/zoneinfo/right/America/Mazatlan
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Mendoza
-rw-r--r-- -          -                1241 ./usr/share/zoneinfo/right/America/Menominee
-rw-r--r-- -          -                 627 ./usr/share/zoneinfo/right/America/Merida
-rw-r--r-- -          -                 919 ./usr/share/zoneinfo/right/America/Metlakatla
-rw-r--r-- -          -                 736 ./usr/share/zoneinfo/right/America/Mexico_City
-rw-r--r-- -          -                 874 ./usr/share/zoneinfo/right/America/Miquelon
-rw-r--r-- -          -                1817 ./usr/share/zoneinfo/right/America/Moncton
-rw-r--r-- -          -                 617 ./usr/share/zoneinfo/right/America/Monterrey
-rw-r--r-- -          -                1293 ./usr/share/zoneinfo/right/America/Montevideo
-rw-r--r-- -          -                2041 ./usr/share/zoneinfo/right/America/Montreal
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Montserrat
-rw-r--r-- -          -                2041 ./usr/share/zoneinfo/right/America/Nassau
-rw-r--r-- -          -                2068 ./usr/share/zoneinfo/right/America/New_York
-rw-r--r-- -          -                1159 ./usr/share/zoneinfo/right/America/Nipigon
-rw-r--r-- -          -                1299 ./usr/share/zoneinfo/right/America/Nome
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/right/America/Noronha
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/America/North_Dakota
-rw-r--r-- -          -                1386 ./usr/share/zoneinfo/right/America/North_Dakota/Beulah
-rw-r--r-- -          -                1314 ./usr/share/zoneinfo/right/America/North_Dakota/Center
-rw-r--r-- -          -                1314 ./usr/share/zoneinfo/right/America/North_Dakota/New_Salem
-rw-r--r-- -          -                 789 ./usr/share/zoneinfo/right/America/Nuuk
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/right/America/Ojinaga
-rw-r--r-- -          -                 473 ./usr/share/zoneinfo/right/America/Panama
-rw-r--r-- -          -                1093 ./usr/share/zoneinfo/right/America/Pangnirtung
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/right/America/Paramaribo
-rw-r--r-- -          -                 564 ./usr/share/zoneinfo/right/America/Phoenix
-rw-r--r-- -          -                 889 ./usr/share/zoneinfo/right/America/Port-au-Prince
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/right/America/Porto_Acre
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Port_of_Spain
-rw-r--r-- -          -                 718 ./usr/share/zoneinfo/right/America/Porto_Velho
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Puerto_Rico
-rw-r--r-- -          -                1533 ./usr/share/zoneinfo/right/America/Punta_Arenas
-rw-r--r-- -          -                1159 ./usr/share/zoneinfo/right/America/Rainy_River
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/right/America/Rankin_Inlet
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/right/America/Recife
-rw-r--r-- -          -                 962 ./usr/share/zoneinfo/right/America/Regina
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/right/America/Resolute
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/right/America/Rio_Branco
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/America/Rosario
-rw-r--r-- -          -                1349 ./usr/share/zoneinfo/right/America/Santa_Isabel
-rw-r--r-- -          -                 733 ./usr/share/zoneinfo/right/America/Santarem
-rw-r--r-- -          -                1606 ./usr/share/zoneinfo/right/America/Santiago
-rw-r--r-- -          -                 641 ./usr/share/zoneinfo/right/America/Santo_Domingo
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/right/America/Sao_Paulo
-rw-r--r-- -          -                 803 ./usr/share/zoneinfo/right/America/Scoresbysund
-rw-r--r-- -          -                1366 ./usr/share/zoneinfo/right/America/Shiprock
-rw-r--r-- -          -                1280 ./usr/share/zoneinfo/right/America/Sitka
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/St_Barthelemy
-rw-r--r-- -          -                2202 ./usr/share/zoneinfo/right/America/St_Johns
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/St_Kitts
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/St_Lucia
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/St_Thomas
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/St_Vincent
-rw-r--r-- -          -                 692 ./usr/share/zoneinfo/right/America/Swift_Current
-rw-r--r-- -          -                 518 ./usr/share/zoneinfo/right/America/Tegucigalpa
-rw-r--r-- -          -                 779 ./usr/share/zoneinfo/right/America/Thule
-rw-r--r-- -          -                1205 ./usr/share/zoneinfo/right/America/Thunder_Bay
-rw-r--r-- -          -                1349 ./usr/share/zoneinfo/right/America/Tijuana
-rw-r--r-- -          -                2041 ./usr/share/zoneinfo/right/America/Toronto
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Tortola
-rw-r--r-- -          -                1654 ./usr/share/zoneinfo/right/America/Vancouver
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/America/Virgin
-rw-r--r-- -          -                1353 ./usr/share/zoneinfo/right/America/Whitehorse
-rw-r--r-- -          -                1618 ./usr/share/zoneinfo/right/America/Winnipeg
-rw-r--r-- -          -                1270 ./usr/share/zoneinfo/right/America/Yakutat
-rw-r--r-- -          -                1053 ./usr/share/zoneinfo/right/America/Yellowknife
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Antarctica
-rw-r--r-- -          -                 567 ./usr/share/zoneinfo/right/Antarctica/Casey
-rw-r--r-- -          -                 521 ./usr/share/zoneinfo/right/Antarctica/Davis
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/right/Antarctica/DumontDUrville
-rw-r--r-- -          -                1300 ./usr/share/zoneinfo/right/Antarctica/Macquarie
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Antarctica/Mawson
-rw-r--r-- -          -                1367 ./usr/share/zoneinfo/right/Antarctica/McMurdo
-rw-r--r-- -          -                1211 ./usr/share/zoneinfo/right/Antarctica/Palmer
-rw-r--r-- -          -                 456 ./usr/share/zoneinfo/right/Antarctica/Rothera
-rw-r--r-- -          -                1367 ./usr/share/zoneinfo/right/Antarctica/South_Pole
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Antarctica/Syowa
-rw-r--r-- -          -                 501 ./usr/share/zoneinfo/right/Antarctica/Troll
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Antarctica/Vostok
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Arctic
-rw-r--r-- -          -                1000 ./usr/share/zoneinfo/right/Arctic/Longyearbyen
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Asia
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Aden
-rw-r--r-- -          -                 933 ./usr/share/zoneinfo/right/Asia/Almaty
-rw-r--r-- -          -                1246 ./usr/share/zoneinfo/right/Asia/Amman
-rw-r--r-- -          -                1067 ./usr/share/zoneinfo/right/Asia/Anadyr
-rw-r--r-- -          -                 930 ./usr/share/zoneinfo/right/Asia/Aqtau
-rw-r--r-- -          -                 939 ./usr/share/zoneinfo/right/Asia/Aqtobe
-rw-r--r-- -          -                 699 ./usr/share/zoneinfo/right/Asia/Ashgabat
-rw-r--r-- -          -                 699 ./usr/share/zoneinfo/right/Asia/Ashkhabad
-rw-r--r-- -          -                 940 ./usr/share/zoneinfo/right/Asia/Atyrau
-rw-r--r-- -          -                 954 ./usr/share/zoneinfo/right/Asia/Baghdad
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Asia/Bahrain
-rw-r--r-- -          -                1068 ./usr/share/zoneinfo/right/Asia/Baku
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Asia/Bangkok
-rw-r--r-- -          -                1077 ./usr/share/zoneinfo/right/Asia/Barnaul
-rw-r--r-- -          -                1056 ./usr/share/zoneinfo/right/Asia/Beirut
-rw-r--r-- -          -                 942 ./usr/share/zoneinfo/right/Asia/Bishkek
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/right/Asia/Brunei
-rw-r--r-- -          -                 544 ./usr/share/zoneinfo/right/Asia/Calcutta
-rw-r--r-- -          -                1074 ./usr/share/zoneinfo/right/Asia/Chita
-rw-r--r-- -          -                 943 ./usr/share/zoneinfo/right/Asia/Choibalsan
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/right/Asia/Chongqing
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/right/Asia/Chungking
-rw-r--r-- -          -                 571 ./usr/share/zoneinfo/right/Asia/Colombo
-rw-r--r-- -          -                 555 ./usr/share/zoneinfo/right/Asia/Dacca
-rw-r--r-- -          -                1371 ./usr/share/zoneinfo/right/Asia/Damascus
-rw-r--r-- -          -                 555 ./usr/share/zoneinfo/right/Asia/Dhaka
-rw-r--r-- -          -                 494 ./usr/share/zoneinfo/right/Asia/Dili
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Dubai
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/right/Asia/Dushanbe
-rw-r--r-- -          -                1264 ./usr/share/zoneinfo/right/Asia/Famagusta
-rw-r--r-- -          -                1554 ./usr/share/zoneinfo/right/Asia/Gaza
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/right/Asia/Harbin
-rw-r--r-- -          -                1572 ./usr/share/zoneinfo/right/Asia/Hebron
-rw-r--r-- -          -                 560 ./usr/share/zoneinfo/right/Asia/Ho_Chi_Minh
-rw-r--r-- -          -                1099 ./usr/share/zoneinfo/right/Asia/Hong_Kong
-rw-r--r-- -          -                 918 ./usr/share/zoneinfo/right/Asia/Hovd
-rw-r--r-- -          -                1084 ./usr/share/zoneinfo/right/Asia/Irkutsk
-rw-r--r-- -          -                1524 ./usr/share/zoneinfo/right/Asia/Istanbul
-rw-r--r-- -          -                 572 ./usr/share/zoneinfo/right/Asia/Jakarta
-rw-r--r-- -          -                 495 ./usr/share/zoneinfo/right/Asia/Jayapura
-rw-r--r-- -          -                1398 ./usr/share/zoneinfo/right/Asia/Jerusalem
-rw-r--r-- -          -                 483 ./usr/share/zoneinfo/right/Asia/Kabul
-rw-r--r-- -          -                1051 ./usr/share/zoneinfo/right/Asia/Kamchatka
-rw-r--r-- -          -                 590 ./usr/share/zoneinfo/right/Asia/Karachi
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Kashgar
-rw-r--r-- -          -                 485 ./usr/share/zoneinfo/right/Asia/Kathmandu
-rw-r--r-- -          -                 485 ./usr/share/zoneinfo/right/Asia/Katmandu
-rw-r--r-- -          -                1099 ./usr/share/zoneinfo/right/Asia/Khandyga
-rw-r--r-- -          -                 544 ./usr/share/zoneinfo/right/Asia/Kolkata
-rw-r--r-- -          -                1065 ./usr/share/zoneinfo/right/Asia/Krasnoyarsk
-rw-r--r-- -          -                 580 ./usr/share/zoneinfo/right/Asia/Kuala_Lumpur
-rw-r--r-- -          -                 644 ./usr/share/zoneinfo/right/Asia/Kuching
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Kuwait
-rw-r--r-- -          -                1115 ./usr/share/zoneinfo/right/Asia/Macao
-rw-r--r-- -          -                1115 ./usr/share/zoneinfo/right/Asia/Macau
-rw-r--r-- -          -                1075 ./usr/share/zoneinfo/right/Asia/Magadan
-rw-r--r-- -          -                 514 ./usr/share/zoneinfo/right/Asia/Makassar
-rw-r--r-- -          -                 562 ./usr/share/zoneinfo/right/Asia/Manila
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Muscat
-rw-r--r-- -          -                 921 ./usr/share/zoneinfo/right/Asia/Nicosia
-rw-r--r-- -          -                1050 ./usr/share/zoneinfo/right/Asia/Novokuznetsk
-rw-r--r-- -          -                1077 ./usr/share/zoneinfo/right/Asia/Novosibirsk
-rw-r--r-- -          -                1065 ./usr/share/zoneinfo/right/Asia/Omsk
-rw-r--r-- -          -                 949 ./usr/share/zoneinfo/right/Asia/Oral
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Asia/Phnom_Penh
-rw-r--r-- -          -                 571 ./usr/share/zoneinfo/right/Asia/Pontianak
-rw-r--r-- -          -                 507 ./usr/share/zoneinfo/right/Asia/Pyongyang
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Asia/Qatar
-rw-r--r-- -          -                 939 ./usr/share/zoneinfo/right/Asia/Qostanay
-rw-r--r-- -          -                 948 ./usr/share/zoneinfo/right/Asia/Qyzylorda
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/right/Asia/Rangoon
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Riyadh
-rw-r--r-- -          -                 560 ./usr/share/zoneinfo/right/Asia/Saigon
-rw-r--r-- -          -                1079 ./usr/share/zoneinfo/right/Asia/Sakhalin
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/right/Asia/Samarkand
-rw-r--r-- -          -                 739 ./usr/share/zoneinfo/right/Asia/Seoul
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/right/Asia/Shanghai
-rw-r--r-- -          -                 580 ./usr/share/zoneinfo/right/Asia/Singapore
-rw-r--r-- -          -                1066 ./usr/share/zoneinfo/right/Asia/Srednekolymsk
-rw-r--r-- -          -                 835 ./usr/share/zoneinfo/right/Asia/Taipei
-rw-r--r-- -          -                 690 ./usr/share/zoneinfo/right/Asia/Tashkent
-rw-r--r-- -          -                 953 ./usr/share/zoneinfo/right/Asia/Tbilisi
-rw-r--r-- -          -                2328 ./usr/share/zoneinfo/right/Asia/Tehran
-rw-r--r-- -          -                1398 ./usr/share/zoneinfo/right/Asia/Tel_Aviv
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/right/Asia/Thimbu
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/right/Asia/Thimphu
-rw-r--r-- -          -                 537 ./usr/share/zoneinfo/right/Asia/Tokyo
-rw-r--r-- -          -                1077 ./usr/share/zoneinfo/right/Asia/Tomsk
-rw-r--r-- -          -                 514 ./usr/share/zoneinfo/right/Asia/Ujung_Pandang
-rw-r--r-- -          -                 918 ./usr/share/zoneinfo/right/Asia/Ulaanbaatar
-rw-r--r-- -          -                 918 ./usr/share/zoneinfo/right/Asia/Ulan_Bator
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Asia/Urumqi
-rw-r--r-- -          -                1095 ./usr/share/zoneinfo/right/Asia/Ust-Nera
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Asia/Vientiane
-rw-r--r-- -          -                1066 ./usr/share/zoneinfo/right/Asia/Vladivostok
-rw-r--r-- -          -                1065 ./usr/share/zoneinfo/right/Asia/Yakutsk
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/right/Asia/Yangon
-rw-r--r-- -          -                1084 ./usr/share/zoneinfo/right/Asia/Yekaterinburg
-rw-r--r-- -          -                1032 ./usr/share/zoneinfo/right/Asia/Yerevan
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Atlantic
-rw-r--r-- -          -                1777 ./usr/share/zoneinfo/right/Atlantic/Azores
-rw-r--r-- -          -                1348 ./usr/share/zoneinfo/right/Atlantic/Bermuda
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Atlantic/Canary
-rw-r--r-- -          -                 499 ./usr/share/zoneinfo/right/Atlantic/Cape_Verde
-rw-r--r-- -          -                 765 ./usr/share/zoneinfo/right/Atlantic/Faeroe
-rw-r--r-- -          -                 765 ./usr/share/zoneinfo/right/Atlantic/Faroe
-rw-r--r-- -          -                1000 ./usr/share/zoneinfo/right/Atlantic/Jan_Mayen
-rw-r--r-- -          -                1777 ./usr/share/zoneinfo/right/Atlantic/Madeira
-rw-r--r-- -          -                1077 ./usr/share/zoneinfo/right/Atlantic/Reykjavik
-rw-r--r-- -          -                 456 ./usr/share/zoneinfo/right/Atlantic/South_Georgia
-rw-r--r-- -          -                1113 ./usr/share/zoneinfo/right/Atlantic/Stanley
-rw-r--r-- -          -                 454 ./usr/share/zoneinfo/right/Atlantic/St_Helena
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Australia
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Australia/ACT
-rw-r--r-- -          -                1245 ./usr/share/zoneinfo/right/Australia/Adelaide
-rw-r--r-- -          -                 613 ./usr/share/zoneinfo/right/Australia/Brisbane
-rw-r--r-- -          -                1265 ./usr/share/zoneinfo/right/Australia/Broken_Hill
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Australia/Canberra
-rw-r--r-- -          -                1327 ./usr/share/zoneinfo/right/Australia/Currie
-rw-r--r-- -          -                 558 ./usr/share/zoneinfo/right/Australia/Darwin
-rw-r--r-- -          -                 638 ./usr/share/zoneinfo/right/Australia/Eucla
-rw-r--r-- -          -                1327 ./usr/share/zoneinfo/right/Australia/Hobart
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/right/Australia/LHI
-rw-r--r-- -          -                 649 ./usr/share/zoneinfo/right/Australia/Lindeman
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/right/Australia/Lord_Howe
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Australia/Melbourne
-rw-r--r-- -          -                 558 ./usr/share/zoneinfo/right/Australia/North
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Australia/NSW
-rw-r--r-- -          -                 630 ./usr/share/zoneinfo/right/Australia/Perth
-rw-r--r-- -          -                 613 ./usr/share/zoneinfo/right/Australia/Queensland
-rw-r--r-- -          -                1245 ./usr/share/zoneinfo/right/Australia/South
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Australia/Sydney
-rw-r--r-- -          -                1327 ./usr/share/zoneinfo/right/Australia/Tasmania
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Australia/Victoria
-rw-r--r-- -          -                 630 ./usr/share/zoneinfo/right/Australia/West
-rw-r--r-- -          -                1265 ./usr/share/zoneinfo/right/Australia/Yancowinna
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Brazil
-rw-r--r-- -          -                 742 ./usr/share/zoneinfo/right/Brazil/Acre
-rw-r--r-- -          -                 808 ./usr/share/zoneinfo/right/Brazil/DeNoronha
-rw-r--r-- -          -                1276 ./usr/share/zoneinfo/right/Brazil/East
-rw-r--r-- -          -                 736 ./usr/share/zoneinfo/right/Brazil/West
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Canada
-rw-r--r-- -          -                1996 ./usr/share/zoneinfo/right/Canada/Atlantic
-rw-r--r-- -          -                1618 ./usr/share/zoneinfo/right/Canada/Central
-rw-r--r-- -          -                2041 ./usr/share/zoneinfo/right/Canada/Eastern
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/right/Canada/Mountain
-rw-r--r-- -          -                2202 ./usr/share/zoneinfo/right/Canada/Newfoundland
-rw-r--r-- -          -                1654 ./usr/share/zoneinfo/right/Canada/Pacific
-rw-r--r-- -          -                 962 ./usr/share/zoneinfo/right/Canada/Saskatchewan
-rw-r--r-- -          -                1353 ./usr/share/zoneinfo/right/Canada/Yukon
-rw-r--r-- -          -                 945 ./usr/share/zoneinfo/right/CET
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Chile
-rw-r--r-- -          -                1606 ./usr/share/zoneinfo/right/Chile/Continental
-rw-r--r-- -          -                1426 ./usr/share/zoneinfo/right/Chile/EasterIsland
-rw-r--r-- -          -                1275 ./usr/share/zoneinfo/right/CST6CDT
-rw-r--r-- -          -                1441 ./usr/share/zoneinfo/right/Cuba
-rw-r--r-- -          -                 821 ./usr/share/zoneinfo/right/EET
-rw-r--r-- -          -                1600 ./usr/share/zoneinfo/right/Egypt
-rw-r--r-- -          -                1820 ./usr/share/zoneinfo/right/Eire
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/EST
-rw-r--r-- -          -                1275 ./usr/share/zoneinfo/right/EST5EDT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Etc
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/GMT
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/GMT-0
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/GMT+0
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/GMT0
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-1
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+1
-rw-r--r-- -          -                 439 ./usr/share/zoneinfo/right/Etc/GMT-10
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT+10
-rw-r--r-- -          -                 439 ./usr/share/zoneinfo/right/Etc/GMT-11
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT+11
-rw-r--r-- -          -                 439 ./usr/share/zoneinfo/right/Etc/GMT-12
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT+12
-rw-r--r-- -          -                 439 ./usr/share/zoneinfo/right/Etc/GMT-13
-rw-r--r-- -          -                 439 ./usr/share/zoneinfo/right/Etc/GMT-14
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-2
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+2
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-3
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+3
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-4
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+4
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-5
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+5
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-6
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+6
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-7
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+7
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-8
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+8
-rw-r--r-- -          -                 438 ./usr/share/zoneinfo/right/Etc/GMT-9
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Etc/GMT+9
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/Greenwich
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/UCT
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/Universal
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/UTC
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Etc/Zulu
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Europe
-rw-r--r-- -          -                1395 ./usr/share/zoneinfo/right/Europe/Amsterdam
-rw-r--r-- -          -                 713 ./usr/share/zoneinfo/right/Europe/Andorra
-rw-r--r-- -          -                1050 ./usr/share/zoneinfo/right/Europe/Astrakhan
-rw-r--r-- -          -                1006 ./usr/share/zoneinfo/right/Europe/Athens
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/Europe/Belfast
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Europe/Belgrade
-rw-r--r-- -          -                1029 ./usr/share/zoneinfo/right/Europe/Berlin
-rw-r--r-- -          -                1047 ./usr/share/zoneinfo/right/Europe/Bratislava
-rw-r--r-- -          -                1427 ./usr/share/zoneinfo/right/Europe/Brussels
-rw-r--r-- -          -                 985 ./usr/share/zoneinfo/right/Europe/Bucharest
-rw-r--r-- -          -                1090 ./usr/share/zoneinfo/right/Europe/Budapest
-rw-r--r-- -          -                 821 ./usr/share/zoneinfo/right/Europe/Busingen
-rw-r--r-- -          -                1079 ./usr/share/zoneinfo/right/Europe/Chisinau
-rw-r--r-- -          -                 947 ./usr/share/zoneinfo/right/Europe/Copenhagen
-rw-r--r-- -          -                1820 ./usr/share/zoneinfo/right/Europe/Dublin
-rw-r--r-- -          -                1544 ./usr/share/zoneinfo/right/Europe/Gibraltar
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/Europe/Guernsey
-rw-r--r-- -          -                 805 ./usr/share/zoneinfo/right/Europe/Helsinki
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/Europe/Isle_of_Man
-rw-r--r-- -          -                1524 ./usr/share/zoneinfo/right/Europe/Istanbul
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/Europe/Jersey
-rw-r--r-- -          -                1228 ./usr/share/zoneinfo/right/Europe/Kaliningrad
-rw-r--r-- -          -                 873 ./usr/share/zoneinfo/right/Europe/Kiev
-rw-r--r-- -          -                1041 ./usr/share/zoneinfo/right/Europe/Kirov
-rw-r--r-- -          -                1778 ./usr/share/zoneinfo/right/Europe/Lisbon
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Europe/Ljubljana
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/Europe/London
-rw-r--r-- -          -                1411 ./usr/share/zoneinfo/right/Europe/Luxembourg
-rw-r--r-- -          -                1221 ./usr/share/zoneinfo/right/Europe/Madrid
-rw-r--r-- -          -                1252 ./usr/share/zoneinfo/right/Europe/Malta
-rw-r--r-- -          -                 805 ./usr/share/zoneinfo/right/Europe/Mariehamn
-rw-r--r-- -          -                1132 ./usr/share/zoneinfo/right/Europe/Minsk
-rw-r--r-- -          -                1438 ./usr/share/zoneinfo/right/Europe/Monaco
-rw-r--r-- -          -                1232 ./usr/share/zoneinfo/right/Europe/Moscow
-rw-r--r-- -          -                 921 ./usr/share/zoneinfo/right/Europe/Nicosia
-rw-r--r-- -          -                1000 ./usr/share/zoneinfo/right/Europe/Oslo
-rw-r--r-- -          -                1429 ./usr/share/zoneinfo/right/Europe/Paris
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Europe/Podgorica
-rw-r--r-- -          -                1047 ./usr/share/zoneinfo/right/Europe/Prague
-rw-r--r-- -          -                1018 ./usr/share/zoneinfo/right/Europe/Riga
-rw-r--r-- -          -                1271 ./usr/share/zoneinfo/right/Europe/Rome
-rw-r--r-- -          -                1056 ./usr/share/zoneinfo/right/Europe/Samara
-rw-r--r-- -          -                1271 ./usr/share/zoneinfo/right/Europe/San_Marino
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Europe/Sarajevo
-rw-r--r-- -          -                1050 ./usr/share/zoneinfo/right/Europe/Saratov
-rw-r--r-- -          -                1189 ./usr/share/zoneinfo/right/Europe/Simferopol
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Europe/Skopje
-rw-r--r-- -          -                 916 ./usr/share/zoneinfo/right/Europe/Sofia
-rw-r--r-- -          -                 821 ./usr/share/zoneinfo/right/Europe/Stockholm
-rw-r--r-- -          -                 999 ./usr/share/zoneinfo/right/Europe/Tallinn
-rw-r--r-- -          -                 928 ./usr/share/zoneinfo/right/Europe/Tirane
-rw-r--r-- -          -                1079 ./usr/share/zoneinfo/right/Europe/Tiraspol
-rw-r--r-- -          -                1084 ./usr/share/zoneinfo/right/Europe/Ulyanovsk
-rw-r--r-- -          -                 854 ./usr/share/zoneinfo/right/Europe/Uzhgorod
-rw-r--r-- -          -                 821 ./usr/share/zoneinfo/right/Europe/Vaduz
-rw-r--r-- -          -                1271 ./usr/share/zoneinfo/right/Europe/Vatican
-rw-r--r-- -          -                 982 ./usr/share/zoneinfo/right/Europe/Vienna
-rw-r--r-- -          -                1000 ./usr/share/zoneinfo/right/Europe/Vilnius
-rw-r--r-- -          -                1059 ./usr/share/zoneinfo/right/Europe/Volgograd
-rw-r--r-- -          -                1247 ./usr/share/zoneinfo/right/Europe/Warsaw
-rw-r--r-- -          -                 802 ./usr/share/zoneinfo/right/Europe/Zagreb
-rw-r--r-- -          -                 884 ./usr/share/zoneinfo/right/Europe/Zaporozhye
-rw-r--r-- -          -                 821 ./usr/share/zoneinfo/right/Europe/Zurich
-rw-r--r-- -          -                 437 ./usr/share/zoneinfo/right/Factory
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/GB
-rw-r--r-- -          -                1923 ./usr/share/zoneinfo/right/GB-Eire
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/GMT
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/GMT-0
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/GMT+0
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/GMT0
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Greenwich
-rw-r--r-- -          -                1099 ./usr/share/zoneinfo/right/Hongkong
-rw-r--r-- -          -                 436 ./usr/share/zoneinfo/right/HST
-rw-r--r-- -          -                1077 ./usr/share/zoneinfo/right/Iceland
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Indian
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Indian/Antananarivo
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Indian/Chagos
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Indian/Christmas
-rw-r--r-- -          -                 464 ./usr/share/zoneinfo/right/Indian/Cocos
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Indian/Comoro
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Indian/Kerguelen
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Indian/Mahe
-rw-r--r-- -          -                 476 ./usr/share/zoneinfo/right/Indian/Maldives
-rw-r--r-- -          -                 503 ./usr/share/zoneinfo/right/Indian/Mauritius
-rw-r--r-- -          -                 515 ./usr/share/zoneinfo/right/Indian/Mayotte
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Indian/Reunion
-rw-r--r-- -          -                2328 ./usr/share/zoneinfo/right/Iran
-rw-r--r-- -          -                1398 ./usr/share/zoneinfo/right/Israel
-rw-r--r-- -          -                 663 ./usr/share/zoneinfo/right/Jamaica
-rw-r--r-- -          -                 537 ./usr/share/zoneinfo/right/Japan
-rw-r--r-- -          -                 543 ./usr/share/zoneinfo/right/Kwajalein
-rw-r--r-- -          -                 755 ./usr/share/zoneinfo/right/Libya
-rw-r--r-- -          -                 945 ./usr/share/zoneinfo/right/MET
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Mexico
-rw-r--r-- -          -                1349 ./usr/share/zoneinfo/right/Mexico/BajaNorte
-rw-r--r-- -          -                 691 ./usr/share/zoneinfo/right/Mexico/BajaSur
-rw-r--r-- -          -                 736 ./usr/share/zoneinfo/right/Mexico/General
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/MST
-rw-r--r-- -          -                1275 ./usr/share/zoneinfo/right/MST7MDT
-rw-r--r-- -          -                1366 ./usr/share/zoneinfo/right/Navajo
-rw-r--r-- -          -                1367 ./usr/share/zoneinfo/right/NZ
-rw-r--r-- -          -                1132 ./usr/share/zoneinfo/right/NZ-CHAT
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/Pacific
-rw-r--r-- -          -                 731 ./usr/share/zoneinfo/right/Pacific/Apia
-rw-r--r-- -          -                1367 ./usr/share/zoneinfo/right/Pacific/Auckland
-rw-r--r-- -          -                 525 ./usr/share/zoneinfo/right/Pacific/Bougainville
-rw-r--r-- -          -                1132 ./usr/share/zoneinfo/right/Pacific/Chatham
-rw-r--r-- -          -                 519 ./usr/share/zoneinfo/right/Pacific/Chuuk
-rw-r--r-- -          -                1426 ./usr/share/zoneinfo/right/Pacific/Easter
-rw-r--r-- -          -                 666 ./usr/share/zoneinfo/right/Pacific/Efate
-rw-r--r-- -          -                 496 ./usr/share/zoneinfo/right/Pacific/Enderbury
-rw-r--r-- -          -                 477 ./usr/share/zoneinfo/right/Pacific/Fakaofo
-rw-r--r-- -          -                 752 ./usr/share/zoneinfo/right/Pacific/Fiji
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/right/Pacific/Funafuti
-rw-r--r-- -          -                 499 ./usr/share/zoneinfo/right/Pacific/Galapagos
-rw-r--r-- -          -                 456 ./usr/share/zoneinfo/right/Pacific/Gambier
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/right/Pacific/Guadalcanal
-rw-r--r-- -          -                 674 ./usr/share/zoneinfo/right/Pacific/Guam
-rw-r--r-- -          -                 545 ./usr/share/zoneinfo/right/Pacific/Honolulu
-rw-r--r-- -          -                 545 ./usr/share/zoneinfo/right/Pacific/Johnston
-rw-r--r-- -          -                 496 ./usr/share/zoneinfo/right/Pacific/Kanton
-rw-r--r-- -          -                 498 ./usr/share/zoneinfo/right/Pacific/Kiritimati
-rw-r--r-- -          -                 566 ./usr/share/zoneinfo/right/Pacific/Kosrae
-rw-r--r-- -          -                 543 ./usr/share/zoneinfo/right/Pacific/Kwajalein
-rw-r--r-- -          -                 542 ./usr/share/zoneinfo/right/Pacific/Majuro
-rw-r--r-- -          -                 463 ./usr/share/zoneinfo/right/Pacific/Marquesas
-rw-r--r-- -          -                 470 ./usr/share/zoneinfo/right/Pacific/Midway
-rw-r--r-- -          -                 507 ./usr/share/zoneinfo/right/Pacific/Nauru
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/right/Pacific/Niue
-rw-r--r-- -          -                 571 ./usr/share/zoneinfo/right/Pacific/Norfolk
-rw-r--r-- -          -                 522 ./usr/share/zoneinfo/right/Pacific/Noumea
-rw-r--r-- -          -                 470 ./usr/share/zoneinfo/right/Pacific/Pago_Pago
-rw-r--r-- -          -                 472 ./usr/share/zoneinfo/right/Pacific/Palau
-rw-r--r-- -          -                 477 ./usr/share/zoneinfo/right/Pacific/Pitcairn
-rw-r--r-- -          -                 538 ./usr/share/zoneinfo/right/Pacific/Pohnpei
-rw-r--r-- -          -                 538 ./usr/share/zoneinfo/right/Pacific/Ponape
-rw-r--r-- -          -                 478 ./usr/share/zoneinfo/right/Pacific/Port_Moresby
-rw-r--r-- -          -                 730 ./usr/share/zoneinfo/right/Pacific/Rarotonga
-rw-r--r-- -          -                 674 ./usr/share/zoneinfo/right/Pacific/Saipan
-rw-r--r-- -          -                 470 ./usr/share/zoneinfo/right/Pacific/Samoa
-rw-r--r-- -          -                 457 ./usr/share/zoneinfo/right/Pacific/Tahiti
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/right/Pacific/Tarawa
-rw-r--r-- -          -                 561 ./usr/share/zoneinfo/right/Pacific/Tongatapu
-rw-r--r-- -          -                 519 ./usr/share/zoneinfo/right/Pacific/Truk
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/right/Pacific/Wake
-rw-r--r-- -          -                 458 ./usr/share/zoneinfo/right/Pacific/Wallis
-rw-r--r-- -          -                 519 ./usr/share/zoneinfo/right/Pacific/Yap
-rw-r--r-- -          -                1247 ./usr/share/zoneinfo/right/Poland
-rw-r--r-- -          -                1778 ./usr/share/zoneinfo/right/Portugal
-rw-r--r-- -          -                 717 ./usr/share/zoneinfo/right/PRC
-rw-r--r-- -          -                1275 ./usr/share/zoneinfo/right/PST8PDT
-rw-r--r-- -          -                 835 ./usr/share/zoneinfo/right/ROC
-rw-r--r-- -          -                 739 ./usr/share/zoneinfo/right/ROK
-rw-r--r-- -          -                 580 ./usr/share/zoneinfo/right/Singapore
-rw-r--r-- -          -                1524 ./usr/share/zoneinfo/right/Turkey
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/UCT
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Universal
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/right/US
-rw-r--r-- -          -                1301 ./usr/share/zoneinfo/right/US/Alaska
-rw-r--r-- -          -                1293 ./usr/share/zoneinfo/right/US/Aleutian
-rw-r--r-- -          -                 564 ./usr/share/zoneinfo/right/US/Arizona
-rw-r--r-- -          -                2078 ./usr/share/zoneinfo/right/US/Central
-rw-r--r-- -          -                2068 ./usr/share/zoneinfo/right/US/Eastern
-rw-r--r-- -          -                 855 ./usr/share/zoneinfo/right/US/East-Indiana
-rw-r--r-- -          -                 545 ./usr/share/zoneinfo/right/US/Hawaii
-rw-r--r-- -          -                1340 ./usr/share/zoneinfo/right/US/Indiana-Starke
-rw-r--r-- -          -                1223 ./usr/share/zoneinfo/right/US/Michigan
-rw-r--r-- -          -                1366 ./usr/share/zoneinfo/right/US/Mountain
-rw-r--r-- -          -                1618 ./usr/share/zoneinfo/right/US/Pacific
-rw-r--r-- -          -                 470 ./usr/share/zoneinfo/right/US/Samoa
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/UTC
-rw-r--r-- -          -                 818 ./usr/share/zoneinfo/right/WET
-rw-r--r-- -          -                1232 ./usr/share/zoneinfo/right/W-SU
-rw-r--r-- -          -                 435 ./usr/share/zoneinfo/right/Zulu
-rw-r--r-- -          -                 511 ./usr/share/zoneinfo/ROC
-rw-r--r-- -          -                 415 ./usr/share/zoneinfo/ROK
-rw-r--r-- -          -                 256 ./usr/share/zoneinfo/Singapore
-rw-r--r-- -          -                1200 ./usr/share/zoneinfo/Turkey
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/UCT
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Universal
drwxr-xr-x -          -                4096 ./usr/share/zoneinfo/US
-rw-r--r-- -          -                 977 ./usr/share/zoneinfo/US/Alaska
-rw-r--r-- -          -                 969 ./usr/share/zoneinfo/US/Aleutian
-rw-r--r-- -          -                 240 ./usr/share/zoneinfo/US/Arizona
-rw-r--r-- -          -                1754 ./usr/share/zoneinfo/US/Central
-rw-r--r-- -          -                1744 ./usr/share/zoneinfo/US/Eastern
-rw-r--r-- -          -                 531 ./usr/share/zoneinfo/US/East-Indiana
-rw-r--r-- -          -                 221 ./usr/share/zoneinfo/US/Hawaii
-rw-r--r-- -          -                1016 ./usr/share/zoneinfo/US/Indiana-Starke
-rw-r--r-- -          -                 899 ./usr/share/zoneinfo/US/Michigan
-rw-r--r-- -          -                1042 ./usr/share/zoneinfo/US/Mountain
-rw-r--r-- -          -                1294 ./usr/share/zoneinfo/US/Pacific
-rw-r--r-- -          -                 146 ./usr/share/zoneinfo/US/Samoa
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/UTC
-rw-r--r-- -          -                 494 ./usr/share/zoneinfo/WET
-rw-r--r-- -          -                 908 ./usr/share/zoneinfo/W-SU
-rw-r--r-- -          -               17593 ./usr/share/zoneinfo/zone1970.tab
-rw-r--r-- -          -               19419 ./usr/share/zoneinfo/zone.tab
-rw-r--r-- -          -                 111 ./usr/share/zoneinfo/Zulu