1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191
|
### Please describe the problem.
I'm running git annex on two laptops sharing data with a shared server all running ubuntu and the binary distributions of git annex (different versions the server seems to be running 5.20140529-gb71f9bf right now). One of the laptops tried to upgrade to 5.20140613 (something) from 5.20140610-g5ec8bcf, which kind of fails since that version does not exist on the site, only the signature making it download and upgrade and then decide it still needs to upgrade, took a few times before I figured this out.
During one of the upgrades I guess something died and it started to complain about an index.lock file that should be removed after all git instances were dead, so I killed git annex and removed the file (a few times maybe) just to get the upgrade through. After realizing it was trying to upgrade to the same version over and over again I realized it had somehow managed merge away all files and the git history looked like crazy.
Had to "git annex indirect; git annex checkout GOODVERSION . ; git annex direct ; git annex assistant" to get the files back (I think that did it, I'm a little unsure what the best way to restore files are).
### What steps will reproduce the problem?
I don't know. Just posting this in case someone else can figure it out.
Might be relevant that upgrade never works out of the box, it removes the old version of git annex and untars the new version in my home directory (which isn't on the path), so I can't use it from the command line. So I shut it down, copy it back to where it should go, and then update the .config/git-annex/program to point to the correct location.
### What version of git-annex are you using? On what operating system?
5.20140610-g5ec8bcf (maybe, I'm not sure if that was the one I upgraded from initially).
### Please provide any additional information below.
[[!format sh """
# If you can, paste a complete transcript of the problem occurring here.
# If the problem is with the git-annex assistant, paste in .git/annex/daemon.log
I think this is the log from before the files where removed
[2014-06-18 13:41:14 CEST] main: starting assistant version 5.20140610-g5ec8bcf
[2014-06-18 13:41:14 CEST] UpgradeWatcher: Finished upgrading git-annex to version 5.20140610-g5ec8bcf
[2014-06-18 13:41:14 CEST] TransferScanner: Syncing with born
(scanning...) [2014-06-18 13:41:14 CEST] Watcher: Performing startup scan
(started...) fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
To ssh://jwiklund@born/store/backup/Documents.annex.1/
f8f8217..ff8ecb1 git-annex -> synced/git-annex
bd2e43b..e88b148 annex/direct/master -> synced/master
fatal: pathspec 'music.txt' did not match any files
fatal: Unable to create '/home/jwiklund/Documents/.git/index.lock': File exists.
If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.
fatal: Unable to create '/home/jwiklund/Documents/.git/index.lock': File exists.
If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
(Recording state in git...)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
ufatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
ser error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
[2014-06-18 13:41:16 CEST] Committer: Committing changesfatal: pathspec 'music.txt' did not match any files
to git
fatal: pathspec 'music.txt' did not match any files
[2014-06-18 13:41:16 CEST] Pusher: Syncing with born
fatal: Unable to create '/home/jwiklund/Documents/.git/index.lock': File exists.
If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
(Recording state in git...)
(Recording state in git...)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user error (xargs ["-0","git","--git-dir=/home/jwiklund/Documents/.git","--work-tree=/home/jwiklund/Documents","-c","core.bare=false","add","--force","--"] exited 123)
user errfatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
fatal: pathspec 'music.txt' did not match any files
To ssh://jwiklund@born/store/backup/Documents.annex.1/
ff8ecb1..c93e415 git-annex -> synced/git-annex
e88b148..220161f annex/direct/master -> synced/master
This is what it said when it wanted me to remove the index file after a failed upgrade
[2014-06-18 13:38:31 CEST] main: starting assistant version 5.20140610-g5ec8bcf
[2014-06-18 13:38:31 CEST] UpgradeWatcher: Finished upgrading git-annex to version 5.20140610-g5ec8bcf
[2014-06-18 13:38:31 CEST] TransferScanner: Syncing with born
error: duplicate parent 294b61a3dce1e87a62e4d675deac2a9130b819e6 ignored
(scanning...) [2014-06-18 13:38:31 CEST] Watcher: Performing startup scan
(started...) error: duplicate parent 76407052287ba54b350e56e36353a53a3dbc5d4f ignored
To ssh://jwiklund@born/store/backup/Documents.annex.1/
fdae080..cf9f2a9 git-annex -> synced/git-annex
294b61a..7640705 annex/direct/master -> synced/master
fatal: Could not switch to '/home/jwiklund/Documents/.git/annex/merge/': No such file or directory
[2014-06-18 13:38:33 CEST] Committer: Committing changes to git
fatal: Unable to create '/home/jwiklund/Documents/.git/index.lock': File exists.
If no other git process is currently running, this probably means a
git process crashed in this repository earlier. Make sure no other git
process is running and remove the file manually to continue.
[2014-06-18 13:38:33 CEST] Pusher: Syncing with born
fatal: Could not switch to '/home/jwiklund/Documents/.git/annex/merge/': No such file or directory
To ssh://jwiklund@born/store/backup/Documents.annex.1/
7640705..6b9d33e annex/direct/master -> synced/master
fatal: Could not switch to '/home/jwiklund/Documents/.git/annex/merge/': No such file or directory
[2014-06-18 13:39:20 CEST] main: warning git-annex has been shut down
Here is the upgrade
error: duplicate parent 6b9d33ef3a16e6245f21f3948aa96691c2b8453b ignored
(scanning...) [2014
-06-18 13:40:55 CEST] Watcher: Performing startup scan
(started...)
error: duplicate parent 80254c9c048a35064ba42ae6a79610da6deac0ae ignored
gpg: WARNING: unsafe permissions on homedir `/tmp/git-annex-gpg.tmp.0'
gpg: Signature made fre 13 jun 2014 17:28:22 CEST using DSA key ID 89C809CB
gpg: /tmp/git-annex-gpg.tmp.0/trustdb.gpg: trustdb created
gpg: Good signature from "git-annex distribution signing key (for Joey Hess) <id@joeyh.name>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4005 5C6A FD2D 526B 2961 E78F 5EE1 DBA7 89C8 09CB
[2014-06-18 13:40:56 CEST] Upgrader: An upgrade of git-annex is available. (version 5.20140613)
To ssh://jwiklund@born/store/backup/Documents.annex.1/
6b9d33e..80254c9 annex/direct/master -> synced/master
[2014-06-18 13:40:57 CEST] Committer: Committing changes to git
(Recording state in git...)
[2014-06-18 13:40:57 CEST] Pusher: Syncing with born
error: duplicate parent 6be6bb32164e7103c44077ce6fa450b7c0d36e0c ignored
To ssh://jwiklund@born/store/backup/Documents.annex.1/
80254c9..6be6bb3 annex/direct/master -> synced/master
--2014-06-18 13:41:07-- https://downloads.kitenet.net/git-annex/linux/current/git-annex-standalone-amd64.tar.gz
Resolving downloads.kitenet.net (downloads.kitenet.net)... 107.170.31.195
Connecting to downloads.kitenet.net (downloads.kitenet.net)|107.170.31.195|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 42645638 (41M) [application/x-gzip]
Saving to: ‘/home/jwiklund/Documents/.git/annex/tmp/SHA256E-s42645638--4ae41fb29bd26339ea10f53ea2b7cf3132e53d5e8fbfde7b43b912aa52b3d319.tar.gz’
0K .......... .......... .......... .......... .......... 0% 171K 4m3s
50K .......... .......... .......... .......... .......... 0% 505K 2m43s
100K .......... .......... .......... .......... .......... 0% 258K 2m42s
150K .......... .......... .......... .......... .......... 0% 510K 2m22s
200K .......... .......... .......... .......... .......... 0% 505K 2m10s
250K .......... .......... .......... .......... .......... 0% 516K 2m1s
300K .......... .......... .......... .......... .......... 0% 512K 1m55s
350K .......... .......... .......... .......... .......... 0% 31,1M 1m41s
400K .......... .......... .......... .......... .......... 1% 512K 99s
450K .......... .......... .......... .......... .......... 1% 515K 97s
500K .......... .......... .......... .......... .......... 1% 1,25M 91s
550K .......... .......... .......... .......... .......... 1% 843K 87s
600K .......... .......... .......... .......... .......... 1% 1,25M 83s
650K .......... .......... .......... .......... .......... 1% 858K 80s
700K .......... .......... .......... .......... .......... 1% 1,25M 77s
750K .......... .......... .......... .......... .......... 1% 840K 75s
800K .......... .......... .......... .......... .......... 2% 59,4M 70s
850K .......... .......... .......... .......... .......... 2% 518K 71s
900K .......... .......... .......... .......... .......... 2% 39,5M 67s
950K .......... .......... .......... .......... .......... 2% 74,5M 64s
1000K .......... .......... .......... .......... .......... 2% 520K 64s
1050K .......... .......... .......... .......... .......... 2% 57,3M 61s
1100K .......... .......... .......... .......... .......... 2% 1,31M 60s
1150K .......... .......... .......... .......... .......... 2% 855K 59s
1200K .......... .......... .......... .......... .......... 3% 22,5M 57s
1250K .......... .......... .......... .......... .......... 3% 1,33M 56s
1300K .......... .......... .......... .......... .......... 3% 848K 55s
1350K .......... .......... .......... .......... .......... 3% 9,76M 54s
1400K .......... .......... .......... .......... .......... 3% 48,8M 52s
1450K .......... .......... .......... .......... .......... 3% 1,45M 51s
1500K .......... .......... .......... .......... .......... 3% 837K 51s
1550K .......... .......... .......... .......... .......... 3% 13,4M 49s
1600K .......... .......... .......... .......... .......... 3% 1,47M 48s
1650K .......... .......... .......... .......... .......... 4% 861K 48s
1700K .......... .......... .......... .......... .......... 4% 14,3M 47s
1750K .......... .......... .......... .......... .......... 4% 13,0M 46s
1800K .......... .......... .......... .......... .......... 4% 1,49M 45s
1850K .......... .......... .......... .......... .......... 4% 863K 45s
1900K .......... .......... .......... .......... .......... 4% 62,3M 44s
1950K .......... .......... .......... .......... .......... 4% 7,64M 43s
2000K .......... .......... .......... .......... .......... 4% 10,3M 42s
2050K .......... .......... .......... .......... .......... 5% 582K 42s
2100K .......... .......... .......... .......... .......... 5% 8,34M 41s
2150K .......... .......... .......... .......... .......... 5% 48,7M 40s
2200K .......... .......... .......... .......... .......... 5% 61,6M 39s
2250K .......... .......... .......... .......... .......... 5% 1,52M 39s
2300K .......... .......... .......... .......... .......... 5% 860K 39s
2350K .......... .......... .......... .......... .......... 5% 60,4M 38s
2400K .......... .......... .......... .......... .......... 5% 8,20M 38s
2450K .......... .......... .......... .......... .......... 6% 87,7M 37s
2500K .......... .......... .......... .......... .......... 6% 1,54M 37s
2550K .......... .......... .......... .......... .......... 6% 855K 37s
2600K .......... .......... .......... .......... .......... 6% 89,2M 36s
2650K .......... .......... .......... .......... .......... 6% 7,38M 35s
2700K .......... .......... .......... .......... .......... 6% 168M 35s
2750K .......... .......... .......... .......... .......... 6% 1,44M 34s
2800K .......... .......... .......... .......... .......... 6% 1,37M 34s
2850K .......... .......... .......... .......... .......... 6% 2,21M 34s
2900K .......... .......... .......... .......... .......... 7% 6,19M 33s
2950K .......... .......... .......... .......... .......... 7% 174M 33s
3000K .......... .......... .......... .......... .......... 7% 174M 32s
3050K .......... .......... .......... .......... .......... 7% 196M 32s
3100K .......... .......... .......... .......... .......... 7% 1,57M 32s
3150K .......... .......... .......... .......... .......... 7% 1,36M 31s
3200K .......... .......... .......... .......... .......... 7% 1,67M 31s
3250K .......... .......... .......... .......... .......... 7% 70,5M 31s
3300K .......... .......... .......... .......... .......... 8% 109M 30s
3350K .......... .......... .......... .......... .......... 8% 84,8M 30s
3400K .......... .......... .......... .......... .......... 8% 1,61M 30s
3450K .......... .......... .......... .......... .......... 8% 8,23M 29s
3500K .......... .......... .......... .......... .......... 8% 1,47M 29s
3550K .......... .......... .......... .......... .......... 8% 2,77M 29s
3600K .......... .......... .......... .......... .......... 8% 5,14M 29s
3650K .......... .......... .......... .......... .......... 8% 28,0M 28s
3700K .......... .......... .......... .......... .......... 9% 169M 28s
3750K .......... .......... .......... .......... .......... 9% 1,85M 28s
3800K .......... .......... .......... .......... .......... 9% 86,5M 27s
3850K .......... .......... .......... .......... .......... 9% 7,14M 27s
3900K .......... .......... .......... .......... .......... 9% 1,55M 27s
3950K .......... .......... .......... .......... .......... 9% 2,53M 27s
4000K .......... .......... .......... .......... .......... 9% 5,08M 26s
4050K .......... .......... .......... .......... .......... 9% 37,6M 26s
4100K .......... .......... .......... .......... .......... 9% 45,6M 26s
4150K .......... .......... .......... .......... .......... 10% 86,2M 25s
4200K .......... .......... .......... .......... .......... 10% 1,80M 25s
4250K .......... .......... .......... .......... .......... 10% 99,6M 25s
4300K .......... .......... .......... .......... .......... 10% 171M 25s
4350K .......... .......... .......... .......... .......... 10% 7,41M 24s
4400K .......... .......... .......... .......... .......... 10% 1,55M 24s
4450K .......... .......... .......... .......... .......... 10% 2,53M 24s
4500K .......... .......... .......... .......... .......... 10% 59,5M 24s
4550K .......... .......... .......... .......... .......... 11% 5,43M 24s
4600K .......... .......... .......... .......... .......... 11% 25,3M 23s
4650K .......... .......... .......... .......... .......... 11% 138M 23s
4700K .......... .......... .......... .......... .......... 11% 90,7M 23s
4750K .......... .......... .......... .......... .......... 11% 116M 23s
4800K .......... .......... .......... .......... .......... 11% 1,81M 23s
4850K .......... .......... .......... .......... .......... 11% 64,4M 22s
4900K .......... .......... .......... .......... .......... 11% 7,76M 22s
4950K .......... .......... .......... .......... .......... 12% 67,2M 22s
5000K .......... .......... .......... .......... .......... 12% 1,60M 22s
5050K .......... .......... .......... .......... .......... 12% 2,53M 22s
5100K .......... .......... .......... .......... .......... 12% 5,14M 22s
5150K .......... .......... .......... .......... .......... 12% 90,4M 21s
5200K .......... .......... .......... .......... .......... 12% 27,7M 21s
5250K .......... .......... .......... .......... .......... 12% 41,7M 21s
5300K .......... .......... .......... .......... .......... 12% 91,5M 21s
5350K .......... .......... .......... .......... .......... 12% 1,85M 21s
5400K .......... .......... .......... .......... .......... 13% 109M 20s
5450K .......... .......... .......... .......... .......... 13% 79,2M 20s
5500K .......... .......... .......... .......... .......... 13% 6,84M 20s
5550K .......... .......... .......... .......... .......... 13% 32,4M 20s
5600K .......... .......... .......... .......... .......... 13% 5,70M 20s
5650K .......... .......... .......... .......... .......... 13% 2,36M 20s
5700K .......... .......... .......... .......... .......... 13% 2,53M 20s
5750K .......... .......... .......... .......... .......... 13% 5,15M 19s
5800K .......... .......... .......... .......... .......... 14% 31,1M 19s
5850K .......... .......... .......... .......... .......... 14% 23,0M 19s
5900K .......... .......... .......... .......... .......... 14% 45,3M 19s
5950K .......... .......... .......... .......... .......... 14% 73,7M 19s
6000K .......... .......... .......... .......... .......... 14% 1,96M 19s
6050K .......... .......... .......... .......... .......... 14% 51,7M 18s
6100K .......... .......... .......... .......... .......... 14% 8,10M 18s
6150K .......... .......... .......... .......... .......... 14% 45,9M 18s
6200K .......... .......... .......... .......... .......... 15% 23,5M 18s
6250K .......... .......... .......... .......... .......... 15% 7,66M 18s
6300K .......... .......... .......... .......... .......... 15% 2,29M 18s
6350K .......... .......... .......... .......... .......... 15% 2,46M 18s
6400K .......... .......... .......... .......... .......... 15% 46,8M 18s
6450K .......... .......... .......... .......... .......... 15% 5,73M 17s
6500K .......... .......... .......... .......... .......... 15% 23,0M 17s
6550K .......... .......... .......... .......... .......... 15% 21,1M 17s
6600K .......... .......... .......... .......... .......... 15% 48,4M 17s
6650K .......... .......... .......... .......... .......... 16% 74,1M 17s
6700K .......... .......... .......... .......... .......... 16% 2,07M 17s
6750K .......... .......... .......... .......... .......... 16% 30,3M 17s
6800K .......... .......... .......... .......... .......... 16% 7,81M 17s
6850K .......... .......... .......... .......... .......... 16% 59,1M 16s
6900K .......... .......... .......... .......... .......... 16% 24,6M 16s
6950K .......... .......... .......... .......... .......... 16% 8,11M 16s
7000K .......... .......... .......... .......... .......... 16% 7,57M 16s
7050K .......... .......... .......... .......... .......... 17% 3,19M 16s
7100K .......... .......... .......... .......... .......... 17% 2,35M 16s
7150K .......... .......... .......... .......... .......... 17% 5,56M 16s
7200K .......... .......... .......... .......... .......... 17% 51,4M 16s
7250K .......... .......... .......... .......... .......... 17% 45,5M 16s
7300K .......... .......... .......... .......... .......... 17% 61,6M 16s
7350K .......... .......... .......... .......... .......... 17% 22,7M 15s
7400K .......... .......... .......... .......... .......... 17% 53,6M 15s
7450K .......... .......... .......... .......... .......... 18% 2,12M 15s
7500K .......... .......... .......... .......... .......... 18% 32,2M 15s
7550K .......... .......... .......... .......... .......... 18% 61,0M 15s
7600K .......... .......... .......... .......... .......... 18% 7,22M 15s
7650K .......... .......... .......... .......... .......... 18% 23,6M 15s
7700K .......... .......... .......... .......... .......... 18% 7,39M 15s
7750K .......... .......... .......... .......... .......... 18% 53,7M 15s
7800K .......... .......... .......... .......... .......... 18% 8,51M 15s
7850K .......... .......... .......... .......... .......... 18% 8,28M 14s
7900K .......... .......... .......... .......... .......... 19% 1,26M 15s
7950K .......... .......... .......... .......... .......... 19% 59,8M 14s
8000K .......... .......... .......... .......... .......... 19% 58,8M 14s
8050K .......... .......... .......... .......... .......... 19% 54,2M 14s
8100K .......... .......... .......... .......... .......... 19% 70,3M 14s
8150K .......... .......... .......... .......... .......... 19% 26,5M 14s
8200K .......... .......... .......... .......... .......... 19% 54,8M 14s
8250K .......... .......... .......... .......... .......... 19% 73,9M 14s
8300K .......... .......... .......... .......... .......... 20% 2,11M 14s
8350K .......... .......... .......... .......... .......... 20% 21,6M 14s
8400K .......... .......... .......... .......... .......... 20% 8,29M 14s
8450K .......... .......... .......... .......... .......... 20% 29,6M 14s
8500K .......... .......... .......... .......... .......... 20% 59,6M 13s
8550K .......... .......... .......... .......... .......... 20% 6,65M 13s
8600K .......... .......... .......... .......... .......... 20% 8,50M 13s
8650K .......... .......... .......... .......... .......... 20% 10,1M 13s
8700K .......... .......... .......... .......... .......... 21% 44,0M 13s
8750K .......... .......... .......... .......... .......... 21% 1,42M 13s
8800K .......... .......... .......... .......... .......... 21% 11,1M 13s
8850K .......... .......... .......... .......... .......... 21% 78,9M 13s
8900K .......... .......... .......... .......... .......... 21% 50,5M 13s
8950K .......... .......... .......... .......... .......... 21% 73,1M 13s
9000K .......... .......... .......... .......... .......... 21% 77,6M 13s
9050K .......... .......... .......... .......... .......... 21% 20,2M 13s
9100K .......... .......... .......... .......... .......... 21% 25,2M 13s
9150K .......... .......... .......... .......... .......... 22% 117M 12s
9200K .......... .......... .......... .......... .......... 22% 2,23M 12s
9250K .......... .......... .......... .......... .......... 22% 22,4M 12s
9300K .......... .......... .......... .......... .......... 22% 8,59M 12s
9350K .......... .......... .......... .......... .......... 22% 24,5M 12s
9400K .......... .......... .......... .......... .......... 22% 79,6M 12s
9450K .......... .......... .......... .......... .......... 22% 7,10M 12s
9500K .......... .......... .......... .......... .......... 22% 8,02M 12s
9550K .......... .......... .......... .......... .......... 23% 8,69M 12s
9600K .......... .......... .......... .......... .......... 23% 8,16M 12s
9650K .......... .......... .......... .......... .......... 23% 63,0M 12s
9700K .......... .......... .......... .......... .......... 23% 1,72M 12s
9750K .......... .......... .......... .......... .......... 23% 10,1M 12s
9800K .......... .......... .......... .......... .......... 23% 60,2M 12s
9850K .......... .......... .......... .......... .......... 23% 61,9M 12s
9900K .......... .......... .......... .......... .......... 23% 62,9M 12s
9950K .......... .......... .......... .......... .......... 24% 76,6M 11s
10000K .......... .......... .......... .......... .......... 24% 23,8M 11s
10050K .......... .......... .......... .......... .......... 24% 30,4M 11s
10100K .......... .......... .......... .......... .......... 24% 3,50M 11s
10150K .......... .......... .......... .......... .......... 24% 6,05M 11s
10200K .......... .......... .......... .......... .......... 24% 14,9M 11s
10250K .......... .......... .......... .......... .......... 24% 10,5M 11s
10300K .......... .......... .......... .......... .......... 24% 21,5M 11s
10350K .......... .......... .......... .......... .......... 24% 79,7M 11s
10400K .......... .......... .......... .......... .......... 25% 8,60M 11s
10450K .......... .......... .......... .......... .......... 25% 6,92M 11s
10500K .......... .......... .......... .......... .......... 25% 11,0M 11s
10550K .......... .......... .......... .......... .......... 25% 6,96M 11s
10600K .......... .......... .......... .......... .......... 25% 66,9M 11s
10650K .......... .......... .......... .......... .......... 25% 10,9M 11s
10700K .......... .......... .......... .......... .......... 25% 1,71M 11s
10750K .......... .......... .......... .......... .......... 25% 60,4M 11s
10800K .......... .......... .......... .......... .......... 26% 39,6M 11s
10850K .......... .......... .......... .......... .......... 26% 62,6M 11s
10900K .......... .......... .......... .......... .......... 26% 65,0M 10s
10950K .......... .......... .......... .......... .......... 26% 137M 10s
11000K .......... .......... .......... .......... .......... 26% 37,8M 10s
11050K .......... .......... .......... .......... .......... 26% 82,1M 10s
11100K .......... .......... .......... .......... .......... 26% 36,9M 10s
11150K .......... .......... .......... .......... .......... 26% 3,47M 10s
11200K .......... .......... .......... .......... .......... 27% 4,59M 10s
11250K .......... .......... .......... .......... .......... 27% 10,3M 10s
11300K .......... .......... .......... .......... .......... 27% 105M 10s
11350K .......... .......... .......... .......... .......... 27% 21,8M 10s
11400K .......... .......... .......... .......... .......... 27% 8,57M 10s
11450K .......... .......... .......... .......... .......... 27% 6,57M 10s
11500K .......... .......... .......... .......... .......... 27% 60,3M 10s
11550K .......... .......... .......... .......... .......... 27% 11,5M 10s
11600K .......... .......... .......... .......... .......... 27% 7,50M 10s
11650K .......... .......... .......... .......... .......... 28% 72,7M 10s
11700K .......... .......... .......... .......... .......... 28% 7,61M 10s
11750K .......... .......... .......... .......... .......... 28% 2,31M 10s
11800K .......... .......... .......... .......... .......... 28% 6,77M 10s
11850K .......... .......... .......... .......... .......... 28% 66,3M 10s
11900K .......... .......... .......... .......... .......... 28% 69,9M 10s
11950K .......... .......... .......... .......... .......... 28% 73,3M 9s
12000K .......... .......... .......... .......... .......... 28% 59,8M 9s
12050K .......... .......... .......... .......... .......... 29% 62,8M 9s
12100K .......... .......... .......... .......... .......... 29% 72,4M 9s
12150K .......... .......... .......... .......... .......... 29% 38,9M 9s
12200K .......... .......... .......... .......... .......... 29% 8,31M 9s
12250K .......... .......... .......... .......... .......... 29% 6,24M 9s
12300K .......... .......... .......... .......... .......... 29% 4,90M 9s
12350K .......... .......... .......... .......... .......... 29% 8,21M 9s
12400K .......... .......... .......... .......... .......... 29% 20,0M 9s
12450K .......... .......... .......... .......... .......... 30% 9,55M 9s
12500K .......... .......... .......... .......... .......... 30% 49,5M 9s
12550K .......... .......... .......... .......... .......... 30% 6,87M 9s
12600K .......... .......... .......... .......... .......... 30% 60,8M 9s
12650K .......... .......... .......... .......... .......... 30% 11,6M 9s
12700K .......... .......... .......... .......... .......... 30% 68,3M 9s
12750K .......... .......... .......... .......... .......... 30% 7,84M 9s
12800K .......... .......... .......... .......... .......... 30% 41,8M 9s
12850K .......... .......... .......... .......... .......... 30% 8,13M 9s
12900K .......... .......... .......... .......... .......... 31% 2,43M 9s
12950K .......... .......... .......... .......... .......... 31% 6,04M 9s
13000K .......... .......... .......... .......... .......... 31% 47,7M 9s
13050K .......... .......... .......... .......... .......... 31% 56,9M 9s
13100K .......... .......... .......... .......... .......... 31% 59,0M 9s
13150K .......... .......... .......... .......... .......... 31% 49,4M 8s
13200K .......... .......... .......... .......... .......... 31% 61,2M 8s
13250K .......... .......... .......... .......... .......... 31% 56,6M 8s
13300K .......... .......... .......... .......... .......... 32% 69,6M 8s
13350K .......... .......... .......... .......... .......... 32% 9,89M 8s
13400K .......... .......... .......... .......... .......... 32% 51,2M 8s
13450K .......... .......... .......... .......... .......... 32% 3,68M 8s
13500K .......... .......... .......... .......... .......... 32% 10,9M 8s
13550K .......... .......... .......... .......... .......... 32% 9,06M 8s
13600K .......... .......... .......... .......... .......... 32% 22,0M 8s
13650K .......... .......... .......... .......... .......... 32% 56,2M 8s
13700K .......... .......... .......... .......... .......... 33% 8,24M 8s
13750K .......... .......... .......... .......... .......... 33% 7,93M 8s
13800K .......... .......... .......... .......... .......... 33% 46,0M 8s
13850K .......... .......... .......... .......... .......... 33% 140M 8s
13900K .......... .......... .......... .......... .......... 33% 12,6M 8s
13950K .......... .......... .......... .......... .......... 33% 8,45M 8s
14000K .......... .......... .......... .......... .......... 33% 25,4M 8s
14050K .......... .......... .......... .......... .......... 33% 8,48M 8s
14100K .......... .......... .......... .......... .......... 33% 115M 8s
14150K .......... .......... .......... .......... .......... 34% 2,37M 8s
14200K .......... .......... .......... .......... .......... 34% 6,80M 8s
14250K .......... .......... .......... .......... .......... 34% 41,9M 8s
14300K .......... .......... .......... .......... .......... 34% 59,1M 8s
14350K .......... .......... .......... .......... .......... 34% 134M 8s
14400K .......... .......... .......... .......... .......... 34% 181M 8s
14450K .......... .......... .......... .......... .......... 34% 107M 8s
14500K .......... .......... .......... .......... .......... 34% 61,9M 7s
14550K .......... .......... .......... .......... .......... 35% 24,4M 7s
14600K .......... .......... .......... .......... .......... 35% 148M 7s
14650K .......... .......... .......... .......... .......... 35% 8,76M 7s
14700K .......... .......... .......... .......... .......... 35% 8,29M 7s
14750K .......... .......... .......... .......... .......... 35% 3,92M 7s
14800K .......... .......... .......... .......... .......... 35% 9,53M 7s
14850K .......... .......... .......... .......... .......... 35% 143M 7s
14900K .......... .......... .......... .......... .......... 35% 19,0M 7s
14950K .......... .......... .......... .......... .......... 36% 7,80M 7s
15000K .......... .......... .......... .......... .......... 36% 7,87M 7s
15050K .......... .......... .......... .......... .......... 36% 60,1M 7s
15100K .......... .......... .......... .......... .......... 36% 55,7M 7s
15150K .......... .......... .......... .......... .......... 36% 12,2M 7s
15200K .......... .......... .......... .......... .......... 36% 11,5M 7s
15250K .......... .......... .......... .......... .......... 36% 23,0M 7s
15300K .......... .......... .......... .......... .......... 36% 50,4M 7s
15350K .......... .......... .......... .......... .......... 36% 51,4M 7s
15400K .......... .......... .......... .......... .......... 37% 9,26M 7s
15450K .......... .......... .......... .......... .......... 37% 7,03M 7s
15500K .......... .......... .......... .......... .......... 37% 3,39M 7s
15550K .......... .......... .......... .......... .......... 37% 6,82M 7s
15600K .......... .......... .......... .......... .......... 37% 33,2M 7s
15650K .......... .......... .......... .......... .......... 37% 56,0M 7s
15700K .......... .......... .......... .......... .......... 37% 52,0M 7s
15750K .......... .......... .......... .......... .......... 37% 55,0M 7s
15800K .......... .......... .......... .......... .......... 38% 66,8M 7s
15850K .......... .......... .......... .......... .......... 38% 62,0M 7s
15900K .......... .......... .......... .......... .......... 38% 62,8M 7s
15950K .......... .......... .......... .......... .......... 38% 192M 7s
16000K .......... .......... .......... .......... .......... 38% 164M 7s
16050K .......... .......... .......... .......... .......... 38% 16,4M 7s
16100K .......... .......... .......... .......... .......... 38% 28,9M 7s
16150K .......... .......... .......... .......... .......... 38% 8,73M 6s
16200K .......... .......... .......... .......... .......... 39% 51,7M 6s
16250K .......... .......... .......... .......... .......... 39% 4,07M 6s
16300K .......... .......... .......... .......... .......... 39% 8,88M 6s
16350K .......... .......... .......... .......... .......... 39% 30,0M 6s
16400K .......... .......... .......... .......... .......... 39% 10,2M 6s
16450K .......... .......... .......... .......... .......... 39% 6,47M 6s
16500K .......... .......... .......... .......... .......... 39% 49,7M 6s
16550K .......... .......... .......... .......... .......... 39% 57,1M 6s
16600K .......... .......... .......... .......... .......... 39% 5,99M 6s
16650K .......... .......... .......... .......... .......... 40% 47,3M 6s
16700K .......... .......... .......... .......... .......... 40% 50,5M 6s
16750K .......... .......... .......... .......... .......... 40% 80,4M 6s
16800K .......... .......... .......... .......... .......... 40% 49,6M 6s
16850K .......... .......... .......... .......... .......... 40% 61,4M 6s
16900K .......... .......... .......... .......... .......... 40% 9,92M 6s
16950K .......... .......... .......... .......... .......... 40% 97,6M 6s
17000K .......... .......... .......... .......... .......... 40% 2,35M 6s
17050K .......... .......... .......... .......... .......... 41% 6,43M 6s
17100K .......... .......... .......... .......... .......... 41% 41,0M 6s
17150K .......... .......... .......... .......... .......... 41% 56,3M 6s
17200K .......... .......... .......... .......... .......... 41% 46,3M 6s
17250K .......... .......... .......... .......... .......... 41% 59,6M 6s
17300K .......... .......... .......... .......... .......... 41% 51,6M 6s
17350K .......... .......... .......... .......... .......... 41% 84,3M 6s
17400K .......... .......... .......... .......... .......... 41% 62,6M 6s
17450K .......... .......... .......... .......... .......... 42% 81,4M 6s
17500K .......... .......... .......... .......... .......... 42% 80,4M 6s
17550K .......... .......... .......... .......... .......... 42% 20,1M 6s
17600K .......... .......... .......... .......... .......... 42% 26,4M 6s
17650K .......... .......... .......... .......... .......... 42% 68,5M 6s
17700K .......... .......... .......... .......... .......... 42% 12,3M 6s
17750K .......... .......... .......... .......... .......... 42% 30,3M 6s
17800K .......... .......... .......... .......... .......... 42% 3,98M 6s
17850K .......... .......... .......... .......... .......... 42% 89,6M 6s
17900K .......... .......... .......... .......... .......... 43% 9,68M 6s
17950K .......... .......... .......... .......... .......... 43% 34,4M 6s
18000K .......... .......... .......... .......... .......... 43% 7,09M 6s
18050K .......... .......... .......... .......... .......... 43% 9,29M 6s
18100K .......... .......... .......... .......... .......... 43% 88,7M 6s
18150K .......... .......... .......... .......... .......... 43% 43,6M 5s
18200K .......... .......... .......... .......... .......... 43% 10,3M 5s
18250K .......... .......... .......... .......... .......... 43% 12,4M 5s
18300K .......... .......... .......... .......... .......... 44% 113M 5s
18350K .......... .......... .......... .......... .......... 44% 23,2M 5s
18400K .......... .......... .......... .......... .......... 44% 96,5M 5s
18450K .......... .......... .......... .......... .......... 44% 119M 5s
18500K .......... .......... .......... .......... .......... 44% 70,8M 5s
18550K .......... .......... .......... .......... .......... 44% 9,12M 5s
18600K .......... .......... .......... .......... .......... 44% 66,7M 5s
18650K .......... .......... .......... .......... .......... 44% 7,63M 5s
18700K .......... .......... .......... .......... .......... 45% 2,25M 5s
18750K .......... .......... .......... .......... .......... 45% 112M 5s
18800K .......... .......... .......... .......... .......... 45% 61,9M 5s
18850K .......... .......... .......... .......... .......... 45% 79,6M 5s
18900K .......... .......... .......... .......... .......... 45% 60,4M 5s
18950K .......... .......... .......... .......... .......... 45% 110M 5s
19000K .......... .......... .......... .......... .......... 45% 81,0M 5s
19050K .......... .......... .......... .......... .......... 45% 77,1M 5s
19100K .......... .......... .......... .......... .......... 45% 107M 5s
19150K .......... .......... .......... .......... .......... 46% 59,2M 5s
19200K .......... .......... .......... .......... .......... 46% 12,9M 5s
19250K .......... .......... .......... .......... .......... 46% 31,5M 5s
19300K .......... .......... .......... .......... .......... 46% 59,1M 5s
19350K .......... .......... .......... .......... .......... 46% 8,48M 5s
19400K .......... .......... .......... .......... .......... 46% 70,5M 5s
19450K .......... .......... .......... .......... .......... 46% 6,40M 5s
19500K .......... .......... .......... .......... .......... 46% 47,7M 5s
19550K .......... .......... .......... .......... .......... 47% 5,84M 5s
19600K .......... .......... .......... .......... .......... 47% 54,2M 5s
19650K .......... .......... .......... .......... .......... 47% 34,6M 5s
19700K .......... .......... .......... .......... .......... 47% 8,77M 5s
19750K .......... .......... .......... .......... .......... 47% 45,6M 5s
19800K .......... .......... .......... .......... .......... 47% 8,46M 5s
19850K .......... .......... .......... .......... .......... 47% 53,9M 5s
19900K .......... .......... .......... .......... .......... 47% 10,0M 5s
19950K .......... .......... .......... .......... .......... 48% 41,3M 5s
20000K .......... .......... .......... .......... .......... 48% 15,0M 5s
20050K .......... .......... .......... .......... .......... 48% 25,6M 5s
20100K .......... .......... .......... .......... .......... 48% 75,2M 5s
20150K .......... .......... .......... .......... .......... 48% 118M 5s
20200K .......... .......... .......... .......... .......... 48% 106M 5s
20250K .......... .......... .......... .......... .......... 48% 122M 5s
20300K .......... .......... .......... .......... .......... 48% 9,40M 5s
20350K .......... .......... .......... .......... .......... 48% 82,8M 5s
20400K .......... .......... .......... .......... .......... 49% 2,31M 5s
20450K .......... .......... .......... .......... .......... 49% 102M 5s
20500K .......... .......... .......... .......... .......... 49% 7,52M 5s
20550K .......... .......... .......... .......... .......... 49% 59,3M 5s
20600K .......... .......... .......... .......... .......... 49% 108M 4s
20650K .......... .......... .......... .......... .......... 49% 37,9M 4s
20700K .......... .......... .......... .......... .......... 49% 120M 4s
20750K .......... .......... .......... .......... .......... 49% 84,2M 4s
20800K .......... .......... .......... .......... .......... 50% 67,8M 4s
20850K .......... .......... .......... .......... .......... 50% 100M 4s
20900K .......... .......... .......... .......... .......... 50% 71,7M 4s
20950K .......... .......... .......... .......... .......... 50% 73,8M 4s
21000K .......... .......... .......... .......... .......... 50% 15,5M 4s
21050K .......... .......... .......... .......... .......... 50% 21,8M 4s
21100K .......... .......... .......... .......... .......... 50% 11,0M 4s
21150K .......... .......... .......... .......... .......... 50% 64,5M 4s
21200K .......... .......... .......... .......... .......... 51% 29,8M 4s
21250K .......... .......... .......... .......... .......... 51% 8,28M 4s
21300K .......... .......... .......... .......... .......... 51% 9,12M 4s
21350K .......... .......... .......... .......... .......... 51% 9,08M 4s
21400K .......... .......... .......... .......... .......... 51% 42,5M 4s
21450K .......... .......... .......... .......... .......... 51% 67,7M 4s
21500K .......... .......... .......... .......... .......... 51% 37,9M 4s
21550K .......... .......... .......... .......... .......... 51% 9,20M 4s
21600K .......... .......... .......... .......... .......... 51% 11,2M 4s
21650K .......... .......... .......... .......... .......... 52% 21,7M 4s
21700K .......... .......... .......... .......... .......... 52% 71,1M 4s
21750K .......... .......... .......... .......... .......... 52% 8,58M 4s
21800K .......... .......... .......... .......... .......... 52% 15,8M 4s
21850K .......... .......... .......... .......... .......... 52% 49,8M 4s
21900K .......... .......... .......... .......... .......... 52% 26,0M 4s
21950K .......... .......... .......... .......... .......... 52% 84,1M 4s
22000K .......... .......... .......... .......... .......... 52% 75,1M 4s
22050K .......... .......... .......... .......... .......... 53% 91,9M 4s
22100K .......... .......... .......... .......... .......... 53% 90,4M 4s
22150K .......... .......... .......... .......... .......... 53% 11,7M 4s
22200K .......... .......... .......... .......... .......... 53% 40,0M 4s
22250K .......... .......... .......... .......... .......... 53% 86,5M 4s
22300K .......... .......... .......... .......... .......... 53% 80,8M 4s
22350K .......... .......... .......... .......... .......... 53% 2,36M 4s
22400K .......... .......... .......... .......... .......... 53% 8,03M 4s
22450K .......... .......... .......... .......... .......... 54% 44,6M 4s
22500K .......... .......... .......... .......... .......... 54% 44,3M 4s
22550K .......... .......... .......... .......... .......... 54% 46,1M 4s
22600K .......... .......... .......... .......... .......... 54% 59,6M 4s
22650K .......... .......... .......... .......... .......... 54% 64,5M 4s
22700K .......... .......... .......... .......... .......... 54% 52,4M 4s
22750K .......... .......... .......... .......... .......... 54% 64,6M 4s
22800K .......... .......... .......... .......... .......... 54% 56,7M 4s
22850K .......... .......... .......... .......... .......... 54% 75,7M 4s
22900K .......... .......... .......... .......... .......... 55% 35,7M 4s
22950K .......... .......... .......... .......... .......... 55% 30,3M 4s
23000K .......... .......... .......... .......... .......... 55% 11,0M 4s
23050K .......... .......... .......... .......... .......... 55% 102M 4s
23100K .......... .......... .......... .......... .......... 55% 25,4M 4s
23150K .......... .......... .......... .......... .......... 55% 8,53M 4s
23200K .......... .......... .......... .......... .......... 55% 29,8M 4s
23250K .......... .......... .......... .......... .......... 55% 11,5M 4s
23300K .......... .......... .......... .......... .......... 56% 93,9M 4s
23350K .......... .......... .......... .......... .......... 56% 8,20M 4s
23400K .......... .......... .......... .......... .......... 56% 83,3M 4s
23450K .......... .......... .......... .......... .......... 56% 32,7M 4s
23500K .......... .......... .......... .......... .......... 56% 103M 3s
23550K .......... .......... .......... .......... .......... 56% 9,54M 3s
23600K .......... .......... .......... .......... .......... 56% 8,14M 3s
23650K .......... .......... .......... .......... .......... 56% 76,8M 3s
23700K .......... .......... .......... .......... .......... 57% 8,68M 3s
23750K .......... .......... .......... .......... .......... 57% 63,7M 3s
23800K .......... .......... .......... .......... .......... 57% 13,3M 3s
23850K .......... .......... .......... .......... .......... 57% 29,7M 3s
23900K .......... .......... .......... .......... .......... 57% 61,6M 3s
23950K .......... .......... .......... .......... .......... 57% 71,7M 3s
24000K .......... .......... .......... .......... .......... 57% 62,1M 3s
24050K .......... .......... .......... .......... .......... 57% 75,3M 3s
24100K .......... .......... .......... .......... .......... 57% 14,1M 3s
24150K .......... .......... .......... .......... .......... 58% 48,4M 3s
24200K .......... .......... .......... .......... .......... 58% 43,5M 3s
24250K .......... .......... .......... .......... .......... 58% 91,5M 3s
24300K .......... .......... .......... .......... .......... 58% 117M 3s
24350K .......... .......... .......... .......... .......... 58% 2,39M 3s
24400K .......... .......... .......... .......... .......... 58% 8,97M 3s
24450K .......... .......... .......... .......... .......... 58% 102M 3s
24500K .......... .......... .......... .......... .......... 58% 42,4M 3s
24550K .......... .......... .......... .......... .......... 59% 64,6M 3s
24600K .......... .......... .......... .......... .......... 59% 35,3M 3s
24650K .......... .......... .......... .......... .......... 59% 113M 3s
24700K .......... .......... .......... .......... .......... 59% 120M 3s
24750K .......... .......... .......... .......... .......... 59% 38,7M 3s
24800K .......... .......... .......... .......... .......... 59% 58,8M 3s
24850K .......... .......... .......... .......... .......... 59% 73,9M 3s
24900K .......... .......... .......... .......... .......... 59% 24,8M 3s
24950K .......... .......... .......... .......... .......... 60% 63,1M 3s
25000K .......... .......... .......... .......... .......... 60% 32,9M 3s
25050K .......... .......... .......... .......... .......... 60% 11,0M 3s
25100K .......... .......... .......... .......... .......... 60% 24,1M 3s
25150K .......... .......... .......... .......... .......... 60% 85,0M 3s
25200K .......... .......... .......... .......... .......... 60% 9,09M 3s
25250K .......... .......... .......... .......... .......... 60% 122M 3s
25300K .......... .......... .......... .......... .......... 60% 30,1M 3s
25350K .......... .......... .......... .......... .......... 60% 11,4M 3s
25400K .......... .......... .......... .......... .......... 61% 95,0M 3s
25450K .......... .......... .......... .......... .......... 61% 7,94M 3s
25500K .......... .......... .......... .......... .......... 61% 125M 3s
25550K .......... .......... .......... .......... .......... 61% 42,5M 3s
25600K .......... .......... .......... .......... .......... 61% 9,23M 3s
25650K .......... .......... .......... .......... .......... 61% 66,0M 3s
25700K .......... .......... .......... .......... .......... 61% 8,38M 3s
25750K .......... .......... .......... .......... .......... 61% 70,8M 3s
25800K .......... .......... .......... .......... .......... 62% 8,71M 3s
25850K .......... .......... .......... .......... .......... 62% 69,5M 3s
25900K .......... .......... .......... .......... .......... 62% 15,6M 3s
25950K .......... .......... .......... .......... .......... 62% 26,2M 3s
26000K .......... .......... .......... .......... .......... 62% 60,0M 3s
26050K .......... .......... .......... .......... .......... 62% 71,0M 3s
26100K .......... .......... .......... .......... .......... 62% 73,0M 3s
26150K .......... .......... .......... .......... .......... 62% 71,9M 3s
26200K .......... .......... .......... .......... .......... 63% 64,3M 3s
26250K .......... .......... .......... .......... .......... 63% 17,0M 3s
26300K .......... .......... .......... .......... .......... 63% 67,3M 3s
26350K .......... .......... .......... .......... .......... 63% 35,5M 3s
26400K .......... .......... .......... .......... .......... 63% 80,0M 3s
26450K .......... .......... .......... .......... .......... 63% 110M 3s
26500K .......... .......... .......... .......... .......... 63% 10,7M 3s
26550K .......... .......... .......... .......... .......... 63% 3,01M 3s
26600K .......... .......... .......... .......... .......... 63% 8,05M 3s
26650K .......... .......... .......... .......... .......... 64% 107M 3s
26700K .......... .......... .......... .......... .......... 64% 70,1M 3s
26750K .......... .......... .......... .......... .......... 64% 71,8M 3s
26800K .......... .......... .......... .......... .......... 64% 30,4M 3s
26850K .......... .......... .......... .......... .......... 64% 109M 3s
26900K .......... .......... .......... .......... .......... 64% 57,8M 3s
26950K .......... .......... .......... .......... .......... 64% 47,2M 3s
27000K .......... .......... .......... .......... .......... 64% 81,2M 3s
27050K .......... .......... .......... .......... .......... 65% 74,9M 3s
27100K .......... .......... .......... .......... .......... 65% 72,4M 3s
27150K .......... .......... .......... .......... .......... 65% 32,0M 3s
27200K .......... .......... .......... .......... .......... 65% 34,8M 2s
27250K .......... .......... .......... .......... .......... 65% 10,5M 2s
27300K .......... .......... .......... .......... .......... 65% 65,5M 2s
27350K .......... .......... .......... .......... .......... 65% 27,9M 2s
27400K .......... .......... .......... .......... .......... 65% 9,96M 2s
27450K .......... .......... .......... .......... .......... 66% 58,0M 2s
27500K .......... .......... .......... .......... .......... 66% 97,2M 2s
27550K .......... .......... .......... .......... .......... 66% 30,3M 2s
27600K .......... .......... .......... .......... .......... 66% 11,2M 2s
27650K .......... .......... .......... .......... .......... 66% 8,92M 2s
27700K .......... .......... .......... .......... .......... 66% 49,0M 2s
27750K .......... .......... .......... .......... .......... 66% 65,0M 2s
27800K .......... .......... .......... .......... .......... 66% 65,9M 2s
27850K .......... .......... .......... .......... .......... 66% 9,76M 2s
27900K .......... .......... .......... .......... .......... 67% 8,10M 2s
27950K .......... .......... .......... .......... .......... 67% 68,7M 2s
28000K .......... .......... .......... .......... .......... 67% 60,7M 2s
28050K .......... .......... .......... .......... .......... 67% 71,4M 2s
28100K .......... .......... .......... .......... .......... 67% 9,13M 2s
28150K .......... .......... .......... .......... .......... 67% 17,5M 2s
28200K .......... .......... .......... .......... .......... 67% 59,7M 2s
28250K .......... .......... .......... .......... .......... 67% 25,1M 2s
28300K .......... .......... .......... .......... .......... 68% 67,3M 2s
28350K .......... .......... .......... .......... .......... 68% 70,4M 2s
28400K .......... .......... .......... .......... .......... 68% 60,6M 2s
28450K .......... .......... .......... .......... .......... 68% 74,6M 2s
28500K .......... .......... .......... .......... .......... 68% 74,9M 2s
28550K .......... .......... .......... .......... .......... 68% 19,6M 2s
28600K .......... .......... .......... .......... .......... 68% 29,3M 2s
28650K .......... .......... .......... .......... .......... 68% 67,6M 2s
28700K .......... .......... .......... .......... .......... 69% 93,7M 2s
28750K .......... .......... .......... .......... .......... 69% 140M 2s
28800K .......... .......... .......... .......... .......... 69% 11,5M 2s
28850K .......... .......... .......... .......... .......... 69% 6,48M 2s
28900K .......... .......... .......... .......... .......... 69% 3,54M 2s
28950K .......... .......... .......... .......... .......... 69% 33,1M 2s
29000K .......... .......... .......... .......... .......... 69% 83,1M 2s
29050K .......... .......... .......... .......... .......... 69% 59,5M 2s
29100K .......... .......... .......... .......... .......... 69% 31,8M 2s
29150K .......... .......... .......... .......... .......... 70% 129M 2s
29200K .......... .......... .......... .......... .......... 70% 117M 2s
29250K .......... .......... .......... .......... .......... 70% 69,8M 2s
29300K .......... .......... .......... .......... .......... 70% 56,8M 2s
29350K .......... .......... .......... .......... .......... 70% 89,9M 2s
29400K .......... .......... .......... .......... .......... 70% 81,7M 2s
29450K .......... .......... .......... .......... .......... 70% 102M 2s
29500K .......... .......... .......... .......... .......... 70% 32,2M 2s
29550K .......... .......... .......... .......... .......... 71% 62,2M 2s
29600K .......... .......... .......... .......... .......... 71% 9,95M 2s
29650K .......... .......... .......... .......... .......... 71% 61,8M 2s
29700K .......... .......... .......... .......... .......... 71% 27,6M 2s
29750K .......... .......... .......... .......... .......... 71% 9,47M 2s
29800K .......... .......... .......... .......... .......... 71% 49,6M 2s
29850K .......... .......... .......... .......... .......... 71% 61,8M 2s
29900K .......... .......... .......... .......... .......... 71% 79,8M 2s
29950K .......... .......... .......... .......... .......... 72% 43,6M 2s
30000K .......... .......... .......... .......... .......... 72% 12,1M 2s
30050K .......... .......... .......... .......... .......... 72% 9,44M 2s
30100K .......... .......... .......... .......... .......... 72% 62,0M 2s
30150K .......... .......... .......... .......... .......... 72% 34,3M 2s
30200K .......... .......... .......... .......... .......... 72% 85,1M 2s
30250K .......... .......... .......... .......... .......... 72% 10,4M 2s
30300K .......... .......... .......... .......... .......... 72% 60,9M 2s
30350K .......... .......... .......... .......... .......... 72% 8,51M 2s
30400K .......... .......... .......... .......... .......... 73% 52,0M 2s
30450K .......... .......... .......... .......... .......... 73% 121M 2s
30500K .......... .......... .......... .......... .......... 73% 9,72M 2s
30550K .......... .......... .......... .......... .......... 73% 66,8M 2s
30600K .......... .......... .......... .......... .......... 73% 15,5M 2s
30650K .......... .......... .......... .......... .......... 73% 27,7M 2s
30700K .......... .......... .......... .......... .......... 73% 43,3M 2s
30750K .......... .......... .......... .......... .......... 73% 122M 2s
30800K .......... .......... .......... .......... .......... 74% 95,3M 2s
30850K .......... .......... .......... .......... .......... 74% 75,0M 2s
30900K .......... .......... .......... .......... .......... 74% 137M 2s
30950K .......... .......... .......... .......... .......... 74% 14,7M 2s
31000K .......... .......... .......... .......... .......... 74% 78,5M 2s
31050K .......... .......... .......... .......... .......... 74% 139M 2s
31100K .......... .......... .......... .......... .......... 74% 27,4M 2s
31150K .......... .......... .......... .......... .......... 74% 86,3M 2s
31200K .......... .......... .......... .......... .......... 75% 106M 2s
31250K .......... .......... .......... .......... .......... 75% 12,0M 2s
31300K .......... .......... .......... .......... .......... 75% 61,8M 2s
31350K .......... .......... .......... .......... .......... 75% 2,48M 2s
31400K .......... .......... .......... .......... .......... 75% 19,5M 2s
31450K .......... .......... .......... .......... .......... 75% 110M 2s
31500K .......... .......... .......... .......... .......... 75% 122M 2s
31550K .......... .......... .......... .......... .......... 75% 126M 2s
31600K .......... .......... .......... .......... .......... 75% 28,2M 2s
31650K .......... .......... .......... .......... .......... 76% 83,6M 2s
31700K .......... .......... .......... .......... .......... 76% 81,5M 2s
31750K .......... .......... .......... .......... .......... 76% 94,8M 2s
31800K .......... .......... .......... .......... .......... 76% 83,4M 2s
31850K .......... .......... .......... .......... .......... 76% 100M 1s
31900K .......... .......... .......... .......... .......... 76% 70,2M 1s
31950K .......... .......... .......... .......... .......... 76% 121M 1s
32000K .......... .......... .......... .......... .......... 76% 61,4M 1s
32050K .......... .......... .......... .......... .......... 77% 43,4M 1s
32100K .......... .......... .......... .......... .......... 77% 37,1M 1s
32150K .......... .......... .......... .......... .......... 77% 11,7M 1s
32200K .......... .......... .......... .......... .......... 77% 83,8M 1s
32250K .......... .......... .......... .......... .......... 77% 22,5M 1s
32300K .......... .......... .......... .......... .......... 77% 9,99M 1s
32350K .......... .......... .......... .......... .......... 77% 39,0M 1s
32400K .......... .......... .......... .......... .......... 77% 62,6M 1s
32450K .......... .......... .......... .......... .......... 78% 117M 1s
32500K .......... .......... .......... .......... .......... 78% 44,7M 1s
32550K .......... .......... .......... .......... .......... 78% 14,5M 1s
32600K .......... .......... .......... .......... .......... 78% 8,11M 1s
32650K .......... .......... .......... .......... .......... 78% 61,7M 1s
32700K .......... .......... .......... .......... .......... 78% 31,2M 1s
32750K .......... .......... .......... .......... .......... 78% 57,9M 1s
32800K .......... .......... .......... .......... .......... 78% 54,3M 1s
32850K .......... .......... .......... .......... .......... 78% 13,1M 1s
32900K .......... .......... .......... .......... .......... 79% 54,3M 1s
32950K .......... .......... .......... .......... .......... 79% 8,54M 1s
33000K .......... .......... .......... .......... .......... 79% 46,9M 1s
33050K .......... .......... .......... .......... .......... 79% 71,3M 1s
33100K .......... .......... .......... .......... .......... 79% 94,1M 1s
33150K .......... .......... .......... .......... .......... 79% 11,0M 1s
33200K .......... .......... .......... .......... .......... 79% 14,1M 1s
33250K .......... .......... .......... .......... .......... 79% 26,0M 1s
33300K .......... .......... .......... .......... .......... 80% 71,5M 1s
33350K .......... .......... .......... .......... .......... 80% 70,9M 1s
33400K .......... .......... .......... .......... .......... 80% 66,6M 1s
33450K .......... .......... .......... .......... .......... 80% 72,1M 1s
33500K .......... .......... .......... .......... .......... 80% 88,0M 1s
33550K .......... .......... .......... .......... .......... 80% 17,3M 1s
33600K .......... .......... .......... .......... .......... 80% 52,4M 1s
33650K .......... .......... .......... .......... .......... 80% 70,5M 1s
33700K .......... .......... .......... .......... .......... 81% 81,7M 1s
33750K .......... .......... .......... .......... .......... 81% 77,3M 1s
33800K .......... .......... .......... .......... .......... 81% 67,6M 1s
33850K .......... .......... .......... .......... .......... 81% 69,8M 1s
33900K .......... .......... .......... .......... .......... 81% 91,4M 1s
33950K .......... .......... .......... .......... .......... 81% 15,6M 1s
34000K .......... .......... .......... .......... .......... 81% 3,40M 1s
34050K .......... .......... .......... .......... .......... 81% 6,13M 1s
34100K .......... .......... .......... .......... .......... 82% 73,9M 1s
34150K .......... .......... .......... .......... .......... 82% 46,6M 1s
34200K .......... .......... .......... .......... .......... 82% 51,9M 1s
34250K .......... .......... .......... .......... .......... 82% 51,7M 1s
34300K .......... .......... .......... .......... .......... 82% 53,6M 1s
34350K .......... .......... .......... .......... .......... 82% 44,7M 1s
34400K .......... .......... .......... .......... .......... 82% 41,9M 1s
34450K .......... .......... .......... .......... .......... 82% 44,0M 1s
34500K .......... .......... .......... .......... .......... 82% 43,0M 1s
34550K .......... .......... .......... .......... .......... 83% 74,0M 1s
34600K .......... .......... .......... .......... .......... 83% 51,1M 1s
34650K .......... .......... .......... .......... .......... 83% 54,0M 1s
34700K .......... .......... .......... .......... .......... 83% 62,2M 1s
34750K .......... .......... .......... .......... .......... 83% 74,9M 1s
34800K .......... .......... .......... .......... .......... 83% 119M 1s
34850K .......... .......... .......... .......... .......... 83% 136M 1s
34900K .......... .......... .......... .......... .......... 83% 62,2M 1s
34950K .......... .......... .......... .......... .......... 84% 20,3M 1s
35000K .......... .......... .......... .......... .......... 84% 54,3M 1s
35050K .......... .......... .......... .......... .......... 84% 11,2M 1s
35100K .......... .......... .......... .......... .......... 84% 28,9M 1s
35150K .......... .......... .......... .......... .......... 84% 54,5M 1s
35200K .......... .......... .......... .......... .......... 84% 99,8M 1s
35250K .......... .......... .......... .......... .......... 84% 169M 1s
35300K .......... .......... .......... .......... .......... 84% 13,1M 1s
35350K .......... .......... .......... .......... .......... 85% 7,96M 1s
35400K .......... .......... .......... .......... .......... 85% 50,9M 1s
35450K .......... .......... .......... .......... .......... 85% 47,9M 1s
35500K .......... .......... .......... .......... .......... 85% 52,4M 1s
35550K .......... .......... .......... .......... .......... 85% 57,5M 1s
35600K .......... .......... .......... .......... .......... 85% 70,1M 1s
35650K .......... .......... .......... .......... .......... 85% 14,8M 1s
35700K .......... .......... .......... .......... .......... 85% 11,2M 1s
35750K .......... .......... .......... .......... .......... 85% 10,8M 1s
35800K .......... .......... .......... .......... .......... 86% 90,7M 1s
35850K .......... .......... .......... .......... .......... 86% 68,4M 1s
35900K .......... .......... .......... .......... .......... 86% 22,4M 1s
35950K .......... .......... .......... .......... .......... 86% 62,0M 1s
36000K .......... .......... .......... .......... .......... 86% 15,4M 1s
36050K .......... .......... .......... .......... .......... 86% 26,6M 1s
36100K .......... .......... .......... .......... .......... 86% 86,4M 1s
36150K .......... .......... .......... .......... .......... 86% 43,3M 1s
36200K .......... .......... .......... .......... .......... 87% 89,9M 1s
36250K .......... .......... .......... .......... .......... 87% 100M 1s
36300K .......... .......... .......... .......... .......... 87% 84,9M 1s
36350K .......... .......... .......... .......... .......... 87% 16,9M 1s
36400K .......... .......... .......... .......... .......... 87% 75,4M 1s
36450K .......... .......... .......... .......... .......... 87% 98,4M 1s
36500K .......... .......... .......... .......... .......... 87% 94,8M 1s
36550K .......... .......... .......... .......... .......... 87% 4,17M 1s
36600K .......... .......... .......... .......... .......... 88% 236M 1s
36650K .......... .......... .......... .......... .......... 88% 271M 1s
36700K .......... .......... .......... .......... .......... 88% 263M 1s
36750K .......... .......... .......... .......... .......... 88% 273M 1s
36800K .......... .......... .......... .......... .......... 88% 220M 1s
36850K .......... .......... .......... .......... .......... 88% 26,3M 1s
36900K .......... .......... .......... .......... .......... 88% 4,03M 1s
36950K .......... .......... .......... .......... .......... 88% 15,4M 1s
37000K .......... .......... .......... .......... .......... 88% 87,5M 1s
37050K .......... .......... .......... .......... .......... 89% 96,7M 1s
37100K .......... .......... .......... .......... .......... 89% 103M 1s
37150K .......... .......... .......... .......... .......... 89% 82,8M 1s
37200K .......... .......... .......... .......... .......... 89% 76,2M 1s
37250K .......... .......... .......... .......... .......... 89% 145M 1s
37300K .......... .......... .......... .......... .......... 89% 36,0M 1s
37350K .......... .......... .......... .......... .......... 89% 98,7M 1s
37400K .......... .......... .......... .......... .......... 89% 90,8M 1s
37450K .......... .......... .......... .......... .......... 90% 99,7M 1s
37500K .......... .......... .......... .......... .......... 90% 145M 1s
37550K .......... .......... .......... .......... .......... 90% 99,3M 1s
37600K .......... .......... .......... .......... .......... 90% 30,2M 1s
37650K .......... .......... .......... .......... .......... 90% 149M 1s
37700K .......... .......... .......... .......... .......... 90% 69,9M 1s
37750K .......... .......... .......... .......... .......... 90% 12,5M 1s
37800K .......... .......... .......... .......... .......... 90% 66,3M 1s
37850K .......... .......... .......... .......... .......... 91% 88,5M 1s
37900K .......... .......... .......... .......... .......... 91% 24,3M 0s
37950K .......... .......... .......... .......... .......... 91% 11,8M 0s
38000K .......... .......... .......... .......... .......... 91% 20,9M 0s
38050K .......... .......... .......... .......... .......... 91% 60,5M 0s
38100K .......... .......... .......... .......... .......... 91% 118M 0s
38150K .......... .......... .......... .......... .......... 91% 114M 0s
38200K .......... .......... .......... .......... .......... 91% 17,3M 0s
38250K .......... .......... .......... .......... .......... 91% 8,87M 0s
38300K .......... .......... .......... .......... .......... 92% 70,9M 0s
38350K .......... .......... .......... .......... .......... 92% 26,9M 0s
38400K .......... .......... .......... .......... .......... 92% 94,6M 0s
38450K .......... .......... .......... .......... .......... 92% 99,7M 0s
38500K .......... .......... .......... .......... .......... 92% 97,3M 0s
38550K .......... .......... .......... .......... .......... 92% 96,8M 0s
38600K .......... .......... .......... .......... .......... 92% 12,2M 0s
38650K .......... .......... .......... .......... .......... 92% 52,0M 0s
38700K .......... .......... .......... .......... .......... 93% 6,15M 0s
38750K .......... .......... .......... .......... .......... 93% 68,5M 0s
38800K .......... .......... .......... .......... .......... 93% 82,7M 0s
38850K .......... .......... .......... .......... .......... 93% 16,7M 0s
38900K .......... .......... .......... .......... .......... 93% 117M 0s
38950K .......... .......... .......... .......... .......... 93% 20,1M 0s
39000K .......... .......... .......... .......... .......... 93% 71,4M 0s
39050K .......... .......... .......... .......... .......... 93% 19,6M 0s
39100K .......... .......... .......... .......... .......... 94% 131M 0s
39150K .......... .......... .......... .......... .......... 94% 48,5M 0s
39200K .......... .......... .......... .......... .......... 94% 36,2M 0s
39250K .......... .......... .......... .......... .......... 94% 65,7M 0s
39300K .......... .......... .......... .......... .......... 94% 136M 0s
39350K .......... .......... .......... .......... .......... 94% 24,8M 0s
39400K .......... .......... .......... .......... .......... 94% 63,1M 0s
39450K .......... .......... .......... .......... .......... 94% 79,9M 0s
39500K .......... .......... .......... .......... .......... 94% 123M 0s
39550K .......... .......... .......... .......... .......... 95% 6,16M 0s
39600K .......... .......... .......... .......... .......... 95% 14,5M 0s
39650K .......... .......... .......... .......... .......... 95% 19,8M 0s
39700K .......... .......... .......... .......... .......... 95% 103M 0s
39750K .......... .......... .......... .......... .......... 95% 104M 0s
39800K .......... .......... .......... .......... .......... 95% 98,2M 0s
39850K .......... .......... .......... .......... .......... 95% 91,2M 0s
39900K .......... .......... .......... .......... .......... 95% 4,90M 0s
39950K .......... .......... .......... .......... .......... 96% 116M 0s
40000K .......... .......... .......... .......... .......... 96% 9,96M 0s
40050K .......... .......... .......... .......... .......... 96% 93,2M 0s
40100K .......... .......... .......... .......... .......... 96% 100M 0s
40150K .......... .......... .......... .......... .......... 96% 147M 0s
40200K .......... .......... .......... .......... .......... 96% 114M 0s
40250K .......... .......... .......... .......... .......... 96% 99,1M 0s
40300K .......... .......... .......... .......... .......... 96% 92,2M 0s
40350K .......... .......... .......... .......... .......... 97% 98,0M 0s
40400K .......... .......... .......... .......... .......... 97% 71,4M 0s
40450K .......... .......... .......... .......... .......... 97% 96,9M 0s
40500K .......... .......... .......... .......... .......... 97% 96,5M 0s
40550K .......... .......... .......... .......... .......... 97% 92,0M 0s
40600K .......... .......... .......... .......... .......... 97% 88,5M 0s
40650K .......... .......... .......... .......... .......... 97% 96,6M 0s
40700K .......... .......... .......... .......... .......... 97% 43,2M 0s
40750K .......... .......... .......... .......... .......... 97% 81,9M 0s
40800K .......... .......... .......... .......... .......... 98% 11,4M 0s
40850K .......... .......... .......... .......... .......... 98% 25,4M 0s
40900K .......... .......... .......... .......... .......... 98% 79,8M 0s
40950K .......... .......... .......... .......... .......... 98% 11,8M 0s
41000K .......... .......... .......... .......... .......... 98% 25,7M 0s
41050K .......... .......... .......... .......... .......... 98% 57,9M 0s
41100K .......... .......... .......... .......... .......... 98% 103M 0s
41150K .......... .......... .......... .......... .......... 98% 41,8M 0s
41200K .......... .......... .......... .......... .......... 99% 50,4M 0s
41250K .......... .......... .......... .......... .......... 99% 6,45M 0s
41300K .......... .......... .......... .......... .......... 99% 43,8M 0s
41350K .......... .......... .......... .......... .......... 99% 65,6M 0s
41400K .......... .......... .......... .......... .......... 99% 39,4M 0s
41450K .......... .......... .......... .......... .......... 99% 48,9M 0s
41500K .......... .......... .......... .......... .......... 99% 64,9M 0s
41550K .......... .......... .......... .......... .......... 99% 74,2M 0s
41600K .......... .......... .......... .......... ...... 100% 69,8M=5,2s
2014-06-18 13:41:12 (7,77 MB/s) - ‘/home/jwiklund/Documents/.git/annex/tmp/SHA256E-s42645638--4ae41fb29bd26339ea10f53ea2b7cf3132e53d5e8fbfde7b43b912aa52b3d319.tar.gz’ saved [42645638/42645638]
[2014-06-18 13:41:12 CEST] main(checksum...)
: Downloaded git-annex.. upgrade)
[2014-06-18 13:41:12 CEST] Pusher: Syncing with born
(Recording state in git...)
error: duplicate parent bd2e43b03fcc307166df1ab23cecb0eafe9ca3a5 ignored
To ssh://jwiklund@born/store/backup/Documents.annex.1/
cf9f2a9..f8f8217 git-annex -> synced/git-annex
6be6bb3..bd2e43b annex/direct/master -> synced/master
git-annex version: 5.20140610-g5ec8bcf
build flags: Assistant Webapp Webapp-secure Pairing Testsuite S3 WebDAV Inotify DBus DesktopNotify XMPP DNS Feeds Quvi TDFA CryptoHash
key/value backends: SHA256E SHA1E SHA512E SHA224E SHA384E SKEIN256E SKEIN512E SHA256 SHA1 SHA512 SHA224 SHA384 SKEIN256 SKEIN512 WORM URL
remote types: git gcrypt S3 bup directory rsync web webdav tahoe glacier ddar hook external
local repository version: 5
supported repository version: 5
upgrade supported from repository versions: 0 1 2 4
[2014-06-18 13:41:14 CEST] main: Upgrading git-annex
[2014-06-18 13:41:14 CEST] UpgradeWatcher: A new version of git-annex has been installed.
error: duplicate parent e88b1485767e39ac05de700219d31011b7ac7022 ignored
error: duplicate parent 220161f6ad836cfc581a9dd575d76c0d9e814826 ignored
Another upgrade
[2014-06-18 13:38:15 CEST] main: starting assistant version 5.20140606-g48793b6
[2014-06-18 13:38:16 CEST] TransferScanner: Syncing with born
Already up-to-date.
(scanning...) [20
14-06-18 13:38:16 CEST] Watcher: Performing startup scan
Already up-to-date.
(started...)
gpg: WARNING: unsafe permissions on homedir `/tmp/git-annex-gpg.tmp.0'
gpg: Signature made fre 13 jun 2014 17:28:22 CEST using DSA key ID 89C809CB
gpg: /tmp/git-annex-gpg.tmp.0/trustdb.gpg: trustdb created
gpg: Good signature from "git-annex distribution signing key (for Joey Hess) <id@joeyh.name>"
gpg: WARNING: This key is not certified with a trusted signature!
gpg: There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4005 5C6A FD2D 526B 2961 E78F 5EE1 DBA7 89C8 09CB
[2014-06-18 13:38:17 CEST] Upgrader: An upgrade of git-annex is available. (version 5.20140613)
To ssh://jwiklund@born/store/backup/Documents.annex.1/
9537540..38006f5 git-annex -> synced/git-annex
[2014-06-18 13:38:18 CEST] Committer: Committing changes to git
(Recording state in git...)
[2014-06-18 13:38:18 CEST] Pusher: Syncing with born
Everything up-to-date
--2014-06-18 13:38:22-- https://downloads.kitenet.net/git-annex/linux/current/git-annex-standalone-amd64.tar.gz
Resolving downloads.kitenet.net (downloads.kitenet.net)... 107.170.31.195
Connecting to downloads.kitenet.net (downloads.kitenet.net)|107.170.31.195|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 42645638 (41M) [application/x-gzip]
Saving to: ‘/home/jwiklund/Documents/.git/annex/tmp/SHA256E-s42645638--4ae41fb29bd26339ea10f53ea2b7cf3132e53d5e8fbfde7b43b912aa52b3d319.tar.gz’
0K .......... .......... .......... .......... .......... 0% 165K 4m12s
50K .......... .......... .......... .......... .......... 0% 165K 4m12s
100K .......... .......... .......... .......... .......... 0% 248K 3m43s
150K .......... .......... .......... .......... .......... 0% 247K 3m29s
200K .......... .......... .......... .......... .......... 0% 493K 3m4s
250K .......... .......... .......... .......... .......... 0% 248K 3m1s
300K .......... .......... .......... .......... .......... 0% 493K 2m47s
350K .......... .......... .......... .......... .......... 0% 495K 2m36s
400K .......... .......... .......... .......... .......... 1% 248K 2m37s
450K .......... .......... .......... .......... .......... 1% 494K 2m30s
500K .......... .......... .......... .......... .......... 1% 147M 2m16s
550K .......... .......... .......... .......... .......... 1% 493K 2m11s
600K .......... .......... .......... .......... .......... 1% 495K 2m7s
650K .......... .......... .......... .......... .......... 1% 494K 2m4s
700K .......... .......... .......... .......... .......... 1% 495K 2m1s
750K .......... .......... .......... .......... .......... 1% 1,30M 1m55s
800K .......... .......... .......... .......... .......... 2% 497K 1m53s
850K .......... .......... .......... .......... .......... 2% 779K 1m50s
900K .......... .......... .......... .......... .......... 2% 1,32M 1m45s
950K .......... .......... .......... .......... .......... 2% 495K 1m44s
1000K .......... .......... .......... .......... .......... 2% 48,8M 99s
1050K .......... .......... .......... .......... .......... 2% 497K 98s
1100K .......... .......... .......... .......... .......... 2% 8,40M 94s
1150K .......... .......... .......... .......... .......... 2% 524K 93s
1200K .......... .......... .......... .......... .......... 3% 786K 91s
1250K .......... .......... .......... .......... .......... 3% 1,31M 89s
1300K .......... .......... .......... .......... .......... 3% 8,46M 86s
1350K .......... .......... .......... .......... .......... 3% 526K 85s
1400K .......... .......... .......... .......... .......... 3% 8,23M 82s
1450K .......... .......... .......... .......... .......... 3% 53,9M 80s
1500K .......... .......... .......... .......... .......... 3% 523K 79s
1550K .......... .......... .......... .......... .......... 3% 10,7M 77s
1600K .......... .......... .......... .......... .......... 3% 865K 76s
1650K .......... .......... .......... .......... .......... 4% 1,12M 75s
1700K .......... .......... .......... .......... .......... 4% 59,8M 72s
1750K .......... .......... .......... .......... .......... 4% 875K 72s
1800K .......... .......... .......... .......... .......... 4% 1,26M 70s
1850K .......... .......... .......... .......... .......... 4% 5,14M 69s
1900K .......... .......... .......... .......... .......... 4% 968K 68s
1950K .......... .......... .......... .......... .......... 4% 1,24M 67s
2000K .......... .......... .......... .......... .......... 4% 4,91M 65s
2050K .......... .......... .......... .......... .......... 5% 969K 65s
2100K .......... .......... .......... .......... .......... 5% 1,13M 64s
2150K .......... .......... .......... .......... .......... 5% 38,0M 62s
2200K .......... .......... .......... .......... .......... 5% 9,06M 61s
2250K .......... .......... .......... .......... .......... 5% 525K 61s
2300K .......... .......... .......... .......... .......... 5% 72,7M 60s
2350K .......... .......... .......... .......... .......... 5% 70,4M 59s
2400K .......... .......... .......... .......... .......... 5% 9,59M 57s
2450K .......... .......... .......... .......... .......... 6% 528K 58s
2500K .......... .......... .......... .......... .......... 6% 62,6M 56s
2550K .......... .......... .......... .......... .......... 6% 10,0M 55s
2600K .......... .......... .......... .......... .......... 6% 88,8M 54s
2650K .......... .......... .......... .......... .......... 6% 521K 55s
2700K .......... .......... .......... .......... .......... 6% 133M 54s
2750K .......... .......... .......... .......... .......... 6% 11,6M 53s
2800K .......... .......... .......... .......... .......... 6% 7,35M 52s
2850K .......... .......... .......... .......... .......... 6% 554K 52s
2900K .......... .......... .......... .......... .......... 7% 22,5M 51s
2950K .......... .......... .......... .......... .......... 7% 18,7M 50s
3000K .......... .......... .......... .......... .......... 7% 8,07M 49s
3050K .......... .......... .......... .......... .......... 7% 548K 50s
3100K .......... .......... .......... .......... .......... 7% 56,1M 49s
3150K .......... .......... .......... .......... .......... 7% 38,2M 48s
3200K .......... .......... .......... .......... .......... 7% 25,9M 47s
3250K .......... .......... .......... .......... .......... 7% 8,37M 46s
3300K .......... .......... .......... .......... .......... 8% 7,57M 46s
3350K .......... .......... .......... .......... .......... 8% 585K 46s
3400K .......... .......... .......... .......... .......... 8% 28,9M 45s
3450K .......... .......... .......... .......... .......... 8% 35,6M 45s
3500K .......... .......... .......... .......... .......... 8% 8,14M 44s
3550K .......... .......... .......... .......... .......... 8% 72,0M 43s
3600K .......... .......... .......... .......... .......... 8% 4,17M 43s
3650K .......... .......... .......... .......... .......... 8% 619K 43s
3700K .......... .......... .......... .......... .......... 9% 28,8M 42s
3750K .......... .......... .......... .......... .......... 9% 8,04M 42s
3800K .......... .......... .......... .......... .......... 9% 57,3M 41s
3850K .......... .......... .......... .......... .......... 9% 12,1M 41s
3900K .......... .......... .......... .......... .......... 9% 6,22M 40s
3950K .......... .......... .......... .......... .......... 9% 620K 40s
4000K .......... .......... .......... .......... .......... 9% 19,1M 40s
4050K .......... .......... .......... .......... .......... 9% 55,1M 39s
4100K .......... .......... .......... .......... .......... 9% 9,63M 39s
4150K .......... .......... .......... .......... .......... 10% 12,0M 38s
4200K .......... .......... .......... .......... .......... 10% 8,14M 38s
4250K .......... .......... .......... .......... .......... 10% 15,8M 37s
4300K .......... .......... .......... .......... .......... 10% 625K 38s
4350K .......... .......... .......... .......... .......... 10% 24,5M 37s
4400K .......... .......... .......... .......... .......... 10% 8,66M 37s
4450K .......... .......... .......... .......... .......... 10% 13,0M 36s
4500K .......... .......... .......... .......... .......... 10% 71,5M 36s
4550K .......... .......... .......... .......... .......... 11% 8,28M 36s
4600K .......... .......... .......... .......... .......... 11% 6,10M 35s
4650K .......... .......... .......... .......... .......... 11% 653K 35s
4700K .......... .......... .......... .......... .......... 11% 50,6M 35s
4750K .......... .......... .......... .......... .......... 11% 8,95M 35s
4800K .......... .......... .......... .......... .......... 11% 11,5M 34s
4850K .......... .......... .......... .......... .......... 11% 8,84M 34s
4900K .......... .......... .......... .......... .......... 11% 53,4M 33s
4950K .......... .......... .......... .......... .......... 12% 7,17M 33s
5000K .......... .......... .......... .......... .......... 12% 53,7M 33s
5050K .......... .......... .......... .......... .......... 12% 649K 33s
5100K .......... .......... .......... .......... .......... 12% 9,07M 33s
5150K .......... .......... .......... .......... .......... 12% 10,7M 32s
5200K .......... .......... .......... .......... .......... 12% 9,40M 32s
5250K .......... .......... .......... .......... .......... 12% 47,5M 32s
5300K .......... .......... .......... .......... .......... 12% 68,6M 31s
5350K .......... .......... .......... .......... .......... 12% 7,06M 31s
5400K .......... .......... .......... .......... .......... 13% 11,4M 31s
5450K .......... .......... .......... .......... .......... 13% 688K 31s
5500K .......... .......... .......... .......... .......... 13% 8,70M 31s
5550K .......... .......... .......... .......... .......... 13% 11,1M 30s
5600K .......... .......... .......... .......... .......... 13% 8,83M 30s
5650K .......... .......... .......... .......... .......... 13% 58,9M 30s
5700K .......... .......... .......... .......... .......... 13% 83,1M 29s
5750K .......... .......... .......... .......... .......... 13% 7,21M 29s
5800K .......... .......... .......... .......... .......... 14% 66,1M 29s
5850K .......... .......... .......... .......... .......... 14% 4,65M 29s
5900K .......... .......... .......... .......... .......... 14% 757K 29s
5950K .......... .......... .......... .......... .......... 14% 7,62M 29s
6000K .......... .......... .......... .......... .......... 14% 10,4M 28s
6050K .......... .......... .......... .......... .......... 14% 8,59M 28s
6100K .......... .......... .......... .......... .......... 14% 51,4M 28s
6150K .......... .......... .......... .......... .......... 14% 74,5M 28s
6200K .......... .......... .......... .......... .......... 15% 6,84M 27s
6250K .......... .......... .......... .......... .......... 15% 67,2M 27s
6300K .......... .......... .......... .......... .......... 15% 5,40M 27s
6350K .......... .......... .......... .......... .......... 15% 63,4M 27s
6400K .......... .......... .......... .......... .......... 15% 706K 27s
6450K .......... .......... .......... .......... .......... 15% 9,08M 27s
6500K .......... .......... .......... .......... .......... 15% 9,43M 26s
6550K .......... .......... .......... .......... .......... 15% 70,0M 26s
6600K .......... .......... .......... .......... .......... 15% 65,4M 26s
6650K .......... .......... .......... .......... .......... 16% 67,7M 26s
6700K .......... .......... .......... .......... .......... 16% 7,02M 25s
6750K .......... .......... .......... .......... .......... 16% 65,8M 25s
6800K .......... .......... .......... .......... .......... 16% 4,77M 25s
6850K .......... .......... .......... .......... .......... 16% 64,7M 25s
6900K .......... .......... .......... .......... .......... 16% 783K 25s
6950K .......... .......... .......... .......... .......... 16% 4,63M 25s
7000K .......... .......... .......... .......... .......... 16% 9,00M 25s
7050K .......... .......... .......... .......... .......... 17% 69,7M 24s
7100K .......... .......... .......... .......... .......... 17% 64,8M 24s
7150K .......... .......... .......... .......... .......... 17% 53,1M 24s
7200K .......... .......... .......... .......... .......... 17% 6,69M 24s
7250K .......... .......... .......... .......... .......... 17% 70,3M 24s
7300K .......... .......... .......... .......... .......... 17% 8,28M 23s
7350K .......... .......... .......... .......... .......... 17% 12,7M 23s
7400K .......... .......... .......... .......... .......... 17% 765K 23s
7450K .......... .......... .......... .......... .......... 18% 9,09M 23s
7500K .......... .......... .......... .......... .......... 18% 4,85M 23s
7550K .......... .......... .......... .......... .......... 18% 61,3M 23s
7600K .......... .......... .......... .......... .......... 18% 61,6M 23s
7650K .......... .......... .......... .......... .......... 18% 74,1M 23s
7700K .......... .......... .......... .......... .......... 18% 73,6M 22s
7750K .......... .......... .......... .......... .......... 18% 7,79M 22s
7800K .......... .......... .......... .......... .......... 18% 49,1M 22s
7850K .......... .......... .......... .......... .......... 18% 72,2M 22s
7900K .......... .......... .......... .......... .......... 19% 8,42M 22s
7950K .......... .......... .......... .......... .......... 19% 732K 22s
8000K .......... .......... .......... .......... .......... 19% 8,99M 22s
8050K .......... .......... .......... .......... .......... 19% 50,7M 22s
8100K .......... .......... .......... .......... .......... 19% 5,19M 21s
8150K .......... .......... .......... .......... .......... 19% 47,4M 21s
8200K .......... .......... .......... .......... .......... 19% 48,4M 21s
8250K .......... .......... .......... .......... .......... 19% 52,5M 21s
8300K .......... .......... .......... .......... .......... 20% 80,5M 21s
8350K .......... .......... .......... .......... .......... 20% 8,32M 21s
8400K .......... .......... .......... .......... .......... 20% 40,0M 21s
8450K .......... .......... .......... .......... .......... 20% 8,81M 20s
8500K .......... .......... .......... .......... .......... 20% 75,7M 20s
8550K .......... .......... .......... .......... .......... 20% 718K 20s
8600K .......... .......... .......... .......... .......... 20% 46,3M 20s
8650K .......... .......... .......... .......... .......... 20% 15,7M 20s
8700K .......... .......... .......... .......... .......... 21% 81,4M 20s
8750K .......... .......... .......... .......... .......... 21% 4,92M 20s
8800K .......... .......... .......... .......... .......... 21% 44,6M 20s
8850K .......... .......... .......... .......... .......... 21% 32,6M 20s
8900K .......... .......... .......... .......... .......... 21% 94,8M 19s
8950K .......... .......... .......... .......... .......... 21% 104M 19s
9000K .......... .......... .......... .......... .......... 21% 8,37M 19s
9050K .......... .......... .......... .......... .......... 21% 77,8M 19s
9100K .......... .......... .......... .......... .......... 21% 76,5M 19s
9150K .......... .......... .......... .......... .......... 22% 88,5M 19s
9200K .......... .......... .......... .......... .......... 22% 4,91M 19s
9250K .......... .......... .......... .......... .......... 22% 762K 19s
9300K .......... .......... .......... .......... .......... 22% 57,2M 19s
9350K .......... .......... .......... .......... .......... 22% 15,2M 19s
9400K .......... .......... .......... .......... .......... 22% 4,79M 18s
9450K .......... .......... .......... .......... .......... 22% 69,4M 18s
9500K .......... .......... .......... .......... .......... 22% 66,2M 18s
9550K .......... .......... .......... .......... .......... 23% 29,9M 18s
9600K .......... .......... .......... .......... .......... 23% 58,8M 18s
9650K .......... .......... .......... .......... .......... 23% 9,77M 18s
9700K .......... .......... .......... .......... .......... 23% 45,1M 18s
9750K .......... .......... .......... .......... .......... 23% 64,3M 18s
9800K .......... .......... .......... .......... .......... 23% 59,4M 18s
9850K .......... .......... .......... .......... .......... 23% 10,2M 17s
9900K .......... .......... .......... .......... .......... 23% 55,9M 17s
9950K .......... .......... .......... .......... .......... 24% 93,7M 17s
10000K .......... .......... .......... .......... .......... 24% 730K 17s
10050K .......... .......... .......... .......... .......... 24% 66,3M 17s
10100K .......... .......... .......... .......... .......... 24% 13,6M 17s
10150K .......... .......... .......... .......... .......... 24% 86,6M 17s
10200K .......... .......... .......... .......... .......... 24% 4,97M 17s
10250K .......... .......... .......... .......... .......... 24% 33,2M 17s
10300K .......... .......... .......... .......... .......... 24% 34,1M 17s
10350K .......... .......... .......... .......... .......... 24% 158M 17s
10400K .......... .......... .......... .......... .......... 25% 65,6M 16s
10450K .......... .......... .......... .......... .......... 25% 9,12M 16s
10500K .......... .......... .......... .......... .......... 25% 101M 16s
10550K .......... .......... .......... .......... .......... 25% 65,6M 16s
10600K .......... .......... .......... .......... .......... 25% 44,4M 16s
10650K .......... .......... .......... .......... .......... 25% 8,78M 16s
10700K .......... .......... .......... .......... .......... 25% 97,5M 16s
10750K .......... .......... .......... .......... .......... 25% 7,92M 16s
10800K .......... .......... .......... .......... .......... 26% 6,88M 16s
10850K .......... .......... .......... .......... .......... 26% 886K 16s
10900K .......... .......... .......... .......... .......... 26% 66,7M 16s
10950K .......... .......... .......... .......... .......... 26% 12,5M 16s
11000K .......... .......... .......... .......... .......... 26% 5,70M 16s
11050K .......... .......... .......... .......... .......... 26% 65,8M 15s
11100K .......... .......... .......... .......... .......... 26% 25,5M 15s
11150K .......... .......... .......... .......... .......... 26% 35,3M 15s
11200K .......... .......... .......... .......... .......... 27% 55,0M 15s
11250K .......... .......... .......... .......... .......... 27% 9,19M 15s
11300K .......... .......... .......... .......... .......... 27% 58,9M 15s
11350K .......... .......... .......... .......... .......... 27% 64,1M 15s
11400K .......... .......... .......... .......... .......... 27% 57,1M 15s
11450K .......... .......... .......... .......... .......... 27% 9,39M 15s
11500K .......... .......... .......... .......... .......... 27% 84,9M 15s
11550K .......... .......... .......... .......... .......... 27% 89,1M 15s
11600K .......... .......... .......... .......... .......... 27% 8,04M 15s
11650K .......... .......... .......... .......... .......... 28% 85,4M 14s
11700K .......... .......... .......... .......... .......... 28% 815K 15s
11750K .......... .......... .......... .......... .......... 28% 44,9M 14s
11800K .......... .......... .......... .......... .......... 28% 131M 14s
11850K .......... .......... .......... .......... .......... 28% 12,7M 14s
11900K .......... .......... .......... .......... .......... 28% 5,71M 14s
11950K .......... .......... .......... .......... .......... 28% 19,3M 14s
12000K .......... .......... .......... .......... .......... 28% 22,0M 14s
12050K .......... .......... .......... .......... .......... 29% 111M 14s
12100K .......... .......... .......... .......... .......... 29% 44,5M 14s
12150K .......... .......... .......... .......... .......... 29% 10,8M 14s
12200K .......... .......... .......... .......... .......... 29% 169M 14s
12250K .......... .......... .......... .......... .......... 29% 102M 14s
12300K .......... .......... .......... .......... .......... 29% 97,9M 14s
12350K .......... .......... .......... .......... .......... 29% 8,70M 14s
12400K .......... .......... .......... .......... .......... 29% 47,2M 13s
12450K .......... .......... .......... .......... .......... 30% 9,37M 13s
12500K .......... .......... .......... .......... .......... 30% 77,2M 13s
12550K .......... .......... .......... .......... .......... 30% 44,6M 13s
12600K .......... .......... .......... .......... .......... 30% 84,0M 13s
12650K .......... .......... .......... .......... .......... 30% 2,51M 13s
12700K .......... .......... .......... .......... .......... 30% 1,15M 13s
12750K .......... .......... .......... .......... .......... 30% 60,1M 13s
12800K .......... .......... .......... .......... .......... 30% 12,1M 13s
12850K .......... .......... .......... .......... .......... 30% 5,66M 13s
12900K .......... .......... .......... .......... .......... 31% 22,1M 13s
12950K .......... .......... .......... .......... .......... 31% 56,1M 13s
13000K .......... .......... .......... .......... .......... 31% 27,4M 13s
13050K .......... .......... .......... .......... .......... 31% 45,7M 13s
13100K .......... .......... .......... .......... .......... 31% 10,4M 13s
13150K .......... .......... .......... .......... .......... 31% 69,7M 13s
13200K .......... .......... .......... .......... .......... 31% 60,2M 13s
13250K .......... .......... .......... .......... .......... 31% 39,8M 12s
13300K .......... .......... .......... .......... .......... 32% 11,8M 12s
13350K .......... .......... .......... .......... .......... 32% 66,0M 12s
13400K .......... .......... .......... .......... .......... 32% 48,4M 12s
13450K .......... .......... .......... .......... .......... 32% 9,81M 12s
13500K .......... .......... .......... .......... .......... 32% 23,9M 12s
13550K .......... .......... .......... .......... .......... 32% 54,2M 12s
13600K .......... .......... .......... .......... .......... 32% 54,2M 12s
13650K .......... .......... .......... .......... .......... 32% 10,8M 12s
13700K .......... .......... .......... .......... .......... 33% 908K 12s
13750K .......... .......... .......... .......... .......... 33% 34,0M 12s
13800K .......... .......... .......... .......... .......... 33% 14,8M 12s
13850K .......... .......... .......... .......... .......... 33% 5,88M 12s
13900K .......... .......... .......... .......... .......... 33% 44,5M 12s
13950K .......... .......... .......... .......... .......... 33% 22,8M 12s
14000K .......... .......... .......... .......... .......... 33% 22,8M 12s
14050K .......... .......... .......... .......... .......... 33% 60,0M 12s
14100K .......... .......... .......... .......... .......... 33% 10,5M 12s
14150K .......... .......... .......... .......... .......... 34% 66,9M 11s
14200K .......... .......... .......... .......... .......... 34% 63,9M 11s
14250K .......... .......... .......... .......... .......... 34% 68,9M 11s
14300K .......... .......... .......... .......... .......... 34% 11,4M 11s
14350K .......... .......... .......... .......... .......... 34% 50,6M 11s
14400K .......... .......... .......... .......... .......... 34% 54,7M 11s
14450K .......... .......... .......... .......... .......... 34% 74,5M 11s
14500K .......... .......... .......... .......... .......... 34% 10,4M 11s
14550K .......... .......... .......... .......... .......... 35% 33,4M 11s
14600K .......... .......... .......... .......... .......... 35% 62,0M 11s
14650K .......... .......... .......... .......... .......... 35% 35,2M 11s
14700K .......... .......... .......... .......... .......... 35% 75,6M 11s
14750K .......... .......... .......... .......... .......... 35% 11,9M 11s
14800K .......... .......... .......... .......... .......... 35% 908K 11s
14850K .......... .......... .......... .......... .......... 35% 37,1M 11s
14900K .......... .......... .......... .......... .......... 35% 12,6M 11s
14950K .......... .......... .......... .......... .......... 36% 7,11M 11s
15000K .......... .......... .......... .......... .......... 36% 13,5M 11s
15050K .......... .......... .......... .......... .......... 36% 71,6M 11s
15100K .......... .......... .......... .......... .......... 36% 24,4M 11s
15150K .......... .......... .......... .......... .......... 36% 69,1M 10s
15200K .......... .......... .......... .......... .......... 36% 63,0M 10s
15250K .......... .......... .......... .......... .......... 36% 10,1M 10s
15300K .......... .......... .......... .......... .......... 36% 37,9M 10s
15350K .......... .......... .......... .......... .......... 36% 69,2M 10s
15400K .......... .......... .......... .......... .......... 37% 68,1M 10s
15450K .......... .......... .......... .......... .......... 37% 10,4M 10s
15500K .......... .......... .......... .......... .......... 37% 64,3M 10s
15550K .......... .......... .......... .......... .......... 37% 81,2M 10s
15600K .......... .......... .......... .......... .......... 37% 71,2M 10s
15650K .......... .......... .......... .......... .......... 37% 13,3M 10s
15700K .......... .......... .......... .......... .......... 37% 43,7M 10s
15750K .......... .......... .......... .......... .......... 37% 28,3M 10s
15800K .......... .......... .......... .......... .......... 38% 59,9M 10s
15850K .......... .......... .......... .......... .......... 38% 84,3M 10s
15900K .......... .......... .......... .......... .......... 38% 12,2M 10s
15950K .......... .......... .......... .......... .......... 38% 8,59M 10s
16000K .......... .......... .......... .......... .......... 38% 926K 10s
16050K .......... .......... .......... .......... .......... 38% 65,0M 10s
16100K .......... .......... .......... .......... .......... 38% 70,3M 10s
16150K .......... .......... .......... .......... .......... 38% 7,79M 10s
16200K .......... .......... .......... .......... .......... 39% 14,6M 10s
16250K .......... .......... .......... .......... .......... 39% 71,5M 10s
16300K .......... .......... .......... .......... .......... 39% 21,6M 9s
16350K .......... .......... .......... .......... .......... 39% 73,9M 9s
16400K .......... .......... .......... .......... .......... 39% 56,4M 9s
16450K .......... .......... .......... .......... .......... 39% 9,36M 9s
16500K .......... .......... .......... .......... .......... 39% 69,8M 9s
16550K .......... .......... .......... .......... .......... 39% 67,0M 9s
16600K .......... .......... .......... .......... .......... 39% 58,4M 9s
16650K .......... .......... .......... .......... .......... 40% 9,56M 9s
16700K .......... .......... .......... .......... .......... 40% 71,2M 9s
16750K .......... .......... .......... .......... .......... 40% 74,3M 9s
16800K .......... .......... .......... .......... .......... 40% 63,4M 9s
16850K .......... .......... .......... .......... .......... 40% 17,3M 9s
16900K .......... .......... .......... .......... .......... 40% 60,6M 9s
16950K .......... .......... .......... .......... .......... 40% 67,8M 9s
17000K .......... .......... .......... .......... .......... 40% 30,6M 9s
17050K .......... .......... .......... .......... .......... 41% 44,2M 9s
17100K .......... .......... .......... .......... .......... 41% 92,3M 9s
17150K .......... .......... .......... .......... .......... 41% 87,8M 9s
17200K .......... .......... .......... .......... .......... 41% 14,1M 9s
17250K .......... .......... .......... .......... .......... 41% 1,92M 9s
17300K .......... .......... .......... .......... .......... 41% 1,41M 9s
17350K .......... .......... .......... .......... .......... 41% 72,0M 9s
17400K .......... .......... .......... .......... .......... 41% 61,9M 9s
17450K .......... .......... .......... .......... .......... 42% 7,98M 9s
17500K .......... .......... .......... .......... .......... 42% 18,0M 9s
17550K .......... .......... .......... .......... .......... 42% 18,5M 9s
17600K .......... .......... .......... .......... .......... 42% 60,6M 8s
17650K .......... .......... .......... .......... .......... 42% 74,3M 8s
17700K .......... .......... .......... .......... .......... 42% 71,4M 8s
17750K .......... .......... .......... .......... .......... 42% 9,08M 8s
17800K .......... .......... .......... .......... .......... 42% 67,1M 8s
17850K .......... .......... .......... .......... .......... 42% 88,4M 8s
17900K .......... .......... .......... .......... .......... 43% 63,0M 8s
17950K .......... .......... .......... .......... .......... 43% 90,2M 8s
18000K .......... .......... .......... .......... .......... 43% 9,69M 8s
18050K .......... .......... .......... .......... .......... 43% 90,6M 8s
18100K .......... .......... .......... .......... .......... 43% 88,4M 8s
18150K .......... .......... .......... .......... .......... 43% 83,2M 8s
18200K .......... .......... .......... .......... .......... 43% 20,2M 8s
18250K .......... .......... .......... .......... .......... 43% 55,5M 8s
18300K .......... .......... .......... .......... .......... 44% 24,3M 8s
18350K .......... .......... .......... .......... .......... 44% 100M 8s
18400K .......... .......... .......... .......... .......... 44% 31,8M 8s
18450K .......... .......... .......... .......... .......... 44% 90,8M 8s
18500K .......... .......... .......... .......... .......... 44% 16,1M 8s
18550K .......... .......... .......... .......... .......... 44% 4,01M 8s
18600K .......... .......... .......... .......... .......... 44% 60,9M 8s
18650K .......... .......... .......... .......... .......... 44% 3,78M 8s
18700K .......... .......... .......... .......... .......... 45% 1,39M 8s
18750K .......... .......... .......... .......... .......... 45% 8,10M 8s
18800K .......... .......... .......... .......... .......... 45% 60,9M 8s
18850K .......... .......... .......... .......... .......... 45% 69,6M 8s
18900K .......... .......... .......... .......... .......... 45% 15,8M 8s
18950K .......... .......... .......... .......... .......... 45% 22,2M 8s
19000K .......... .......... .......... .......... .......... 45% 63,8M 8s
19050K .......... .......... .......... .......... .......... 45% 73,8M 7s
19100K .......... .......... .......... .......... .......... 45% 75,6M 7s
19150K .......... .......... .......... .......... .......... 46% 10,4M 7s
19200K .......... .......... .......... .......... .......... 46% 48,1M 7s
19250K .......... .......... .......... .......... .......... 46% 34,6M 7s
19300K .......... .......... .......... .......... .......... 46% 108M 7s
19350K .......... .......... .......... .......... .......... 46% 121M 7s
19400K .......... .......... .......... .......... .......... 46% 10,9M 7s
19450K .......... .......... .......... .......... .......... 46% 42,3M 7s
19500K .......... .......... .......... .......... .......... 46% 63,6M 7s
19550K .......... .......... .......... .......... .......... 47% 73,5M 7s
19600K .......... .......... .......... .......... .......... 47% 25,8M 7s
19650K .......... .......... .......... .......... .......... 47% 56,0M 7s
19700K .......... .......... .......... .......... .......... 47% 49,8M 7s
19750K .......... .......... .......... .......... .......... 47% 52,2M 7s
19800K .......... .......... .......... .......... .......... 47% 61,9M 7s
19850K .......... .......... .......... .......... .......... 47% 34,3M 7s
19900K .......... .......... .......... .......... .......... 47% 50,3M 7s
19950K .......... .......... .......... .......... .......... 48% 25,2M 7s
20000K .......... .......... .......... .......... .......... 48% 7,45M 7s
20050K .......... .......... .......... .......... .......... 48% 8,22M 7s
20100K .......... .......... .......... .......... .......... 48% 3,67M 7s
20150K .......... .......... .......... .......... .......... 48% 3,41M 7s
20200K .......... .......... .......... .......... .......... 48% 1,78M 7s
20250K .......... .......... .......... .......... .......... 48% 66,9M 7s
20300K .......... .......... .......... .......... .......... 48% 74,2M 7s
20350K .......... .......... .......... .......... .......... 48% 12,8M 7s
20400K .......... .......... .......... .......... .......... 49% 29,9M 7s
20450K .......... .......... .......... .......... .......... 49% 50,4M 7s
20500K .......... .......... .......... .......... .......... 49% 63,1M 7s
20550K .......... .......... .......... .......... .......... 49% 63,9M 7s
20600K .......... .......... .......... .......... .......... 49% 15,6M 7s
20650K .......... .......... .......... .......... .......... 49% 21,4M 7s
20700K .......... .......... .......... .......... .......... 49% 54,6M 6s
20750K .......... .......... .......... .......... .......... 49% 78,0M 6s
20800K .......... .......... .......... .......... .......... 50% 93,0M 6s
20850K .......... .......... .......... .......... .......... 50% 115M 6s
20900K .......... .......... .......... .......... .......... 50% 13,9M 6s
20950K .......... .......... .......... .......... .......... 50% 91,8M 6s
21000K .......... .......... .......... .......... .......... 50% 33,4M 6s
21050K .......... .......... .......... .......... .......... 50% 116M 6s
21100K .......... .......... .......... .......... .......... 50% 28,1M 6s
21150K .......... .......... .......... .......... .......... 50% 113M 6s
21200K .......... .......... .......... .......... .......... 51% 39,4M 6s
21250K .......... .......... .......... .......... .......... 51% 108M 6s
21300K .......... .......... .......... .......... .......... 51% 30,8M 6s
21350K .......... .......... .......... .......... .......... 51% 64,5M 6s
21400K .......... .......... .......... .......... .......... 51% 75,7M 6s
21450K .......... .......... .......... .......... .......... 51% 81,5M 6s
21500K .......... .......... .......... .......... .......... 51% 16,2M 6s
21550K .......... .......... .......... .......... .......... 51% 107M 6s
21600K .......... .......... .......... .......... .......... 51% 4,12M 6s
21650K .......... .......... .......... .......... .......... 52% 80,1M 6s
21700K .......... .......... .......... .......... .......... 52% 3,73M 6s
21750K .......... .......... .......... .......... .......... 52% 5,47M 6s
21800K .......... .......... .......... .......... .......... 52% 1,50M 6s
21850K .......... .......... .......... .......... .......... 52% 48,4M 6s
21900K .......... .......... .......... .......... .......... 52% 65,3M 6s
21950K .......... .......... .......... .......... .......... 52% 12,9M 6s
22000K .......... .......... .......... .......... .......... 52% 34,5M 6s
22050K .......... .......... .......... .......... .......... 53% 79,9M 6s
22100K .......... .......... .......... .......... .......... 53% 75,7M 6s
22150K .......... .......... .......... .......... .......... 53% 92,5M 6s
22200K .......... .......... .......... .......... .......... 53% 14,2M 6s
22250K .......... .......... .......... .......... .......... 53% 78,3M 6s
22300K .......... .......... .......... .......... .......... 53% 23,3M 6s
22350K .......... .......... .......... .......... .......... 53% 51,2M 6s
22400K .......... .......... .......... .......... .......... 53% 35,1M 6s
22450K .......... .......... .......... .......... .......... 54% 59,3M 6s
22500K .......... .......... .......... .......... .......... 54% 84,3M 6s
22550K .......... .......... .......... .......... .......... 54% 22,4M 6s
22600K .......... .......... .......... .......... .......... 54% 66,5M 5s
22650K .......... .......... .......... .......... .......... 54% 37,8M 5s
22700K .......... .......... .......... .......... .......... 54% 81,6M 5s
22750K .......... .......... .......... .......... .......... 54% 68,9M 5s
22800K .......... .......... .......... .......... .......... 54% 29,8M 5s
22850K .......... .......... .......... .......... .......... 54% 49,7M 5s
22900K .......... .......... .......... .......... .......... 55% 68,8M 5s
22950K .......... .......... .......... .......... .......... 55% 44,2M 5s
23000K .......... .......... .......... .......... .......... 55% 56,1M 5s
23050K .......... .......... .......... .......... .......... 55% 88,3M 5s
23100K .......... .......... .......... .......... .......... 55% 87,2M 5s
23150K .......... .......... .......... .......... .......... 55% 75,9M 5s
23200K .......... .......... .......... .......... .......... 55% 20,9M 5s
23250K .......... .......... .......... .......... .......... 55% 65,3M 5s
23300K .......... .......... .......... .......... .......... 56% 99,4M 5s
23350K .......... .......... .......... .......... .......... 56% 4,19M 5s
23400K .......... .......... .......... .......... .......... 56% 6,24M 5s
23450K .......... .......... .......... .......... .......... 56% 2,81M 5s
23500K .......... .......... .......... .......... .......... 56% 6,61M 5s
23550K .......... .......... .......... .......... .......... 56% 2,22M 5s
23600K .......... .......... .......... .......... .......... 56% 31,8M 5s
23650K .......... .......... .......... .......... .......... 56% 13,2M 5s
23700K .......... .......... .......... .......... .......... 57% 27,7M 5s
23750K .......... .......... .......... .......... .......... 57% 38,7M 5s
23800K .......... .......... .......... .......... .......... 57% 56,6M 5s
23850K .......... .......... .......... .......... .......... 57% 71,8M 5s
23900K .......... .......... .......... .......... .......... 57% 20,8M 5s
23950K .......... .......... .......... .......... .......... 57% 42,8M 5s
24000K .......... .......... .......... .......... .......... 57% 60,5M 5s
24050K .......... .......... .......... .......... .......... 57% 58,8M 5s
24100K .......... .......... .......... .......... .......... 57% 31,7M 5s
24150K .......... .......... .......... .......... .......... 58% 56,4M 5s
24200K .......... .......... .......... .......... .......... 58% 94,3M 5s
24250K .......... .......... .......... .......... .......... 58% 154M 5s
24300K .......... .......... .......... .......... .......... 58% 166M 5s
24350K .......... .......... .......... .......... .......... 58% 21,3M 5s
24400K .......... .......... .......... .......... .......... 58% 28,9M 5s
24450K .......... .......... .......... .......... .......... 58% 60,2M 5s
24500K .......... .......... .......... .......... .......... 58% 99,0M 5s
24550K .......... .......... .......... .......... .......... 59% 51,9M 5s
24600K .......... .......... .......... .......... .......... 59% 109M 5s
24650K .......... .......... .......... .......... .......... 59% 24,6M 5s
24700K .......... .......... .......... .......... .......... 59% 78,5M 5s
24750K .......... .......... .......... .......... .......... 59% 150M 5s
24800K .......... .......... .......... .......... .......... 59% 58,7M 5s
24850K .......... .......... .......... .......... .......... 59% 60,5M 4s
24900K .......... .......... .......... .......... .......... 59% 95,2M 4s
24950K .......... .......... .......... .......... .......... 60% 98,6M 4s
25000K .......... .......... .......... .......... .......... 60% 88,9M 4s
25050K .......... .......... .......... .......... .......... 60% 23,0M 4s
25100K .......... .......... .......... .......... .......... 60% 61,5M 4s
25150K .......... .......... .......... .......... .......... 60% 105M 4s
25200K .......... .......... .......... .......... .......... 60% 6,64M 4s
25250K .......... .......... .......... .......... .......... 60% 7,11M 4s
25300K .......... .......... .......... .......... .......... 60% 4,75M 4s
25350K .......... .......... .......... .......... .......... 60% 2,81M 4s
25400K .......... .......... .......... .......... .......... 61% 50,6M 4s
25450K .......... .......... .......... .......... .......... 61% 2,10M 4s
25500K .......... .......... .......... .......... .......... 61% 26,6M 4s
25550K .......... .......... .......... .......... .......... 61% 13,6M 4s
25600K .......... .......... .......... .......... .......... 61% 16,6M 4s
25650K .......... .......... .......... .......... .......... 61% 37,4M 4s
25700K .......... .......... .......... .......... .......... 61% 69,9M 4s
25750K .......... .......... .......... .......... .......... 61% 75,8M 4s
25800K .......... .......... .......... .......... .......... 62% 32,8M 4s
25850K .......... .......... .......... .......... .......... 62% 92,0M 4s
25900K .......... .......... .......... .......... .......... 62% 163M 4s
25950K .......... .......... .......... .......... .......... 62% 30,3M 4s
26000K .......... .......... .......... .......... .......... 62% 35,2M 4s
26050K .......... .......... .......... .......... .......... 62% 95,9M 4s
26100K .......... .......... .......... .......... .......... 62% 55,0M 4s
26150K .......... .......... .......... .......... .......... 62% 105M 4s
26200K .......... .......... .......... .......... .......... 63% 142M 4s
26250K .......... .......... .......... .......... .......... 63% 111M 4s
26300K .......... .......... .......... .......... .......... 63% 17,8M 4s
26350K .......... .......... .......... .......... .......... 63% 150M 4s
26400K .......... .......... .......... .......... .......... 63% 41,1M 4s
26450K .......... .......... .......... .......... .......... 63% 40,0M 4s
26500K .......... .......... .......... .......... .......... 63% 90,6M 4s
26550K .......... .......... .......... .......... .......... 63% 91,6M 4s
26600K .......... .......... .......... .......... .......... 63% 69,6M 4s
26650K .......... .......... .......... .......... .......... 64% 24,8M 4s
26700K .......... .......... .......... .......... .......... 64% 94,8M 4s
26750K .......... .......... .......... .......... .......... 64% 83,2M 4s
26800K .......... .......... .......... .......... .......... 64% 42,4M 4s
26850K .......... .......... .......... .......... .......... 64% 88,3M 4s
26900K .......... .......... .......... .......... .......... 64% 88,8M 4s
26950K .......... .......... .......... .......... .......... 64% 91,1M 4s
27000K .......... .......... .......... .......... .......... 64% 35,7M 4s
27050K .......... .......... .......... .......... .......... 65% 88,5M 4s
27100K .......... .......... .......... .......... .......... 65% 83,5M 4s
27150K .......... .......... .......... .......... .......... 65% 84,8M 4s
27200K .......... .......... .......... .......... .......... 65% 6,73M 4s
27250K .......... .......... .......... .......... .......... 65% 9,14M 4s
27300K .......... .......... .......... .......... .......... 65% 28,7M 4s
27350K .......... .......... .......... .......... .......... 65% 4,70M 4s
27400K .......... .......... .......... .......... .......... 65% 2,82M 4s
27450K .......... .......... .......... .......... .......... 66% 6,37M 4s
27500K .......... .......... .......... .......... .......... 66% 3,01M 3s
27550K .......... .......... .......... .......... .......... 66% 21,2M 3s
27600K .......... .......... .......... .......... .......... 66% 13,7M 3s
27650K .......... .......... .......... .......... .......... 66% 14,9M 3s
27700K .......... .......... .......... .......... .......... 66% 55,1M 3s
27750K .......... .......... .......... .......... .......... 66% 55,6M 3s
27800K .......... .......... .......... .......... .......... 66% 67,1M 3s
27850K .......... .......... .......... .......... .......... 66% 88,1M 3s
27900K .......... .......... .......... .......... .......... 67% 61,5M 3s
27950K .......... .......... .......... .......... .......... 67% 78,6M 3s
28000K .......... .......... .......... .......... .......... 67% 28,8M 3s
28050K .......... .......... .......... .......... .......... 67% 42,3M 3s
28100K .......... .......... .......... .......... .......... 67% 46,7M 3s
28150K .......... .......... .......... .......... .......... 67% 97,7M 3s
28200K .......... .......... .......... .......... .......... 67% 72,4M 3s
28250K .......... .......... .......... .......... .......... 67% 101M 3s
28300K .......... .......... .......... .......... .......... 68% 104M 3s
28350K .......... .......... .......... .......... .......... 68% 121M 3s
28400K .......... .......... .......... .......... .......... 68% 21,7M 3s
28450K .......... .......... .......... .......... .......... 68% 92,8M 3s
28500K .......... .......... .......... .......... .......... 68% 99,8M 3s
28550K .......... .......... .......... .......... .......... 68% 33,8M 3s
28600K .......... .......... .......... .......... .......... 68% 114M 3s
28650K .......... .......... .......... .......... .......... 68% 83,6M 3s
28700K .......... .......... .......... .......... .......... 69% 142M 3s
28750K .......... .......... .......... .......... .......... 69% 126M 3s
28800K .......... .......... .......... .......... .......... 69% 9,03M 3s
28850K .......... .......... .......... .......... .......... 69% 115M 3s
28900K .......... .......... .......... .......... .......... 69% 101M 3s
28950K .......... .......... .......... .......... .......... 69% 83,4M 3s
29000K .......... .......... .......... .......... .......... 69% 88,0M 3s
29050K .......... .......... .......... .......... .......... 69% 94,5M 3s
29100K .......... .......... .......... .......... .......... 69% 122M 3s
29150K .......... .......... .......... .......... .......... 70% 97,3M 3s
29200K .......... .......... .......... .......... .......... 70% 91,8M 3s
29250K .......... .......... .......... .......... .......... 70% 113M 3s
29300K .......... .......... .......... .......... .......... 70% 35,7M 3s
29350K .......... .......... .......... .......... .......... 70% 19,6M 3s
29400K .......... .......... .......... .......... .......... 70% 110M 3s
29450K .......... .......... .......... .......... .......... 70% 22,9M 3s
29500K .......... .......... .......... .......... .......... 70% 6,27M 3s
29550K .......... .......... .......... .......... .......... 71% 5,42M 3s
29600K .......... .......... .......... .......... .......... 71% 5,40M 3s
29650K .......... .......... .......... .......... .......... 71% 5,61M 3s
29700K .......... .......... .......... .......... .......... 71% 3,47M 3s
29750K .......... .......... .......... .......... .......... 71% 3,94M 3s
29800K .......... .......... .......... .......... .......... 71% 17,8M 3s
29850K .......... .......... .......... .......... .......... 71% 50,3M 3s
29900K .......... .......... .......... .......... .......... 71% 15,4M 3s
29950K .......... .......... .......... .......... .......... 72% 56,6M 3s
30000K .......... .......... .......... .......... .......... 72% 39,4M 3s
30050K .......... .......... .......... .......... .......... 72% 62,8M 3s
30100K .......... .......... .......... .......... .......... 72% 49,8M 3s
30150K .......... .......... .......... .......... .......... 72% 75,4M 3s
30200K .......... .......... .......... .......... .......... 72% 63,8M 3s
30250K .......... .......... .......... .......... .......... 72% 102M 3s
30300K .......... .......... .......... .......... .......... 72% 79,7M 3s
30350K .......... .......... .......... .......... .......... 72% 58,3M 3s
30400K .......... .......... .......... .......... .......... 73% 36,5M 3s
30450K .......... .......... .......... .......... .......... 73% 123M 3s
30500K .......... .......... .......... .......... .......... 73% 21,5M 3s
30550K .......... .......... .......... .......... .......... 73% 122M 3s
30600K .......... .......... .......... .......... .......... 73% 121M 2s
30650K .......... .......... .......... .......... .......... 73% 83,1M 2s
30700K .......... .......... .......... .......... .......... 73% 122M 2s
30750K .......... .......... .......... .......... .......... 73% 71,4M 2s
30800K .......... .......... .......... .......... .......... 74% 30,6M 2s
30850K .......... .......... .......... .......... .......... 74% 132M 2s
30900K .......... .......... .......... .......... .......... 74% 89,6M 2s
30950K .......... .......... .......... .......... .......... 74% 115M 2s
31000K .......... .......... .......... .......... .......... 74% 117M 2s
31050K .......... .......... .......... .......... .......... 74% 90,4M 2s
31100K .......... .......... .......... .......... .......... 74% 9,46M 2s
31150K .......... .......... .......... .......... .......... 74% 108M 2s
31200K .......... .......... .......... .......... .......... 75% 51,7M 2s
31250K .......... .......... .......... .......... .......... 75% 74,9M 2s
31300K .......... .......... .......... .......... .......... 75% 104M 2s
31350K .......... .......... .......... .......... .......... 75% 111M 2s
31400K .......... .......... .......... .......... .......... 75% 102M 2s
31450K .......... .......... .......... .......... .......... 75% 77,7M 2s
31500K .......... .......... .......... .......... .......... 75% 104M 2s
31550K .......... .......... .......... .......... .......... 75% 92,5M 2s
31600K .......... .......... .......... .......... .......... 75% 94,8M 2s
31650K .......... .......... .......... .......... .......... 76% 112M 2s
31700K .......... .......... .......... .......... .......... 76% 23,4M 2s
31750K .......... .......... .......... .......... .......... 76% 95,5M 2s
31800K .......... .......... .......... .......... .......... 76% 21,2M 2s
31850K .......... .......... .......... .......... .......... 76% 7,00M 2s
31900K .......... .......... .......... .......... .......... 76% 5,33M 2s
31950K .......... .......... .......... .......... .......... 76% 98,7M 2s
32000K .......... .......... .......... .......... .......... 76% 5,87M 2s
32050K .......... .......... .......... .......... .......... 77% 3,46M 2s
32100K .......... .......... .......... .......... .......... 77% 3,11M 2s
32150K .......... .......... .......... .......... .......... 77% 8,76M 2s
32200K .......... .......... .......... .......... .......... 77% 47,3M 2s
32250K .......... .......... .......... .......... .......... 77% 17,2M 2s
32300K .......... .......... .......... .......... .......... 77% 13,4M 2s
32350K .......... .......... .......... .......... .......... 77% 80,2M 2s
32400K .......... .......... .......... .......... .......... 77% 75,5M 2s
32450K .......... .......... .......... .......... .......... 78% 96,5M 2s
32500K .......... .......... .......... .......... .......... 78% 63,6M 2s
32550K .......... .......... .......... .......... .......... 78% 100M 2s
32600K .......... .......... .......... .......... .......... 78% 30,2M 2s
32650K .......... .......... .......... .......... .......... 78% 79,5M 2s
32700K .......... .......... .......... .......... .......... 78% 91,0M 2s
32750K .......... .......... .......... .......... .......... 78% 44,3M 2s
32800K .......... .......... .......... .......... .......... 78% 49,2M 2s
32850K .......... .......... .......... .......... .......... 78% 86,4M 2s
32900K .......... .......... .......... .......... .......... 79% 20,8M 2s
32950K .......... .......... .......... .......... .......... 79% 50,1M 2s
33000K .......... .......... .......... .......... .......... 79% 86,0M 2s
33050K .......... .......... .......... .......... .......... 79% 118M 2s
33100K .......... .......... .......... .......... .......... 79% 121M 2s
33150K .......... .......... .......... .......... .......... 79% 128M 2s
33200K .......... .......... .......... .......... .......... 79% 103M 2s
33250K .......... .......... .......... .......... .......... 79% 121M 2s
33300K .......... .......... .......... .......... .......... 80% 39,0M 2s
33350K .......... .......... .......... .......... .......... 80% 114M 2s
33400K .......... .......... .......... .......... .......... 80% 95,3M 2s
33450K .......... .......... .......... .......... .......... 80% 86,6M 2s
33500K .......... .......... .......... .......... .......... 80% 116M 2s
33550K .......... .......... .......... .......... .......... 80% 11,0M 2s
33600K .......... .......... .......... .......... .......... 80% 76,4M 2s
33650K .......... .......... .......... .......... .......... 80% 124M 2s
33700K .......... .......... .......... .......... .......... 81% 43,7M 2s
33750K .......... .......... .......... .......... .......... 81% 103M 2s
33800K .......... .......... .......... .......... .......... 81% 86,7M 2s
33850K .......... .......... .......... .......... .......... 81% 90,0M 2s
33900K .......... .......... .......... .......... .......... 81% 47,6M 2s
33950K .......... .......... .......... .......... .......... 81% 98,9M 2s
34000K .......... .......... .......... .......... .......... 81% 79,3M 2s
34050K .......... .......... .......... .......... .......... 81% 93,2M 2s
34100K .......... .......... .......... .......... .......... 82% 96,5M 2s
34150K .......... .......... .......... .......... .......... 82% 95,0M 2s
34200K .......... .......... .......... .......... .......... 82% 52,0M 2s
34250K .......... .......... .......... .......... .......... 82% 104M 2s
34300K .......... .......... .......... .......... .......... 82% 93,2M 2s
34350K .......... .......... .......... .......... .......... 82% 25,0M 1s
34400K .......... .......... .......... .......... .......... 82% 7,35M 1s
34450K .......... .......... .......... .......... .......... 82% 5,23M 1s
34500K .......... .......... .......... .......... .......... 82% 6,79M 1s
34550K .......... .......... .......... .......... .......... 83% 99,1M 1s
34600K .......... .......... .......... .......... .......... 83% 3,23M 1s
34650K .......... .......... .......... .......... .......... 83% 3,34M 1s
34700K .......... .......... .......... .......... .......... 83% 6,32M 1s
34750K .......... .......... .......... .......... .......... 83% 18,3M 1s
34800K .......... .......... .......... .......... .......... 83% 12,6M 1s
34850K .......... .......... .......... .......... .......... 83% 40,4M 1s
34900K .......... .......... .......... .......... .......... 83% 68,0M 1s
34950K .......... .......... .......... .......... .......... 84% 58,3M 1s
35000K .......... .......... .......... .......... .......... 84% 45,2M 1s
35050K .......... .......... .......... .......... .......... 84% 63,1M 1s
35100K .......... .......... .......... .......... .......... 84% 54,5M 1s
35150K .......... .......... .......... .......... .......... 84% 64,2M 1s
35200K .......... .......... .......... .......... .......... 84% 74,6M 1s
35250K .......... .......... .......... .......... .......... 84% 120M 1s
35300K .......... .......... .......... .......... .......... 84% 95,9M 1s
35350K .......... .......... .......... .......... .......... 85% 102M 1s
35400K .......... .......... .......... .......... .......... 85% 117M 1s
35450K .......... .......... .......... .......... .......... 85% 124M 1s
35500K .......... .......... .......... .......... .......... 85% 139M 1s
35550K .......... .......... .......... .......... .......... 85% 18,0M 1s
35600K .......... .......... .......... .......... .......... 85% 98,5M 1s
35650K .......... .......... .......... .......... .......... 85% 91,6M 1s
35700K .......... .......... .......... .......... .......... 85% 120M 1s
35750K .......... .......... .......... .......... .......... 85% 120M 1s
35800K .......... .......... .......... .......... .......... 86% 107M 1s
35850K .......... .......... .......... .......... .......... 86% 118M 1s
35900K .......... .......... .......... .......... .......... 86% 83,0M 1s
35950K .......... .......... .......... .......... .......... 86% 94,1M 1s
36000K .......... .......... .......... .......... .......... 86% 69,9M 1s
36050K .......... .......... .......... .......... .......... 86% 81,4M 1s
36100K .......... .......... .......... .......... .......... 86% 117M 1s
36150K .......... .......... .......... .......... .......... 86% 89,9M 1s
36200K .......... .......... .......... .......... .......... 87% 83,4M 1s
36250K .......... .......... .......... .......... .......... 87% 14,0M 1s
36300K .......... .......... .......... .......... .......... 87% 84,0M 1s
36350K .......... .......... .......... .......... .......... 87% 27,5M 1s
36400K .......... .......... .......... .......... .......... 87% 94,0M 1s
36450K .......... .......... .......... .......... .......... 87% 91,9M 1s
36500K .......... .......... .......... .......... .......... 87% 47,3M 1s
36550K .......... .......... .......... .......... .......... 87% 98,3M 1s
36600K .......... .......... .......... .......... .......... 88% 88,5M 1s
36650K .......... .......... .......... .......... .......... 88% 102M 1s
36700K .......... .......... .......... .......... .......... 88% 97,9M 1s
36750K .......... .......... .......... .......... .......... 88% 127M 1s
36800K .......... .......... .......... .......... .......... 88% 57,2M 1s
36850K .......... .......... .......... .......... .......... 88% 95,7M 1s
36900K .......... .......... .......... .......... .......... 88% 88,0M 1s
36950K .......... .......... .......... .......... .......... 88% 84,0M 1s
37000K .......... .......... .......... .......... .......... 88% 38,4M 1s
37050K .......... .......... .......... .......... .......... 89% 96,2M 1s
37100K .......... .......... .......... .......... .......... 89% 10,9M 1s
37150K .......... .......... .......... .......... .......... 89% 19,7M 1s
37200K .......... .......... .......... .......... .......... 89% 5,09M 1s
37250K .......... .......... .......... .......... .......... 89% 7,41M 1s
37300K .......... .......... .......... .......... .......... 89% 3,85M 1s
37350K .......... .......... .......... .......... .......... 89% 4,88M 1s
37400K .......... .......... .......... .......... .......... 89% 133M 1s
37450K .......... .......... .......... .......... .......... 90% 3,40M 1s
37500K .......... .......... .......... .......... .......... 90% 17,3M 1s
37550K .......... .......... .......... .......... .......... 90% 11,2M 1s
37600K .......... .......... .......... .......... .......... 90% 123M 1s
37650K .......... .......... .......... .......... .......... 90% 92,4M 1s
37700K .......... .......... .......... .......... .......... 90% 68,4M 1s
37750K .......... .......... .......... .......... .......... 90% 62,4M 1s
37800K .......... .......... .......... .......... .......... 90% 59,1M 1s
37850K .......... .......... .......... .......... .......... 91% 65,5M 1s
37900K .......... .......... .......... .......... .......... 91% 55,8M 1s
37950K .......... .......... .......... .......... .......... 91% 66,4M 1s
38000K .......... .......... .......... .......... .......... 91% 56,0M 1s
38050K .......... .......... .......... .......... .......... 91% 61,3M 1s
38100K .......... .......... .......... .......... .......... 91% 60,9M 1s
38150K .......... .......... .......... .......... .......... 91% 65,8M 1s
38200K .......... .......... .......... .......... .......... 91% 57,1M 1s
38250K .......... .......... .......... .......... .......... 91% 67,8M 1s
38300K .......... .......... .......... .......... .......... 92% 74,7M 1s
38350K .......... .......... .......... .......... .......... 92% 26,4M 1s
38400K .......... .......... .......... .......... .......... 92% 70,8M 1s
38450K .......... .......... .......... .......... .......... 92% 177M 1s
38500K .......... .......... .......... .......... .......... 92% 103M 1s
38550K .......... .......... .......... .......... .......... 92% 96,5M 1s
38600K .......... .......... .......... .......... .......... 92% 92,9M 1s
38650K .......... .......... .......... .......... .......... 92% 179M 1s
38700K .......... .......... .......... .......... .......... 93% 64,0M 1s
38750K .......... .......... .......... .......... .......... 93% 95,7M 1s
38800K .......... .......... .......... .......... .......... 93% 69,1M 1s
38850K .......... .......... .......... .......... .......... 93% 92,3M 1s
38900K .......... .......... .......... .......... .......... 93% 97,2M 1s
38950K .......... .......... .......... .......... .......... 93% 80,6M 0s
39000K .......... .......... .......... .......... .......... 93% 89,0M 0s
39050K .......... .......... .......... .......... .......... 93% 118M 0s
39100K .......... .......... .......... .......... .......... 94% 21,5M 0s
39150K .......... .......... .......... .......... .......... 94% 98,3M 0s
39200K .......... .......... .......... .......... .......... 94% 25,7M 0s
39250K .......... .......... .......... .......... .......... 94% 111M 0s
39300K .......... .......... .......... .......... .......... 94% 64,2M 0s
39350K .......... .......... .......... .......... .......... 94% 75,8M 0s
39400K .......... .......... .......... .......... .......... 94% 64,2M 0s
39450K .......... .......... .......... .......... .......... 94% 72,3M 0s
39500K .......... .......... .......... .......... .......... 94% 72,0M 0s
39550K .......... .......... .......... .......... .......... 95% 69,6M 0s
39600K .......... .......... .......... .......... .......... 95% 75,7M 0s
39650K .......... .......... .......... .......... .......... 95% 72,5M 0s
39700K .......... .......... .......... .......... .......... 95% 74,1M 0s
39750K .......... .......... .......... .......... .......... 95% 69,4M 0s
39800K .......... .......... .......... .......... .......... 95% 61,5M 0s
39850K .......... .......... .......... .......... .......... 95% 70,3M 0s
39900K .......... .......... .......... .......... .......... 95% 76,4M 0s
39950K .......... .......... .......... .......... .......... 96% 93,7M 0s
40000K .......... .......... .......... .......... .......... 96% 73,8M 0s
40050K .......... .......... .......... .......... .......... 96% 11,3M 0s
40100K .......... .......... .......... .......... .......... 96% 5,42M 0s
40150K .......... .......... .......... .......... .......... 96% 6,38M 0s
40200K .......... .......... .......... .......... .......... 96% 37,9M 0s
40250K .......... .......... .......... .......... .......... 96% 4,09M 0s
40300K .......... .......... .......... .......... .......... 96% 4,75M 0s
40350K .......... .......... .......... .......... .......... 97% 3,60M 0s
40400K .......... .......... .......... .......... .......... 97% 16,7M 0s
40450K .......... .......... .......... .......... .......... 97% 78,3M 0s
40500K .......... .......... .......... .......... .......... 97% 10,4M 0s
40550K .......... .......... .......... .......... .......... 97% 50,6M 0s
40600K .......... .......... .......... .......... .......... 97% 96,0M 0s
40650K .......... .......... .......... .......... .......... 97% 101M 0s
40700K .......... .......... .......... .......... .......... 97% 114M 0s
40750K .......... .......... .......... .......... .......... 97% 125M 0s
40800K .......... .......... .......... .......... .......... 98% 81,4M 0s
40850K .......... .......... .......... .......... .......... 98% 107M 0s
40900K .......... .......... .......... .......... .......... 98% 107M 0s
40950K .......... .......... .......... .......... .......... 98% 75,1M 0s
41000K .......... .......... .......... .......... .......... 98% 108M 0s
41050K .......... .......... .......... .......... .......... 98% 62,9M 0s
41100K .......... .......... .......... .......... .......... 98% 51,6M 0s
41150K .......... .......... .......... .......... .......... 98% 73,4M 0s
41200K .......... .......... .......... .......... .......... 99% 47,4M 0s
41250K .......... .......... .......... .......... .......... 99% 87,9M 0s
41300K .......... .......... .......... .......... .......... 99% 18,0M 0s
41350K .......... .......... .......... .......... .......... 99% 78,5M 0s
41400K .......... .......... .......... .......... .......... 99% 78,3M 0s
41450K .......... .......... .......... .......... .......... 99% 107M 0s
41500K .......... .......... .......... .......... .......... 99% 73,6M 0s
41550K .......... .......... .......... .......... .......... 99% 50,9M 0s
41600K .......... .......... .......... .......... ...... 100% 122M=7,4s
2014-06-18 13:38:29 (5,52 MB/s) - ‘/home/jwiklund/Documents/.git/annex/tmp/SHA256E-s42645638--4ae41fb29bd26339ea10f53ea2b7cf3132e53d5e8fbfde7b43b912aa52b3d319.tar.gz’ saved [42645638/42645638]
[2014-06-18 13:38:29 CEST] main: Downloaded git-annex.. upgrade)
(checksum...)
[2014-06-18 13:38:29 CEST] Pusher: Syncing with born
(Recording state in git...)
To ssh://jwiklund@born/store/backup/Documents.annex.1/
38006f5..fdae080 git-annex -> synced/git-annex
git-annex version: 5.20140610-g5ec8bcf
build flags: Assistant Webapp Webapp-secure Pairing Testsuite S3 WebDAV Inotify DBus DesktopNotify XMPP DNS Feeds Quvi TDFA CryptoHash
key/value backends: SHA256E SHA1E SHA512E SHA224E SHA384E SKEIN256E SKEIN512E SHA256 SHA1 SHA512 SHA224 SHA384 SKEIN256 SKEIN512 WORM URL
remote types: git gcrypt S3 bup directory rsync web webdav tahoe glacier ddar hook external
local repository version: 5
supported repository version: 5
upgrade supported from repository versions: 0 1 2 4
[2014-06-18 13:38:31 CEST] main: Upgrading git-annex
[2014-06-18 13:38:31 CEST] UpgradeWatcher: A new version of git-annex has been installed.
Already up-to-date.
Already up-to-date.
Already up-to-date.
Already up-to-date.
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
channel 4: bad ext data
# End of transcript or log.
"""]]
> [[fixed|done]]; the merge race has been fixed. The upgrade loop has also
> been dealt with. --[[Joey]]
|