├── .gitattributes ├── .gitignore ├── .gitmodules ├── Merkle-Tree ├── Makefile ├── README.md ├── include │ ├── aio.h │ ├── common.h │ └── sha-256.h ├── results │ ├── fs-1GB_bs-1KB.dat │ └── fs-2MB_bs-1KB.dat ├── scripts │ ├── amplify_gen_full_proof.sh │ ├── get_cert_pk.sh │ ├── statistics.sh │ ├── verify_roughtime.sh │ ├── verify_tls.sh │ └── verify_tls_signatures.py └── src │ ├── common.c │ ├── create_file_and_tags.c │ ├── gen_proof_full.c │ ├── geo_commit.c │ ├── sha-256.c │ └── verify_por_proof.c ├── README.md ├── Shacham-Waters ├── Makefile ├── README.md ├── data │ └── .gitignore ├── include │ ├── aio_helper.h │ ├── audit.h │ ├── common.h │ ├── file.h │ ├── utils.h │ └── vector_commit.h ├── param │ ├── a.param │ ├── d159.param │ ├── f.param │ └── g149.param ├── proofs │ └── .gitignore ├── scripts │ └── roughtime_verify.sh └── src │ ├── audit.c │ ├── create_file_and_tags.c │ ├── file.c │ ├── geo_commit.c │ ├── prove_and_verify.c │ ├── swpor.c │ ├── utils.c │ └── vector_commit.c ├── data ├── ip2location_db5 │ └── README.md └── wonder-network │ ├── city-ping │ ├── cities100000.csv │ ├── cleaned-ping-data-10.csv │ ├── cleaned-ping-data-9.csv │ ├── ping-data.json │ ├── relations_US_Europe │ └── sample-ping-data.json │ └── inter-city │ ├── ping-to-Manhattan-with-populations.csv │ ├── ping-to-blr.xls │ ├── ping-to-blr.xlsx │ ├── ping-to-manhattan.xls │ ├── ping-to-manhattan.xlsx │ ├── ping-to-sfo.xlsx │ └── ping-to-zurich.xlsx ├── deps ├── ccan │ ├── Makefile │ ├── ccan │ │ ├── build_assert │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── build_assert.h │ │ │ └── test │ │ │ │ ├── compile_fail-expr.c │ │ │ │ ├── compile_fail.c │ │ │ │ ├── compile_ok.c │ │ │ │ └── run-BUILD_ASSERT_OR_ZERO.c │ │ ├── check_type │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── check_type.h │ │ │ └── test │ │ │ │ ├── compile_fail-check_type.c │ │ │ │ ├── compile_fail-check_type_unsigned.c │ │ │ │ ├── compile_fail-check_types_match.c │ │ │ │ └── run.c │ │ ├── container_of │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── container_of.h │ │ │ └── test │ │ │ │ ├── compile_fail-bad-type.c │ │ │ │ ├── compile_fail-types.c │ │ │ │ ├── compile_fail-var-types.c │ │ │ │ └── run.c │ │ ├── list │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── list.c │ │ │ ├── list.h │ │ │ └── test │ │ │ │ ├── compile_ok-constant.c │ │ │ │ ├── helper.c │ │ │ │ ├── helper.h │ │ │ │ ├── run-CCAN_LIST_DEBUG.c │ │ │ │ ├── run-check-corrupt.c │ │ │ │ ├── run-check-nonconst.c │ │ │ │ ├── run-list_del_from-assert.c │ │ │ │ ├── run-list_prev-list_next.c │ │ │ │ ├── run-prepend_list.c │ │ │ │ ├── run-single-eval.c │ │ │ │ ├── run-with-debug.c │ │ │ │ └── run.c │ │ ├── minmax │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── minmax.h │ │ │ └── test │ │ │ │ ├── compile_fail-wrongsign.c │ │ │ │ ├── compile_fail-wrongsize.c │ │ │ │ └── run.c │ │ └── str │ │ │ ├── LICENSE │ │ │ ├── _info │ │ │ ├── debug.c │ │ │ ├── str.c │ │ │ ├── str.h │ │ │ ├── str_debug.h │ │ │ └── test │ │ │ ├── compile_fail-STR_MAX_CHARS.c │ │ │ ├── compile_fail-isalnum.c │ │ │ ├── compile_fail-isalpha.c │ │ │ ├── compile_fail-isascii.c │ │ │ ├── compile_fail-isblank.c │ │ │ ├── compile_fail-iscntrl.c │ │ │ ├── compile_fail-isdigit.c │ │ │ ├── compile_fail-islower.c │ │ │ ├── compile_fail-isprint.c │ │ │ ├── compile_fail-ispunct.c │ │ │ ├── compile_fail-isspace.c │ │ │ ├── compile_fail-isupper.c │ │ │ ├── compile_fail-isxdigit.c │ │ │ ├── compile_fail-strchr.c │ │ │ ├── compile_fail-strrchr.c │ │ │ ├── compile_fail-strstr.c │ │ │ ├── compile_ok-STR_MAX_CHARS-static.c │ │ │ ├── debug.c │ │ │ ├── run-STR_MAX_CHARS.c │ │ │ └── run.c │ ├── config.h │ └── licenses │ │ ├── BSD-MIT │ │ └── CC0 ├── roughenough │ ├── .drone.yml │ ├── .github │ │ └── workflows │ │ │ └── rust.yml │ ├── .gitignore │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── Cargo.toml │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── benches │ │ └── roughenough-bench.rs │ ├── doc │ │ ├── OPTIONAL-FEATURES.md │ │ └── rfc-commentary.md │ ├── example.cfg │ └── src │ │ ├── bin │ │ ├── roughenough-client.rs │ │ ├── roughenough-kms.rs │ │ ├── roughenough-server.rs │ │ └── roughenough-verify.rs │ │ ├── config │ │ ├── environment.rs │ │ ├── file.rs │ │ ├── memory.rs │ │ └── mod.rs │ │ ├── error.rs │ │ ├── grease.rs │ │ ├── key │ │ ├── longterm.rs │ │ ├── mod.rs │ │ └── online.rs │ │ ├── kms │ │ ├── awskms.rs │ │ ├── envelope.rs │ │ ├── gcpkms.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── merkle.rs │ │ ├── message.rs │ │ ├── server.rs │ │ ├── sign.rs │ │ ├── stats │ │ ├── aggregated.rs │ │ ├── mod.rs │ │ └── per_client.rs │ │ └── tag.rs └── tlse-geo │ ├── LICENSE │ ├── README.md │ ├── examples │ └── raw-time.c │ ├── libtomcrypt.c │ ├── tlse.c │ ├── tlse.h │ ├── tlstime │ ├── tlstime.c │ └── tlstime.h ├── experiments ├── README.md ├── iploc_ip2location.py ├── iploc_keycdn.py ├── publickey.sh ├── remove_cdn.py ├── results │ ├── anchors-nv.csv │ ├── anchors.csv │ ├── bad-anchors.csv │ ├── exp1 │ │ ├── README.md │ │ ├── local-filtered-twice.csv │ │ ├── local-filtered.csv │ │ ├── rtt-ca-1612361197.csv │ │ ├── rtt-nv-1612269395.csv │ │ ├── rtt-nv-1612359349.csv │ │ ├── rtt-nv-1612439697.csv │ │ └── rtt-sp-1612269306.csv │ ├── exp2 │ │ ├── publickeys-lon-1612262625.csv │ │ ├── publickeys-nv-1612262122.csv │ │ ├── publickeys-sp-1612263013.csv │ │ └── publickeys.csv │ ├── exp3 │ │ ├── logs │ │ │ ├── debug-1614632401.out │ │ │ ├── debug-1614636001.out │ │ │ ├── debug-1614639601.out │ │ │ ├── debug-1614643201.out │ │ │ ├── debug-1614646801.out │ │ │ ├── debug-1614650401.out │ │ │ ├── debug-1614654001.out │ │ │ ├── debug-1614657601.out │ │ │ ├── debug-1614661201.out │ │ │ ├── debug-1614664801.out │ │ │ ├── debug-1614668401.out │ │ │ ├── debug-1614672001.out │ │ │ ├── debug-1614675601.out │ │ │ ├── debug-1614679201.out │ │ │ ├── debug-1614682801.out │ │ │ ├── debug-1614686401.out │ │ │ ├── debug-1614690001.out │ │ │ ├── debug-1614693601.out │ │ │ ├── debug-1614697201.out │ │ │ ├── debug-1614700801.out │ │ │ ├── debug-1614704401.out │ │ │ ├── debug-1614708001.out │ │ │ ├── debug-1614711601.out │ │ │ ├── debug-1614715201.out │ │ │ ├── debug-1614718801.out │ │ │ ├── debug-1614722401.out │ │ │ ├── debug-1614726001.out │ │ │ ├── debug-1614729601.out │ │ │ ├── debug-1614733201.out │ │ │ ├── debug-1614736801.out │ │ │ ├── debug-1614740401.out │ │ │ ├── debug-1614744001.out │ │ │ ├── debug-1614747601.out │ │ │ ├── debug-1614751201.out │ │ │ ├── debug-1614754801.out │ │ │ ├── debug-1614758401.out │ │ │ ├── debug-1614762001.out │ │ │ ├── debug-1614765601.out │ │ │ ├── debug-1614769201.out │ │ │ ├── debug-1614772801.out │ │ │ ├── debug-1614776401.out │ │ │ ├── debug-1614780001.out │ │ │ ├── debug-1614783601.out │ │ │ ├── debug-1614787201.out │ │ │ ├── debug-1614790801.out │ │ │ ├── debug-1614794401.out │ │ │ ├── debug-1614798001.out │ │ │ ├── debug-1614801601.out │ │ │ ├── debug-1614805201.out │ │ │ ├── debug-1614808801.out │ │ │ ├── debug-1614812401.out │ │ │ ├── debug-1614816001.out │ │ │ ├── debug-1614819601.out │ │ │ ├── debug-1614823201.out │ │ │ ├── debug-1614826801.out │ │ │ ├── debug-1614830401.out │ │ │ ├── debug-1614834001.out │ │ │ ├── debug-1614837601.out │ │ │ ├── debug-1614841201.out │ │ │ ├── debug-1614844801.out │ │ │ ├── debug-1614848401.out │ │ │ ├── debug-1614852001.out │ │ │ ├── debug-1614855601.out │ │ │ ├── debug-1614859201.out │ │ │ ├── debug-1614862801.out │ │ │ ├── debug-1614866401.out │ │ │ ├── debug-1614870001.out │ │ │ ├── debug-1614873601.out │ │ │ ├── debug-1614877201.out │ │ │ ├── debug-1614880801.out │ │ │ ├── debug-1614884401.out │ │ │ ├── debug-1614888001.out │ │ │ ├── debug-1614891601.out │ │ │ ├── debug-1614895201.out │ │ │ ├── debug-1614898801.out │ │ │ ├── debug-1614902401.out │ │ │ ├── debug-1614906001.out │ │ │ ├── debug-1614909601.out │ │ │ ├── debug-1614913201.out │ │ │ ├── debug-1614916801.out │ │ │ ├── debug-1614920401.out │ │ │ ├── debug-1614924001.out │ │ │ ├── debug-1614927601.out │ │ │ ├── debug-1614931201.out │ │ │ ├── debug-1614934801.out │ │ │ ├── debug-1614938401.out │ │ │ ├── debug-1614942001.out │ │ │ ├── debug-1614945601.out │ │ │ ├── debug-1614949201.out │ │ │ ├── debug-1614952801.out │ │ │ ├── debug-1614956401.out │ │ │ ├── debug-1614960001.out │ │ │ ├── debug-1614963601.out │ │ │ ├── debug-1614967201.out │ │ │ ├── debug-1614970801.out │ │ │ ├── debug-1614974401.out │ │ │ ├── debug-1614978001.out │ │ │ ├── debug-1614981601.out │ │ │ ├── debug-1614985201.out │ │ │ ├── debug-1614988801.out │ │ │ ├── debug-1614992401.out │ │ │ ├── debug-1614996001.out │ │ │ ├── debug-1614999601.out │ │ │ ├── debug-1615003201.out │ │ │ ├── debug-1615006801.out │ │ │ ├── debug-1615010401.out │ │ │ ├── debug-1615014001.out │ │ │ ├── debug-1615017601.out │ │ │ ├── debug-1615021201.out │ │ │ ├── debug-1615024801.out │ │ │ ├── debug-1615028401.out │ │ │ ├── debug-1615032001.out │ │ │ ├── debug-1615035601.out │ │ │ ├── debug-1615039201.out │ │ │ ├── debug-1615042801.out │ │ │ ├── debug-1615046401.out │ │ │ ├── debug-1615050001.out │ │ │ ├── debug-1615053601.out │ │ │ ├── debug-1615057201.out │ │ │ ├── debug-1615060801.out │ │ │ ├── debug-1615064401.out │ │ │ ├── debug-1615068001.out │ │ │ ├── debug-1615071601.out │ │ │ ├── debug-1615075201.out │ │ │ ├── debug-1615078801.out │ │ │ ├── debug-1615082401.out │ │ │ ├── debug-1615086001.out │ │ │ ├── debug-1615089601.out │ │ │ ├── debug-1615093201.out │ │ │ ├── debug-1615096801.out │ │ │ ├── debug-1615100401.out │ │ │ ├── debug-1615104001.out │ │ │ ├── debug-1615107601.out │ │ │ ├── debug-1615111201.out │ │ │ ├── debug-1615114801.out │ │ │ ├── debug-1615118401.out │ │ │ ├── debug-1615122001.out │ │ │ ├── debug-1615125601.out │ │ │ ├── debug-1615129201.out │ │ │ ├── debug-1615132801.out │ │ │ ├── debug-1615136401.out │ │ │ ├── debug-1615140001.out │ │ │ ├── debug-1615143601.out │ │ │ ├── debug-1615147201.out │ │ │ ├── debug-1615150801.out │ │ │ ├── debug-1615154401.out │ │ │ ├── debug-1615158001.out │ │ │ ├── debug-1615161601.out │ │ │ ├── debug-1615165201.out │ │ │ ├── debug-1615168801.out │ │ │ ├── debug-1615172401.out │ │ │ ├── debug-1615176001.out │ │ │ ├── debug-1615179601.out │ │ │ ├── debug-1615183201.out │ │ │ ├── debug-1615186801.out │ │ │ ├── debug-1615190401.out │ │ │ ├── debug-1615194001.out │ │ │ ├── debug-1615197601.out │ │ │ ├── debug-1615201201.out │ │ │ ├── debug-1615204801.out │ │ │ ├── debug-1615208401.out │ │ │ ├── debug-1615212001.out │ │ │ ├── debug-1615215601.out │ │ │ ├── debug-1615219201.out │ │ │ ├── debug-1615222801.out │ │ │ ├── debug-1615226401.out │ │ │ ├── debug-1615230001.out │ │ │ ├── debug-1615233601.out │ │ │ ├── debug-1615237201.out │ │ │ ├── debug-1615240801.out │ │ │ ├── debug-1615244401.out │ │ │ ├── debug-1615248001.out │ │ │ ├── debug-1615251601.out │ │ │ ├── debug-1615255201.out │ │ │ ├── debug-1615258801.out │ │ │ ├── debug-1615262401.out │ │ │ ├── debug-1615266001.out │ │ │ ├── debug-1615269601.out │ │ │ ├── debug-1615273201.out │ │ │ ├── debug-1615276801.out │ │ │ ├── debug-1615280401.out │ │ │ ├── debug-1615284001.out │ │ │ ├── debug-1615287601.out │ │ │ ├── debug-1615291201.out │ │ │ ├── debug-1615294801.out │ │ │ ├── debug-1615298401.out │ │ │ ├── debug-1615302001.out │ │ │ ├── debug-1615305601.out │ │ │ ├── debug-1615309201.out │ │ │ ├── debug-1615312801.out │ │ │ ├── debug-1615316402.out │ │ │ ├── debug-1615320001.out │ │ │ ├── debug-1615323601.out │ │ │ ├── debug-1615327201.out │ │ │ ├── debug-1615330801.out │ │ │ ├── debug-1615334402.out │ │ │ ├── debug-1615338001.out │ │ │ ├── debug-1615341601.out │ │ │ ├── debug-1615345201.out │ │ │ ├── debug-1615348801.out │ │ │ ├── debug-1615352401.out │ │ │ ├── debug-1615356001.out │ │ │ ├── debug-1615359601.out │ │ │ ├── debug-1615363201.out │ │ │ ├── debug-1615366801.out │ │ │ ├── debug-1615370401.out │ │ │ ├── debug-1615374001.out │ │ │ ├── debug-1615377601.out │ │ │ ├── debug-1615381201.out │ │ │ ├── debug-1615384801.out │ │ │ ├── debug-1615388401.out │ │ │ ├── debug-1615392001.out │ │ │ ├── debug-1615395601.out │ │ │ ├── debug-1615399201.out │ │ │ ├── debug-1615402801.out │ │ │ ├── debug-1615406401.out │ │ │ ├── debug-1615410001.out │ │ │ ├── debug-1615413601.out │ │ │ ├── debug-1615417201.out │ │ │ ├── debug-1615420801.out │ │ │ ├── debug-1615424401.out │ │ │ ├── debug-1615428001.out │ │ │ ├── debug-1615431601.out │ │ │ ├── debug-1615435201.out │ │ │ ├── debug-1615438801.out │ │ │ ├── debug-1615442401.out │ │ │ ├── debug-1615446001.out │ │ │ ├── debug-1615449601.out │ │ │ ├── debug-1615453201.out │ │ │ ├── debug-1615456801.out │ │ │ ├── debug-1615460401.out │ │ │ ├── debug-1615464001.out │ │ │ ├── debug-1615467601.out │ │ │ ├── debug-1615471201.out │ │ │ ├── debug-1615474801.out │ │ │ ├── debug-1615478401.out │ │ │ ├── debug-1615482001.out │ │ │ ├── debug-1615485601.out │ │ │ ├── debug-1615489201.out │ │ │ └── debug-1615492801.out │ │ ├── process.ipynb │ │ └── rtt │ │ │ ├── rtt-1614632401.csv │ │ │ ├── rtt-1614636001.csv │ │ │ ├── rtt-1614639601.csv │ │ │ ├── rtt-1614643201.csv │ │ │ ├── rtt-1614646801.csv │ │ │ ├── rtt-1614650401.csv │ │ │ ├── rtt-1614654001.csv │ │ │ ├── rtt-1614657601.csv │ │ │ ├── rtt-1614661201.csv │ │ │ ├── rtt-1614664801.csv │ │ │ ├── rtt-1614668401.csv │ │ │ ├── rtt-1614672001.csv │ │ │ ├── rtt-1614675601.csv │ │ │ ├── rtt-1614679201.csv │ │ │ ├── rtt-1614682801.csv │ │ │ ├── rtt-1614686401.csv │ │ │ ├── rtt-1614690001.csv │ │ │ ├── rtt-1614693601.csv │ │ │ ├── rtt-1614697201.csv │ │ │ ├── rtt-1614700801.csv │ │ │ ├── rtt-1614704401.csv │ │ │ ├── rtt-1614708001.csv │ │ │ ├── rtt-1614711601.csv │ │ │ ├── rtt-1614715201.csv │ │ │ ├── rtt-1614718801.csv │ │ │ ├── rtt-1614722401.csv │ │ │ ├── rtt-1614726001.csv │ │ │ ├── rtt-1614729601.csv │ │ │ ├── rtt-1614733201.csv │ │ │ ├── rtt-1614736801.csv │ │ │ ├── rtt-1614740401.csv │ │ │ ├── rtt-1614744001.csv │ │ │ ├── rtt-1614747601.csv │ │ │ ├── rtt-1614751201.csv │ │ │ ├── rtt-1614754801.csv │ │ │ ├── rtt-1614758401.csv │ │ │ ├── rtt-1614762001.csv │ │ │ ├── rtt-1614765601.csv │ │ │ ├── rtt-1614769201.csv │ │ │ ├── rtt-1614772801.csv │ │ │ ├── rtt-1614776401.csv │ │ │ ├── rtt-1614780001.csv │ │ │ ├── rtt-1614783601.csv │ │ │ ├── rtt-1614787201.csv │ │ │ ├── rtt-1614790801.csv │ │ │ ├── rtt-1614794401.csv │ │ │ ├── rtt-1614798001.csv │ │ │ ├── rtt-1614801601.csv │ │ │ ├── rtt-1614805201.csv │ │ │ ├── rtt-1614808801.csv │ │ │ ├── rtt-1614812401.csv │ │ │ ├── rtt-1614816001.csv │ │ │ ├── rtt-1614819601.csv │ │ │ ├── rtt-1614823201.csv │ │ │ ├── rtt-1614826801.csv │ │ │ ├── rtt-1614830401.csv │ │ │ ├── rtt-1614834001.csv │ │ │ ├── rtt-1614837601.csv │ │ │ ├── rtt-1614841201.csv │ │ │ ├── rtt-1614844801.csv │ │ │ ├── rtt-1614848401.csv │ │ │ ├── rtt-1614852001.csv │ │ │ ├── rtt-1614855601.csv │ │ │ ├── rtt-1614859201.csv │ │ │ ├── rtt-1614862801.csv │ │ │ ├── rtt-1614866401.csv │ │ │ ├── rtt-1614870001.csv │ │ │ ├── rtt-1614873601.csv │ │ │ ├── rtt-1614877201.csv │ │ │ ├── rtt-1614880801.csv │ │ │ ├── rtt-1614884401.csv │ │ │ ├── rtt-1614888001.csv │ │ │ ├── rtt-1614891601.csv │ │ │ ├── rtt-1614895201.csv │ │ │ ├── rtt-1614898801.csv │ │ │ ├── rtt-1614902401.csv │ │ │ ├── rtt-1614906001.csv │ │ │ ├── rtt-1614909601.csv │ │ │ ├── rtt-1614913201.csv │ │ │ ├── rtt-1614916801.csv │ │ │ ├── rtt-1614920401.csv │ │ │ ├── rtt-1614924001.csv │ │ │ ├── rtt-1614927601.csv │ │ │ ├── rtt-1614931201.csv │ │ │ ├── rtt-1614934801.csv │ │ │ ├── rtt-1614938401.csv │ │ │ ├── rtt-1614942001.csv │ │ │ ├── rtt-1614945601.csv │ │ │ ├── rtt-1614949201.csv │ │ │ ├── rtt-1614952801.csv │ │ │ ├── rtt-1614956401.csv │ │ │ ├── rtt-1614960001.csv │ │ │ ├── rtt-1614963601.csv │ │ │ ├── rtt-1614967201.csv │ │ │ ├── rtt-1614970801.csv │ │ │ ├── rtt-1614974401.csv │ │ │ ├── rtt-1614978001.csv │ │ │ ├── rtt-1614981601.csv │ │ │ ├── rtt-1614985201.csv │ │ │ ├── rtt-1614988801.csv │ │ │ ├── rtt-1614992401.csv │ │ │ ├── rtt-1614996001.csv │ │ │ ├── rtt-1614999601.csv │ │ │ ├── rtt-1615003201.csv │ │ │ ├── rtt-1615006801.csv │ │ │ ├── rtt-1615010401.csv │ │ │ ├── rtt-1615014001.csv │ │ │ ├── rtt-1615017601.csv │ │ │ ├── rtt-1615021201.csv │ │ │ ├── rtt-1615024801.csv │ │ │ ├── rtt-1615028401.csv │ │ │ ├── rtt-1615032001.csv │ │ │ ├── rtt-1615035601.csv │ │ │ ├── rtt-1615039201.csv │ │ │ ├── rtt-1615042801.csv │ │ │ ├── rtt-1615046401.csv │ │ │ ├── rtt-1615050001.csv │ │ │ ├── rtt-1615053601.csv │ │ │ ├── rtt-1615057201.csv │ │ │ ├── rtt-1615060801.csv │ │ │ ├── rtt-1615064401.csv │ │ │ ├── rtt-1615068001.csv │ │ │ ├── rtt-1615071601.csv │ │ │ ├── rtt-1615075201.csv │ │ │ ├── rtt-1615078801.csv │ │ │ ├── rtt-1615082401.csv │ │ │ ├── rtt-1615086001.csv │ │ │ ├── rtt-1615089601.csv │ │ │ ├── rtt-1615093201.csv │ │ │ ├── rtt-1615096801.csv │ │ │ ├── rtt-1615100401.csv │ │ │ ├── rtt-1615104001.csv │ │ │ ├── rtt-1615107601.csv │ │ │ ├── rtt-1615111201.csv │ │ │ ├── rtt-1615114801.csv │ │ │ ├── rtt-1615118401.csv │ │ │ ├── rtt-1615122001.csv │ │ │ ├── rtt-1615125601.csv │ │ │ ├── rtt-1615129201.csv │ │ │ ├── rtt-1615132801.csv │ │ │ ├── rtt-1615136401.csv │ │ │ ├── rtt-1615140001.csv │ │ │ ├── rtt-1615143601.csv │ │ │ ├── rtt-1615147201.csv │ │ │ ├── rtt-1615150801.csv │ │ │ ├── rtt-1615154401.csv │ │ │ ├── rtt-1615158001.csv │ │ │ ├── rtt-1615161601.csv │ │ │ ├── rtt-1615165201.csv │ │ │ ├── rtt-1615168801.csv │ │ │ ├── rtt-1615172401.csv │ │ │ ├── rtt-1615176001.csv │ │ │ ├── rtt-1615179601.csv │ │ │ ├── rtt-1615183201.csv │ │ │ ├── rtt-1615186801.csv │ │ │ ├── rtt-1615190401.csv │ │ │ ├── rtt-1615194001.csv │ │ │ ├── rtt-1615197601.csv │ │ │ ├── rtt-1615201201.csv │ │ │ ├── rtt-1615204801.csv │ │ │ ├── rtt-1615208401.csv │ │ │ ├── rtt-1615212001.csv │ │ │ ├── rtt-1615215601.csv │ │ │ ├── rtt-1615219201.csv │ │ │ ├── rtt-1615222801.csv │ │ │ ├── rtt-1615226401.csv │ │ │ ├── rtt-1615230001.csv │ │ │ ├── rtt-1615233601.csv │ │ │ ├── rtt-1615237201.csv │ │ │ ├── rtt-1615240801.csv │ │ │ ├── rtt-1615244401.csv │ │ │ ├── rtt-1615248001.csv │ │ │ ├── rtt-1615251601.csv │ │ │ ├── rtt-1615255201.csv │ │ │ ├── rtt-1615258801.csv │ │ │ ├── rtt-1615262401.csv │ │ │ ├── rtt-1615266001.csv │ │ │ ├── rtt-1615269601.csv │ │ │ ├── rtt-1615273201.csv │ │ │ ├── rtt-1615276801.csv │ │ │ ├── rtt-1615280401.csv │ │ │ ├── rtt-1615284001.csv │ │ │ ├── rtt-1615287601.csv │ │ │ ├── rtt-1615291201.csv │ │ │ ├── rtt-1615294801.csv │ │ │ ├── rtt-1615298401.csv │ │ │ ├── rtt-1615302001.csv │ │ │ ├── rtt-1615305601.csv │ │ │ ├── rtt-1615309201.csv │ │ │ ├── rtt-1615312801.csv │ │ │ ├── rtt-1615316402.csv │ │ │ ├── rtt-1615320001.csv │ │ │ ├── rtt-1615323601.csv │ │ │ ├── rtt-1615327201.csv │ │ │ ├── rtt-1615330801.csv │ │ │ ├── rtt-1615334402.csv │ │ │ ├── rtt-1615338001.csv │ │ │ ├── rtt-1615341601.csv │ │ │ ├── rtt-1615345201.csv │ │ │ ├── rtt-1615348801.csv │ │ │ ├── rtt-1615352401.csv │ │ │ ├── rtt-1615356001.csv │ │ │ ├── rtt-1615359601.csv │ │ │ ├── rtt-1615363201.csv │ │ │ ├── rtt-1615366801.csv │ │ │ ├── rtt-1615370401.csv │ │ │ ├── rtt-1615374001.csv │ │ │ ├── rtt-1615377601.csv │ │ │ ├── rtt-1615381201.csv │ │ │ ├── rtt-1615384801.csv │ │ │ ├── rtt-1615388401.csv │ │ │ ├── rtt-1615392001.csv │ │ │ ├── rtt-1615395601.csv │ │ │ ├── rtt-1615399201.csv │ │ │ ├── rtt-1615402801.csv │ │ │ ├── rtt-1615406401.csv │ │ │ ├── rtt-1615410001.csv │ │ │ ├── rtt-1615413601.csv │ │ │ ├── rtt-1615417201.csv │ │ │ ├── rtt-1615420801.csv │ │ │ ├── rtt-1615424401.csv │ │ │ ├── rtt-1615428001.csv │ │ │ ├── rtt-1615431601.csv │ │ │ ├── rtt-1615435201.csv │ │ │ ├── rtt-1615438801.csv │ │ │ ├── rtt-1615442401.csv │ │ │ ├── rtt-1615446001.csv │ │ │ ├── rtt-1615449601.csv │ │ │ ├── rtt-1615453201.csv │ │ │ ├── rtt-1615456801.csv │ │ │ ├── rtt-1615460401.csv │ │ │ ├── rtt-1615464001.csv │ │ │ ├── rtt-1615467601.csv │ │ │ ├── rtt-1615471201.csv │ │ │ ├── rtt-1615474801.csv │ │ │ ├── rtt-1615478401.csv │ │ │ ├── rtt-1615482001.csv │ │ │ ├── rtt-1615485601.csv │ │ │ ├── rtt-1615489201.csv │ │ │ └── rtt-1615492801.csv │ ├── exp4 │ │ ├── Anchors.ipynb │ │ ├── README.md │ │ ├── lon │ │ │ └── logs │ │ │ │ ├── anchors.csv │ │ │ │ ├── gold.ac.uk │ │ │ │ ├── output-1619538001.out │ │ │ │ ├── output-1619539801.out │ │ │ │ ├── output-1619541601.out │ │ │ │ ├── output-1619543401.out │ │ │ │ ├── output-1619545201.out │ │ │ │ ├── output-1619547001.out │ │ │ │ ├── output-1619548801.out │ │ │ │ ├── output-1619550601.out │ │ │ │ ├── output-1619552401.out │ │ │ │ ├── output-1619554201.out │ │ │ │ ├── output-1619556001.out │ │ │ │ ├── output-1619557801.out │ │ │ │ ├── output-1619559601.out │ │ │ │ ├── output-1619561401.out │ │ │ │ ├── output-1619563201.out │ │ │ │ ├── output-1619565001.out │ │ │ │ ├── output-1619566801.out │ │ │ │ ├── output-1619568601.out │ │ │ │ ├── output-1619570401.out │ │ │ │ ├── output-1619572201.out │ │ │ │ ├── output-1619574001.out │ │ │ │ ├── output-1619575801.out │ │ │ │ ├── output-1619577601.out │ │ │ │ ├── output-1619579401.out │ │ │ │ ├── output-1619581201.out │ │ │ │ ├── output-1619583001.out │ │ │ │ ├── output-1619584801.out │ │ │ │ ├── output-1619586601.out │ │ │ │ ├── output-1619588401.out │ │ │ │ ├── output-1619590201.out │ │ │ │ ├── output-1619592001.out │ │ │ │ ├── output-1619593801.out │ │ │ │ ├── output-1619595601.out │ │ │ │ ├── output-1619597401.out │ │ │ │ ├── output-1619599201.out │ │ │ │ ├── output-1619601001.out │ │ │ │ ├── output-1619602801.out │ │ │ │ ├── output-1619604601.out │ │ │ │ ├── output-1619606401.out │ │ │ │ ├── output-1619608201.out │ │ │ │ ├── output-1619610001.out │ │ │ │ ├── output-1619611801.out │ │ │ │ ├── output-1619613601.out │ │ │ │ ├── output-1619615401.out │ │ │ │ ├── output-1619617201.out │ │ │ │ ├── output-1619619001.out │ │ │ │ ├── output-1619620801.out │ │ │ │ ├── output-1619622601.out │ │ │ │ ├── output-1619624401.out │ │ │ │ ├── output-1619626201.out │ │ │ │ ├── output-1619628001.out │ │ │ │ ├── output-1619629801.out │ │ │ │ ├── output-1619631601.out │ │ │ │ ├── output-1619633401.out │ │ │ │ ├── output-1619635201.out │ │ │ │ ├── output-1619637001.out │ │ │ │ ├── output-1619638801.out │ │ │ │ ├── output-1619640602.out │ │ │ │ ├── output-1619642401.out │ │ │ │ ├── output-1619644201.out │ │ │ │ ├── output-1619646001.out │ │ │ │ ├── output-1619647801.out │ │ │ │ ├── output-1619649601.out │ │ │ │ ├── output-1619651401.out │ │ │ │ ├── output-1619653201.out │ │ │ │ ├── output-1619655002.out │ │ │ │ ├── output-1619656801.out │ │ │ │ ├── output-1619658601.out │ │ │ │ ├── output-1619660401.out │ │ │ │ ├── output-1619662201.out │ │ │ │ ├── output-1619664001.out │ │ │ │ ├── output-1619665801.out │ │ │ │ ├── output-1619667601.out │ │ │ │ ├── output-1619669401.out │ │ │ │ ├── output-1619671201.out │ │ │ │ ├── output-1619673001.out │ │ │ │ ├── output-1619674801.out │ │ │ │ ├── output-1619676601.out │ │ │ │ ├── output-1619678401.out │ │ │ │ ├── output-1619680201.out │ │ │ │ ├── output-1619682001.out │ │ │ │ ├── output-1619683801.out │ │ │ │ ├── output-1619685601.out │ │ │ │ ├── output-1619687401.out │ │ │ │ ├── output-1619689201.out │ │ │ │ ├── output-1619691001.out │ │ │ │ ├── output-1619692801.out │ │ │ │ ├── output-1619694601.out │ │ │ │ ├── output-1619696401.out │ │ │ │ ├── output-1619698201.out │ │ │ │ ├── output-1619700001.out │ │ │ │ ├── output-1619701801.out │ │ │ │ ├── output-1619703601.out │ │ │ │ ├── output-1619705401.out │ │ │ │ ├── output-1619707201.out │ │ │ │ ├── output-1619709001.out │ │ │ │ ├── output-1619710801.out │ │ │ │ ├── output-1619712601.out │ │ │ │ ├── output-1619714401.out │ │ │ │ ├── output-1619716201.out │ │ │ │ ├── output-1619718001.out │ │ │ │ ├── output-1619719801.out │ │ │ │ ├── output-1619721601.out │ │ │ │ ├── output-1619723401.out │ │ │ │ ├── output-1619725201.out │ │ │ │ ├── output-1619727001.out │ │ │ │ ├── output-1619728801.out │ │ │ │ ├── output-1619730601.out │ │ │ │ ├── output-1619732401.out │ │ │ │ ├── output-1619734201.out │ │ │ │ ├── output-1619736001.out │ │ │ │ ├── output-1619737801.out │ │ │ │ ├── output-1619739601.out │ │ │ │ ├── output-1619741401.out │ │ │ │ ├── output-1619743201.out │ │ │ │ ├── output-1619745002.out │ │ │ │ ├── output-1619746801.out │ │ │ │ ├── output-1619748601.out │ │ │ │ ├── output-1619750401.out │ │ │ │ ├── output-1619752201.out │ │ │ │ ├── output-1619754001.out │ │ │ │ ├── output-1619755801.out │ │ │ │ ├── output-1619757601.out │ │ │ │ ├── output-1619759401.out │ │ │ │ ├── output-1619761201.out │ │ │ │ ├── output-1619763001.out │ │ │ │ ├── output-1619764801.out │ │ │ │ ├── output-1619766601.out │ │ │ │ ├── output-1619768401.out │ │ │ │ ├── output-1619770201.out │ │ │ │ ├── output-1619772001.out │ │ │ │ ├── output-1619773801.out │ │ │ │ ├── output-1619775601.out │ │ │ │ ├── output-1619777401.out │ │ │ │ ├── output-1619779201.out │ │ │ │ ├── output-1619781001.out │ │ │ │ ├── output-1619782801.out │ │ │ │ ├── output-1619784601.out │ │ │ │ ├── output-1619786401.out │ │ │ │ ├── output-1619788201.out │ │ │ │ ├── output-1619790001.out │ │ │ │ ├── output-1619791801.out │ │ │ │ ├── output-1619793601.out │ │ │ │ ├── output-1619795401.out │ │ │ │ ├── output-1619797201.out │ │ │ │ ├── output-1619799001.out │ │ │ │ ├── output-1619800801.out │ │ │ │ ├── output-1619802601.out │ │ │ │ ├── output-1619804401.out │ │ │ │ ├── output-1619806201.out │ │ │ │ ├── output-1619808001.out │ │ │ │ ├── output-1619809801.out │ │ │ │ ├── output-1619811601.out │ │ │ │ ├── output-1619813401.out │ │ │ │ ├── output-1619815201.out │ │ │ │ ├── output-1619817001.out │ │ │ │ ├── output-1619818801.out │ │ │ │ ├── output-1619820601.out │ │ │ │ ├── output-1619822401.out │ │ │ │ ├── output-1619824201.out │ │ │ │ ├── output-1619826001.out │ │ │ │ ├── output-1619827801.out │ │ │ │ ├── output-1619829601.out │ │ │ │ ├── output-1619831401.out │ │ │ │ ├── output-1619833201.out │ │ │ │ ├── output-1619835001.out │ │ │ │ ├── output-1619836801.out │ │ │ │ ├── output-1619838601.out │ │ │ │ ├── output-1619840401.out │ │ │ │ ├── output-1619842201.out │ │ │ │ ├── output-1619844001.out │ │ │ │ ├── output-1619845801.out │ │ │ │ ├── output-1619847601.out │ │ │ │ ├── output-1619849401.out │ │ │ │ ├── output-1619851201.out │ │ │ │ ├── output-1619853001.out │ │ │ │ ├── output-1619854801.out │ │ │ │ ├── output-1619856601.out │ │ │ │ ├── output-1619858401.out │ │ │ │ ├── output-1619860201.out │ │ │ │ ├── output-1619862001.out │ │ │ │ ├── output-1619863801.out │ │ │ │ ├── output-1619865601.out │ │ │ │ ├── output-1619867401.out │ │ │ │ ├── output-1619869201.out │ │ │ │ ├── output-1619871001.out │ │ │ │ ├── output-1619872801.out │ │ │ │ ├── output-1619874601.out │ │ │ │ ├── output-1619876401.out │ │ │ │ ├── output-1619878201.out │ │ │ │ ├── output-1619880001.out │ │ │ │ ├── output-1619881801.out │ │ │ │ ├── output-1619883601.out │ │ │ │ ├── output-1619885401.out │ │ │ │ ├── output-1619887201.out │ │ │ │ ├── output-1619889001.out │ │ │ │ ├── output-1619890801.out │ │ │ │ ├── output-1619892601.out │ │ │ │ ├── output-1619894401.out │ │ │ │ ├── output-1619896201.out │ │ │ │ ├── output-1619898001.out │ │ │ │ ├── output-1619899801.out │ │ │ │ ├── output-1619901601.out │ │ │ │ ├── output-1619903401.out │ │ │ │ ├── output-1619905201.out │ │ │ │ ├── output-1619907001.out │ │ │ │ ├── output-1619908801.out │ │ │ │ ├── output-1619910601.out │ │ │ │ ├── output-1619912401.out │ │ │ │ ├── output-1619914201.out │ │ │ │ ├── output-1619916001.out │ │ │ │ ├── output-1619917801.out │ │ │ │ ├── output-1619919601.out │ │ │ │ ├── output-1619921401.out │ │ │ │ ├── output-1619923201.out │ │ │ │ ├── output-1619925001.out │ │ │ │ ├── output-1619926801.out │ │ │ │ ├── output-1619928601.out │ │ │ │ ├── output-1619930401.out │ │ │ │ ├── output-1619932201.out │ │ │ │ ├── output-1619934001.out │ │ │ │ ├── output-1619935801.out │ │ │ │ ├── output-1619937601.out │ │ │ │ ├── output-1619939401.out │ │ │ │ ├── output-1619941201.out │ │ │ │ ├── output-1619943001.out │ │ │ │ ├── output-1619944801.out │ │ │ │ ├── output-1619946601.out │ │ │ │ ├── output-1619948401.out │ │ │ │ ├── output-1619950201.out │ │ │ │ ├── output-1619952001.out │ │ │ │ ├── output-1619953801.out │ │ │ │ ├── output-1619955601.out │ │ │ │ ├── output-1619957401.out │ │ │ │ ├── output-1619959201.out │ │ │ │ ├── output-1619961001.out │ │ │ │ ├── output-1619962801.out │ │ │ │ ├── output-1619964602.out │ │ │ │ ├── output-1619966402.out │ │ │ │ ├── output-1619968201.out │ │ │ │ ├── output-1619970001.out │ │ │ │ ├── output-1619971801.out │ │ │ │ ├── output-1619973601.out │ │ │ │ ├── output-1619975401.out │ │ │ │ ├── output-1619977201.out │ │ │ │ ├── output-1619979001.out │ │ │ │ ├── output-1619980801.out │ │ │ │ ├── output-1619982601.out │ │ │ │ ├── output-1619984402.out │ │ │ │ ├── output-1619986201.out │ │ │ │ ├── output-1619988001.out │ │ │ │ ├── output-1619989801.out │ │ │ │ ├── output-1619991601.out │ │ │ │ ├── output-1619993401.out │ │ │ │ ├── output-1619995201.out │ │ │ │ ├── output-1619997001.out │ │ │ │ ├── output-1619998801.out │ │ │ │ ├── output-1620000601.out │ │ │ │ ├── output-1620002401.out │ │ │ │ ├── output-1620004201.out │ │ │ │ ├── output-1620006001.out │ │ │ │ ├── output-1620007801.out │ │ │ │ ├── output-1620009601.out │ │ │ │ ├── output-1620011401.out │ │ │ │ ├── output-1620013201.out │ │ │ │ ├── output-1620015001.out │ │ │ │ ├── output-1620016801.out │ │ │ │ ├── output-1620018601.out │ │ │ │ ├── output-1620020401.out │ │ │ │ ├── output-1620022201.out │ │ │ │ ├── output-1620024001.out │ │ │ │ ├── output-1620025801.out │ │ │ │ ├── output-1620027601.out │ │ │ │ ├── output-1620029401.out │ │ │ │ ├── output-1620031201.out │ │ │ │ ├── output-1620033001.out │ │ │ │ ├── output-1620034801.out │ │ │ │ ├── output-1620036601.out │ │ │ │ ├── output-1620038401.out │ │ │ │ ├── output-1620040201.out │ │ │ │ ├── output-1620042001.out │ │ │ │ ├── output-1620043801.out │ │ │ │ ├── output-1620045601.out │ │ │ │ ├── output-1620047401.out │ │ │ │ ├── output-1620049201.out │ │ │ │ ├── output-1620051001.out │ │ │ │ ├── output-1620052801.out │ │ │ │ ├── output-1620054601.out │ │ │ │ ├── output-1620056401.out │ │ │ │ ├── output-1620058201.out │ │ │ │ ├── output-1620060001.out │ │ │ │ ├── output-1620061801.out │ │ │ │ ├── output-1620063601.out │ │ │ │ ├── output-1620065401.out │ │ │ │ ├── output-1620067201.out │ │ │ │ ├── output-1620069001.out │ │ │ │ ├── output-1620070801.out │ │ │ │ ├── output-1620072601.out │ │ │ │ ├── output-1620074401.out │ │ │ │ ├── output-1620076201.out │ │ │ │ ├── output-1620078001.out │ │ │ │ ├── output-1620079801.out │ │ │ │ ├── output-1620081601.out │ │ │ │ ├── output-1620083401.out │ │ │ │ ├── output-1620085201.out │ │ │ │ ├── output-1620087001.out │ │ │ │ ├── output-1620088801.out │ │ │ │ ├── output-1620090601.out │ │ │ │ ├── output-1620092401.out │ │ │ │ ├── output-1620094201.out │ │ │ │ ├── output-1620096001.out │ │ │ │ ├── output-1620097801.out │ │ │ │ ├── output-1620099601.out │ │ │ │ ├── output-1620101401.out │ │ │ │ ├── output-1620103201.out │ │ │ │ ├── output-1620105001.out │ │ │ │ ├── output-1620106801.out │ │ │ │ ├── output-1620108601.out │ │ │ │ ├── output-1620110401.out │ │ │ │ ├── output-1620112201.out │ │ │ │ ├── output-1620114001.out │ │ │ │ ├── output-1620115802.out │ │ │ │ ├── output-1620117601.out │ │ │ │ ├── output-1620119401.out │ │ │ │ ├── output-1620121201.out │ │ │ │ ├── output-1620123001.out │ │ │ │ ├── output-1620124801.out │ │ │ │ ├── output-1620126601.out │ │ │ │ ├── output-1620128401.out │ │ │ │ ├── output-1620130201.out │ │ │ │ ├── output-1620132001.out │ │ │ │ ├── output-1620133801.out │ │ │ │ ├── output-1620135601.out │ │ │ │ ├── output-1620137401.out │ │ │ │ ├── output-1620139201.out │ │ │ │ ├── output-1620141001.out │ │ │ │ ├── output-1620142801.out │ │ │ │ ├── output-1620144601.out │ │ │ │ ├── output-1620146401.out │ │ │ │ ├── output-1620148201.out │ │ │ │ ├── output-1620150001.out │ │ │ │ ├── output-1620151801.out │ │ │ │ ├── output-1620153601.out │ │ │ │ ├── output-1620155401.out │ │ │ │ ├── output-1620157201.out │ │ │ │ └── output-1620159001.out │ │ │ │ ├── holycross.ac.uk │ │ │ │ ├── output-1619537401.out │ │ │ │ ├── output-1619539201.out │ │ │ │ ├── output-1619541001.out │ │ │ │ ├── output-1619542801.out │ │ │ │ ├── output-1619544601.out │ │ │ │ ├── output-1619546401.out │ │ │ │ ├── output-1619548201.out │ │ │ │ ├── output-1619550001.out │ │ │ │ ├── output-1619551801.out │ │ │ │ ├── output-1619553601.out │ │ │ │ ├── output-1619555401.out │ │ │ │ ├── output-1619557201.out │ │ │ │ ├── output-1619559001.out │ │ │ │ ├── output-1619560801.out │ │ │ │ ├── output-1619562601.out │ │ │ │ ├── output-1619564401.out │ │ │ │ ├── output-1619566201.out │ │ │ │ ├── output-1619568001.out │ │ │ │ ├── output-1619569801.out │ │ │ │ ├── output-1619571601.out │ │ │ │ ├── output-1619573401.out │ │ │ │ ├── output-1619575201.out │ │ │ │ ├── output-1619577001.out │ │ │ │ ├── output-1619578801.out │ │ │ │ ├── output-1619580601.out │ │ │ │ ├── output-1619582401.out │ │ │ │ ├── output-1619584201.out │ │ │ │ ├── output-1619586001.out │ │ │ │ ├── output-1619587801.out │ │ │ │ ├── output-1619589601.out │ │ │ │ ├── output-1619591401.out │ │ │ │ ├── output-1619593201.out │ │ │ │ ├── output-1619595001.out │ │ │ │ ├── output-1619596801.out │ │ │ │ ├── output-1619598601.out │ │ │ │ ├── output-1619600401.out │ │ │ │ ├── output-1619602201.out │ │ │ │ ├── output-1619604001.out │ │ │ │ ├── output-1619605801.out │ │ │ │ ├── output-1619607601.out │ │ │ │ ├── output-1619609401.out │ │ │ │ ├── output-1619611201.out │ │ │ │ ├── output-1619613001.out │ │ │ │ ├── output-1619614801.out │ │ │ │ ├── output-1619616601.out │ │ │ │ ├── output-1619618401.out │ │ │ │ ├── output-1619620201.out │ │ │ │ ├── output-1619622001.out │ │ │ │ ├── output-1619623801.out │ │ │ │ ├── output-1619625601.out │ │ │ │ ├── output-1619627401.out │ │ │ │ ├── output-1619629201.out │ │ │ │ ├── output-1619631001.out │ │ │ │ ├── output-1619632801.out │ │ │ │ ├── output-1619634601.out │ │ │ │ ├── output-1619636401.out │ │ │ │ ├── output-1619638201.out │ │ │ │ ├── output-1619640001.out │ │ │ │ ├── output-1619641801.out │ │ │ │ ├── output-1619643601.out │ │ │ │ ├── output-1619645401.out │ │ │ │ ├── output-1619647201.out │ │ │ │ ├── output-1619649001.out │ │ │ │ ├── output-1619650801.out │ │ │ │ ├── output-1619652601.out │ │ │ │ ├── output-1619654401.out │ │ │ │ ├── output-1619656201.out │ │ │ │ ├── output-1619658001.out │ │ │ │ ├── output-1619659801.out │ │ │ │ ├── output-1619661601.out │ │ │ │ ├── output-1619663401.out │ │ │ │ ├── output-1619665201.out │ │ │ │ ├── output-1619667001.out │ │ │ │ ├── output-1619668801.out │ │ │ │ ├── output-1619670601.out │ │ │ │ ├── output-1619672401.out │ │ │ │ ├── output-1619674201.out │ │ │ │ ├── output-1619676001.out │ │ │ │ ├── output-1619677801.out │ │ │ │ ├── output-1619679601.out │ │ │ │ ├── output-1619681401.out │ │ │ │ ├── output-1619683201.out │ │ │ │ ├── output-1619685001.out │ │ │ │ ├── output-1619686801.out │ │ │ │ ├── output-1619688601.out │ │ │ │ ├── output-1619690401.out │ │ │ │ ├── output-1619692201.out │ │ │ │ ├── output-1619694001.out │ │ │ │ ├── output-1619695801.out │ │ │ │ ├── output-1619697601.out │ │ │ │ ├── output-1619699401.out │ │ │ │ ├── output-1619701201.out │ │ │ │ ├── output-1619703001.out │ │ │ │ ├── output-1619704801.out │ │ │ │ ├── output-1619706601.out │ │ │ │ ├── output-1619708401.out │ │ │ │ ├── output-1619710201.out │ │ │ │ ├── output-1619712001.out │ │ │ │ ├── output-1619713801.out │ │ │ │ ├── output-1619715601.out │ │ │ │ ├── output-1619717401.out │ │ │ │ ├── output-1619719201.out │ │ │ │ ├── output-1619721001.out │ │ │ │ ├── output-1619722801.out │ │ │ │ ├── output-1619724602.out │ │ │ │ ├── output-1619726401.out │ │ │ │ ├── output-1619728201.out │ │ │ │ ├── output-1619730001.out │ │ │ │ ├── output-1619731801.out │ │ │ │ ├── output-1619733601.out │ │ │ │ ├── output-1619735401.out │ │ │ │ ├── output-1619737201.out │ │ │ │ ├── output-1619739001.out │ │ │ │ ├── output-1619740801.out │ │ │ │ ├── output-1619742601.out │ │ │ │ ├── output-1619744401.out │ │ │ │ ├── output-1619746201.out │ │ │ │ ├── output-1619748001.out │ │ │ │ ├── output-1619749801.out │ │ │ │ ├── output-1619751601.out │ │ │ │ ├── output-1619753401.out │ │ │ │ ├── output-1619755201.out │ │ │ │ ├── output-1619757001.out │ │ │ │ ├── output-1619758801.out │ │ │ │ ├── output-1619760601.out │ │ │ │ ├── output-1619762401.out │ │ │ │ ├── output-1619764201.out │ │ │ │ ├── output-1619766001.out │ │ │ │ ├── output-1619767801.out │ │ │ │ ├── output-1619769601.out │ │ │ │ ├── output-1619771401.out │ │ │ │ ├── output-1619773201.out │ │ │ │ ├── output-1619775001.out │ │ │ │ ├── output-1619776801.out │ │ │ │ ├── output-1619778601.out │ │ │ │ ├── output-1619780401.out │ │ │ │ ├── output-1619782201.out │ │ │ │ ├── output-1619784001.out │ │ │ │ ├── output-1619785801.out │ │ │ │ ├── output-1619787601.out │ │ │ │ ├── output-1619789401.out │ │ │ │ ├── output-1619791201.out │ │ │ │ ├── output-1619793001.out │ │ │ │ ├── output-1619794801.out │ │ │ │ ├── output-1619796601.out │ │ │ │ ├── output-1619798401.out │ │ │ │ ├── output-1619800201.out │ │ │ │ ├── output-1619802001.out │ │ │ │ ├── output-1619803801.out │ │ │ │ ├── output-1619805601.out │ │ │ │ ├── output-1619807401.out │ │ │ │ ├── output-1619809201.out │ │ │ │ ├── output-1619811001.out │ │ │ │ ├── output-1619812801.out │ │ │ │ ├── output-1619814601.out │ │ │ │ ├── output-1619816401.out │ │ │ │ ├── output-1619818201.out │ │ │ │ ├── output-1619820001.out │ │ │ │ ├── output-1619821801.out │ │ │ │ ├── output-1619823601.out │ │ │ │ ├── output-1619825401.out │ │ │ │ ├── output-1619827201.out │ │ │ │ ├── output-1619829001.out │ │ │ │ ├── output-1619830801.out │ │ │ │ ├── output-1619832601.out │ │ │ │ ├── output-1619834401.out │ │ │ │ ├── output-1619836201.out │ │ │ │ ├── output-1619838001.out │ │ │ │ ├── output-1619839801.out │ │ │ │ ├── output-1619841601.out │ │ │ │ ├── output-1619843401.out │ │ │ │ ├── output-1619845201.out │ │ │ │ ├── output-1619847001.out │ │ │ │ ├── output-1619848801.out │ │ │ │ ├── output-1619850601.out │ │ │ │ ├── output-1619852401.out │ │ │ │ ├── output-1619854201.out │ │ │ │ ├── output-1619856001.out │ │ │ │ ├── output-1619857801.out │ │ │ │ ├── output-1619859601.out │ │ │ │ ├── output-1619861401.out │ │ │ │ ├── output-1619863201.out │ │ │ │ ├── output-1619865001.out │ │ │ │ ├── output-1619866801.out │ │ │ │ ├── output-1619868601.out │ │ │ │ ├── output-1619870401.out │ │ │ │ ├── output-1619872201.out │ │ │ │ ├── output-1619874001.out │ │ │ │ ├── output-1619875801.out │ │ │ │ ├── output-1619877601.out │ │ │ │ ├── output-1619879401.out │ │ │ │ ├── output-1619881201.out │ │ │ │ ├── output-1619883001.out │ │ │ │ ├── output-1619884801.out │ │ │ │ ├── output-1619886601.out │ │ │ │ ├── output-1619888401.out │ │ │ │ ├── output-1619890201.out │ │ │ │ ├── output-1619892001.out │ │ │ │ ├── output-1619893801.out │ │ │ │ ├── output-1619895601.out │ │ │ │ ├── output-1619897401.out │ │ │ │ ├── output-1619899201.out │ │ │ │ ├── output-1619901001.out │ │ │ │ ├── output-1619902801.out │ │ │ │ ├── output-1619904601.out │ │ │ │ ├── output-1619906401.out │ │ │ │ ├── output-1619908201.out │ │ │ │ ├── output-1619910001.out │ │ │ │ ├── output-1619911801.out │ │ │ │ ├── output-1619913601.out │ │ │ │ ├── output-1619915401.out │ │ │ │ ├── output-1619917201.out │ │ │ │ ├── output-1619919001.out │ │ │ │ ├── output-1619920801.out │ │ │ │ ├── output-1619922601.out │ │ │ │ ├── output-1619924401.out │ │ │ │ ├── output-1619926201.out │ │ │ │ ├── output-1619928001.out │ │ │ │ ├── output-1619929801.out │ │ │ │ ├── output-1619931601.out │ │ │ │ ├── output-1619933401.out │ │ │ │ ├── output-1619935201.out │ │ │ │ ├── output-1619937001.out │ │ │ │ ├── output-1619938801.out │ │ │ │ ├── output-1619940601.out │ │ │ │ ├── output-1619942401.out │ │ │ │ ├── output-1619944201.out │ │ │ │ ├── output-1619946001.out │ │ │ │ ├── output-1619947801.out │ │ │ │ ├── output-1619949601.out │ │ │ │ ├── output-1619951401.out │ │ │ │ ├── output-1619953201.out │ │ │ │ ├── output-1619955001.out │ │ │ │ ├── output-1619956801.out │ │ │ │ ├── output-1619958601.out │ │ │ │ ├── output-1619960401.out │ │ │ │ ├── output-1619962201.out │ │ │ │ ├── output-1619964001.out │ │ │ │ ├── output-1619965801.out │ │ │ │ ├── output-1619967601.out │ │ │ │ ├── output-1619969401.out │ │ │ │ ├── output-1619971201.out │ │ │ │ ├── output-1619973001.out │ │ │ │ ├── output-1619974801.out │ │ │ │ ├── output-1619976601.out │ │ │ │ ├── output-1619978401.out │ │ │ │ ├── output-1619980201.out │ │ │ │ ├── output-1619982001.out │ │ │ │ ├── output-1619983801.out │ │ │ │ ├── output-1619985601.out │ │ │ │ ├── output-1619987401.out │ │ │ │ ├── output-1619989201.out │ │ │ │ ├── output-1619991001.out │ │ │ │ ├── output-1619992801.out │ │ │ │ ├── output-1619994601.out │ │ │ │ ├── output-1619996401.out │ │ │ │ ├── output-1619998201.out │ │ │ │ ├── output-1620000001.out │ │ │ │ ├── output-1620001801.out │ │ │ │ ├── output-1620003601.out │ │ │ │ ├── output-1620005401.out │ │ │ │ ├── output-1620007201.out │ │ │ │ ├── output-1620009001.out │ │ │ │ ├── output-1620010801.out │ │ │ │ ├── output-1620012601.out │ │ │ │ ├── output-1620014401.out │ │ │ │ ├── output-1620016201.out │ │ │ │ ├── output-1620018001.out │ │ │ │ ├── output-1620019801.out │ │ │ │ ├── output-1620021601.out │ │ │ │ ├── output-1620023401.out │ │ │ │ ├── output-1620025201.out │ │ │ │ ├── output-1620027001.out │ │ │ │ ├── output-1620028801.out │ │ │ │ ├── output-1620030601.out │ │ │ │ ├── output-1620032401.out │ │ │ │ ├── output-1620034201.out │ │ │ │ ├── output-1620036001.out │ │ │ │ ├── output-1620037801.out │ │ │ │ ├── output-1620039601.out │ │ │ │ ├── output-1620041401.out │ │ │ │ ├── output-1620043201.out │ │ │ │ ├── output-1620045001.out │ │ │ │ ├── output-1620046801.out │ │ │ │ ├── output-1620048601.out │ │ │ │ ├── output-1620050401.out │ │ │ │ ├── output-1620052201.out │ │ │ │ ├── output-1620054001.out │ │ │ │ ├── output-1620055801.out │ │ │ │ ├── output-1620057601.out │ │ │ │ ├── output-1620059401.out │ │ │ │ ├── output-1620061201.out │ │ │ │ ├── output-1620063001.out │ │ │ │ ├── output-1620064801.out │ │ │ │ ├── output-1620066601.out │ │ │ │ ├── output-1620068401.out │ │ │ │ ├── output-1620070201.out │ │ │ │ ├── output-1620072001.out │ │ │ │ ├── output-1620073801.out │ │ │ │ ├── output-1620075601.out │ │ │ │ ├── output-1620077401.out │ │ │ │ ├── output-1620079201.out │ │ │ │ ├── output-1620081001.out │ │ │ │ ├── output-1620082801.out │ │ │ │ ├── output-1620084601.out │ │ │ │ ├── output-1620086401.out │ │ │ │ ├── output-1620088201.out │ │ │ │ ├── output-1620090001.out │ │ │ │ ├── output-1620091801.out │ │ │ │ ├── output-1620093601.out │ │ │ │ ├── output-1620095401.out │ │ │ │ ├── output-1620097201.out │ │ │ │ ├── output-1620099001.out │ │ │ │ ├── output-1620100801.out │ │ │ │ ├── output-1620102601.out │ │ │ │ ├── output-1620104401.out │ │ │ │ ├── output-1620106201.out │ │ │ │ ├── output-1620108001.out │ │ │ │ ├── output-1620109801.out │ │ │ │ ├── output-1620111601.out │ │ │ │ ├── output-1620113401.out │ │ │ │ ├── output-1620115201.out │ │ │ │ ├── output-1620117001.out │ │ │ │ ├── output-1620118801.out │ │ │ │ ├── output-1620120601.out │ │ │ │ ├── output-1620122401.out │ │ │ │ ├── output-1620124201.out │ │ │ │ ├── output-1620126001.out │ │ │ │ ├── output-1620127801.out │ │ │ │ ├── output-1620129601.out │ │ │ │ ├── output-1620131401.out │ │ │ │ ├── output-1620133201.out │ │ │ │ ├── output-1620135001.out │ │ │ │ ├── output-1620136801.out │ │ │ │ ├── output-1620138601.out │ │ │ │ ├── output-1620140401.out │ │ │ │ ├── output-1620142201.out │ │ │ │ ├── output-1620144001.out │ │ │ │ ├── output-1620145801.out │ │ │ │ ├── output-1620147601.out │ │ │ │ ├── output-1620149401.out │ │ │ │ ├── output-1620151201.out │ │ │ │ ├── output-1620153001.out │ │ │ │ ├── output-1620154801.out │ │ │ │ ├── output-1620156601.out │ │ │ │ ├── output-1620158401.out │ │ │ │ └── output-1620160201.out │ │ │ │ ├── nott.ac.uk │ │ │ │ ├── output-1619538301.out │ │ │ │ ├── output-1619540101.out │ │ │ │ ├── output-1619541901.out │ │ │ │ ├── output-1619543701.out │ │ │ │ ├── output-1619545501.out │ │ │ │ ├── output-1619547301.out │ │ │ │ ├── output-1619549101.out │ │ │ │ ├── output-1619550901.out │ │ │ │ ├── output-1619552701.out │ │ │ │ ├── output-1619554501.out │ │ │ │ ├── output-1619556301.out │ │ │ │ ├── output-1619558101.out │ │ │ │ ├── output-1619559901.out │ │ │ │ ├── output-1619561701.out │ │ │ │ ├── output-1619563501.out │ │ │ │ ├── output-1619565301.out │ │ │ │ ├── output-1619567101.out │ │ │ │ ├── output-1619568901.out │ │ │ │ ├── output-1619570701.out │ │ │ │ ├── output-1619572501.out │ │ │ │ ├── output-1619574301.out │ │ │ │ ├── output-1619576101.out │ │ │ │ ├── output-1619577901.out │ │ │ │ ├── output-1619579701.out │ │ │ │ ├── output-1619581501.out │ │ │ │ ├── output-1619583301.out │ │ │ │ ├── output-1619585101.out │ │ │ │ ├── output-1619586901.out │ │ │ │ ├── output-1619588701.out │ │ │ │ ├── output-1619590501.out │ │ │ │ ├── output-1619592301.out │ │ │ │ ├── output-1619594101.out │ │ │ │ ├── output-1619595901.out │ │ │ │ ├── output-1619597701.out │ │ │ │ ├── output-1619599501.out │ │ │ │ ├── output-1619601301.out │ │ │ │ ├── output-1619603101.out │ │ │ │ ├── output-1619604901.out │ │ │ │ ├── output-1619606701.out │ │ │ │ ├── output-1619608501.out │ │ │ │ ├── output-1619610301.out │ │ │ │ ├── output-1619612101.out │ │ │ │ ├── output-1619613901.out │ │ │ │ ├── output-1619615701.out │ │ │ │ ├── output-1619617501.out │ │ │ │ ├── output-1619619301.out │ │ │ │ ├── output-1619621101.out │ │ │ │ ├── output-1619622901.out │ │ │ │ ├── output-1619624701.out │ │ │ │ ├── output-1619626501.out │ │ │ │ ├── output-1619628301.out │ │ │ │ ├── output-1619630101.out │ │ │ │ ├── output-1619631901.out │ │ │ │ ├── output-1619633701.out │ │ │ │ ├── output-1619635501.out │ │ │ │ ├── output-1619637301.out │ │ │ │ ├── output-1619639101.out │ │ │ │ ├── output-1619640901.out │ │ │ │ ├── output-1619642701.out │ │ │ │ ├── output-1619644501.out │ │ │ │ ├── output-1619646301.out │ │ │ │ ├── output-1619648101.out │ │ │ │ ├── output-1619649901.out │ │ │ │ ├── output-1619651701.out │ │ │ │ ├── output-1619653501.out │ │ │ │ ├── output-1619655301.out │ │ │ │ ├── output-1619657101.out │ │ │ │ ├── output-1619658901.out │ │ │ │ ├── output-1619660701.out │ │ │ │ ├── output-1619662501.out │ │ │ │ ├── output-1619664301.out │ │ │ │ ├── output-1619666101.out │ │ │ │ ├── output-1619667901.out │ │ │ │ ├── output-1619669701.out │ │ │ │ ├── output-1619671501.out │ │ │ │ ├── output-1619673301.out │ │ │ │ ├── output-1619675101.out │ │ │ │ ├── output-1619676901.out │ │ │ │ ├── output-1619678701.out │ │ │ │ ├── output-1619680501.out │ │ │ │ ├── output-1619682301.out │ │ │ │ ├── output-1619684101.out │ │ │ │ ├── output-1619685901.out │ │ │ │ ├── output-1619687701.out │ │ │ │ ├── output-1619689501.out │ │ │ │ ├── output-1619691301.out │ │ │ │ ├── output-1619693101.out │ │ │ │ ├── output-1619694901.out │ │ │ │ ├── output-1619696701.out │ │ │ │ ├── output-1619698501.out │ │ │ │ ├── output-1619700301.out │ │ │ │ ├── output-1619702101.out │ │ │ │ ├── output-1619703901.out │ │ │ │ ├── output-1619705701.out │ │ │ │ ├── output-1619707501.out │ │ │ │ ├── output-1619709301.out │ │ │ │ ├── output-1619711101.out │ │ │ │ ├── output-1619712901.out │ │ │ │ ├── output-1619714701.out │ │ │ │ ├── output-1619716501.out │ │ │ │ ├── output-1619718301.out │ │ │ │ ├── output-1619720101.out │ │ │ │ ├── output-1619721901.out │ │ │ │ ├── output-1619723701.out │ │ │ │ ├── output-1619725501.out │ │ │ │ ├── output-1619727301.out │ │ │ │ ├── output-1619729101.out │ │ │ │ ├── output-1619730901.out │ │ │ │ ├── output-1619732701.out │ │ │ │ ├── output-1619734501.out │ │ │ │ ├── output-1619736301.out │ │ │ │ ├── output-1619738101.out │ │ │ │ ├── output-1619739901.out │ │ │ │ ├── output-1619741701.out │ │ │ │ ├── output-1619743501.out │ │ │ │ ├── output-1619745301.out │ │ │ │ ├── output-1619747101.out │ │ │ │ ├── output-1619748901.out │ │ │ │ ├── output-1619750701.out │ │ │ │ ├── output-1619752501.out │ │ │ │ ├── output-1619754301.out │ │ │ │ ├── output-1619756101.out │ │ │ │ ├── output-1619757901.out │ │ │ │ ├── output-1619759701.out │ │ │ │ ├── output-1619761501.out │ │ │ │ ├── output-1619763301.out │ │ │ │ ├── output-1619765101.out │ │ │ │ ├── output-1619766901.out │ │ │ │ ├── output-1619768701.out │ │ │ │ ├── output-1619770501.out │ │ │ │ ├── output-1619772301.out │ │ │ │ ├── output-1619774101.out │ │ │ │ ├── output-1619775901.out │ │ │ │ ├── output-1619777701.out │ │ │ │ ├── output-1619779501.out │ │ │ │ ├── output-1619781301.out │ │ │ │ ├── output-1619783101.out │ │ │ │ ├── output-1619784901.out │ │ │ │ ├── output-1619786701.out │ │ │ │ ├── output-1619788501.out │ │ │ │ ├── output-1619790301.out │ │ │ │ ├── output-1619792101.out │ │ │ │ ├── output-1619793901.out │ │ │ │ ├── output-1619795701.out │ │ │ │ ├── output-1619797501.out │ │ │ │ ├── output-1619799301.out │ │ │ │ ├── output-1619801101.out │ │ │ │ ├── output-1619802901.out │ │ │ │ ├── output-1619804701.out │ │ │ │ ├── output-1619806501.out │ │ │ │ ├── output-1619808301.out │ │ │ │ ├── output-1619810101.out │ │ │ │ ├── output-1619811901.out │ │ │ │ ├── output-1619813701.out │ │ │ │ ├── output-1619815501.out │ │ │ │ ├── output-1619817301.out │ │ │ │ ├── output-1619819101.out │ │ │ │ ├── output-1619820901.out │ │ │ │ ├── output-1619822701.out │ │ │ │ ├── output-1619824501.out │ │ │ │ ├── output-1619826301.out │ │ │ │ ├── output-1619828101.out │ │ │ │ ├── output-1619829901.out │ │ │ │ ├── output-1619831701.out │ │ │ │ ├── output-1619833501.out │ │ │ │ ├── output-1619835301.out │ │ │ │ ├── output-1619837101.out │ │ │ │ ├── output-1619838901.out │ │ │ │ ├── output-1619840701.out │ │ │ │ ├── output-1619842501.out │ │ │ │ ├── output-1619844301.out │ │ │ │ ├── output-1619846101.out │ │ │ │ ├── output-1619847901.out │ │ │ │ ├── output-1619849701.out │ │ │ │ ├── output-1619851501.out │ │ │ │ ├── output-1619853301.out │ │ │ │ ├── output-1619855101.out │ │ │ │ ├── output-1619856901.out │ │ │ │ ├── output-1619858701.out │ │ │ │ ├── output-1619860501.out │ │ │ │ ├── output-1619862301.out │ │ │ │ ├── output-1619864101.out │ │ │ │ ├── output-1619865901.out │ │ │ │ ├── output-1619867701.out │ │ │ │ ├── output-1619869501.out │ │ │ │ ├── output-1619871301.out │ │ │ │ ├── output-1619873101.out │ │ │ │ ├── output-1619874901.out │ │ │ │ ├── output-1619876701.out │ │ │ │ ├── output-1619878501.out │ │ │ │ ├── output-1619880301.out │ │ │ │ ├── output-1619882101.out │ │ │ │ ├── output-1619883901.out │ │ │ │ ├── output-1619885702.out │ │ │ │ ├── output-1619887501.out │ │ │ │ ├── output-1619889301.out │ │ │ │ ├── output-1619891101.out │ │ │ │ ├── output-1619892901.out │ │ │ │ ├── output-1619894701.out │ │ │ │ ├── output-1619896501.out │ │ │ │ ├── output-1619898301.out │ │ │ │ ├── output-1619900101.out │ │ │ │ ├── output-1619901901.out │ │ │ │ ├── output-1619903701.out │ │ │ │ ├── output-1619905501.out │ │ │ │ ├── output-1619907301.out │ │ │ │ ├── output-1619909101.out │ │ │ │ ├── output-1619910902.out │ │ │ │ ├── output-1619912701.out │ │ │ │ ├── output-1619914501.out │ │ │ │ ├── output-1619916301.out │ │ │ │ ├── output-1619918101.out │ │ │ │ ├── output-1619919901.out │ │ │ │ ├── output-1619921701.out │ │ │ │ ├── output-1619923501.out │ │ │ │ ├── output-1619925301.out │ │ │ │ ├── output-1619927101.out │ │ │ │ ├── output-1619928901.out │ │ │ │ ├── output-1619930701.out │ │ │ │ ├── output-1619932501.out │ │ │ │ ├── output-1619934301.out │ │ │ │ ├── output-1619936101.out │ │ │ │ ├── output-1619937901.out │ │ │ │ ├── output-1619939701.out │ │ │ │ ├── output-1619941501.out │ │ │ │ ├── output-1619943301.out │ │ │ │ ├── output-1619945101.out │ │ │ │ ├── output-1619946901.out │ │ │ │ ├── output-1619948701.out │ │ │ │ ├── output-1619950501.out │ │ │ │ ├── output-1619952301.out │ │ │ │ ├── output-1619954101.out │ │ │ │ ├── output-1619955901.out │ │ │ │ ├── output-1619957701.out │ │ │ │ ├── output-1619959501.out │ │ │ │ ├── output-1619961301.out │ │ │ │ ├── output-1619963101.out │ │ │ │ ├── output-1619964901.out │ │ │ │ ├── output-1619966701.out │ │ │ │ ├── output-1619968501.out │ │ │ │ ├── output-1619970301.out │ │ │ │ ├── output-1619972101.out │ │ │ │ ├── output-1619973901.out │ │ │ │ ├── output-1619975701.out │ │ │ │ ├── output-1619977501.out │ │ │ │ ├── output-1619979301.out │ │ │ │ ├── output-1619981101.out │ │ │ │ ├── output-1619982901.out │ │ │ │ ├── output-1619984701.out │ │ │ │ ├── output-1619986501.out │ │ │ │ ├── output-1619988301.out │ │ │ │ ├── output-1619990101.out │ │ │ │ ├── output-1619991901.out │ │ │ │ ├── output-1619993701.out │ │ │ │ ├── output-1619995501.out │ │ │ │ ├── output-1619997301.out │ │ │ │ ├── output-1619999101.out │ │ │ │ ├── output-1620000901.out │ │ │ │ ├── output-1620002701.out │ │ │ │ ├── output-1620004501.out │ │ │ │ ├── output-1620006301.out │ │ │ │ ├── output-1620008101.out │ │ │ │ ├── output-1620009901.out │ │ │ │ ├── output-1620011701.out │ │ │ │ ├── output-1620013501.out │ │ │ │ ├── output-1620015301.out │ │ │ │ ├── output-1620017101.out │ │ │ │ ├── output-1620018901.out │ │ │ │ ├── output-1620020701.out │ │ │ │ ├── output-1620022501.out │ │ │ │ ├── output-1620024301.out │ │ │ │ ├── output-1620026101.out │ │ │ │ ├── output-1620027901.out │ │ │ │ ├── output-1620029701.out │ │ │ │ ├── output-1620031501.out │ │ │ │ ├── output-1620033301.out │ │ │ │ ├── output-1620035101.out │ │ │ │ ├── output-1620036901.out │ │ │ │ ├── output-1620038701.out │ │ │ │ ├── output-1620040501.out │ │ │ │ ├── output-1620042301.out │ │ │ │ ├── output-1620044101.out │ │ │ │ ├── output-1620045901.out │ │ │ │ ├── output-1620047701.out │ │ │ │ ├── output-1620049501.out │ │ │ │ ├── output-1620051301.out │ │ │ │ ├── output-1620053101.out │ │ │ │ ├── output-1620054901.out │ │ │ │ ├── output-1620056701.out │ │ │ │ ├── output-1620058501.out │ │ │ │ ├── output-1620060301.out │ │ │ │ ├── output-1620062101.out │ │ │ │ ├── output-1620063901.out │ │ │ │ ├── output-1620065701.out │ │ │ │ ├── output-1620067501.out │ │ │ │ ├── output-1620069301.out │ │ │ │ ├── output-1620071101.out │ │ │ │ ├── output-1620072901.out │ │ │ │ ├── output-1620074701.out │ │ │ │ ├── output-1620076501.out │ │ │ │ ├── output-1620078301.out │ │ │ │ ├── output-1620080101.out │ │ │ │ ├── output-1620081901.out │ │ │ │ ├── output-1620083701.out │ │ │ │ ├── output-1620085501.out │ │ │ │ ├── output-1620087301.out │ │ │ │ ├── output-1620089101.out │ │ │ │ ├── output-1620090901.out │ │ │ │ ├── output-1620092701.out │ │ │ │ ├── output-1620094501.out │ │ │ │ ├── output-1620096301.out │ │ │ │ ├── output-1620098101.out │ │ │ │ ├── output-1620099901.out │ │ │ │ ├── output-1620101701.out │ │ │ │ ├── output-1620103501.out │ │ │ │ ├── output-1620105301.out │ │ │ │ ├── output-1620107101.out │ │ │ │ ├── output-1620108901.out │ │ │ │ ├── output-1620110701.out │ │ │ │ ├── output-1620112501.out │ │ │ │ ├── output-1620114301.out │ │ │ │ ├── output-1620116101.out │ │ │ │ ├── output-1620117901.out │ │ │ │ ├── output-1620119701.out │ │ │ │ ├── output-1620121501.out │ │ │ │ ├── output-1620123301.out │ │ │ │ ├── output-1620125101.out │ │ │ │ ├── output-1620126901.out │ │ │ │ ├── output-1620128701.out │ │ │ │ ├── output-1620130501.out │ │ │ │ ├── output-1620132301.out │ │ │ │ ├── output-1620134101.out │ │ │ │ ├── output-1620135901.out │ │ │ │ ├── output-1620137701.out │ │ │ │ ├── output-1620139501.out │ │ │ │ ├── output-1620141301.out │ │ │ │ ├── output-1620143101.out │ │ │ │ ├── output-1620144901.out │ │ │ │ ├── output-1620146701.out │ │ │ │ ├── output-1620148501.out │ │ │ │ ├── output-1620150301.out │ │ │ │ ├── output-1620152101.out │ │ │ │ ├── output-1620153901.out │ │ │ │ ├── output-1620155701.out │ │ │ │ ├── output-1620157501.out │ │ │ │ └── output-1620159301.out │ │ │ │ ├── rtt.csv │ │ │ │ ├── sruc.ac.uk │ │ │ │ ├── output-1619537701.out │ │ │ │ ├── output-1619539501.out │ │ │ │ ├── output-1619541301.out │ │ │ │ ├── output-1619543101.out │ │ │ │ ├── output-1619544901.out │ │ │ │ ├── output-1619546701.out │ │ │ │ ├── output-1619548501.out │ │ │ │ ├── output-1619550301.out │ │ │ │ ├── output-1619552101.out │ │ │ │ ├── output-1619553901.out │ │ │ │ ├── output-1619555701.out │ │ │ │ ├── output-1619557501.out │ │ │ │ ├── output-1619559301.out │ │ │ │ ├── output-1619561101.out │ │ │ │ ├── output-1619562901.out │ │ │ │ ├── output-1619564701.out │ │ │ │ ├── output-1619566501.out │ │ │ │ ├── output-1619568301.out │ │ │ │ ├── output-1619570101.out │ │ │ │ ├── output-1619571901.out │ │ │ │ ├── output-1619573701.out │ │ │ │ ├── output-1619575501.out │ │ │ │ ├── output-1619577301.out │ │ │ │ ├── output-1619579101.out │ │ │ │ ├── output-1619580901.out │ │ │ │ ├── output-1619582701.out │ │ │ │ ├── output-1619584501.out │ │ │ │ ├── output-1619586301.out │ │ │ │ ├── output-1619588101.out │ │ │ │ ├── output-1619589901.out │ │ │ │ ├── output-1619591701.out │ │ │ │ ├── output-1619593501.out │ │ │ │ ├── output-1619595301.out │ │ │ │ ├── output-1619597101.out │ │ │ │ ├── output-1619598901.out │ │ │ │ ├── output-1619600701.out │ │ │ │ ├── output-1619602501.out │ │ │ │ ├── output-1619604301.out │ │ │ │ ├── output-1619606101.out │ │ │ │ ├── output-1619607901.out │ │ │ │ ├── output-1619609701.out │ │ │ │ ├── output-1619611501.out │ │ │ │ ├── output-1619613301.out │ │ │ │ ├── output-1619615101.out │ │ │ │ ├── output-1619616901.out │ │ │ │ ├── output-1619618701.out │ │ │ │ ├── output-1619620501.out │ │ │ │ ├── output-1619622301.out │ │ │ │ ├── output-1619624101.out │ │ │ │ ├── output-1619625901.out │ │ │ │ ├── output-1619627701.out │ │ │ │ ├── output-1619629501.out │ │ │ │ ├── output-1619631301.out │ │ │ │ ├── output-1619633101.out │ │ │ │ ├── output-1619634901.out │ │ │ │ ├── output-1619636701.out │ │ │ │ ├── output-1619638501.out │ │ │ │ ├── output-1619640301.out │ │ │ │ ├── output-1619642101.out │ │ │ │ ├── output-1619643901.out │ │ │ │ ├── output-1619645701.out │ │ │ │ ├── output-1619647501.out │ │ │ │ ├── output-1619649301.out │ │ │ │ ├── output-1619651101.out │ │ │ │ ├── output-1619652901.out │ │ │ │ ├── output-1619654701.out │ │ │ │ ├── output-1619656501.out │ │ │ │ ├── output-1619658301.out │ │ │ │ ├── output-1619660101.out │ │ │ │ ├── output-1619661901.out │ │ │ │ ├── output-1619663701.out │ │ │ │ ├── output-1619665501.out │ │ │ │ ├── output-1619667301.out │ │ │ │ ├── output-1619669101.out │ │ │ │ ├── output-1619670901.out │ │ │ │ ├── output-1619672701.out │ │ │ │ ├── output-1619674501.out │ │ │ │ ├── output-1619676301.out │ │ │ │ ├── output-1619678101.out │ │ │ │ ├── output-1619679901.out │ │ │ │ ├── output-1619681701.out │ │ │ │ ├── output-1619683501.out │ │ │ │ ├── output-1619685301.out │ │ │ │ ├── output-1619687101.out │ │ │ │ ├── output-1619688901.out │ │ │ │ ├── output-1619690701.out │ │ │ │ ├── output-1619692501.out │ │ │ │ ├── output-1619694301.out │ │ │ │ ├── output-1619696101.out │ │ │ │ ├── output-1619697901.out │ │ │ │ ├── output-1619699701.out │ │ │ │ ├── output-1619701501.out │ │ │ │ ├── output-1619703301.out │ │ │ │ ├── output-1619705101.out │ │ │ │ ├── output-1619706901.out │ │ │ │ ├── output-1619708701.out │ │ │ │ ├── output-1619710501.out │ │ │ │ ├── output-1619712301.out │ │ │ │ ├── output-1619714101.out │ │ │ │ ├── output-1619715901.out │ │ │ │ ├── output-1619717701.out │ │ │ │ ├── output-1619719501.out │ │ │ │ ├── output-1619721301.out │ │ │ │ ├── output-1619723101.out │ │ │ │ ├── output-1619724901.out │ │ │ │ ├── output-1619726701.out │ │ │ │ ├── output-1619728502.out │ │ │ │ ├── output-1619730301.out │ │ │ │ ├── output-1619732101.out │ │ │ │ ├── output-1619733901.out │ │ │ │ ├── output-1619735701.out │ │ │ │ ├── output-1619737501.out │ │ │ │ ├── output-1619739301.out │ │ │ │ ├── output-1619741101.out │ │ │ │ ├── output-1619742901.out │ │ │ │ ├── output-1619744701.out │ │ │ │ ├── output-1619746501.out │ │ │ │ ├── output-1619748301.out │ │ │ │ ├── output-1619750101.out │ │ │ │ ├── output-1619751901.out │ │ │ │ ├── output-1619753701.out │ │ │ │ ├── output-1619755501.out │ │ │ │ ├── output-1619757301.out │ │ │ │ ├── output-1619759101.out │ │ │ │ ├── output-1619760901.out │ │ │ │ ├── output-1619762701.out │ │ │ │ ├── output-1619764501.out │ │ │ │ ├── output-1619766301.out │ │ │ │ ├── output-1619768101.out │ │ │ │ ├── output-1619769901.out │ │ │ │ ├── output-1619771701.out │ │ │ │ ├── output-1619773501.out │ │ │ │ ├── output-1619775301.out │ │ │ │ ├── output-1619777101.out │ │ │ │ ├── output-1619778901.out │ │ │ │ ├── output-1619780701.out │ │ │ │ ├── output-1619782501.out │ │ │ │ ├── output-1619784301.out │ │ │ │ ├── output-1619786101.out │ │ │ │ ├── output-1619787901.out │ │ │ │ ├── output-1619789701.out │ │ │ │ ├── output-1619791501.out │ │ │ │ ├── output-1619793301.out │ │ │ │ ├── output-1619795101.out │ │ │ │ ├── output-1619796901.out │ │ │ │ ├── output-1619798701.out │ │ │ │ ├── output-1619800501.out │ │ │ │ ├── output-1619802301.out │ │ │ │ ├── output-1619804101.out │ │ │ │ ├── output-1619805901.out │ │ │ │ ├── output-1619807701.out │ │ │ │ ├── output-1619809501.out │ │ │ │ ├── output-1619811301.out │ │ │ │ ├── output-1619813101.out │ │ │ │ ├── output-1619814901.out │ │ │ │ ├── output-1619816701.out │ │ │ │ ├── output-1619818501.out │ │ │ │ ├── output-1619820301.out │ │ │ │ ├── output-1619822101.out │ │ │ │ ├── output-1619823901.out │ │ │ │ ├── output-1619825701.out │ │ │ │ ├── output-1619827501.out │ │ │ │ ├── output-1619829301.out │ │ │ │ ├── output-1619831101.out │ │ │ │ ├── output-1619832901.out │ │ │ │ ├── output-1619834701.out │ │ │ │ ├── output-1619836501.out │ │ │ │ ├── output-1619838301.out │ │ │ │ ├── output-1619840101.out │ │ │ │ ├── output-1619841901.out │ │ │ │ ├── output-1619843701.out │ │ │ │ ├── output-1619845501.out │ │ │ │ ├── output-1619847301.out │ │ │ │ ├── output-1619849101.out │ │ │ │ ├── output-1619850901.out │ │ │ │ ├── output-1619852701.out │ │ │ │ ├── output-1619854501.out │ │ │ │ ├── output-1619856301.out │ │ │ │ ├── output-1619858101.out │ │ │ │ ├── output-1619859901.out │ │ │ │ ├── output-1619861701.out │ │ │ │ ├── output-1619863501.out │ │ │ │ ├── output-1619865301.out │ │ │ │ ├── output-1619867101.out │ │ │ │ ├── output-1619868901.out │ │ │ │ ├── output-1619870701.out │ │ │ │ ├── output-1619872501.out │ │ │ │ ├── output-1619874301.out │ │ │ │ ├── output-1619876101.out │ │ │ │ ├── output-1619877901.out │ │ │ │ ├── output-1619879701.out │ │ │ │ ├── output-1619881501.out │ │ │ │ ├── output-1619883301.out │ │ │ │ ├── output-1619885101.out │ │ │ │ ├── output-1619886901.out │ │ │ │ ├── output-1619888701.out │ │ │ │ ├── output-1619890501.out │ │ │ │ ├── output-1619892301.out │ │ │ │ ├── output-1619894101.out │ │ │ │ ├── output-1619895901.out │ │ │ │ ├── output-1619897701.out │ │ │ │ ├── output-1619899501.out │ │ │ │ ├── output-1619901301.out │ │ │ │ ├── output-1619903101.out │ │ │ │ ├── output-1619904901.out │ │ │ │ ├── output-1619906701.out │ │ │ │ ├── output-1619908501.out │ │ │ │ ├── output-1619910301.out │ │ │ │ ├── output-1619912101.out │ │ │ │ ├── output-1619913901.out │ │ │ │ ├── output-1619915701.out │ │ │ │ ├── output-1619917501.out │ │ │ │ ├── output-1619919301.out │ │ │ │ ├── output-1619921101.out │ │ │ │ ├── output-1619922901.out │ │ │ │ ├── output-1619924701.out │ │ │ │ ├── output-1619926501.out │ │ │ │ ├── output-1619928301.out │ │ │ │ ├── output-1619930101.out │ │ │ │ ├── output-1619931901.out │ │ │ │ ├── output-1619933701.out │ │ │ │ ├── output-1619935501.out │ │ │ │ ├── output-1619937301.out │ │ │ │ ├── output-1619939101.out │ │ │ │ ├── output-1619940901.out │ │ │ │ ├── output-1619942701.out │ │ │ │ ├── output-1619944501.out │ │ │ │ ├── output-1619946301.out │ │ │ │ ├── output-1619948101.out │ │ │ │ ├── output-1619949901.out │ │ │ │ ├── output-1619951701.out │ │ │ │ ├── output-1619953501.out │ │ │ │ ├── output-1619955301.out │ │ │ │ ├── output-1619957101.out │ │ │ │ ├── output-1619958901.out │ │ │ │ ├── output-1619960701.out │ │ │ │ ├── output-1619962501.out │ │ │ │ ├── output-1619964301.out │ │ │ │ ├── output-1619966101.out │ │ │ │ ├── output-1619967901.out │ │ │ │ ├── output-1619969701.out │ │ │ │ ├── output-1619971501.out │ │ │ │ ├── output-1619973301.out │ │ │ │ ├── output-1619975101.out │ │ │ │ ├── output-1619976901.out │ │ │ │ ├── output-1619978701.out │ │ │ │ ├── output-1619980501.out │ │ │ │ ├── output-1619982301.out │ │ │ │ ├── output-1619984101.out │ │ │ │ ├── output-1619985901.out │ │ │ │ ├── output-1619987701.out │ │ │ │ ├── output-1619989501.out │ │ │ │ ├── output-1619991301.out │ │ │ │ ├── output-1619993101.out │ │ │ │ ├── output-1619994901.out │ │ │ │ ├── output-1619996701.out │ │ │ │ ├── output-1619998501.out │ │ │ │ ├── output-1620000301.out │ │ │ │ ├── output-1620002101.out │ │ │ │ ├── output-1620003901.out │ │ │ │ ├── output-1620005701.out │ │ │ │ ├── output-1620007501.out │ │ │ │ ├── output-1620009301.out │ │ │ │ ├── output-1620011101.out │ │ │ │ ├── output-1620012901.out │ │ │ │ ├── output-1620014701.out │ │ │ │ ├── output-1620016501.out │ │ │ │ ├── output-1620018301.out │ │ │ │ ├── output-1620020101.out │ │ │ │ ├── output-1620021901.out │ │ │ │ ├── output-1620023701.out │ │ │ │ ├── output-1620025501.out │ │ │ │ ├── output-1620027301.out │ │ │ │ ├── output-1620029101.out │ │ │ │ ├── output-1620030901.out │ │ │ │ ├── output-1620032701.out │ │ │ │ ├── output-1620034501.out │ │ │ │ ├── output-1620036301.out │ │ │ │ ├── output-1620038101.out │ │ │ │ ├── output-1620039901.out │ │ │ │ ├── output-1620041701.out │ │ │ │ ├── output-1620043501.out │ │ │ │ ├── output-1620045301.out │ │ │ │ ├── output-1620047101.out │ │ │ │ ├── output-1620048901.out │ │ │ │ ├── output-1620050701.out │ │ │ │ ├── output-1620052501.out │ │ │ │ ├── output-1620054301.out │ │ │ │ ├── output-1620056101.out │ │ │ │ ├── output-1620057901.out │ │ │ │ ├── output-1620059701.out │ │ │ │ ├── output-1620061501.out │ │ │ │ ├── output-1620063301.out │ │ │ │ ├── output-1620065101.out │ │ │ │ ├── output-1620066901.out │ │ │ │ ├── output-1620068701.out │ │ │ │ ├── output-1620070501.out │ │ │ │ ├── output-1620072301.out │ │ │ │ ├── output-1620074101.out │ │ │ │ ├── output-1620075901.out │ │ │ │ ├── output-1620077701.out │ │ │ │ ├── output-1620079501.out │ │ │ │ ├── output-1620081301.out │ │ │ │ ├── output-1620083101.out │ │ │ │ ├── output-1620084901.out │ │ │ │ ├── output-1620086701.out │ │ │ │ ├── output-1620088501.out │ │ │ │ ├── output-1620090301.out │ │ │ │ ├── output-1620092101.out │ │ │ │ ├── output-1620093901.out │ │ │ │ ├── output-1620095701.out │ │ │ │ ├── output-1620097501.out │ │ │ │ ├── output-1620099301.out │ │ │ │ ├── output-1620101101.out │ │ │ │ ├── output-1620102901.out │ │ │ │ ├── output-1620104701.out │ │ │ │ ├── output-1620106501.out │ │ │ │ ├── output-1620108301.out │ │ │ │ ├── output-1620110101.out │ │ │ │ ├── output-1620111901.out │ │ │ │ ├── output-1620113701.out │ │ │ │ ├── output-1620115501.out │ │ │ │ ├── output-1620117301.out │ │ │ │ ├── output-1620119101.out │ │ │ │ ├── output-1620120901.out │ │ │ │ ├── output-1620122701.out │ │ │ │ ├── output-1620124501.out │ │ │ │ ├── output-1620126301.out │ │ │ │ ├── output-1620128101.out │ │ │ │ ├── output-1620129901.out │ │ │ │ ├── output-1620131701.out │ │ │ │ ├── output-1620133501.out │ │ │ │ ├── output-1620135301.out │ │ │ │ ├── output-1620137101.out │ │ │ │ ├── output-1620138901.out │ │ │ │ ├── output-1620140701.out │ │ │ │ ├── output-1620142501.out │ │ │ │ ├── output-1620144301.out │ │ │ │ ├── output-1620146101.out │ │ │ │ ├── output-1620147901.out │ │ │ │ ├── output-1620149701.out │ │ │ │ ├── output-1620151501.out │ │ │ │ ├── output-1620153301.out │ │ │ │ ├── output-1620155101.out │ │ │ │ ├── output-1620156901.out │ │ │ │ └── output-1620158701.out │ │ │ │ └── www.ed.ac.uk │ │ │ │ ├── output-1619538601.out │ │ │ │ ├── output-1619540401.out │ │ │ │ ├── output-1619542201.out │ │ │ │ ├── output-1619544001.out │ │ │ │ ├── output-1619545801.out │ │ │ │ ├── output-1619547601.out │ │ │ │ ├── output-1619549401.out │ │ │ │ ├── output-1619551201.out │ │ │ │ ├── output-1619553001.out │ │ │ │ ├── output-1619554801.out │ │ │ │ ├── output-1619556601.out │ │ │ │ ├── output-1619558401.out │ │ │ │ ├── output-1619560201.out │ │ │ │ ├── output-1619562001.out │ │ │ │ ├── output-1619563801.out │ │ │ │ ├── output-1619565601.out │ │ │ │ ├── output-1619567401.out │ │ │ │ ├── output-1619569201.out │ │ │ │ ├── output-1619571001.out │ │ │ │ ├── output-1619572801.out │ │ │ │ ├── output-1619574601.out │ │ │ │ ├── output-1619576401.out │ │ │ │ ├── output-1619578201.out │ │ │ │ ├── output-1619580001.out │ │ │ │ ├── output-1619581801.out │ │ │ │ ├── output-1619583601.out │ │ │ │ ├── output-1619585401.out │ │ │ │ ├── output-1619587201.out │ │ │ │ ├── output-1619589001.out │ │ │ │ ├── output-1619590801.out │ │ │ │ ├── output-1619592601.out │ │ │ │ ├── output-1619594401.out │ │ │ │ ├── output-1619596201.out │ │ │ │ ├── output-1619598001.out │ │ │ │ ├── output-1619599801.out │ │ │ │ ├── output-1619601601.out │ │ │ │ ├── output-1619603401.out │ │ │ │ ├── output-1619605201.out │ │ │ │ ├── output-1619607001.out │ │ │ │ ├── output-1619608801.out │ │ │ │ ├── output-1619610601.out │ │ │ │ ├── output-1619612401.out │ │ │ │ ├── output-1619614201.out │ │ │ │ ├── output-1619616001.out │ │ │ │ ├── output-1619617801.out │ │ │ │ ├── output-1619619601.out │ │ │ │ ├── output-1619621401.out │ │ │ │ ├── output-1619623201.out │ │ │ │ ├── output-1619625001.out │ │ │ │ ├── output-1619626801.out │ │ │ │ ├── output-1619628601.out │ │ │ │ ├── output-1619630401.out │ │ │ │ ├── output-1619632201.out │ │ │ │ ├── output-1619634001.out │ │ │ │ ├── output-1619635801.out │ │ │ │ ├── output-1619637602.out │ │ │ │ ├── output-1619639401.out │ │ │ │ ├── output-1619641201.out │ │ │ │ ├── output-1619643001.out │ │ │ │ ├── output-1619644801.out │ │ │ │ ├── output-1619646601.out │ │ │ │ ├── output-1619648401.out │ │ │ │ ├── output-1619650201.out │ │ │ │ ├── output-1619652001.out │ │ │ │ ├── output-1619653801.out │ │ │ │ ├── output-1619655601.out │ │ │ │ ├── output-1619657401.out │ │ │ │ ├── output-1619659201.out │ │ │ │ ├── output-1619661001.out │ │ │ │ ├── output-1619662801.out │ │ │ │ ├── output-1619664601.out │ │ │ │ ├── output-1619666401.out │ │ │ │ ├── output-1619668201.out │ │ │ │ ├── output-1619670001.out │ │ │ │ ├── output-1619671801.out │ │ │ │ ├── output-1619673601.out │ │ │ │ ├── output-1619675401.out │ │ │ │ ├── output-1619677201.out │ │ │ │ ├── output-1619679001.out │ │ │ │ ├── output-1619680801.out │ │ │ │ ├── output-1619682601.out │ │ │ │ ├── output-1619684401.out │ │ │ │ ├── output-1619686201.out │ │ │ │ ├── output-1619688001.out │ │ │ │ ├── output-1619689801.out │ │ │ │ ├── output-1619691601.out │ │ │ │ ├── output-1619693401.out │ │ │ │ ├── output-1619695201.out │ │ │ │ ├── output-1619697001.out │ │ │ │ ├── output-1619698801.out │ │ │ │ ├── output-1619700601.out │ │ │ │ ├── output-1619702401.out │ │ │ │ ├── output-1619704201.out │ │ │ │ ├── output-1619706001.out │ │ │ │ ├── output-1619707801.out │ │ │ │ ├── output-1619709601.out │ │ │ │ ├── output-1619711401.out │ │ │ │ ├── output-1619713201.out │ │ │ │ ├── output-1619715001.out │ │ │ │ ├── output-1619716801.out │ │ │ │ ├── output-1619718601.out │ │ │ │ ├── output-1619720401.out │ │ │ │ ├── output-1619722201.out │ │ │ │ ├── output-1619724001.out │ │ │ │ ├── output-1619725801.out │ │ │ │ ├── output-1619727601.out │ │ │ │ ├── output-1619729401.out │ │ │ │ ├── output-1619731201.out │ │ │ │ ├── output-1619733001.out │ │ │ │ ├── output-1619734801.out │ │ │ │ ├── output-1619736601.out │ │ │ │ ├── output-1619738401.out │ │ │ │ ├── output-1619740201.out │ │ │ │ ├── output-1619742001.out │ │ │ │ ├── output-1619743801.out │ │ │ │ ├── output-1619745601.out │ │ │ │ ├── output-1619747401.out │ │ │ │ ├── output-1619749201.out │ │ │ │ ├── output-1619751001.out │ │ │ │ ├── output-1619752801.out │ │ │ │ ├── output-1619754601.out │ │ │ │ ├── output-1619756401.out │ │ │ │ ├── output-1619758201.out │ │ │ │ ├── output-1619760001.out │ │ │ │ ├── output-1619761801.out │ │ │ │ ├── output-1619763601.out │ │ │ │ ├── output-1619765401.out │ │ │ │ ├── output-1619767201.out │ │ │ │ ├── output-1619769001.out │ │ │ │ ├── output-1619770801.out │ │ │ │ ├── output-1619772601.out │ │ │ │ ├── output-1619774401.out │ │ │ │ ├── output-1619776201.out │ │ │ │ ├── output-1619778001.out │ │ │ │ ├── output-1619779801.out │ │ │ │ ├── output-1619781601.out │ │ │ │ ├── output-1619783401.out │ │ │ │ ├── output-1619785201.out │ │ │ │ ├── output-1619787001.out │ │ │ │ ├── output-1619788801.out │ │ │ │ ├── output-1619790601.out │ │ │ │ ├── output-1619792401.out │ │ │ │ ├── output-1619794201.out │ │ │ │ ├── output-1619796001.out │ │ │ │ ├── output-1619797801.out │ │ │ │ ├── output-1619799601.out │ │ │ │ ├── output-1619801401.out │ │ │ │ ├── output-1619803201.out │ │ │ │ ├── output-1619805001.out │ │ │ │ ├── output-1619806801.out │ │ │ │ ├── output-1619808601.out │ │ │ │ ├── output-1619810401.out │ │ │ │ ├── output-1619812201.out │ │ │ │ ├── output-1619814001.out │ │ │ │ ├── output-1619815801.out │ │ │ │ ├── output-1619817601.out │ │ │ │ ├── output-1619819401.out │ │ │ │ ├── output-1619821201.out │ │ │ │ ├── output-1619823001.out │ │ │ │ ├── output-1619824801.out │ │ │ │ ├── output-1619826601.out │ │ │ │ ├── output-1619828401.out │ │ │ │ ├── output-1619830201.out │ │ │ │ ├── output-1619832001.out │ │ │ │ ├── output-1619833801.out │ │ │ │ ├── output-1619835601.out │ │ │ │ ├── output-1619837401.out │ │ │ │ ├── output-1619839201.out │ │ │ │ ├── output-1619841001.out │ │ │ │ ├── output-1619842801.out │ │ │ │ ├── output-1619844601.out │ │ │ │ ├── output-1619846401.out │ │ │ │ ├── output-1619848201.out │ │ │ │ ├── output-1619850001.out │ │ │ │ ├── output-1619851801.out │ │ │ │ ├── output-1619853601.out │ │ │ │ ├── output-1619855401.out │ │ │ │ ├── output-1619857201.out │ │ │ │ ├── output-1619859001.out │ │ │ │ ├── output-1619860801.out │ │ │ │ ├── output-1619862601.out │ │ │ │ ├── output-1619864401.out │ │ │ │ ├── output-1619866201.out │ │ │ │ ├── output-1619868001.out │ │ │ │ ├── output-1619869801.out │ │ │ │ ├── output-1619871601.out │ │ │ │ ├── output-1619873401.out │ │ │ │ ├── output-1619875201.out │ │ │ │ ├── output-1619877001.out │ │ │ │ ├── output-1619878801.out │ │ │ │ ├── output-1619880601.out │ │ │ │ ├── output-1619882401.out │ │ │ │ ├── output-1619884201.out │ │ │ │ ├── output-1619886001.out │ │ │ │ ├── output-1619887801.out │ │ │ │ ├── output-1619889601.out │ │ │ │ ├── output-1619891401.out │ │ │ │ ├── output-1619893201.out │ │ │ │ ├── output-1619895001.out │ │ │ │ ├── output-1619896801.out │ │ │ │ ├── output-1619898601.out │ │ │ │ ├── output-1619900401.out │ │ │ │ ├── output-1619902201.out │ │ │ │ ├── output-1619904001.out │ │ │ │ ├── output-1619905801.out │ │ │ │ ├── output-1619907601.out │ │ │ │ ├── output-1619909401.out │ │ │ │ ├── output-1619911201.out │ │ │ │ ├── output-1619913001.out │ │ │ │ ├── output-1619914801.out │ │ │ │ ├── output-1619916601.out │ │ │ │ ├── output-1619918401.out │ │ │ │ ├── output-1619920201.out │ │ │ │ ├── output-1619922001.out │ │ │ │ ├── output-1619923801.out │ │ │ │ ├── output-1619925601.out │ │ │ │ ├── output-1619927401.out │ │ │ │ ├── output-1619929201.out │ │ │ │ ├── output-1619931001.out │ │ │ │ ├── output-1619932801.out │ │ │ │ ├── output-1619934601.out │ │ │ │ ├── output-1619936401.out │ │ │ │ ├── output-1619938201.out │ │ │ │ ├── output-1619940001.out │ │ │ │ ├── output-1619941801.out │ │ │ │ ├── output-1619943601.out │ │ │ │ ├── output-1619945401.out │ │ │ │ ├── output-1619947201.out │ │ │ │ ├── output-1619949001.out │ │ │ │ ├── output-1619950801.out │ │ │ │ ├── output-1619952601.out │ │ │ │ ├── output-1619954401.out │ │ │ │ ├── output-1619956201.out │ │ │ │ ├── output-1619958001.out │ │ │ │ ├── output-1619959801.out │ │ │ │ ├── output-1619961601.out │ │ │ │ ├── output-1619963401.out │ │ │ │ ├── output-1619965201.out │ │ │ │ ├── output-1619967001.out │ │ │ │ ├── output-1619968801.out │ │ │ │ ├── output-1619970601.out │ │ │ │ ├── output-1619972401.out │ │ │ │ ├── output-1619974201.out │ │ │ │ ├── output-1619976001.out │ │ │ │ ├── output-1619977801.out │ │ │ │ ├── output-1619979601.out │ │ │ │ ├── output-1619981401.out │ │ │ │ ├── output-1619983201.out │ │ │ │ ├── output-1619985001.out │ │ │ │ ├── output-1619986801.out │ │ │ │ ├── output-1619988601.out │ │ │ │ ├── output-1619990401.out │ │ │ │ ├── output-1619992201.out │ │ │ │ ├── output-1619994001.out │ │ │ │ ├── output-1619995801.out │ │ │ │ ├── output-1619997601.out │ │ │ │ ├── output-1619999401.out │ │ │ │ ├── output-1620001201.out │ │ │ │ ├── output-1620003001.out │ │ │ │ ├── output-1620004801.out │ │ │ │ ├── output-1620006601.out │ │ │ │ ├── output-1620008401.out │ │ │ │ ├── output-1620010201.out │ │ │ │ ├── output-1620012001.out │ │ │ │ ├── output-1620013801.out │ │ │ │ ├── output-1620015601.out │ │ │ │ ├── output-1620017401.out │ │ │ │ ├── output-1620019201.out │ │ │ │ ├── output-1620021001.out │ │ │ │ ├── output-1620022801.out │ │ │ │ ├── output-1620024601.out │ │ │ │ ├── output-1620026401.out │ │ │ │ ├── output-1620028201.out │ │ │ │ ├── output-1620030001.out │ │ │ │ ├── output-1620031801.out │ │ │ │ ├── output-1620033601.out │ │ │ │ ├── output-1620035401.out │ │ │ │ ├── output-1620037201.out │ │ │ │ ├── output-1620039001.out │ │ │ │ ├── output-1620040801.out │ │ │ │ ├── output-1620042601.out │ │ │ │ ├── output-1620044401.out │ │ │ │ ├── output-1620046201.out │ │ │ │ ├── output-1620048001.out │ │ │ │ ├── output-1620049801.out │ │ │ │ ├── output-1620051601.out │ │ │ │ ├── output-1620053401.out │ │ │ │ ├── output-1620055201.out │ │ │ │ ├── output-1620057001.out │ │ │ │ ├── output-1620058801.out │ │ │ │ ├── output-1620060601.out │ │ │ │ ├── output-1620062401.out │ │ │ │ ├── output-1620064201.out │ │ │ │ ├── output-1620066001.out │ │ │ │ ├── output-1620067801.out │ │ │ │ ├── output-1620069601.out │ │ │ │ ├── output-1620071401.out │ │ │ │ ├── output-1620073201.out │ │ │ │ ├── output-1620075001.out │ │ │ │ ├── output-1620076801.out │ │ │ │ ├── output-1620078601.out │ │ │ │ ├── output-1620080401.out │ │ │ │ ├── output-1620082201.out │ │ │ │ ├── output-1620084001.out │ │ │ │ ├── output-1620085801.out │ │ │ │ ├── output-1620087601.out │ │ │ │ ├── output-1620089401.out │ │ │ │ ├── output-1620091201.out │ │ │ │ ├── output-1620093001.out │ │ │ │ ├── output-1620094801.out │ │ │ │ ├── output-1620096601.out │ │ │ │ ├── output-1620098402.out │ │ │ │ ├── output-1620100201.out │ │ │ │ ├── output-1620102001.out │ │ │ │ ├── output-1620103801.out │ │ │ │ ├── output-1620105601.out │ │ │ │ ├── output-1620107402.out │ │ │ │ ├── output-1620109201.out │ │ │ │ ├── output-1620111001.out │ │ │ │ ├── output-1620112801.out │ │ │ │ ├── output-1620114601.out │ │ │ │ ├── output-1620116401.out │ │ │ │ ├── output-1620118201.out │ │ │ │ ├── output-1620120001.out │ │ │ │ ├── output-1620121801.out │ │ │ │ ├── output-1620123601.out │ │ │ │ ├── output-1620125401.out │ │ │ │ ├── output-1620127201.out │ │ │ │ ├── output-1620129001.out │ │ │ │ ├── output-1620130801.out │ │ │ │ ├── output-1620132601.out │ │ │ │ ├── output-1620134401.out │ │ │ │ ├── output-1620136201.out │ │ │ │ ├── output-1620138001.out │ │ │ │ ├── output-1620139801.out │ │ │ │ ├── output-1620141601.out │ │ │ │ ├── output-1620143401.out │ │ │ │ ├── output-1620145201.out │ │ │ │ ├── output-1620147001.out │ │ │ │ ├── output-1620148801.out │ │ │ │ ├── output-1620150602.out │ │ │ │ ├── output-1620152401.out │ │ │ │ ├── output-1620154201.out │ │ │ │ ├── output-1620156001.out │ │ │ │ ├── output-1620157801.out │ │ │ │ └── output-1620159601.out │ │ ├── nv │ │ │ └── logs │ │ │ │ ├── roughtime.chainpoint.org │ │ │ │ ├── output-1619215801.out │ │ │ │ ├── output-1619217601.out │ │ │ │ ├── output-1619219401.out │ │ │ │ ├── output-1619221201.out │ │ │ │ ├── output-1619223001.out │ │ │ │ ├── output-1619224801.out │ │ │ │ ├── output-1619226601.out │ │ │ │ ├── output-1619228401.out │ │ │ │ ├── output-1619230201.out │ │ │ │ ├── output-1619232001.out │ │ │ │ ├── output-1619233801.out │ │ │ │ ├── output-1619235601.out │ │ │ │ ├── output-1619237401.out │ │ │ │ ├── output-1619239201.out │ │ │ │ ├── output-1619241001.out │ │ │ │ ├── output-1619242801.out │ │ │ │ ├── output-1619244601.out │ │ │ │ ├── output-1619246401.out │ │ │ │ ├── output-1619248201.out │ │ │ │ ├── output-1619250001.out │ │ │ │ ├── output-1619251801.out │ │ │ │ ├── output-1619253601.out │ │ │ │ ├── output-1619255401.out │ │ │ │ ├── output-1619257201.out │ │ │ │ ├── output-1619259001.out │ │ │ │ ├── output-1619260801.out │ │ │ │ ├── output-1619262601.out │ │ │ │ ├── output-1619264401.out │ │ │ │ ├── output-1619266201.out │ │ │ │ ├── output-1619268001.out │ │ │ │ ├── output-1619269801.out │ │ │ │ ├── output-1619271601.out │ │ │ │ ├── output-1619273401.out │ │ │ │ ├── output-1619275201.out │ │ │ │ ├── output-1619277001.out │ │ │ │ ├── output-1619278801.out │ │ │ │ ├── output-1619280601.out │ │ │ │ ├── output-1619282401.out │ │ │ │ ├── output-1619284201.out │ │ │ │ ├── output-1619286001.out │ │ │ │ ├── output-1619287801.out │ │ │ │ ├── output-1619289601.out │ │ │ │ ├── output-1619291401.out │ │ │ │ ├── output-1619293201.out │ │ │ │ ├── output-1619295001.out │ │ │ │ ├── output-1619296801.out │ │ │ │ ├── output-1619298601.out │ │ │ │ ├── output-1619300401.out │ │ │ │ ├── output-1619302201.out │ │ │ │ ├── output-1619304001.out │ │ │ │ ├── output-1619305801.out │ │ │ │ ├── output-1619307601.out │ │ │ │ ├── output-1619309401.out │ │ │ │ ├── output-1619311201.out │ │ │ │ ├── output-1619313001.out │ │ │ │ ├── output-1619314801.out │ │ │ │ ├── output-1619316601.out │ │ │ │ ├── output-1619318401.out │ │ │ │ ├── output-1619320201.out │ │ │ │ ├── output-1619322001.out │ │ │ │ ├── output-1619323801.out │ │ │ │ ├── output-1619325601.out │ │ │ │ ├── output-1619327401.out │ │ │ │ ├── output-1619329201.out │ │ │ │ ├── output-1619331001.out │ │ │ │ ├── output-1619332801.out │ │ │ │ ├── output-1619334601.out │ │ │ │ ├── output-1619336401.out │ │ │ │ ├── output-1619338201.out │ │ │ │ ├── output-1619340001.out │ │ │ │ ├── output-1619341801.out │ │ │ │ ├── output-1619343601.out │ │ │ │ ├── output-1619345401.out │ │ │ │ ├── output-1619347201.out │ │ │ │ ├── output-1619349001.out │ │ │ │ ├── output-1619350801.out │ │ │ │ ├── output-1619352601.out │ │ │ │ ├── output-1619354401.out │ │ │ │ ├── output-1619356201.out │ │ │ │ ├── output-1619358001.out │ │ │ │ ├── output-1619359801.out │ │ │ │ ├── output-1619361601.out │ │ │ │ ├── output-1619363401.out │ │ │ │ ├── output-1619365201.out │ │ │ │ ├── output-1619367001.out │ │ │ │ ├── output-1619368801.out │ │ │ │ ├── output-1619370601.out │ │ │ │ ├── output-1619372401.out │ │ │ │ ├── output-1619374201.out │ │ │ │ ├── output-1619376001.out │ │ │ │ ├── output-1619377801.out │ │ │ │ ├── output-1619379601.out │ │ │ │ ├── output-1619381401.out │ │ │ │ ├── output-1619383201.out │ │ │ │ ├── output-1619385001.out │ │ │ │ ├── output-1619386801.out │ │ │ │ ├── output-1619388601.out │ │ │ │ ├── output-1619390401.out │ │ │ │ ├── output-1619392201.out │ │ │ │ ├── output-1619394001.out │ │ │ │ ├── output-1619395801.out │ │ │ │ ├── output-1619397601.out │ │ │ │ ├── output-1619399401.out │ │ │ │ ├── output-1619401201.out │ │ │ │ ├── output-1619403001.out │ │ │ │ ├── output-1619404801.out │ │ │ │ ├── output-1619406601.out │ │ │ │ ├── output-1619408401.out │ │ │ │ ├── output-1619410201.out │ │ │ │ ├── output-1619412001.out │ │ │ │ ├── output-1619413801.out │ │ │ │ ├── output-1619415601.out │ │ │ │ ├── output-1619417401.out │ │ │ │ ├── output-1619419201.out │ │ │ │ ├── output-1619421001.out │ │ │ │ ├── output-1619422801.out │ │ │ │ ├── output-1619424601.out │ │ │ │ ├── output-1619426401.out │ │ │ │ ├── output-1619428201.out │ │ │ │ ├── output-1619430001.out │ │ │ │ ├── output-1619431801.out │ │ │ │ ├── output-1619433601.out │ │ │ │ ├── output-1619435401.out │ │ │ │ ├── output-1619437201.out │ │ │ │ ├── output-1619439001.out │ │ │ │ ├── output-1619440801.out │ │ │ │ ├── output-1619442601.out │ │ │ │ ├── output-1619444401.out │ │ │ │ ├── output-1619446201.out │ │ │ │ ├── output-1619448001.out │ │ │ │ ├── output-1619449801.out │ │ │ │ ├── output-1619451601.out │ │ │ │ ├── output-1619453401.out │ │ │ │ ├── output-1619455201.out │ │ │ │ ├── output-1619457001.out │ │ │ │ ├── output-1619458801.out │ │ │ │ ├── output-1619460601.out │ │ │ │ ├── output-1619462401.out │ │ │ │ ├── output-1619464201.out │ │ │ │ ├── output-1619466001.out │ │ │ │ ├── output-1619467801.out │ │ │ │ ├── output-1619469601.out │ │ │ │ ├── output-1619471401.out │ │ │ │ ├── output-1619473201.out │ │ │ │ ├── output-1619475001.out │ │ │ │ ├── output-1619476801.out │ │ │ │ ├── output-1619478601.out │ │ │ │ ├── output-1619480401.out │ │ │ │ ├── output-1619482201.out │ │ │ │ ├── output-1619484001.out │ │ │ │ ├── output-1619485801.out │ │ │ │ ├── output-1619487601.out │ │ │ │ ├── output-1619489401.out │ │ │ │ ├── output-1619491201.out │ │ │ │ ├── output-1619493001.out │ │ │ │ ├── output-1619494801.out │ │ │ │ ├── output-1619496602.out │ │ │ │ ├── output-1619498401.out │ │ │ │ ├── output-1619500201.out │ │ │ │ ├── output-1619502001.out │ │ │ │ ├── output-1619503801.out │ │ │ │ ├── output-1619505601.out │ │ │ │ ├── output-1619507401.out │ │ │ │ ├── output-1619509201.out │ │ │ │ ├── output-1619511001.out │ │ │ │ ├── output-1619512801.out │ │ │ │ ├── output-1619514601.out │ │ │ │ ├── output-1619516401.out │ │ │ │ ├── output-1619518201.out │ │ │ │ ├── output-1619520001.out │ │ │ │ ├── output-1619521801.out │ │ │ │ ├── output-1619523601.out │ │ │ │ ├── output-1619525401.out │ │ │ │ ├── output-1619527201.out │ │ │ │ ├── output-1619529001.out │ │ │ │ ├── output-1619530801.out │ │ │ │ ├── output-1619532601.out │ │ │ │ ├── output-1619534401.out │ │ │ │ ├── output-1619536201.out │ │ │ │ ├── output-1619538001.out │ │ │ │ ├── output-1619539801.out │ │ │ │ ├── output-1619541601.out │ │ │ │ ├── output-1619543401.out │ │ │ │ ├── output-1619545202.out │ │ │ │ ├── output-1619547001.out │ │ │ │ ├── output-1619548801.out │ │ │ │ ├── output-1619550601.out │ │ │ │ ├── output-1619552401.out │ │ │ │ ├── output-1619554201.out │ │ │ │ ├── output-1619556001.out │ │ │ │ ├── output-1619557801.out │ │ │ │ ├── output-1619559601.out │ │ │ │ ├── output-1619561401.out │ │ │ │ ├── output-1619563201.out │ │ │ │ ├── output-1619565001.out │ │ │ │ ├── output-1619566801.out │ │ │ │ ├── output-1619568601.out │ │ │ │ ├── output-1619570401.out │ │ │ │ ├── output-1619572201.out │ │ │ │ ├── output-1619574001.out │ │ │ │ ├── output-1619575801.out │ │ │ │ ├── output-1619577601.out │ │ │ │ ├── output-1619579401.out │ │ │ │ ├── output-1619581201.out │ │ │ │ ├── output-1619583001.out │ │ │ │ ├── output-1619584801.out │ │ │ │ ├── output-1619586601.out │ │ │ │ ├── output-1619588401.out │ │ │ │ ├── output-1619590201.out │ │ │ │ ├── output-1619592001.out │ │ │ │ ├── output-1619593801.out │ │ │ │ ├── output-1619595601.out │ │ │ │ ├── output-1619597401.out │ │ │ │ ├── output-1619599201.out │ │ │ │ ├── output-1619601001.out │ │ │ │ ├── output-1619602801.out │ │ │ │ ├── output-1619604601.out │ │ │ │ ├── output-1619606401.out │ │ │ │ ├── output-1619608201.out │ │ │ │ ├── output-1619610001.out │ │ │ │ ├── output-1619611801.out │ │ │ │ ├── output-1619613601.out │ │ │ │ ├── output-1619615401.out │ │ │ │ ├── output-1619617201.out │ │ │ │ ├── output-1619619001.out │ │ │ │ ├── output-1619620801.out │ │ │ │ ├── output-1619622601.out │ │ │ │ ├── output-1619624401.out │ │ │ │ ├── output-1619626201.out │ │ │ │ ├── output-1619628001.out │ │ │ │ ├── output-1619629801.out │ │ │ │ ├── output-1619631601.out │ │ │ │ ├── output-1619633402.out │ │ │ │ ├── output-1619635201.out │ │ │ │ ├── output-1619637001.out │ │ │ │ ├── output-1619638801.out │ │ │ │ ├── output-1619640601.out │ │ │ │ ├── output-1619642401.out │ │ │ │ ├── output-1619644201.out │ │ │ │ ├── output-1619646001.out │ │ │ │ ├── output-1619647801.out │ │ │ │ ├── output-1619649601.out │ │ │ │ ├── output-1619651401.out │ │ │ │ ├── output-1619653201.out │ │ │ │ ├── output-1619655001.out │ │ │ │ ├── output-1619656801.out │ │ │ │ ├── output-1619658601.out │ │ │ │ ├── output-1619660401.out │ │ │ │ ├── output-1619662201.out │ │ │ │ ├── output-1619664001.out │ │ │ │ ├── output-1619665801.out │ │ │ │ ├── output-1619667601.out │ │ │ │ ├── output-1619669401.out │ │ │ │ ├── output-1619671201.out │ │ │ │ ├── output-1619673001.out │ │ │ │ ├── output-1619674801.out │ │ │ │ ├── output-1619676601.out │ │ │ │ ├── output-1619678401.out │ │ │ │ ├── output-1619680201.out │ │ │ │ ├── output-1619682001.out │ │ │ │ ├── output-1619683801.out │ │ │ │ ├── output-1619685601.out │ │ │ │ ├── output-1619687401.out │ │ │ │ ├── output-1619689201.out │ │ │ │ ├── output-1619691001.out │ │ │ │ ├── output-1619692801.out │ │ │ │ ├── output-1619694601.out │ │ │ │ ├── output-1619696401.out │ │ │ │ ├── output-1619698201.out │ │ │ │ ├── output-1619700001.out │ │ │ │ ├── output-1619701801.out │ │ │ │ ├── output-1619703601.out │ │ │ │ ├── output-1619705401.out │ │ │ │ ├── output-1619707201.out │ │ │ │ ├── output-1619709001.out │ │ │ │ ├── output-1619710801.out │ │ │ │ ├── output-1619712601.out │ │ │ │ ├── output-1619714401.out │ │ │ │ ├── output-1619716201.out │ │ │ │ ├── output-1619718001.out │ │ │ │ ├── output-1619719801.out │ │ │ │ ├── output-1619721601.out │ │ │ │ ├── output-1619723401.out │ │ │ │ ├── output-1619725201.out │ │ │ │ ├── output-1619727001.out │ │ │ │ ├── output-1619728801.out │ │ │ │ ├── output-1619730601.out │ │ │ │ ├── output-1619732401.out │ │ │ │ ├── output-1619734201.out │ │ │ │ ├── output-1619736001.out │ │ │ │ ├── output-1619737801.out │ │ │ │ ├── output-1619739601.out │ │ │ │ ├── output-1619741401.out │ │ │ │ ├── output-1619743201.out │ │ │ │ ├── output-1619745001.out │ │ │ │ ├── output-1619746801.out │ │ │ │ ├── output-1619748601.out │ │ │ │ ├── output-1619750401.out │ │ │ │ ├── output-1619752201.out │ │ │ │ ├── output-1619754001.out │ │ │ │ ├── output-1619755801.out │ │ │ │ ├── output-1619757601.out │ │ │ │ ├── output-1619759401.out │ │ │ │ ├── output-1619761201.out │ │ │ │ ├── output-1619763001.out │ │ │ │ ├── output-1619764801.out │ │ │ │ ├── output-1619766601.out │ │ │ │ ├── output-1619768401.out │ │ │ │ ├── output-1619770201.out │ │ │ │ ├── output-1619772001.out │ │ │ │ ├── output-1619773801.out │ │ │ │ ├── output-1619775601.out │ │ │ │ ├── output-1619777401.out │ │ │ │ ├── output-1619779201.out │ │ │ │ ├── output-1619781001.out │ │ │ │ ├── output-1619782801.out │ │ │ │ ├── output-1619784601.out │ │ │ │ ├── output-1619786401.out │ │ │ │ ├── output-1619788201.out │ │ │ │ ├── output-1619790001.out │ │ │ │ ├── output-1619791801.out │ │ │ │ ├── output-1619793601.out │ │ │ │ ├── output-1619795401.out │ │ │ │ ├── output-1619797201.out │ │ │ │ ├── output-1619799001.out │ │ │ │ ├── output-1619800801.out │ │ │ │ ├── output-1619802601.out │ │ │ │ ├── output-1619804401.out │ │ │ │ ├── output-1619806201.out │ │ │ │ ├── output-1619808001.out │ │ │ │ ├── output-1619809801.out │ │ │ │ ├── output-1619811601.out │ │ │ │ ├── output-1619813401.out │ │ │ │ ├── output-1619815201.out │ │ │ │ ├── output-1619817001.out │ │ │ │ ├── output-1619818801.out │ │ │ │ ├── output-1619820601.out │ │ │ │ ├── output-1619822401.out │ │ │ │ ├── output-1619824201.out │ │ │ │ ├── output-1619826001.out │ │ │ │ ├── output-1619827801.out │ │ │ │ ├── output-1619829601.out │ │ │ │ ├── output-1619831401.out │ │ │ │ ├── output-1619833201.out │ │ │ │ ├── output-1619835001.out │ │ │ │ ├── output-1619836801.out │ │ │ │ ├── output-1619838601.out │ │ │ │ ├── output-1619840401.out │ │ │ │ ├── output-1619842201.out │ │ │ │ ├── output-1619844001.out │ │ │ │ ├── output-1619845801.out │ │ │ │ ├── output-1619847601.out │ │ │ │ ├── output-1619849401.out │ │ │ │ ├── output-1619851201.out │ │ │ │ ├── output-1619853001.out │ │ │ │ ├── output-1619854801.out │ │ │ │ ├── output-1619856601.out │ │ │ │ ├── output-1619858401.out │ │ │ │ ├── output-1619860201.out │ │ │ │ ├── output-1619862001.out │ │ │ │ ├── output-1619863801.out │ │ │ │ ├── output-1619865601.out │ │ │ │ ├── output-1619867401.out │ │ │ │ ├── output-1619869201.out │ │ │ │ ├── output-1619871001.out │ │ │ │ ├── output-1619872801.out │ │ │ │ ├── output-1619874601.out │ │ │ │ ├── output-1619876401.out │ │ │ │ ├── output-1619878201.out │ │ │ │ ├── output-1619880001.out │ │ │ │ ├── output-1619881801.out │ │ │ │ ├── output-1619883601.out │ │ │ │ ├── output-1619885401.out │ │ │ │ ├── output-1619887201.out │ │ │ │ ├── output-1619889001.out │ │ │ │ ├── output-1619890801.out │ │ │ │ ├── output-1619892601.out │ │ │ │ ├── output-1619894401.out │ │ │ │ ├── output-1619896201.out │ │ │ │ ├── output-1619898001.out │ │ │ │ ├── output-1619899801.out │ │ │ │ ├── output-1619901601.out │ │ │ │ ├── output-1619903401.out │ │ │ │ ├── output-1619905201.out │ │ │ │ ├── output-1619907001.out │ │ │ │ ├── output-1619908801.out │ │ │ │ ├── output-1619910601.out │ │ │ │ ├── output-1619912401.out │ │ │ │ ├── output-1619914201.out │ │ │ │ ├── output-1619916001.out │ │ │ │ ├── output-1619917801.out │ │ │ │ ├── output-1619919601.out │ │ │ │ ├── output-1619921401.out │ │ │ │ ├── output-1619923201.out │ │ │ │ ├── output-1619925001.out │ │ │ │ ├── output-1619926801.out │ │ │ │ ├── output-1619928601.out │ │ │ │ ├── output-1619930401.out │ │ │ │ ├── output-1619932201.out │ │ │ │ ├── output-1619934001.out │ │ │ │ ├── output-1619935801.out │ │ │ │ ├── output-1619937601.out │ │ │ │ ├── output-1619939401.out │ │ │ │ ├── output-1619941201.out │ │ │ │ ├── output-1619943001.out │ │ │ │ ├── output-1619944801.out │ │ │ │ ├── output-1619946601.out │ │ │ │ ├── output-1619948401.out │ │ │ │ ├── output-1619950201.out │ │ │ │ ├── output-1619952001.out │ │ │ │ ├── output-1619953801.out │ │ │ │ ├── output-1619955601.out │ │ │ │ ├── output-1619957401.out │ │ │ │ ├── output-1619959201.out │ │ │ │ ├── output-1619961001.out │ │ │ │ ├── output-1619962801.out │ │ │ │ ├── output-1619964601.out │ │ │ │ ├── output-1619966401.out │ │ │ │ ├── output-1619968201.out │ │ │ │ ├── output-1619970001.out │ │ │ │ ├── output-1619971801.out │ │ │ │ ├── output-1619973601.out │ │ │ │ ├── output-1619975401.out │ │ │ │ ├── output-1619977201.out │ │ │ │ ├── output-1619979001.out │ │ │ │ ├── output-1619980801.out │ │ │ │ ├── output-1619982601.out │ │ │ │ ├── output-1619984401.out │ │ │ │ ├── output-1619986201.out │ │ │ │ ├── output-1619988001.out │ │ │ │ ├── output-1619989801.out │ │ │ │ ├── output-1619991601.out │ │ │ │ ├── output-1619993401.out │ │ │ │ ├── output-1619995201.out │ │ │ │ ├── output-1619997001.out │ │ │ │ ├── output-1619998801.out │ │ │ │ ├── output-1620000601.out │ │ │ │ ├── output-1620002401.out │ │ │ │ ├── output-1620004201.out │ │ │ │ ├── output-1620006001.out │ │ │ │ ├── output-1620007801.out │ │ │ │ ├── output-1620009601.out │ │ │ │ ├── output-1620011401.out │ │ │ │ ├── output-1620013201.out │ │ │ │ ├── output-1620015001.out │ │ │ │ ├── output-1620016801.out │ │ │ │ ├── output-1620018601.out │ │ │ │ ├── output-1620020401.out │ │ │ │ ├── output-1620022201.out │ │ │ │ ├── output-1620024001.out │ │ │ │ ├── output-1620025801.out │ │ │ │ ├── output-1620027601.out │ │ │ │ ├── output-1620029401.out │ │ │ │ ├── output-1620031201.out │ │ │ │ ├── output-1620033001.out │ │ │ │ ├── output-1620034801.out │ │ │ │ ├── output-1620036601.out │ │ │ │ ├── output-1620038401.out │ │ │ │ ├── output-1620040201.out │ │ │ │ ├── output-1620042001.out │ │ │ │ ├── output-1620043801.out │ │ │ │ ├── output-1620045601.out │ │ │ │ ├── output-1620047401.out │ │ │ │ ├── output-1620049201.out │ │ │ │ ├── output-1620051001.out │ │ │ │ ├── output-1620052801.out │ │ │ │ ├── output-1620054601.out │ │ │ │ ├── output-1620056401.out │ │ │ │ ├── output-1620058201.out │ │ │ │ ├── output-1620060001.out │ │ │ │ ├── output-1620061801.out │ │ │ │ ├── output-1620063601.out │ │ │ │ ├── output-1620065401.out │ │ │ │ ├── output-1620067201.out │ │ │ │ ├── output-1620069001.out │ │ │ │ ├── output-1620070801.out │ │ │ │ ├── output-1620072601.out │ │ │ │ ├── output-1620074401.out │ │ │ │ ├── output-1620076201.out │ │ │ │ ├── output-1620078001.out │ │ │ │ ├── output-1620079801.out │ │ │ │ ├── output-1620081601.out │ │ │ │ ├── output-1620083401.out │ │ │ │ ├── output-1620085201.out │ │ │ │ ├── output-1620087001.out │ │ │ │ ├── output-1620088801.out │ │ │ │ ├── output-1620090601.out │ │ │ │ ├── output-1620092401.out │ │ │ │ ├── output-1620094201.out │ │ │ │ ├── output-1620096001.out │ │ │ │ ├── output-1620097801.out │ │ │ │ ├── output-1620099601.out │ │ │ │ ├── output-1620101401.out │ │ │ │ ├── output-1620103201.out │ │ │ │ ├── output-1620105001.out │ │ │ │ ├── output-1620106801.out │ │ │ │ ├── output-1620108601.out │ │ │ │ ├── output-1620110401.out │ │ │ │ ├── output-1620112201.out │ │ │ │ ├── output-1620114001.out │ │ │ │ ├── output-1620115801.out │ │ │ │ ├── output-1620117601.out │ │ │ │ ├── output-1620119401.out │ │ │ │ ├── output-1620121201.out │ │ │ │ ├── output-1620123001.out │ │ │ │ ├── output-1620124801.out │ │ │ │ ├── output-1620126601.out │ │ │ │ ├── output-1620128401.out │ │ │ │ ├── output-1620130201.out │ │ │ │ ├── output-1620132001.out │ │ │ │ ├── output-1620133801.out │ │ │ │ ├── output-1620135601.out │ │ │ │ ├── output-1620137401.out │ │ │ │ ├── output-1620139201.out │ │ │ │ ├── output-1620141001.out │ │ │ │ ├── output-1620142801.out │ │ │ │ ├── output-1620144601.out │ │ │ │ ├── output-1620146402.out │ │ │ │ ├── output-1620148201.out │ │ │ │ ├── output-1620150001.out │ │ │ │ ├── output-1620151801.out │ │ │ │ ├── output-1620153601.out │ │ │ │ ├── output-1620155401.out │ │ │ │ ├── output-1620157201.out │ │ │ │ └── output-1620159001.out │ │ │ │ ├── roughtime.int08h.com │ │ │ │ ├── output-1619216401.out │ │ │ │ ├── output-1619218201.out │ │ │ │ ├── output-1619220001.out │ │ │ │ ├── output-1619221801.out │ │ │ │ ├── output-1619223601.out │ │ │ │ ├── output-1619225401.out │ │ │ │ ├── output-1619227201.out │ │ │ │ ├── output-1619229001.out │ │ │ │ ├── output-1619230801.out │ │ │ │ ├── output-1619232601.out │ │ │ │ ├── output-1619234401.out │ │ │ │ ├── output-1619236201.out │ │ │ │ ├── output-1619238001.out │ │ │ │ ├── output-1619239801.out │ │ │ │ ├── output-1619241601.out │ │ │ │ ├── output-1619243401.out │ │ │ │ ├── output-1619245201.out │ │ │ │ ├── output-1619247001.out │ │ │ │ ├── output-1619248801.out │ │ │ │ ├── output-1619250601.out │ │ │ │ ├── output-1619252401.out │ │ │ │ ├── output-1619254201.out │ │ │ │ ├── output-1619256001.out │ │ │ │ ├── output-1619257801.out │ │ │ │ ├── output-1619259601.out │ │ │ │ ├── output-1619261401.out │ │ │ │ ├── output-1619263201.out │ │ │ │ ├── output-1619265001.out │ │ │ │ ├── output-1619266801.out │ │ │ │ ├── output-1619268601.out │ │ │ │ ├── output-1619270401.out │ │ │ │ ├── output-1619272201.out │ │ │ │ ├── output-1619274001.out │ │ │ │ ├── output-1619275801.out │ │ │ │ ├── output-1619277601.out │ │ │ │ ├── output-1619279401.out │ │ │ │ ├── output-1619281201.out │ │ │ │ ├── output-1619283001.out │ │ │ │ ├── output-1619284801.out │ │ │ │ ├── output-1619286601.out │ │ │ │ ├── output-1619288401.out │ │ │ │ ├── output-1619290201.out │ │ │ │ ├── output-1619292001.out │ │ │ │ ├── output-1619293801.out │ │ │ │ ├── output-1619295601.out │ │ │ │ ├── output-1619297401.out │ │ │ │ ├── output-1619299201.out │ │ │ │ ├── output-1619301001.out │ │ │ │ ├── output-1619302801.out │ │ │ │ ├── output-1619304601.out │ │ │ │ ├── output-1619306401.out │ │ │ │ ├── output-1619308201.out │ │ │ │ ├── output-1619310001.out │ │ │ │ ├── output-1619311801.out │ │ │ │ ├── output-1619313601.out │ │ │ │ ├── output-1619315401.out │ │ │ │ ├── output-1619317201.out │ │ │ │ ├── output-1619319001.out │ │ │ │ ├── output-1619320801.out │ │ │ │ ├── output-1619322601.out │ │ │ │ ├── output-1619324401.out │ │ │ │ ├── output-1619326201.out │ │ │ │ ├── output-1619328001.out │ │ │ │ ├── output-1619329801.out │ │ │ │ ├── output-1619331601.out │ │ │ │ ├── output-1619333401.out │ │ │ │ ├── output-1619335201.out │ │ │ │ ├── output-1619337001.out │ │ │ │ ├── output-1619338801.out │ │ │ │ ├── output-1619340601.out │ │ │ │ ├── output-1619342401.out │ │ │ │ ├── output-1619344201.out │ │ │ │ ├── output-1619346001.out │ │ │ │ ├── output-1619347801.out │ │ │ │ ├── output-1619349601.out │ │ │ │ ├── output-1619351401.out │ │ │ │ ├── output-1619353201.out │ │ │ │ ├── output-1619355001.out │ │ │ │ ├── output-1619356801.out │ │ │ │ ├── output-1619358601.out │ │ │ │ ├── output-1619360401.out │ │ │ │ ├── output-1619362201.out │ │ │ │ ├── output-1619364001.out │ │ │ │ ├── output-1619365801.out │ │ │ │ ├── output-1619367601.out │ │ │ │ ├── output-1619369401.out │ │ │ │ ├── output-1619371201.out │ │ │ │ ├── output-1619373001.out │ │ │ │ ├── output-1619374801.out │ │ │ │ ├── output-1619376601.out │ │ │ │ ├── output-1619378401.out │ │ │ │ ├── output-1619380201.out │ │ │ │ ├── output-1619382001.out │ │ │ │ ├── output-1619383801.out │ │ │ │ ├── output-1619385601.out │ │ │ │ ├── output-1619387401.out │ │ │ │ ├── output-1619389201.out │ │ │ │ ├── output-1619391001.out │ │ │ │ ├── output-1619392801.out │ │ │ │ ├── output-1619394601.out │ │ │ │ ├── output-1619396401.out │ │ │ │ ├── output-1619398201.out │ │ │ │ ├── output-1619400001.out │ │ │ │ ├── output-1619401801.out │ │ │ │ ├── output-1619403601.out │ │ │ │ ├── output-1619405401.out │ │ │ │ ├── output-1619407201.out │ │ │ │ ├── output-1619409001.out │ │ │ │ ├── output-1619410801.out │ │ │ │ ├── output-1619412602.out │ │ │ │ ├── output-1619414401.out │ │ │ │ ├── output-1619416201.out │ │ │ │ ├── output-1619418001.out │ │ │ │ ├── output-1619419801.out │ │ │ │ ├── output-1619421601.out │ │ │ │ ├── output-1619423401.out │ │ │ │ ├── output-1619425201.out │ │ │ │ ├── output-1619427001.out │ │ │ │ ├── output-1619428801.out │ │ │ │ ├── output-1619430601.out │ │ │ │ ├── output-1619432401.out │ │ │ │ ├── output-1619434201.out │ │ │ │ ├── output-1619436001.out │ │ │ │ ├── output-1619437801.out │ │ │ │ ├── output-1619439601.out │ │ │ │ ├── output-1619441401.out │ │ │ │ ├── output-1619443201.out │ │ │ │ ├── output-1619445001.out │ │ │ │ ├── output-1619446801.out │ │ │ │ ├── output-1619448601.out │ │ │ │ ├── output-1619450401.out │ │ │ │ ├── output-1619452201.out │ │ │ │ ├── output-1619454001.out │ │ │ │ ├── output-1619455801.out │ │ │ │ ├── output-1619457601.out │ │ │ │ ├── output-1619459401.out │ │ │ │ ├── output-1619461201.out │ │ │ │ ├── output-1619463001.out │ │ │ │ ├── output-1619464801.out │ │ │ │ ├── output-1619466601.out │ │ │ │ ├── output-1619468401.out │ │ │ │ ├── output-1619470201.out │ │ │ │ ├── output-1619472001.out │ │ │ │ ├── output-1619473801.out │ │ │ │ ├── output-1619475601.out │ │ │ │ ├── output-1619477401.out │ │ │ │ ├── output-1619479201.out │ │ │ │ ├── output-1619481001.out │ │ │ │ ├── output-1619482801.out │ │ │ │ ├── output-1619484601.out │ │ │ │ ├── output-1619486401.out │ │ │ │ ├── output-1619488201.out │ │ │ │ ├── output-1619490001.out │ │ │ │ ├── output-1619491801.out │ │ │ │ ├── output-1619493601.out │ │ │ │ ├── output-1619495401.out │ │ │ │ ├── output-1619497201.out │ │ │ │ ├── output-1619499001.out │ │ │ │ ├── output-1619500801.out │ │ │ │ ├── output-1619502601.out │ │ │ │ ├── output-1619504401.out │ │ │ │ ├── output-1619506201.out │ │ │ │ ├── output-1619508001.out │ │ │ │ ├── output-1619509801.out │ │ │ │ ├── output-1619511601.out │ │ │ │ ├── output-1619513401.out │ │ │ │ ├── output-1619515201.out │ │ │ │ ├── output-1619517001.out │ │ │ │ ├── output-1619518801.out │ │ │ │ ├── output-1619520601.out │ │ │ │ ├── output-1619522401.out │ │ │ │ ├── output-1619524201.out │ │ │ │ ├── output-1619526001.out │ │ │ │ ├── output-1619527801.out │ │ │ │ ├── output-1619529601.out │ │ │ │ ├── output-1619531401.out │ │ │ │ ├── output-1619533201.out │ │ │ │ ├── output-1619535001.out │ │ │ │ ├── output-1619536801.out │ │ │ │ ├── output-1619538601.out │ │ │ │ ├── output-1619540401.out │ │ │ │ ├── output-1619542201.out │ │ │ │ ├── output-1619544001.out │ │ │ │ ├── output-1619545801.out │ │ │ │ ├── output-1619547601.out │ │ │ │ ├── output-1619549401.out │ │ │ │ ├── output-1619551201.out │ │ │ │ ├── output-1619553001.out │ │ │ │ ├── output-1619554801.out │ │ │ │ ├── output-1619556601.out │ │ │ │ ├── output-1619558401.out │ │ │ │ ├── output-1619560201.out │ │ │ │ ├── output-1619562001.out │ │ │ │ ├── output-1619563801.out │ │ │ │ ├── output-1619565601.out │ │ │ │ ├── output-1619567401.out │ │ │ │ ├── output-1619569201.out │ │ │ │ ├── output-1619571001.out │ │ │ │ ├── output-1619572801.out │ │ │ │ ├── output-1619574601.out │ │ │ │ ├── output-1619576401.out │ │ │ │ ├── output-1619578201.out │ │ │ │ ├── output-1619580001.out │ │ │ │ ├── output-1619581801.out │ │ │ │ ├── output-1619583601.out │ │ │ │ ├── output-1619585401.out │ │ │ │ ├── output-1619587201.out │ │ │ │ ├── output-1619589001.out │ │ │ │ ├── output-1619590801.out │ │ │ │ ├── output-1619592601.out │ │ │ │ ├── output-1619594401.out │ │ │ │ ├── output-1619596201.out │ │ │ │ ├── output-1619598001.out │ │ │ │ ├── output-1619599801.out │ │ │ │ ├── output-1619601601.out │ │ │ │ ├── output-1619603401.out │ │ │ │ ├── output-1619605201.out │ │ │ │ ├── output-1619607001.out │ │ │ │ ├── output-1619608801.out │ │ │ │ ├── output-1619610602.out │ │ │ │ ├── output-1619612401.out │ │ │ │ ├── output-1619614201.out │ │ │ │ ├── output-1619616001.out │ │ │ │ ├── output-1619617801.out │ │ │ │ ├── output-1619619601.out │ │ │ │ ├── output-1619621401.out │ │ │ │ ├── output-1619623201.out │ │ │ │ ├── output-1619625001.out │ │ │ │ ├── output-1619626801.out │ │ │ │ ├── output-1619628601.out │ │ │ │ ├── output-1619630401.out │ │ │ │ ├── output-1619632201.out │ │ │ │ ├── output-1619634001.out │ │ │ │ ├── output-1619635801.out │ │ │ │ ├── output-1619637601.out │ │ │ │ ├── output-1619639401.out │ │ │ │ ├── output-1619641201.out │ │ │ │ ├── output-1619643001.out │ │ │ │ ├── output-1619644801.out │ │ │ │ ├── output-1619646601.out │ │ │ │ ├── output-1619648401.out │ │ │ │ ├── output-1619650201.out │ │ │ │ ├── output-1619652001.out │ │ │ │ ├── output-1619653801.out │ │ │ │ ├── output-1619655601.out │ │ │ │ ├── output-1619657401.out │ │ │ │ ├── output-1619659201.out │ │ │ │ ├── output-1619661001.out │ │ │ │ ├── output-1619662801.out │ │ │ │ ├── output-1619664601.out │ │ │ │ ├── output-1619666401.out │ │ │ │ ├── output-1619668201.out │ │ │ │ ├── output-1619670001.out │ │ │ │ ├── output-1619671801.out │ │ │ │ ├── output-1619673601.out │ │ │ │ ├── output-1619675401.out │ │ │ │ ├── output-1619677201.out │ │ │ │ ├── output-1619679001.out │ │ │ │ ├── output-1619680801.out │ │ │ │ ├── output-1619682601.out │ │ │ │ ├── output-1619684401.out │ │ │ │ ├── output-1619686201.out │ │ │ │ ├── output-1619688001.out │ │ │ │ ├── output-1619689801.out │ │ │ │ ├── output-1619691601.out │ │ │ │ ├── output-1619693401.out │ │ │ │ ├── output-1619695201.out │ │ │ │ ├── output-1619697001.out │ │ │ │ ├── output-1619698801.out │ │ │ │ ├── output-1619700601.out │ │ │ │ ├── output-1619702401.out │ │ │ │ ├── output-1619704201.out │ │ │ │ ├── output-1619706001.out │ │ │ │ ├── output-1619707801.out │ │ │ │ ├── output-1619709601.out │ │ │ │ ├── output-1619711402.out │ │ │ │ ├── output-1619713201.out │ │ │ │ ├── output-1619715001.out │ │ │ │ ├── output-1619716801.out │ │ │ │ ├── output-1619718601.out │ │ │ │ ├── output-1619720401.out │ │ │ │ ├── output-1619722201.out │ │ │ │ ├── output-1619724001.out │ │ │ │ ├── output-1619725801.out │ │ │ │ ├── output-1619727601.out │ │ │ │ ├── output-1619729401.out │ │ │ │ ├── output-1619731201.out │ │ │ │ ├── output-1619733001.out │ │ │ │ ├── output-1619734801.out │ │ │ │ ├── output-1619736601.out │ │ │ │ ├── output-1619738401.out │ │ │ │ ├── output-1619740201.out │ │ │ │ ├── output-1619742001.out │ │ │ │ ├── output-1619743801.out │ │ │ │ ├── output-1619745601.out │ │ │ │ ├── output-1619747401.out │ │ │ │ ├── output-1619749201.out │ │ │ │ ├── output-1619751001.out │ │ │ │ ├── output-1619752801.out │ │ │ │ ├── output-1619754602.out │ │ │ │ ├── output-1619756401.out │ │ │ │ ├── output-1619758201.out │ │ │ │ ├── output-1619760001.out │ │ │ │ ├── output-1619761801.out │ │ │ │ ├── output-1619763601.out │ │ │ │ ├── output-1619765401.out │ │ │ │ ├── output-1619767201.out │ │ │ │ ├── output-1619769001.out │ │ │ │ ├── output-1619770801.out │ │ │ │ ├── output-1619772601.out │ │ │ │ ├── output-1619774401.out │ │ │ │ ├── output-1619776201.out │ │ │ │ ├── output-1619778001.out │ │ │ │ ├── output-1619779801.out │ │ │ │ ├── output-1619781601.out │ │ │ │ ├── output-1619783401.out │ │ │ │ ├── output-1619785201.out │ │ │ │ ├── output-1619787001.out │ │ │ │ ├── output-1619788801.out │ │ │ │ ├── output-1619790601.out │ │ │ │ ├── output-1619792401.out │ │ │ │ ├── output-1619794201.out │ │ │ │ ├── output-1619796001.out │ │ │ │ ├── output-1619797801.out │ │ │ │ ├── output-1619799601.out │ │ │ │ ├── output-1619801401.out │ │ │ │ ├── output-1619803201.out │ │ │ │ ├── output-1619805001.out │ │ │ │ ├── output-1619806801.out │ │ │ │ ├── output-1619808601.out │ │ │ │ ├── output-1619810401.out │ │ │ │ ├── output-1619812201.out │ │ │ │ ├── output-1619814001.out │ │ │ │ ├── output-1619815801.out │ │ │ │ ├── output-1619817601.out │ │ │ │ ├── output-1619819401.out │ │ │ │ ├── output-1619821201.out │ │ │ │ ├── output-1619823001.out │ │ │ │ ├── output-1619824801.out │ │ │ │ ├── output-1619826601.out │ │ │ │ ├── output-1619828401.out │ │ │ │ ├── output-1619830201.out │ │ │ │ ├── output-1619832001.out │ │ │ │ ├── output-1619833801.out │ │ │ │ ├── output-1619835601.out │ │ │ │ ├── output-1619837401.out │ │ │ │ ├── output-1619839201.out │ │ │ │ ├── output-1619841001.out │ │ │ │ ├── output-1619842801.out │ │ │ │ ├── output-1619844601.out │ │ │ │ ├── output-1619846401.out │ │ │ │ ├── output-1619848201.out │ │ │ │ ├── output-1619850001.out │ │ │ │ ├── output-1619851801.out │ │ │ │ ├── output-1619853601.out │ │ │ │ ├── output-1619855401.out │ │ │ │ ├── output-1619857201.out │ │ │ │ ├── output-1619859001.out │ │ │ │ ├── output-1619860801.out │ │ │ │ ├── output-1619862601.out │ │ │ │ ├── output-1619864402.out │ │ │ │ ├── output-1619866201.out │ │ │ │ ├── output-1619868001.out │ │ │ │ ├── output-1619869801.out │ │ │ │ ├── output-1619871601.out │ │ │ │ ├── output-1619873401.out │ │ │ │ ├── output-1619875201.out │ │ │ │ ├── output-1619877001.out │ │ │ │ ├── output-1619878801.out │ │ │ │ ├── output-1619880601.out │ │ │ │ ├── output-1619882401.out │ │ │ │ ├── output-1619884201.out │ │ │ │ ├── output-1619886001.out │ │ │ │ ├── output-1619887801.out │ │ │ │ ├── output-1619889601.out │ │ │ │ ├── output-1619891401.out │ │ │ │ ├── output-1619893201.out │ │ │ │ ├── output-1619895001.out │ │ │ │ ├── output-1619896801.out │ │ │ │ ├── output-1619898601.out │ │ │ │ ├── output-1619900401.out │ │ │ │ ├── output-1619902201.out │ │ │ │ ├── output-1619904001.out │ │ │ │ ├── output-1619905801.out │ │ │ │ ├── output-1619907601.out │ │ │ │ ├── output-1619909401.out │ │ │ │ ├── output-1619911201.out │ │ │ │ ├── output-1619913001.out │ │ │ │ ├── output-1619914801.out │ │ │ │ ├── output-1619916601.out │ │ │ │ ├── output-1619918401.out │ │ │ │ ├── output-1619920201.out │ │ │ │ ├── output-1619922001.out │ │ │ │ ├── output-1619923801.out │ │ │ │ ├── output-1619925601.out │ │ │ │ ├── output-1619927401.out │ │ │ │ ├── output-1619929201.out │ │ │ │ ├── output-1619931001.out │ │ │ │ ├── output-1619932801.out │ │ │ │ ├── output-1619934601.out │ │ │ │ ├── output-1619936401.out │ │ │ │ ├── output-1619938201.out │ │ │ │ ├── output-1619940001.out │ │ │ │ ├── output-1619941801.out │ │ │ │ ├── output-1619943601.out │ │ │ │ ├── output-1619945401.out │ │ │ │ ├── output-1619947201.out │ │ │ │ ├── output-1619949001.out │ │ │ │ ├── output-1619950801.out │ │ │ │ ├── output-1619952601.out │ │ │ │ ├── output-1619954401.out │ │ │ │ ├── output-1619956201.out │ │ │ │ ├── output-1619958001.out │ │ │ │ ├── output-1619959801.out │ │ │ │ ├── output-1619961601.out │ │ │ │ ├── output-1619963401.out │ │ │ │ ├── output-1619965201.out │ │ │ │ ├── output-1619967001.out │ │ │ │ ├── output-1619968801.out │ │ │ │ ├── output-1619970601.out │ │ │ │ ├── output-1619972401.out │ │ │ │ ├── output-1619974201.out │ │ │ │ ├── output-1619976001.out │ │ │ │ ├── output-1619977801.out │ │ │ │ ├── output-1619979601.out │ │ │ │ ├── output-1619981401.out │ │ │ │ ├── output-1619983201.out │ │ │ │ ├── output-1619985001.out │ │ │ │ ├── output-1619986801.out │ │ │ │ ├── output-1619988601.out │ │ │ │ ├── output-1619990401.out │ │ │ │ ├── output-1619992201.out │ │ │ │ ├── output-1619994001.out │ │ │ │ ├── output-1619995801.out │ │ │ │ ├── output-1619997601.out │ │ │ │ ├── output-1619999401.out │ │ │ │ ├── output-1620001201.out │ │ │ │ ├── output-1620003001.out │ │ │ │ ├── output-1620004801.out │ │ │ │ ├── output-1620006602.out │ │ │ │ ├── output-1620008401.out │ │ │ │ ├── output-1620010201.out │ │ │ │ ├── output-1620012001.out │ │ │ │ ├── output-1620013801.out │ │ │ │ ├── output-1620015601.out │ │ │ │ ├── output-1620017401.out │ │ │ │ ├── output-1620019201.out │ │ │ │ ├── output-1620021001.out │ │ │ │ ├── output-1620022801.out │ │ │ │ ├── output-1620024601.out │ │ │ │ ├── output-1620026401.out │ │ │ │ ├── output-1620028201.out │ │ │ │ ├── output-1620030001.out │ │ │ │ ├── output-1620031801.out │ │ │ │ ├── output-1620033601.out │ │ │ │ ├── output-1620035401.out │ │ │ │ ├── output-1620037201.out │ │ │ │ ├── output-1620039001.out │ │ │ │ ├── output-1620040801.out │ │ │ │ ├── output-1620042601.out │ │ │ │ ├── output-1620044401.out │ │ │ │ ├── output-1620046201.out │ │ │ │ ├── output-1620048001.out │ │ │ │ ├── output-1620049801.out │ │ │ │ ├── output-1620051601.out │ │ │ │ ├── output-1620053401.out │ │ │ │ ├── output-1620055201.out │ │ │ │ ├── output-1620057001.out │ │ │ │ ├── output-1620058801.out │ │ │ │ ├── output-1620060601.out │ │ │ │ ├── output-1620062401.out │ │ │ │ ├── output-1620064201.out │ │ │ │ ├── output-1620066001.out │ │ │ │ ├── output-1620067801.out │ │ │ │ ├── output-1620069601.out │ │ │ │ ├── output-1620071401.out │ │ │ │ ├── output-1620073201.out │ │ │ │ ├── output-1620075001.out │ │ │ │ ├── output-1620076801.out │ │ │ │ ├── output-1620078601.out │ │ │ │ ├── output-1620080401.out │ │ │ │ ├── output-1620082201.out │ │ │ │ ├── output-1620084001.out │ │ │ │ ├── output-1620085801.out │ │ │ │ ├── output-1620087601.out │ │ │ │ ├── output-1620089401.out │ │ │ │ ├── output-1620091201.out │ │ │ │ ├── output-1620093001.out │ │ │ │ ├── output-1620094801.out │ │ │ │ ├── output-1620096601.out │ │ │ │ ├── output-1620098401.out │ │ │ │ ├── output-1620100201.out │ │ │ │ ├── output-1620102001.out │ │ │ │ ├── output-1620103801.out │ │ │ │ ├── output-1620105601.out │ │ │ │ ├── output-1620107401.out │ │ │ │ ├── output-1620109201.out │ │ │ │ ├── output-1620111001.out │ │ │ │ ├── output-1620112801.out │ │ │ │ ├── output-1620114601.out │ │ │ │ ├── output-1620116401.out │ │ │ │ ├── output-1620118201.out │ │ │ │ ├── output-1620120001.out │ │ │ │ ├── output-1620121801.out │ │ │ │ ├── output-1620123601.out │ │ │ │ ├── output-1620125401.out │ │ │ │ ├── output-1620127201.out │ │ │ │ ├── output-1620129001.out │ │ │ │ ├── output-1620130801.out │ │ │ │ ├── output-1620132601.out │ │ │ │ ├── output-1620134401.out │ │ │ │ ├── output-1620136201.out │ │ │ │ ├── output-1620138001.out │ │ │ │ ├── output-1620139801.out │ │ │ │ ├── output-1620141601.out │ │ │ │ ├── output-1620143401.out │ │ │ │ ├── output-1620145201.out │ │ │ │ ├── output-1620147001.out │ │ │ │ ├── output-1620148801.out │ │ │ │ ├── output-1620150601.out │ │ │ │ ├── output-1620152401.out │ │ │ │ ├── output-1620154201.out │ │ │ │ ├── output-1620156001.out │ │ │ │ ├── output-1620157801.out │ │ │ │ └── output-1620159601.out │ │ │ │ ├── roughtime.sandbox.google.com │ │ │ │ ├── output-1619216101.out │ │ │ │ ├── output-1619217901.out │ │ │ │ ├── output-1619219701.out │ │ │ │ ├── output-1619221501.out │ │ │ │ ├── output-1619223301.out │ │ │ │ ├── output-1619225101.out │ │ │ │ ├── output-1619226901.out │ │ │ │ ├── output-1619228701.out │ │ │ │ ├── output-1619230501.out │ │ │ │ ├── output-1619232301.out │ │ │ │ ├── output-1619234101.out │ │ │ │ ├── output-1619235901.out │ │ │ │ ├── output-1619237701.out │ │ │ │ ├── output-1619239501.out │ │ │ │ ├── output-1619241301.out │ │ │ │ ├── output-1619243101.out │ │ │ │ ├── output-1619244901.out │ │ │ │ ├── output-1619246701.out │ │ │ │ ├── output-1619248501.out │ │ │ │ ├── output-1619250301.out │ │ │ │ ├── output-1619252101.out │ │ │ │ ├── output-1619253901.out │ │ │ │ ├── output-1619255701.out │ │ │ │ ├── output-1619257501.out │ │ │ │ ├── output-1619259301.out │ │ │ │ ├── output-1619261101.out │ │ │ │ ├── output-1619262901.out │ │ │ │ ├── output-1619264701.out │ │ │ │ ├── output-1619266501.out │ │ │ │ ├── output-1619268301.out │ │ │ │ ├── output-1619270101.out │ │ │ │ ├── output-1619271901.out │ │ │ │ ├── output-1619273701.out │ │ │ │ ├── output-1619275501.out │ │ │ │ ├── output-1619277301.out │ │ │ │ ├── output-1619279101.out │ │ │ │ ├── output-1619280901.out │ │ │ │ ├── output-1619282701.out │ │ │ │ ├── output-1619284501.out │ │ │ │ ├── output-1619286301.out │ │ │ │ ├── output-1619288101.out │ │ │ │ ├── output-1619289901.out │ │ │ │ ├── output-1619291701.out │ │ │ │ ├── output-1619293501.out │ │ │ │ ├── output-1619295301.out │ │ │ │ ├── output-1619297101.out │ │ │ │ ├── output-1619298901.out │ │ │ │ ├── output-1619300701.out │ │ │ │ ├── output-1619302501.out │ │ │ │ ├── output-1619304301.out │ │ │ │ ├── output-1619306101.out │ │ │ │ ├── output-1619307901.out │ │ │ │ ├── output-1619309701.out │ │ │ │ ├── output-1619311501.out │ │ │ │ ├── output-1619313301.out │ │ │ │ ├── output-1619315101.out │ │ │ │ ├── output-1619316901.out │ │ │ │ ├── output-1619318701.out │ │ │ │ ├── output-1619320501.out │ │ │ │ ├── output-1619322301.out │ │ │ │ ├── output-1619324101.out │ │ │ │ ├── output-1619325901.out │ │ │ │ ├── output-1619327701.out │ │ │ │ ├── output-1619329501.out │ │ │ │ ├── output-1619331301.out │ │ │ │ ├── output-1619333101.out │ │ │ │ ├── output-1619334901.out │ │ │ │ ├── output-1619336701.out │ │ │ │ ├── output-1619338501.out │ │ │ │ ├── output-1619340301.out │ │ │ │ ├── output-1619342101.out │ │ │ │ ├── output-1619343901.out │ │ │ │ ├── output-1619345701.out │ │ │ │ ├── output-1619347501.out │ │ │ │ ├── output-1619349301.out │ │ │ │ ├── output-1619351101.out │ │ │ │ ├── output-1619352901.out │ │ │ │ ├── output-1619354701.out │ │ │ │ ├── output-1619356501.out │ │ │ │ ├── output-1619358301.out │ │ │ │ ├── output-1619360101.out │ │ │ │ ├── output-1619361901.out │ │ │ │ ├── output-1619363701.out │ │ │ │ ├── output-1619365501.out │ │ │ │ ├── output-1619367301.out │ │ │ │ ├── output-1619369101.out │ │ │ │ ├── output-1619370901.out │ │ │ │ ├── output-1619372701.out │ │ │ │ ├── output-1619374501.out │ │ │ │ ├── output-1619376301.out │ │ │ │ ├── output-1619378101.out │ │ │ │ ├── output-1619379901.out │ │ │ │ ├── output-1619381701.out │ │ │ │ ├── output-1619383501.out │ │ │ │ ├── output-1619385301.out │ │ │ │ ├── output-1619387101.out │ │ │ │ ├── output-1619388901.out │ │ │ │ ├── output-1619390701.out │ │ │ │ ├── output-1619392501.out │ │ │ │ ├── output-1619394301.out │ │ │ │ ├── output-1619396101.out │ │ │ │ ├── output-1619397901.out │ │ │ │ ├── output-1619399701.out │ │ │ │ ├── output-1619401501.out │ │ │ │ ├── output-1619403301.out │ │ │ │ ├── output-1619405101.out │ │ │ │ ├── output-1619406901.out │ │ │ │ ├── output-1619408701.out │ │ │ │ ├── output-1619410501.out │ │ │ │ ├── output-1619412301.out │ │ │ │ ├── output-1619414101.out │ │ │ │ ├── output-1619415901.out │ │ │ │ ├── output-1619417701.out │ │ │ │ ├── output-1619419501.out │ │ │ │ ├── output-1619421301.out │ │ │ │ ├── output-1619423101.out │ │ │ │ ├── output-1619424901.out │ │ │ │ ├── output-1619426701.out │ │ │ │ ├── output-1619428501.out │ │ │ │ ├── output-1619430301.out │ │ │ │ ├── output-1619432101.out │ │ │ │ ├── output-1619433901.out │ │ │ │ ├── output-1619435701.out │ │ │ │ ├── output-1619437501.out │ │ │ │ ├── output-1619439301.out │ │ │ │ ├── output-1619441101.out │ │ │ │ ├── output-1619442901.out │ │ │ │ ├── output-1619444701.out │ │ │ │ ├── output-1619446501.out │ │ │ │ ├── output-1619448301.out │ │ │ │ ├── output-1619450101.out │ │ │ │ ├── output-1619451901.out │ │ │ │ ├── output-1619453701.out │ │ │ │ ├── output-1619455501.out │ │ │ │ ├── output-1619457301.out │ │ │ │ ├── output-1619459101.out │ │ │ │ ├── output-1619460901.out │ │ │ │ ├── output-1619462701.out │ │ │ │ ├── output-1619464501.out │ │ │ │ ├── output-1619466301.out │ │ │ │ ├── output-1619468101.out │ │ │ │ ├── output-1619469901.out │ │ │ │ ├── output-1619471701.out │ │ │ │ ├── output-1619473501.out │ │ │ │ ├── output-1619475301.out │ │ │ │ ├── output-1619477101.out │ │ │ │ ├── output-1619478901.out │ │ │ │ ├── output-1619480701.out │ │ │ │ ├── output-1619482501.out │ │ │ │ ├── output-1619484301.out │ │ │ │ ├── output-1619486101.out │ │ │ │ ├── output-1619487901.out │ │ │ │ ├── output-1619489701.out │ │ │ │ ├── output-1619491501.out │ │ │ │ ├── output-1619493301.out │ │ │ │ ├── output-1619495101.out │ │ │ │ ├── output-1619496901.out │ │ │ │ ├── output-1619498701.out │ │ │ │ ├── output-1619500501.out │ │ │ │ ├── output-1619502301.out │ │ │ │ ├── output-1619504101.out │ │ │ │ ├── output-1619505901.out │ │ │ │ ├── output-1619507701.out │ │ │ │ ├── output-1619509501.out │ │ │ │ ├── output-1619511301.out │ │ │ │ ├── output-1619513101.out │ │ │ │ ├── output-1619514901.out │ │ │ │ ├── output-1619516701.out │ │ │ │ ├── output-1619518501.out │ │ │ │ ├── output-1619520301.out │ │ │ │ ├── output-1619522101.out │ │ │ │ ├── output-1619523901.out │ │ │ │ ├── output-1619525701.out │ │ │ │ ├── output-1619527501.out │ │ │ │ ├── output-1619529301.out │ │ │ │ ├── output-1619531101.out │ │ │ │ ├── output-1619532901.out │ │ │ │ ├── output-1619534701.out │ │ │ │ ├── output-1619536501.out │ │ │ │ ├── output-1619538301.out │ │ │ │ ├── output-1619540101.out │ │ │ │ ├── output-1619541901.out │ │ │ │ ├── output-1619543701.out │ │ │ │ ├── output-1619545501.out │ │ │ │ ├── output-1619547301.out │ │ │ │ ├── output-1619549101.out │ │ │ │ ├── output-1619550901.out │ │ │ │ ├── output-1619552701.out │ │ │ │ ├── output-1619554501.out │ │ │ │ ├── output-1619556301.out │ │ │ │ ├── output-1619558101.out │ │ │ │ ├── output-1619559901.out │ │ │ │ ├── output-1619561701.out │ │ │ │ ├── output-1619563501.out │ │ │ │ ├── output-1619565301.out │ │ │ │ ├── output-1619567101.out │ │ │ │ ├── output-1619568901.out │ │ │ │ ├── output-1619570701.out │ │ │ │ ├── output-1619572501.out │ │ │ │ ├── output-1619574301.out │ │ │ │ ├── output-1619576101.out │ │ │ │ ├── output-1619577901.out │ │ │ │ ├── output-1619579701.out │ │ │ │ ├── output-1619581501.out │ │ │ │ ├── output-1619583301.out │ │ │ │ ├── output-1619585101.out │ │ │ │ ├── output-1619586901.out │ │ │ │ ├── output-1619588701.out │ │ │ │ ├── output-1619590501.out │ │ │ │ ├── output-1619592301.out │ │ │ │ ├── output-1619594101.out │ │ │ │ ├── output-1619595901.out │ │ │ │ ├── output-1619597701.out │ │ │ │ ├── output-1619599501.out │ │ │ │ ├── output-1619601301.out │ │ │ │ ├── output-1619603101.out │ │ │ │ ├── output-1619604901.out │ │ │ │ ├── output-1619606701.out │ │ │ │ ├── output-1619608501.out │ │ │ │ ├── output-1619610301.out │ │ │ │ ├── output-1619612101.out │ │ │ │ ├── output-1619613901.out │ │ │ │ ├── output-1619615701.out │ │ │ │ ├── output-1619617501.out │ │ │ │ ├── output-1619619301.out │ │ │ │ ├── output-1619621101.out │ │ │ │ ├── output-1619622901.out │ │ │ │ ├── output-1619624701.out │ │ │ │ ├── output-1619626501.out │ │ │ │ ├── output-1619628301.out │ │ │ │ ├── output-1619630101.out │ │ │ │ ├── output-1619631901.out │ │ │ │ ├── output-1619633701.out │ │ │ │ ├── output-1619635501.out │ │ │ │ ├── output-1619637301.out │ │ │ │ ├── output-1619639101.out │ │ │ │ ├── output-1619640901.out │ │ │ │ ├── output-1619642701.out │ │ │ │ ├── output-1619644501.out │ │ │ │ ├── output-1619646301.out │ │ │ │ ├── output-1619648101.out │ │ │ │ ├── output-1619649901.out │ │ │ │ ├── output-1619651701.out │ │ │ │ ├── output-1619653501.out │ │ │ │ ├── output-1619655301.out │ │ │ │ ├── output-1619657101.out │ │ │ │ ├── output-1619658901.out │ │ │ │ ├── output-1619660701.out │ │ │ │ ├── output-1619662501.out │ │ │ │ ├── output-1619664301.out │ │ │ │ ├── output-1619666101.out │ │ │ │ ├── output-1619667901.out │ │ │ │ ├── output-1619669701.out │ │ │ │ ├── output-1619671501.out │ │ │ │ ├── output-1619673301.out │ │ │ │ ├── output-1619675101.out │ │ │ │ ├── output-1619676901.out │ │ │ │ ├── output-1619678701.out │ │ │ │ ├── output-1619680501.out │ │ │ │ ├── output-1619682301.out │ │ │ │ ├── output-1619684101.out │ │ │ │ ├── output-1619685901.out │ │ │ │ ├── output-1619687701.out │ │ │ │ ├── output-1619689501.out │ │ │ │ ├── output-1619691301.out │ │ │ │ ├── output-1619693101.out │ │ │ │ ├── output-1619694901.out │ │ │ │ ├── output-1619696701.out │ │ │ │ ├── output-1619698501.out │ │ │ │ ├── output-1619700301.out │ │ │ │ ├── output-1619702101.out │ │ │ │ ├── output-1619703901.out │ │ │ │ ├── output-1619705701.out │ │ │ │ ├── output-1619707501.out │ │ │ │ ├── output-1619709301.out │ │ │ │ ├── output-1619711101.out │ │ │ │ ├── output-1619712901.out │ │ │ │ ├── output-1619714701.out │ │ │ │ ├── output-1619716501.out │ │ │ │ ├── output-1619718301.out │ │ │ │ ├── output-1619720101.out │ │ │ │ ├── output-1619721901.out │ │ │ │ ├── output-1619723701.out │ │ │ │ ├── output-1619725501.out │ │ │ │ ├── output-1619727301.out │ │ │ │ ├── output-1619729101.out │ │ │ │ ├── output-1619730901.out │ │ │ │ ├── output-1619732701.out │ │ │ │ ├── output-1619734501.out │ │ │ │ ├── output-1619736301.out │ │ │ │ ├── output-1619738101.out │ │ │ │ ├── output-1619739901.out │ │ │ │ ├── output-1619741701.out │ │ │ │ ├── output-1619743501.out │ │ │ │ ├── output-1619745301.out │ │ │ │ ├── output-1619747101.out │ │ │ │ ├── output-1619748901.out │ │ │ │ ├── output-1619750701.out │ │ │ │ ├── output-1619752501.out │ │ │ │ ├── output-1619754301.out │ │ │ │ ├── output-1619756101.out │ │ │ │ ├── output-1619757901.out │ │ │ │ ├── output-1619759701.out │ │ │ │ ├── output-1619761501.out │ │ │ │ ├── output-1619763301.out │ │ │ │ ├── output-1619765101.out │ │ │ │ ├── output-1619766901.out │ │ │ │ ├── output-1619768701.out │ │ │ │ ├── output-1619770501.out │ │ │ │ ├── output-1619772301.out │ │ │ │ ├── output-1619774101.out │ │ │ │ ├── output-1619775901.out │ │ │ │ ├── output-1619777701.out │ │ │ │ ├── output-1619779501.out │ │ │ │ ├── output-1619781301.out │ │ │ │ ├── output-1619783101.out │ │ │ │ ├── output-1619784901.out │ │ │ │ ├── output-1619786701.out │ │ │ │ ├── output-1619788501.out │ │ │ │ ├── output-1619790301.out │ │ │ │ ├── output-1619792101.out │ │ │ │ ├── output-1619793901.out │ │ │ │ ├── output-1619795701.out │ │ │ │ ├── output-1619797501.out │ │ │ │ ├── output-1619799301.out │ │ │ │ ├── output-1619801101.out │ │ │ │ ├── output-1619802901.out │ │ │ │ ├── output-1619804701.out │ │ │ │ ├── output-1619806501.out │ │ │ │ ├── output-1619808301.out │ │ │ │ ├── output-1619810101.out │ │ │ │ ├── output-1619811901.out │ │ │ │ ├── output-1619813701.out │ │ │ │ ├── output-1619815501.out │ │ │ │ ├── output-1619817301.out │ │ │ │ ├── output-1619819101.out │ │ │ │ ├── output-1619820901.out │ │ │ │ ├── output-1619822701.out │ │ │ │ ├── output-1619824501.out │ │ │ │ ├── output-1619826301.out │ │ │ │ ├── output-1619828101.out │ │ │ │ ├── output-1619829901.out │ │ │ │ ├── output-1619831701.out │ │ │ │ ├── output-1619833501.out │ │ │ │ ├── output-1619835301.out │ │ │ │ ├── output-1619837101.out │ │ │ │ ├── output-1619838901.out │ │ │ │ ├── output-1619840701.out │ │ │ │ ├── output-1619842501.out │ │ │ │ ├── output-1619844301.out │ │ │ │ ├── output-1619846101.out │ │ │ │ ├── output-1619847901.out │ │ │ │ ├── output-1619849701.out │ │ │ │ ├── output-1619851501.out │ │ │ │ ├── output-1619853301.out │ │ │ │ ├── output-1619855101.out │ │ │ │ ├── output-1619856901.out │ │ │ │ ├── output-1619858701.out │ │ │ │ ├── output-1619860501.out │ │ │ │ ├── output-1619862301.out │ │ │ │ ├── output-1619864101.out │ │ │ │ ├── output-1619865901.out │ │ │ │ ├── output-1619867701.out │ │ │ │ ├── output-1619869501.out │ │ │ │ ├── output-1619871301.out │ │ │ │ ├── output-1619873101.out │ │ │ │ ├── output-1619874901.out │ │ │ │ ├── output-1619876701.out │ │ │ │ ├── output-1619878501.out │ │ │ │ ├── output-1619880301.out │ │ │ │ ├── output-1619882101.out │ │ │ │ ├── output-1619883901.out │ │ │ │ ├── output-1619885701.out │ │ │ │ ├── output-1619887501.out │ │ │ │ ├── output-1619889301.out │ │ │ │ ├── output-1619891101.out │ │ │ │ ├── output-1619892901.out │ │ │ │ ├── output-1619894701.out │ │ │ │ ├── output-1619896501.out │ │ │ │ ├── output-1619898301.out │ │ │ │ ├── output-1619900101.out │ │ │ │ ├── output-1619901901.out │ │ │ │ ├── output-1619903701.out │ │ │ │ ├── output-1619905501.out │ │ │ │ ├── output-1619907301.out │ │ │ │ ├── output-1619909101.out │ │ │ │ ├── output-1619910901.out │ │ │ │ ├── output-1619912701.out │ │ │ │ ├── output-1619914501.out │ │ │ │ ├── output-1619916301.out │ │ │ │ ├── output-1619918101.out │ │ │ │ ├── output-1619919901.out │ │ │ │ ├── output-1619921701.out │ │ │ │ ├── output-1619923501.out │ │ │ │ ├── output-1619925301.out │ │ │ │ ├── output-1619927101.out │ │ │ │ ├── output-1619928901.out │ │ │ │ ├── output-1619930701.out │ │ │ │ ├── output-1619932501.out │ │ │ │ ├── output-1619934301.out │ │ │ │ ├── output-1619936101.out │ │ │ │ ├── output-1619937901.out │ │ │ │ ├── output-1619939701.out │ │ │ │ ├── output-1619941501.out │ │ │ │ ├── output-1619943301.out │ │ │ │ ├── output-1619945101.out │ │ │ │ ├── output-1619946901.out │ │ │ │ ├── output-1619948701.out │ │ │ │ ├── output-1619950501.out │ │ │ │ ├── output-1619952301.out │ │ │ │ ├── output-1619954101.out │ │ │ │ ├── output-1619955901.out │ │ │ │ ├── output-1619957701.out │ │ │ │ ├── output-1619959501.out │ │ │ │ ├── output-1619961301.out │ │ │ │ ├── output-1619963101.out │ │ │ │ ├── output-1619964901.out │ │ │ │ ├── output-1619966701.out │ │ │ │ ├── output-1619968501.out │ │ │ │ ├── output-1619970301.out │ │ │ │ ├── output-1619972101.out │ │ │ │ ├── output-1619973901.out │ │ │ │ ├── output-1619975701.out │ │ │ │ ├── output-1619977501.out │ │ │ │ ├── output-1619979301.out │ │ │ │ ├── output-1619981101.out │ │ │ │ ├── output-1619982901.out │ │ │ │ ├── output-1619984701.out │ │ │ │ ├── output-1619986501.out │ │ │ │ ├── output-1619988301.out │ │ │ │ ├── output-1619990101.out │ │ │ │ ├── output-1619991901.out │ │ │ │ ├── output-1619993701.out │ │ │ │ ├── output-1619995501.out │ │ │ │ ├── output-1619997301.out │ │ │ │ ├── output-1619999101.out │ │ │ │ ├── output-1620000901.out │ │ │ │ ├── output-1620002701.out │ │ │ │ ├── output-1620004501.out │ │ │ │ ├── output-1620006301.out │ │ │ │ ├── output-1620008101.out │ │ │ │ ├── output-1620009901.out │ │ │ │ ├── output-1620011701.out │ │ │ │ ├── output-1620013501.out │ │ │ │ ├── output-1620015301.out │ │ │ │ ├── output-1620017101.out │ │ │ │ ├── output-1620018901.out │ │ │ │ ├── output-1620020701.out │ │ │ │ ├── output-1620022501.out │ │ │ │ ├── output-1620024301.out │ │ │ │ ├── output-1620026101.out │ │ │ │ ├── output-1620027901.out │ │ │ │ ├── output-1620029701.out │ │ │ │ ├── output-1620031501.out │ │ │ │ ├── output-1620033301.out │ │ │ │ ├── output-1620035101.out │ │ │ │ ├── output-1620036901.out │ │ │ │ ├── output-1620038701.out │ │ │ │ ├── output-1620040501.out │ │ │ │ ├── output-1620042301.out │ │ │ │ ├── output-1620044101.out │ │ │ │ ├── output-1620045901.out │ │ │ │ ├── output-1620047701.out │ │ │ │ ├── output-1620049501.out │ │ │ │ ├── output-1620051301.out │ │ │ │ ├── output-1620053101.out │ │ │ │ ├── output-1620054901.out │ │ │ │ ├── output-1620056701.out │ │ │ │ ├── output-1620058501.out │ │ │ │ ├── output-1620060301.out │ │ │ │ ├── output-1620062101.out │ │ │ │ ├── output-1620063901.out │ │ │ │ ├── output-1620065701.out │ │ │ │ ├── output-1620067501.out │ │ │ │ ├── output-1620069301.out │ │ │ │ ├── output-1620071101.out │ │ │ │ ├── output-1620072901.out │ │ │ │ ├── output-1620074701.out │ │ │ │ ├── output-1620076501.out │ │ │ │ ├── output-1620078301.out │ │ │ │ ├── output-1620080101.out │ │ │ │ ├── output-1620081901.out │ │ │ │ ├── output-1620083701.out │ │ │ │ ├── output-1620085501.out │ │ │ │ ├── output-1620087301.out │ │ │ │ ├── output-1620089101.out │ │ │ │ ├── output-1620090901.out │ │ │ │ ├── output-1620092701.out │ │ │ │ ├── output-1620094501.out │ │ │ │ ├── output-1620096301.out │ │ │ │ ├── output-1620098101.out │ │ │ │ ├── output-1620099902.out │ │ │ │ ├── output-1620101701.out │ │ │ │ ├── output-1620103501.out │ │ │ │ ├── output-1620105301.out │ │ │ │ ├── output-1620107101.out │ │ │ │ ├── output-1620108901.out │ │ │ │ ├── output-1620110701.out │ │ │ │ ├── output-1620112501.out │ │ │ │ ├── output-1620114301.out │ │ │ │ ├── output-1620116101.out │ │ │ │ ├── output-1620117901.out │ │ │ │ ├── output-1620119701.out │ │ │ │ ├── output-1620121501.out │ │ │ │ ├── output-1620123301.out │ │ │ │ ├── output-1620125101.out │ │ │ │ ├── output-1620126901.out │ │ │ │ ├── output-1620128701.out │ │ │ │ ├── output-1620130501.out │ │ │ │ ├── output-1620132301.out │ │ │ │ ├── output-1620134101.out │ │ │ │ ├── output-1620135901.out │ │ │ │ ├── output-1620137701.out │ │ │ │ ├── output-1620139501.out │ │ │ │ ├── output-1620141301.out │ │ │ │ ├── output-1620143101.out │ │ │ │ ├── output-1620144901.out │ │ │ │ ├── output-1620146701.out │ │ │ │ ├── output-1620148501.out │ │ │ │ ├── output-1620150301.out │ │ │ │ ├── output-1620152101.out │ │ │ │ ├── output-1620153901.out │ │ │ │ ├── output-1620155701.out │ │ │ │ ├── output-1620157501.out │ │ │ │ └── output-1620159301.out │ │ │ │ ├── www.american.edu │ │ │ │ ├── output-1619213581.out │ │ │ │ ├── output-1619215201.out │ │ │ │ ├── output-1619217001.out │ │ │ │ ├── output-1619218801.out │ │ │ │ ├── output-1619220601.out │ │ │ │ ├── output-1619222401.out │ │ │ │ ├── output-1619224201.out │ │ │ │ ├── output-1619226001.out │ │ │ │ ├── output-1619227801.out │ │ │ │ ├── output-1619229601.out │ │ │ │ ├── output-1619231401.out │ │ │ │ ├── output-1619233201.out │ │ │ │ ├── output-1619235001.out │ │ │ │ ├── output-1619236801.out │ │ │ │ ├── output-1619238601.out │ │ │ │ ├── output-1619240401.out │ │ │ │ ├── output-1619242201.out │ │ │ │ ├── output-1619244001.out │ │ │ │ ├── output-1619245801.out │ │ │ │ ├── output-1619247601.out │ │ │ │ ├── output-1619249401.out │ │ │ │ ├── output-1619251201.out │ │ │ │ ├── output-1619253001.out │ │ │ │ ├── output-1619254801.out │ │ │ │ ├── output-1619256601.out │ │ │ │ ├── output-1619258401.out │ │ │ │ ├── output-1619260201.out │ │ │ │ ├── output-1619262001.out │ │ │ │ ├── output-1619263801.out │ │ │ │ ├── output-1619265601.out │ │ │ │ ├── output-1619267401.out │ │ │ │ ├── output-1619269201.out │ │ │ │ ├── output-1619271001.out │ │ │ │ ├── output-1619272801.out │ │ │ │ ├── output-1619274601.out │ │ │ │ ├── output-1619276401.out │ │ │ │ ├── output-1619278201.out │ │ │ │ ├── output-1619280001.out │ │ │ │ ├── output-1619281801.out │ │ │ │ ├── output-1619283601.out │ │ │ │ ├── output-1619285401.out │ │ │ │ ├── output-1619287201.out │ │ │ │ ├── output-1619289001.out │ │ │ │ ├── output-1619290801.out │ │ │ │ ├── output-1619292601.out │ │ │ │ ├── output-1619294401.out │ │ │ │ ├── output-1619296201.out │ │ │ │ ├── output-1619298001.out │ │ │ │ ├── output-1619299801.out │ │ │ │ ├── output-1619301601.out │ │ │ │ ├── output-1619303401.out │ │ │ │ ├── output-1619305201.out │ │ │ │ ├── output-1619307001.out │ │ │ │ ├── output-1619308801.out │ │ │ │ ├── output-1619310601.out │ │ │ │ ├── output-1619312401.out │ │ │ │ ├── output-1619314201.out │ │ │ │ ├── output-1619316001.out │ │ │ │ ├── output-1619317801.out │ │ │ │ ├── output-1619319601.out │ │ │ │ ├── output-1619321401.out │ │ │ │ ├── output-1619323201.out │ │ │ │ ├── output-1619325001.out │ │ │ │ ├── output-1619326801.out │ │ │ │ ├── output-1619328601.out │ │ │ │ ├── output-1619330401.out │ │ │ │ ├── output-1619332201.out │ │ │ │ ├── output-1619334001.out │ │ │ │ ├── output-1619335801.out │ │ │ │ ├── output-1619337601.out │ │ │ │ ├── output-1619339401.out │ │ │ │ ├── output-1619341201.out │ │ │ │ ├── output-1619343001.out │ │ │ │ ├── output-1619344801.out │ │ │ │ ├── output-1619346601.out │ │ │ │ ├── output-1619348401.out │ │ │ │ ├── output-1619350201.out │ │ │ │ ├── output-1619352001.out │ │ │ │ ├── output-1619353801.out │ │ │ │ ├── output-1619355601.out │ │ │ │ ├── output-1619357401.out │ │ │ │ ├── output-1619359201.out │ │ │ │ ├── output-1619361001.out │ │ │ │ ├── output-1619362801.out │ │ │ │ ├── output-1619364601.out │ │ │ │ ├── output-1619366401.out │ │ │ │ ├── output-1619368201.out │ │ │ │ ├── output-1619370001.out │ │ │ │ ├── output-1619371801.out │ │ │ │ ├── output-1619373601.out │ │ │ │ ├── output-1619375401.out │ │ │ │ ├── output-1619377201.out │ │ │ │ ├── output-1619379001.out │ │ │ │ ├── output-1619380801.out │ │ │ │ ├── output-1619382601.out │ │ │ │ ├── output-1619384401.out │ │ │ │ ├── output-1619386201.out │ │ │ │ ├── output-1619388001.out │ │ │ │ ├── output-1619389801.out │ │ │ │ ├── output-1619391601.out │ │ │ │ ├── output-1619393401.out │ │ │ │ ├── output-1619395201.out │ │ │ │ ├── output-1619397001.out │ │ │ │ ├── output-1619398801.out │ │ │ │ ├── output-1619400601.out │ │ │ │ ├── output-1619402401.out │ │ │ │ ├── output-1619404201.out │ │ │ │ ├── output-1619406001.out │ │ │ │ ├── output-1619407801.out │ │ │ │ ├── output-1619409601.out │ │ │ │ ├── output-1619411401.out │ │ │ │ ├── output-1619413201.out │ │ │ │ ├── output-1619415001.out │ │ │ │ ├── output-1619416801.out │ │ │ │ ├── output-1619418601.out │ │ │ │ ├── output-1619420401.out │ │ │ │ ├── output-1619422201.out │ │ │ │ ├── output-1619424001.out │ │ │ │ ├── output-1619425801.out │ │ │ │ ├── output-1619427601.out │ │ │ │ ├── output-1619429401.out │ │ │ │ ├── output-1619431201.out │ │ │ │ ├── output-1619433001.out │ │ │ │ ├── output-1619434801.out │ │ │ │ ├── output-1619436601.out │ │ │ │ ├── output-1619438401.out │ │ │ │ ├── output-1619440201.out │ │ │ │ ├── output-1619442001.out │ │ │ │ ├── output-1619443801.out │ │ │ │ ├── output-1619445601.out │ │ │ │ ├── output-1619447401.out │ │ │ │ ├── output-1619449201.out │ │ │ │ ├── output-1619451001.out │ │ │ │ ├── output-1619452801.out │ │ │ │ ├── output-1619454601.out │ │ │ │ ├── output-1619456401.out │ │ │ │ ├── output-1619458201.out │ │ │ │ ├── output-1619460001.out │ │ │ │ ├── output-1619461801.out │ │ │ │ ├── output-1619463601.out │ │ │ │ ├── output-1619465401.out │ │ │ │ ├── output-1619467201.out │ │ │ │ ├── output-1619469001.out │ │ │ │ ├── output-1619470801.out │ │ │ │ ├── output-1619472601.out │ │ │ │ ├── output-1619474401.out │ │ │ │ ├── output-1619476201.out │ │ │ │ ├── output-1619478001.out │ │ │ │ ├── output-1619479801.out │ │ │ │ ├── output-1619481601.out │ │ │ │ ├── output-1619483401.out │ │ │ │ ├── output-1619485201.out │ │ │ │ ├── output-1619487001.out │ │ │ │ ├── output-1619488801.out │ │ │ │ ├── output-1619490601.out │ │ │ │ ├── output-1619492401.out │ │ │ │ ├── output-1619494201.out │ │ │ │ ├── output-1619496001.out │ │ │ │ ├── output-1619497801.out │ │ │ │ ├── output-1619499601.out │ │ │ │ ├── output-1619501401.out │ │ │ │ ├── output-1619503201.out │ │ │ │ ├── output-1619505001.out │ │ │ │ ├── output-1619506801.out │ │ │ │ ├── output-1619508601.out │ │ │ │ ├── output-1619510401.out │ │ │ │ ├── output-1619512201.out │ │ │ │ ├── output-1619514001.out │ │ │ │ ├── output-1619515801.out │ │ │ │ ├── output-1619517601.out │ │ │ │ ├── output-1619519401.out │ │ │ │ ├── output-1619521201.out │ │ │ │ ├── output-1619523001.out │ │ │ │ ├── output-1619524801.out │ │ │ │ ├── output-1619526601.out │ │ │ │ ├── output-1619528401.out │ │ │ │ ├── output-1619530201.out │ │ │ │ ├── output-1619532001.out │ │ │ │ ├── output-1619533801.out │ │ │ │ ├── output-1619535601.out │ │ │ │ ├── output-1619537401.out │ │ │ │ ├── output-1619539201.out │ │ │ │ ├── output-1619541001.out │ │ │ │ ├── output-1619542801.out │ │ │ │ ├── output-1619544601.out │ │ │ │ ├── output-1619546401.out │ │ │ │ ├── output-1619548201.out │ │ │ │ ├── output-1619550001.out │ │ │ │ ├── output-1619551801.out │ │ │ │ ├── output-1619553601.out │ │ │ │ ├── output-1619555401.out │ │ │ │ ├── output-1619557201.out │ │ │ │ ├── output-1619559001.out │ │ │ │ ├── output-1619560801.out │ │ │ │ ├── output-1619562601.out │ │ │ │ ├── output-1619564401.out │ │ │ │ ├── output-1619566201.out │ │ │ │ ├── output-1619568001.out │ │ │ │ ├── output-1619569801.out │ │ │ │ ├── output-1619571601.out │ │ │ │ ├── output-1619573401.out │ │ │ │ ├── output-1619575201.out │ │ │ │ ├── output-1619577001.out │ │ │ │ ├── output-1619578801.out │ │ │ │ ├── output-1619580601.out │ │ │ │ ├── output-1619582401.out │ │ │ │ ├── output-1619584201.out │ │ │ │ ├── output-1619586001.out │ │ │ │ ├── output-1619587801.out │ │ │ │ ├── output-1619589601.out │ │ │ │ ├── output-1619591401.out │ │ │ │ ├── output-1619593201.out │ │ │ │ ├── output-1619595001.out │ │ │ │ ├── output-1619596801.out │ │ │ │ ├── output-1619598601.out │ │ │ │ ├── output-1619600401.out │ │ │ │ ├── output-1619602201.out │ │ │ │ ├── output-1619604001.out │ │ │ │ ├── output-1619605801.out │ │ │ │ ├── output-1619607601.out │ │ │ │ ├── output-1619609401.out │ │ │ │ ├── output-1619611201.out │ │ │ │ ├── output-1619613001.out │ │ │ │ ├── output-1619614801.out │ │ │ │ ├── output-1619616601.out │ │ │ │ ├── output-1619618401.out │ │ │ │ ├── output-1619620201.out │ │ │ │ ├── output-1619622001.out │ │ │ │ ├── output-1619623801.out │ │ │ │ ├── output-1619625601.out │ │ │ │ ├── output-1619627401.out │ │ │ │ ├── output-1619629201.out │ │ │ │ ├── output-1619631001.out │ │ │ │ ├── output-1619632801.out │ │ │ │ ├── output-1619634601.out │ │ │ │ ├── output-1619636401.out │ │ │ │ ├── output-1619638201.out │ │ │ │ ├── output-1619640001.out │ │ │ │ ├── output-1619641801.out │ │ │ │ ├── output-1619643601.out │ │ │ │ ├── output-1619645401.out │ │ │ │ ├── output-1619647201.out │ │ │ │ ├── output-1619649001.out │ │ │ │ ├── output-1619650801.out │ │ │ │ ├── output-1619652601.out │ │ │ │ ├── output-1619654401.out │ │ │ │ ├── output-1619656201.out │ │ │ │ ├── output-1619658001.out │ │ │ │ ├── output-1619659802.out │ │ │ │ ├── output-1619661601.out │ │ │ │ ├── output-1619663401.out │ │ │ │ ├── output-1619665201.out │ │ │ │ ├── output-1619667001.out │ │ │ │ ├── output-1619668801.out │ │ │ │ ├── output-1619670601.out │ │ │ │ ├── output-1619672401.out │ │ │ │ ├── output-1619674201.out │ │ │ │ ├── output-1619676001.out │ │ │ │ ├── output-1619677801.out │ │ │ │ ├── output-1619679601.out │ │ │ │ ├── output-1619681401.out │ │ │ │ ├── output-1619683201.out │ │ │ │ ├── output-1619685001.out │ │ │ │ ├── output-1619686801.out │ │ │ │ ├── output-1619688601.out │ │ │ │ ├── output-1619690401.out │ │ │ │ ├── output-1619692201.out │ │ │ │ ├── output-1619694001.out │ │ │ │ ├── output-1619695801.out │ │ │ │ ├── output-1619697601.out │ │ │ │ ├── output-1619699401.out │ │ │ │ ├── output-1619701201.out │ │ │ │ ├── output-1619703001.out │ │ │ │ ├── output-1619704801.out │ │ │ │ ├── output-1619706601.out │ │ │ │ ├── output-1619708401.out │ │ │ │ ├── output-1619710201.out │ │ │ │ ├── output-1619712001.out │ │ │ │ ├── output-1619713801.out │ │ │ │ ├── output-1619715601.out │ │ │ │ ├── output-1619717401.out │ │ │ │ ├── output-1619719201.out │ │ │ │ ├── output-1619721001.out │ │ │ │ ├── output-1619722801.out │ │ │ │ ├── output-1619724601.out │ │ │ │ ├── output-1619726401.out │ │ │ │ ├── output-1619728201.out │ │ │ │ ├── output-1619730001.out │ │ │ │ ├── output-1619731801.out │ │ │ │ ├── output-1619733601.out │ │ │ │ ├── output-1619735401.out │ │ │ │ ├── output-1619737201.out │ │ │ │ ├── output-1619739001.out │ │ │ │ ├── output-1619740801.out │ │ │ │ ├── output-1619742601.out │ │ │ │ ├── output-1619744401.out │ │ │ │ ├── output-1619746201.out │ │ │ │ ├── output-1619748001.out │ │ │ │ ├── output-1619749801.out │ │ │ │ ├── output-1619751601.out │ │ │ │ ├── output-1619753401.out │ │ │ │ ├── output-1619755201.out │ │ │ │ ├── output-1619757001.out │ │ │ │ ├── output-1619758801.out │ │ │ │ ├── output-1619760601.out │ │ │ │ ├── output-1619762401.out │ │ │ │ ├── output-1619764201.out │ │ │ │ ├── output-1619766001.out │ │ │ │ ├── output-1619767801.out │ │ │ │ ├── output-1619769601.out │ │ │ │ ├── output-1619771401.out │ │ │ │ ├── output-1619773201.out │ │ │ │ ├── output-1619775001.out │ │ │ │ ├── output-1619776801.out │ │ │ │ ├── output-1619778601.out │ │ │ │ ├── output-1619780401.out │ │ │ │ ├── output-1619782201.out │ │ │ │ ├── output-1619784001.out │ │ │ │ ├── output-1619785801.out │ │ │ │ ├── output-1619787601.out │ │ │ │ ├── output-1619789401.out │ │ │ │ ├── output-1619791201.out │ │ │ │ ├── output-1619793001.out │ │ │ │ ├── output-1619794801.out │ │ │ │ ├── output-1619796601.out │ │ │ │ ├── output-1619798401.out │ │ │ │ ├── output-1619800201.out │ │ │ │ ├── output-1619802001.out │ │ │ │ ├── output-1619803801.out │ │ │ │ ├── output-1619805601.out │ │ │ │ ├── output-1619807401.out │ │ │ │ ├── output-1619809201.out │ │ │ │ ├── output-1619811001.out │ │ │ │ ├── output-1619812801.out │ │ │ │ ├── output-1619814601.out │ │ │ │ ├── output-1619816401.out │ │ │ │ ├── output-1619818201.out │ │ │ │ ├── output-1619820001.out │ │ │ │ ├── output-1619821801.out │ │ │ │ ├── output-1619823601.out │ │ │ │ ├── output-1619825401.out │ │ │ │ ├── output-1619827201.out │ │ │ │ ├── output-1619829001.out │ │ │ │ ├── output-1619830801.out │ │ │ │ ├── output-1619832601.out │ │ │ │ ├── output-1619834401.out │ │ │ │ ├── output-1619836201.out │ │ │ │ ├── output-1619838001.out │ │ │ │ ├── output-1619839801.out │ │ │ │ ├── output-1619841601.out │ │ │ │ ├── output-1619843401.out │ │ │ │ ├── output-1619845201.out │ │ │ │ ├── output-1619847001.out │ │ │ │ ├── output-1619848801.out │ │ │ │ ├── output-1619850601.out │ │ │ │ ├── output-1619852401.out │ │ │ │ ├── output-1619854201.out │ │ │ │ ├── output-1619856001.out │ │ │ │ ├── output-1619857801.out │ │ │ │ ├── output-1619859601.out │ │ │ │ ├── output-1619861401.out │ │ │ │ ├── output-1619863201.out │ │ │ │ ├── output-1619865001.out │ │ │ │ ├── output-1619866801.out │ │ │ │ ├── output-1619868601.out │ │ │ │ ├── output-1619870401.out │ │ │ │ ├── output-1619872201.out │ │ │ │ ├── output-1619874001.out │ │ │ │ ├── output-1619875801.out │ │ │ │ ├── output-1619877601.out │ │ │ │ ├── output-1619879401.out │ │ │ │ ├── output-1619881201.out │ │ │ │ ├── output-1619883001.out │ │ │ │ ├── output-1619884801.out │ │ │ │ ├── output-1619886601.out │ │ │ │ ├── output-1619888401.out │ │ │ │ ├── output-1619890201.out │ │ │ │ ├── output-1619892001.out │ │ │ │ ├── output-1619893801.out │ │ │ │ ├── output-1619895601.out │ │ │ │ ├── output-1619897401.out │ │ │ │ ├── output-1619899201.out │ │ │ │ ├── output-1619901001.out │ │ │ │ ├── output-1619902801.out │ │ │ │ ├── output-1619904601.out │ │ │ │ ├── output-1619906401.out │ │ │ │ ├── output-1619908201.out │ │ │ │ ├── output-1619910001.out │ │ │ │ ├── output-1619911801.out │ │ │ │ ├── output-1619913601.out │ │ │ │ ├── output-1619915401.out │ │ │ │ ├── output-1619917201.out │ │ │ │ ├── output-1619919001.out │ │ │ │ ├── output-1619920801.out │ │ │ │ ├── output-1619922601.out │ │ │ │ ├── output-1619924401.out │ │ │ │ ├── output-1619926201.out │ │ │ │ ├── output-1619928001.out │ │ │ │ ├── output-1619929801.out │ │ │ │ ├── output-1619931601.out │ │ │ │ ├── output-1619933401.out │ │ │ │ ├── output-1619935201.out │ │ │ │ ├── output-1619937001.out │ │ │ │ ├── output-1619938801.out │ │ │ │ ├── output-1619940601.out │ │ │ │ ├── output-1619942401.out │ │ │ │ ├── output-1619944201.out │ │ │ │ ├── output-1619946001.out │ │ │ │ ├── output-1619947801.out │ │ │ │ ├── output-1619949601.out │ │ │ │ ├── output-1619951401.out │ │ │ │ ├── output-1619953201.out │ │ │ │ ├── output-1619955001.out │ │ │ │ ├── output-1619956801.out │ │ │ │ ├── output-1619958601.out │ │ │ │ ├── output-1619960401.out │ │ │ │ ├── output-1619962201.out │ │ │ │ ├── output-1619964001.out │ │ │ │ ├── output-1619965801.out │ │ │ │ ├── output-1619967601.out │ │ │ │ ├── output-1619969401.out │ │ │ │ ├── output-1619971201.out │ │ │ │ ├── output-1619973001.out │ │ │ │ ├── output-1619974801.out │ │ │ │ ├── output-1619976601.out │ │ │ │ ├── output-1619978401.out │ │ │ │ ├── output-1619980201.out │ │ │ │ ├── output-1619982001.out │ │ │ │ ├── output-1619983801.out │ │ │ │ ├── output-1619985601.out │ │ │ │ ├── output-1619987401.out │ │ │ │ ├── output-1619989201.out │ │ │ │ ├── output-1619991001.out │ │ │ │ ├── output-1619992801.out │ │ │ │ ├── output-1619994601.out │ │ │ │ ├── output-1619996401.out │ │ │ │ ├── output-1619998201.out │ │ │ │ ├── output-1620000001.out │ │ │ │ ├── output-1620001801.out │ │ │ │ ├── output-1620003601.out │ │ │ │ ├── output-1620005401.out │ │ │ │ ├── output-1620007201.out │ │ │ │ ├── output-1620009001.out │ │ │ │ ├── output-1620010801.out │ │ │ │ ├── output-1620012601.out │ │ │ │ ├── output-1620014401.out │ │ │ │ ├── output-1620016201.out │ │ │ │ ├── output-1620018001.out │ │ │ │ ├── output-1620019801.out │ │ │ │ ├── output-1620021601.out │ │ │ │ ├── output-1620023401.out │ │ │ │ ├── output-1620025201.out │ │ │ │ ├── output-1620027001.out │ │ │ │ ├── output-1620028801.out │ │ │ │ ├── output-1620030601.out │ │ │ │ ├── output-1620032401.out │ │ │ │ ├── output-1620034201.out │ │ │ │ ├── output-1620036001.out │ │ │ │ ├── output-1620037801.out │ │ │ │ ├── output-1620039601.out │ │ │ │ ├── output-1620041401.out │ │ │ │ ├── output-1620043201.out │ │ │ │ ├── output-1620045001.out │ │ │ │ ├── output-1620046801.out │ │ │ │ ├── output-1620048601.out │ │ │ │ ├── output-1620050401.out │ │ │ │ ├── output-1620052201.out │ │ │ │ ├── output-1620054001.out │ │ │ │ ├── output-1620055801.out │ │ │ │ ├── output-1620057601.out │ │ │ │ ├── output-1620059401.out │ │ │ │ ├── output-1620061201.out │ │ │ │ ├── output-1620063001.out │ │ │ │ ├── output-1620064801.out │ │ │ │ ├── output-1620066601.out │ │ │ │ ├── output-1620068401.out │ │ │ │ ├── output-1620070201.out │ │ │ │ ├── output-1620072001.out │ │ │ │ ├── output-1620073801.out │ │ │ │ ├── output-1620075601.out │ │ │ │ ├── output-1620077401.out │ │ │ │ ├── output-1620079201.out │ │ │ │ ├── output-1620081001.out │ │ │ │ ├── output-1620082801.out │ │ │ │ ├── output-1620084601.out │ │ │ │ ├── output-1620086401.out │ │ │ │ ├── output-1620088201.out │ │ │ │ ├── output-1620090001.out │ │ │ │ ├── output-1620091801.out │ │ │ │ ├── output-1620093601.out │ │ │ │ ├── output-1620095401.out │ │ │ │ ├── output-1620097201.out │ │ │ │ ├── output-1620099001.out │ │ │ │ ├── output-1620100801.out │ │ │ │ ├── output-1620102601.out │ │ │ │ ├── output-1620104401.out │ │ │ │ ├── output-1620106201.out │ │ │ │ ├── output-1620108001.out │ │ │ │ ├── output-1620109801.out │ │ │ │ ├── output-1620111601.out │ │ │ │ ├── output-1620113401.out │ │ │ │ ├── output-1620115201.out │ │ │ │ ├── output-1620117001.out │ │ │ │ ├── output-1620118801.out │ │ │ │ ├── output-1620120601.out │ │ │ │ ├── output-1620122401.out │ │ │ │ ├── output-1620124201.out │ │ │ │ ├── output-1620126001.out │ │ │ │ ├── output-1620127801.out │ │ │ │ ├── output-1620129601.out │ │ │ │ ├── output-1620131401.out │ │ │ │ ├── output-1620133201.out │ │ │ │ ├── output-1620135001.out │ │ │ │ ├── output-1620136801.out │ │ │ │ ├── output-1620138601.out │ │ │ │ ├── output-1620140401.out │ │ │ │ ├── output-1620142201.out │ │ │ │ ├── output-1620144001.out │ │ │ │ ├── output-1620145801.out │ │ │ │ ├── output-1620147601.out │ │ │ │ ├── output-1620149401.out │ │ │ │ ├── output-1620151201.out │ │ │ │ ├── output-1620153001.out │ │ │ │ ├── output-1620154801.out │ │ │ │ ├── output-1620156601.out │ │ │ │ ├── output-1620158401.out │ │ │ │ └── output-1620160201.out │ │ │ │ └── www.sunysuffolk.edu │ │ │ │ ├── output-1619215501.out │ │ │ │ ├── output-1619217301.out │ │ │ │ ├── output-1619219101.out │ │ │ │ ├── output-1619220901.out │ │ │ │ ├── output-1619222701.out │ │ │ │ ├── output-1619224501.out │ │ │ │ ├── output-1619226301.out │ │ │ │ ├── output-1619228101.out │ │ │ │ ├── output-1619229901.out │ │ │ │ ├── output-1619231701.out │ │ │ │ ├── output-1619233501.out │ │ │ │ ├── output-1619235301.out │ │ │ │ ├── output-1619237101.out │ │ │ │ ├── output-1619238901.out │ │ │ │ ├── output-1619240701.out │ │ │ │ ├── output-1619242501.out │ │ │ │ ├── output-1619244301.out │ │ │ │ ├── output-1619246101.out │ │ │ │ ├── output-1619247901.out │ │ │ │ ├── output-1619249701.out │ │ │ │ ├── output-1619251501.out │ │ │ │ ├── output-1619253301.out │ │ │ │ ├── output-1619255101.out │ │ │ │ ├── output-1619256901.out │ │ │ │ ├── output-1619258701.out │ │ │ │ ├── output-1619260501.out │ │ │ │ ├── output-1619262301.out │ │ │ │ ├── output-1619264101.out │ │ │ │ ├── output-1619265901.out │ │ │ │ ├── output-1619267701.out │ │ │ │ ├── output-1619269501.out │ │ │ │ ├── output-1619271301.out │ │ │ │ ├── output-1619273102.out │ │ │ │ ├── output-1619274901.out │ │ │ │ ├── output-1619276701.out │ │ │ │ ├── output-1619278501.out │ │ │ │ ├── output-1619280301.out │ │ │ │ ├── output-1619282101.out │ │ │ │ ├── output-1619283901.out │ │ │ │ ├── output-1619285701.out │ │ │ │ ├── output-1619287501.out │ │ │ │ ├── output-1619289301.out │ │ │ │ ├── output-1619291101.out │ │ │ │ ├── output-1619292901.out │ │ │ │ ├── output-1619294701.out │ │ │ │ ├── output-1619296501.out │ │ │ │ ├── output-1619298301.out │ │ │ │ ├── output-1619300101.out │ │ │ │ ├── output-1619301901.out │ │ │ │ ├── output-1619303701.out │ │ │ │ ├── output-1619305501.out │ │ │ │ ├── output-1619307301.out │ │ │ │ ├── output-1619309101.out │ │ │ │ ├── output-1619310901.out │ │ │ │ ├── output-1619312701.out │ │ │ │ ├── output-1619314501.out │ │ │ │ ├── output-1619316301.out │ │ │ │ ├── output-1619318101.out │ │ │ │ ├── output-1619319901.out │ │ │ │ ├── output-1619321701.out │ │ │ │ ├── output-1619323501.out │ │ │ │ ├── output-1619325301.out │ │ │ │ ├── output-1619327101.out │ │ │ │ ├── output-1619328901.out │ │ │ │ ├── output-1619330701.out │ │ │ │ ├── output-1619332501.out │ │ │ │ ├── output-1619334301.out │ │ │ │ ├── output-1619336101.out │ │ │ │ ├── output-1619337901.out │ │ │ │ ├── output-1619339701.out │ │ │ │ ├── output-1619341501.out │ │ │ │ ├── output-1619343301.out │ │ │ │ ├── output-1619345101.out │ │ │ │ ├── output-1619346901.out │ │ │ │ ├── output-1619348701.out │ │ │ │ ├── output-1619350501.out │ │ │ │ ├── output-1619352301.out │ │ │ │ ├── output-1619354101.out │ │ │ │ ├── output-1619355901.out │ │ │ │ ├── output-1619357701.out │ │ │ │ ├── output-1619359501.out │ │ │ │ ├── output-1619361301.out │ │ │ │ ├── output-1619363101.out │ │ │ │ ├── output-1619364901.out │ │ │ │ ├── output-1619366701.out │ │ │ │ ├── output-1619368501.out │ │ │ │ ├── output-1619370301.out │ │ │ │ ├── output-1619372101.out │ │ │ │ ├── output-1619373901.out │ │ │ │ ├── output-1619375701.out │ │ │ │ ├── output-1619377501.out │ │ │ │ ├── output-1619379301.out │ │ │ │ ├── output-1619381101.out │ │ │ │ ├── output-1619382901.out │ │ │ │ ├── output-1619384701.out │ │ │ │ ├── output-1619386501.out │ │ │ │ ├── output-1619388301.out │ │ │ │ ├── output-1619390101.out │ │ │ │ ├── output-1619391901.out │ │ │ │ ├── output-1619393701.out │ │ │ │ ├── output-1619395501.out │ │ │ │ ├── output-1619397301.out │ │ │ │ ├── output-1619399101.out │ │ │ │ ├── output-1619400901.out │ │ │ │ ├── output-1619402701.out │ │ │ │ ├── output-1619404502.out │ │ │ │ ├── output-1619406301.out │ │ │ │ ├── output-1619408101.out │ │ │ │ ├── output-1619409901.out │ │ │ │ ├── output-1619411701.out │ │ │ │ ├── output-1619413501.out │ │ │ │ ├── output-1619415301.out │ │ │ │ ├── output-1619417101.out │ │ │ │ ├── output-1619418901.out │ │ │ │ ├── output-1619420701.out │ │ │ │ ├── output-1619422501.out │ │ │ │ ├── output-1619424301.out │ │ │ │ ├── output-1619426101.out │ │ │ │ ├── output-1619427901.out │ │ │ │ ├── output-1619429701.out │ │ │ │ ├── output-1619431501.out │ │ │ │ ├── output-1619433301.out │ │ │ │ ├── output-1619435101.out │ │ │ │ ├── output-1619436901.out │ │ │ │ ├── output-1619438701.out │ │ │ │ ├── output-1619440501.out │ │ │ │ ├── output-1619442301.out │ │ │ │ ├── output-1619444101.out │ │ │ │ ├── output-1619445901.out │ │ │ │ ├── output-1619447701.out │ │ │ │ ├── output-1619449501.out │ │ │ │ ├── output-1619451301.out │ │ │ │ ├── output-1619453101.out │ │ │ │ ├── output-1619454901.out │ │ │ │ ├── output-1619456701.out │ │ │ │ ├── output-1619458501.out │ │ │ │ ├── output-1619460301.out │ │ │ │ ├── output-1619462101.out │ │ │ │ ├── output-1619463901.out │ │ │ │ ├── output-1619465701.out │ │ │ │ ├── output-1619467501.out │ │ │ │ ├── output-1619469301.out │ │ │ │ ├── output-1619471101.out │ │ │ │ ├── output-1619472901.out │ │ │ │ ├── output-1619474701.out │ │ │ │ ├── output-1619476501.out │ │ │ │ ├── output-1619478301.out │ │ │ │ ├── output-1619480101.out │ │ │ │ ├── output-1619481901.out │ │ │ │ ├── output-1619483701.out │ │ │ │ ├── output-1619485501.out │ │ │ │ ├── output-1619487301.out │ │ │ │ ├── output-1619489101.out │ │ │ │ ├── output-1619490901.out │ │ │ │ ├── output-1619492701.out │ │ │ │ ├── output-1619494502.out │ │ │ │ ├── output-1619496301.out │ │ │ │ ├── output-1619498101.out │ │ │ │ ├── output-1619499901.out │ │ │ │ ├── output-1619501701.out │ │ │ │ ├── output-1619503501.out │ │ │ │ ├── output-1619505301.out │ │ │ │ ├── output-1619507101.out │ │ │ │ ├── output-1619508901.out │ │ │ │ ├── output-1619510701.out │ │ │ │ ├── output-1619512501.out │ │ │ │ ├── output-1619514301.out │ │ │ │ ├── output-1619516101.out │ │ │ │ ├── output-1619517901.out │ │ │ │ ├── output-1619519701.out │ │ │ │ ├── output-1619521501.out │ │ │ │ ├── output-1619523301.out │ │ │ │ ├── output-1619525101.out │ │ │ │ ├── output-1619526901.out │ │ │ │ ├── output-1619528701.out │ │ │ │ ├── output-1619530501.out │ │ │ │ ├── output-1619532301.out │ │ │ │ ├── output-1619534101.out │ │ │ │ ├── output-1619535901.out │ │ │ │ ├── output-1619537701.out │ │ │ │ ├── output-1619539501.out │ │ │ │ ├── output-1619541301.out │ │ │ │ ├── output-1619543101.out │ │ │ │ ├── output-1619544901.out │ │ │ │ ├── output-1619546701.out │ │ │ │ ├── output-1619548501.out │ │ │ │ ├── output-1619550301.out │ │ │ │ ├── output-1619552101.out │ │ │ │ ├── output-1619553901.out │ │ │ │ ├── output-1619555701.out │ │ │ │ ├── output-1619557501.out │ │ │ │ ├── output-1619559301.out │ │ │ │ ├── output-1619561101.out │ │ │ │ ├── output-1619562901.out │ │ │ │ ├── output-1619564701.out │ │ │ │ ├── output-1619566501.out │ │ │ │ ├── output-1619568301.out │ │ │ │ ├── output-1619570101.out │ │ │ │ ├── output-1619571901.out │ │ │ │ ├── output-1619573701.out │ │ │ │ ├── output-1619575501.out │ │ │ │ ├── output-1619577301.out │ │ │ │ ├── output-1619579101.out │ │ │ │ ├── output-1619580901.out │ │ │ │ ├── output-1619582701.out │ │ │ │ ├── output-1619584501.out │ │ │ │ ├── output-1619586301.out │ │ │ │ ├── output-1619588101.out │ │ │ │ ├── output-1619589901.out │ │ │ │ ├── output-1619591701.out │ │ │ │ ├── output-1619593501.out │ │ │ │ ├── output-1619595301.out │ │ │ │ ├── output-1619597101.out │ │ │ │ ├── output-1619598901.out │ │ │ │ ├── output-1619600701.out │ │ │ │ ├── output-1619602501.out │ │ │ │ ├── output-1619604301.out │ │ │ │ ├── output-1619606101.out │ │ │ │ ├── output-1619607901.out │ │ │ │ ├── output-1619609701.out │ │ │ │ ├── output-1619611501.out │ │ │ │ ├── output-1619613301.out │ │ │ │ ├── output-1619615101.out │ │ │ │ ├── output-1619616901.out │ │ │ │ ├── output-1619618701.out │ │ │ │ ├── output-1619620501.out │ │ │ │ ├── output-1619622301.out │ │ │ │ ├── output-1619624101.out │ │ │ │ ├── output-1619625901.out │ │ │ │ ├── output-1619627701.out │ │ │ │ ├── output-1619629501.out │ │ │ │ ├── output-1619631301.out │ │ │ │ ├── output-1619633101.out │ │ │ │ ├── output-1619634901.out │ │ │ │ ├── output-1619636701.out │ │ │ │ ├── output-1619638501.out │ │ │ │ ├── output-1619640301.out │ │ │ │ ├── output-1619642101.out │ │ │ │ ├── output-1619643901.out │ │ │ │ ├── output-1619645701.out │ │ │ │ ├── output-1619647501.out │ │ │ │ ├── output-1619649301.out │ │ │ │ ├── output-1619651101.out │ │ │ │ ├── output-1619652901.out │ │ │ │ ├── output-1619654701.out │ │ │ │ ├── output-1619656501.out │ │ │ │ ├── output-1619658301.out │ │ │ │ ├── output-1619660101.out │ │ │ │ ├── output-1619661901.out │ │ │ │ ├── output-1619663701.out │ │ │ │ ├── output-1619665501.out │ │ │ │ ├── output-1619667301.out │ │ │ │ ├── output-1619669101.out │ │ │ │ ├── output-1619670901.out │ │ │ │ ├── output-1619672701.out │ │ │ │ ├── output-1619674501.out │ │ │ │ ├── output-1619676301.out │ │ │ │ ├── output-1619678101.out │ │ │ │ ├── output-1619679901.out │ │ │ │ ├── output-1619681701.out │ │ │ │ ├── output-1619683501.out │ │ │ │ ├── output-1619685301.out │ │ │ │ ├── output-1619687101.out │ │ │ │ ├── output-1619688901.out │ │ │ │ ├── output-1619690701.out │ │ │ │ ├── output-1619692501.out │ │ │ │ ├── output-1619694301.out │ │ │ │ ├── output-1619696101.out │ │ │ │ ├── output-1619697901.out │ │ │ │ ├── output-1619699701.out │ │ │ │ ├── output-1619701501.out │ │ │ │ ├── output-1619703301.out │ │ │ │ ├── output-1619705101.out │ │ │ │ ├── output-1619706901.out │ │ │ │ ├── output-1619708701.out │ │ │ │ ├── output-1619710501.out │ │ │ │ ├── output-1619712301.out │ │ │ │ ├── output-1619714101.out │ │ │ │ ├── output-1619715901.out │ │ │ │ ├── output-1619717701.out │ │ │ │ ├── output-1619719501.out │ │ │ │ ├── output-1619721301.out │ │ │ │ ├── output-1619723101.out │ │ │ │ ├── output-1619724901.out │ │ │ │ ├── output-1619726701.out │ │ │ │ ├── output-1619728501.out │ │ │ │ ├── output-1619730301.out │ │ │ │ ├── output-1619732101.out │ │ │ │ ├── output-1619733901.out │ │ │ │ ├── output-1619735701.out │ │ │ │ ├── output-1619737501.out │ │ │ │ ├── output-1619739301.out │ │ │ │ ├── output-1619741101.out │ │ │ │ ├── output-1619742901.out │ │ │ │ ├── output-1619744701.out │ │ │ │ ├── output-1619746501.out │ │ │ │ ├── output-1619748301.out │ │ │ │ ├── output-1619750101.out │ │ │ │ ├── output-1619751901.out │ │ │ │ ├── output-1619753701.out │ │ │ │ ├── output-1619755501.out │ │ │ │ ├── output-1619757301.out │ │ │ │ ├── output-1619759101.out │ │ │ │ ├── output-1619760901.out │ │ │ │ ├── output-1619762701.out │ │ │ │ ├── output-1619764501.out │ │ │ │ ├── output-1619766301.out │ │ │ │ ├── output-1619768101.out │ │ │ │ ├── output-1619769901.out │ │ │ │ ├── output-1619771701.out │ │ │ │ ├── output-1619773501.out │ │ │ │ ├── output-1619775301.out │ │ │ │ ├── output-1619777101.out │ │ │ │ ├── output-1619778901.out │ │ │ │ ├── output-1619780701.out │ │ │ │ ├── output-1619782501.out │ │ │ │ ├── output-1619784301.out │ │ │ │ ├── output-1619786101.out │ │ │ │ ├── output-1619787901.out │ │ │ │ ├── output-1619789701.out │ │ │ │ ├── output-1619791501.out │ │ │ │ ├── output-1619793301.out │ │ │ │ ├── output-1619795101.out │ │ │ │ ├── output-1619796901.out │ │ │ │ ├── output-1619798701.out │ │ │ │ ├── output-1619800501.out │ │ │ │ ├── output-1619802301.out │ │ │ │ ├── output-1619804101.out │ │ │ │ ├── output-1619805901.out │ │ │ │ ├── output-1619807701.out │ │ │ │ ├── output-1619809501.out │ │ │ │ ├── output-1619811301.out │ │ │ │ ├── output-1619813101.out │ │ │ │ ├── output-1619814901.out │ │ │ │ ├── output-1619816701.out │ │ │ │ ├── output-1619818501.out │ │ │ │ ├── output-1619820301.out │ │ │ │ ├── output-1619822101.out │ │ │ │ ├── output-1619823901.out │ │ │ │ ├── output-1619825701.out │ │ │ │ ├── output-1619827501.out │ │ │ │ ├── output-1619829301.out │ │ │ │ ├── output-1619831101.out │ │ │ │ ├── output-1619832901.out │ │ │ │ ├── output-1619834701.out │ │ │ │ ├── output-1619836501.out │ │ │ │ ├── output-1619838301.out │ │ │ │ ├── output-1619840101.out │ │ │ │ ├── output-1619841901.out │ │ │ │ ├── output-1619843701.out │ │ │ │ ├── output-1619845502.out │ │ │ │ ├── output-1619847301.out │ │ │ │ ├── output-1619849101.out │ │ │ │ ├── output-1619850901.out │ │ │ │ ├── output-1619852701.out │ │ │ │ ├── output-1619854501.out │ │ │ │ ├── output-1619856301.out │ │ │ │ ├── output-1619858101.out │ │ │ │ ├── output-1619859901.out │ │ │ │ ├── output-1619861701.out │ │ │ │ ├── output-1619863501.out │ │ │ │ ├── output-1619865301.out │ │ │ │ ├── output-1619867101.out │ │ │ │ ├── output-1619868901.out │ │ │ │ ├── output-1619870701.out │ │ │ │ ├── output-1619872501.out │ │ │ │ ├── output-1619874301.out │ │ │ │ ├── output-1619876101.out │ │ │ │ ├── output-1619877901.out │ │ │ │ ├── output-1619879701.out │ │ │ │ ├── output-1619881501.out │ │ │ │ ├── output-1619883301.out │ │ │ │ ├── output-1619885101.out │ │ │ │ ├── output-1619886901.out │ │ │ │ ├── output-1619888701.out │ │ │ │ ├── output-1619890501.out │ │ │ │ ├── output-1619892301.out │ │ │ │ ├── output-1619894101.out │ │ │ │ ├── output-1619895901.out │ │ │ │ ├── output-1619897701.out │ │ │ │ ├── output-1619899501.out │ │ │ │ ├── output-1619901301.out │ │ │ │ ├── output-1619903101.out │ │ │ │ ├── output-1619904901.out │ │ │ │ ├── output-1619906701.out │ │ │ │ ├── output-1619908501.out │ │ │ │ ├── output-1619910301.out │ │ │ │ ├── output-1619912101.out │ │ │ │ ├── output-1619913901.out │ │ │ │ ├── output-1619915701.out │ │ │ │ ├── output-1619917501.out │ │ │ │ ├── output-1619919301.out │ │ │ │ ├── output-1619921101.out │ │ │ │ ├── output-1619922901.out │ │ │ │ ├── output-1619924701.out │ │ │ │ ├── output-1619926501.out │ │ │ │ ├── output-1619928301.out │ │ │ │ ├── output-1619930101.out │ │ │ │ ├── output-1619931901.out │ │ │ │ ├── output-1619933701.out │ │ │ │ ├── output-1619935501.out │ │ │ │ ├── output-1619937301.out │ │ │ │ ├── output-1619939101.out │ │ │ │ ├── output-1619940901.out │ │ │ │ ├── output-1619942701.out │ │ │ │ ├── output-1619944501.out │ │ │ │ ├── output-1619946301.out │ │ │ │ ├── output-1619948101.out │ │ │ │ ├── output-1619949901.out │ │ │ │ ├── output-1619951701.out │ │ │ │ ├── output-1619953501.out │ │ │ │ ├── output-1619955301.out │ │ │ │ ├── output-1619957101.out │ │ │ │ ├── output-1619958901.out │ │ │ │ ├── output-1619960701.out │ │ │ │ ├── output-1619962501.out │ │ │ │ ├── output-1619964301.out │ │ │ │ ├── output-1619966101.out │ │ │ │ ├── output-1619967901.out │ │ │ │ ├── output-1619969701.out │ │ │ │ ├── output-1619971502.out │ │ │ │ ├── output-1619973301.out │ │ │ │ ├── output-1619975101.out │ │ │ │ ├── output-1619976901.out │ │ │ │ ├── output-1619978701.out │ │ │ │ ├── output-1619980501.out │ │ │ │ ├── output-1619982301.out │ │ │ │ ├── output-1619984101.out │ │ │ │ ├── output-1619985901.out │ │ │ │ ├── output-1619987701.out │ │ │ │ ├── output-1619989501.out │ │ │ │ ├── output-1619991301.out │ │ │ │ ├── output-1619993101.out │ │ │ │ ├── output-1619994901.out │ │ │ │ ├── output-1619996701.out │ │ │ │ ├── output-1619998501.out │ │ │ │ ├── output-1620000301.out │ │ │ │ ├── output-1620002101.out │ │ │ │ ├── output-1620003901.out │ │ │ │ ├── output-1620005701.out │ │ │ │ ├── output-1620007501.out │ │ │ │ ├── output-1620009301.out │ │ │ │ ├── output-1620011101.out │ │ │ │ ├── output-1620012901.out │ │ │ │ ├── output-1620014701.out │ │ │ │ ├── output-1620016501.out │ │ │ │ ├── output-1620018301.out │ │ │ │ ├── output-1620020101.out │ │ │ │ ├── output-1620021901.out │ │ │ │ ├── output-1620023701.out │ │ │ │ ├── output-1620025501.out │ │ │ │ ├── output-1620027301.out │ │ │ │ ├── output-1620029101.out │ │ │ │ ├── output-1620030901.out │ │ │ │ ├── output-1620032701.out │ │ │ │ ├── output-1620034501.out │ │ │ │ ├── output-1620036301.out │ │ │ │ ├── output-1620038101.out │ │ │ │ ├── output-1620039901.out │ │ │ │ ├── output-1620041701.out │ │ │ │ ├── output-1620043501.out │ │ │ │ ├── output-1620045301.out │ │ │ │ ├── output-1620047101.out │ │ │ │ ├── output-1620048901.out │ │ │ │ ├── output-1620050701.out │ │ │ │ ├── output-1620052501.out │ │ │ │ ├── output-1620054301.out │ │ │ │ ├── output-1620056101.out │ │ │ │ ├── output-1620057901.out │ │ │ │ ├── output-1620059701.out │ │ │ │ ├── output-1620061502.out │ │ │ │ ├── output-1620063301.out │ │ │ │ ├── output-1620065101.out │ │ │ │ ├── output-1620066901.out │ │ │ │ ├── output-1620068701.out │ │ │ │ ├── output-1620070501.out │ │ │ │ ├── output-1620072301.out │ │ │ │ ├── output-1620074101.out │ │ │ │ ├── output-1620075901.out │ │ │ │ ├── output-1620077701.out │ │ │ │ ├── output-1620079501.out │ │ │ │ ├── output-1620081301.out │ │ │ │ ├── output-1620083101.out │ │ │ │ ├── output-1620084901.out │ │ │ │ ├── output-1620086701.out │ │ │ │ ├── output-1620088501.out │ │ │ │ ├── output-1620090301.out │ │ │ │ ├── output-1620092101.out │ │ │ │ ├── output-1620093901.out │ │ │ │ ├── output-1620095701.out │ │ │ │ ├── output-1620097501.out │ │ │ │ ├── output-1620099301.out │ │ │ │ ├── output-1620101101.out │ │ │ │ ├── output-1620102901.out │ │ │ │ ├── output-1620104701.out │ │ │ │ ├── output-1620106501.out │ │ │ │ ├── output-1620108301.out │ │ │ │ ├── output-1620110101.out │ │ │ │ ├── output-1620111901.out │ │ │ │ ├── output-1620113701.out │ │ │ │ ├── output-1620115501.out │ │ │ │ ├── output-1620117301.out │ │ │ │ ├── output-1620119101.out │ │ │ │ ├── output-1620120901.out │ │ │ │ ├── output-1620122701.out │ │ │ │ ├── output-1620124501.out │ │ │ │ ├── output-1620126301.out │ │ │ │ ├── output-1620128101.out │ │ │ │ ├── output-1620129901.out │ │ │ │ ├── output-1620131701.out │ │ │ │ ├── output-1620133501.out │ │ │ │ ├── output-1620135301.out │ │ │ │ ├── output-1620137101.out │ │ │ │ ├── output-1620138901.out │ │ │ │ ├── output-1620140701.out │ │ │ │ ├── output-1620142501.out │ │ │ │ ├── output-1620144301.out │ │ │ │ ├── output-1620146101.out │ │ │ │ ├── output-1620147901.out │ │ │ │ ├── output-1620149701.out │ │ │ │ ├── output-1620151501.out │ │ │ │ ├── output-1620153301.out │ │ │ │ ├── output-1620155101.out │ │ │ │ ├── output-1620156901.out │ │ │ │ └── output-1620158701.out │ │ └── statistics.sh │ ├── local-filtered.csv │ ├── local.csv │ ├── location │ │ ├── ip2location.csv │ │ └── keycdn.csv │ ├── logs │ │ ├── task1a │ │ │ ├── MT-128.out │ │ │ ├── MT-16GB.out │ │ │ ├── MT-1GB.out │ │ │ ├── MT-256GB.out │ │ │ ├── MT-4GB.out │ │ │ ├── MT-64GB-no_direct.out │ │ │ ├── MT-64GB.out │ │ │ ├── SW-16GB.out │ │ │ ├── SW-1GB.out │ │ │ ├── SW-256GB.out │ │ │ ├── SW-4GB.out │ │ │ └── SW-64GB.out │ │ ├── task1b │ │ │ ├── s-128.out │ │ │ ├── s-16.out │ │ │ ├── s-192.out │ │ │ ├── s-256.out │ │ │ └── s-64.out │ │ ├── uk-filtered.csv │ │ └── uk-initial.csv │ ├── old │ │ └── tyler-servers.csv │ ├── top-1m.csv │ └── uk-final.csv ├── rtt_analysis.py ├── rtt_openssl.sh ├── rtt_tlse.sh └── time_rsa_filter.sh ├── rtt-analysis └── Network-Model.ipynb ├── scripts ├── install │ ├── install-pbc.sh │ ├── install-roughenough.sh │ └── install-tlsdate.sh ├── parameters.py ├── proof_sizes.py ├── run-continuosly.sh └── speeds.py ├── ssd-benchmark ├── README.md └── aio-test │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── aio-example.c │ ├── aio-test.c │ └── ccan │ ├── Makefile │ ├── ccan │ ├── build_assert │ │ ├── LICENSE │ │ ├── _info │ │ ├── build_assert.h │ │ └── test │ │ │ ├── compile_fail-expr.c │ │ │ ├── compile_fail.c │ │ │ ├── compile_ok.c │ │ │ └── run-BUILD_ASSERT_OR_ZERO.c │ ├── check_type │ │ ├── LICENSE │ │ ├── _info │ │ ├── check_type.h │ │ └── test │ │ │ ├── compile_fail-check_type.c │ │ │ ├── compile_fail-check_type_unsigned.c │ │ │ ├── compile_fail-check_types_match.c │ │ │ └── run.c │ ├── container_of │ │ ├── LICENSE │ │ ├── _info │ │ ├── container_of.h │ │ └── test │ │ │ ├── compile_fail-bad-type.c │ │ │ ├── compile_fail-types.c │ │ │ ├── compile_fail-var-types.c │ │ │ └── run.c │ ├── list │ │ ├── LICENSE │ │ ├── _info │ │ ├── list.c │ │ ├── list.h │ │ └── test │ │ │ ├── compile_ok-constant.c │ │ │ ├── helper.c │ │ │ ├── helper.h │ │ │ ├── run-CCAN_LIST_DEBUG.c │ │ │ ├── run-check-corrupt.c │ │ │ ├── run-check-nonconst.c │ │ │ ├── run-list_del_from-assert.c │ │ │ ├── run-list_prev-list_next.c │ │ │ ├── run-prepend_list.c │ │ │ ├── run-single-eval.c │ │ │ ├── run-with-debug.c │ │ │ └── run.c │ ├── minmax │ │ ├── LICENSE │ │ ├── _info │ │ ├── minmax.h │ │ └── test │ │ │ ├── compile_fail-wrongsign.c │ │ │ ├── compile_fail-wrongsize.c │ │ │ └── run.c │ └── str │ │ ├── LICENSE │ │ ├── _info │ │ ├── debug.c │ │ ├── str.c │ │ ├── str.h │ │ ├── str_debug.h │ │ └── test │ │ ├── compile_fail-STR_MAX_CHARS.c │ │ ├── compile_fail-isalnum.c │ │ ├── compile_fail-isalpha.c │ │ ├── compile_fail-isascii.c │ │ ├── compile_fail-isblank.c │ │ ├── compile_fail-iscntrl.c │ │ ├── compile_fail-isdigit.c │ │ ├── compile_fail-islower.c │ │ ├── compile_fail-isprint.c │ │ ├── compile_fail-ispunct.c │ │ ├── compile_fail-isspace.c │ │ ├── compile_fail-isupper.c │ │ ├── compile_fail-isxdigit.c │ │ ├── compile_fail-strchr.c │ │ ├── compile_fail-strrchr.c │ │ ├── compile_fail-strstr.c │ │ ├── compile_ok-STR_MAX_CHARS-static.c │ │ ├── debug.c │ │ ├── run-STR_MAX_CHARS.c │ │ └── run.c │ ├── config.h │ └── licenses │ ├── BSD-MIT │ └── CC0 └── vcom-testing ├── Makefile ├── README.md ├── pbc.c ├── relic.c ├── relic_ec_bench.c └── sodium ├── vc_parallel.c └── vc_serial.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/.gitmodules -------------------------------------------------------------------------------- /Merkle-Tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/Makefile -------------------------------------------------------------------------------- /Merkle-Tree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/README.md -------------------------------------------------------------------------------- /Merkle-Tree/include/aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/include/aio.h -------------------------------------------------------------------------------- /Merkle-Tree/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/include/common.h -------------------------------------------------------------------------------- /Merkle-Tree/include/sha-256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/include/sha-256.h -------------------------------------------------------------------------------- /Merkle-Tree/results/fs-1GB_bs-1KB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/results/fs-1GB_bs-1KB.dat -------------------------------------------------------------------------------- /Merkle-Tree/results/fs-2MB_bs-1KB.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/results/fs-2MB_bs-1KB.dat -------------------------------------------------------------------------------- /Merkle-Tree/scripts/amplify_gen_full_proof.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/scripts/amplify_gen_full_proof.sh -------------------------------------------------------------------------------- /Merkle-Tree/scripts/get_cert_pk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/scripts/get_cert_pk.sh -------------------------------------------------------------------------------- /Merkle-Tree/scripts/statistics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/scripts/statistics.sh -------------------------------------------------------------------------------- /Merkle-Tree/scripts/verify_roughtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/scripts/verify_roughtime.sh -------------------------------------------------------------------------------- /Merkle-Tree/scripts/verify_tls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/scripts/verify_tls.sh -------------------------------------------------------------------------------- /Merkle-Tree/scripts/verify_tls_signatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/scripts/verify_tls_signatures.py -------------------------------------------------------------------------------- /Merkle-Tree/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/src/common.c -------------------------------------------------------------------------------- /Merkle-Tree/src/create_file_and_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/src/create_file_and_tags.c -------------------------------------------------------------------------------- /Merkle-Tree/src/gen_proof_full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/src/gen_proof_full.c -------------------------------------------------------------------------------- /Merkle-Tree/src/geo_commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/src/geo_commit.c -------------------------------------------------------------------------------- /Merkle-Tree/src/sha-256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/src/sha-256.c -------------------------------------------------------------------------------- /Merkle-Tree/src/verify_por_proof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Merkle-Tree/src/verify_por_proof.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/README.md -------------------------------------------------------------------------------- /Shacham-Waters/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/Makefile -------------------------------------------------------------------------------- /Shacham-Waters/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/README.md -------------------------------------------------------------------------------- /Shacham-Waters/data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/data/.gitignore -------------------------------------------------------------------------------- /Shacham-Waters/include/aio_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/include/aio_helper.h -------------------------------------------------------------------------------- /Shacham-Waters/include/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/include/audit.h -------------------------------------------------------------------------------- /Shacham-Waters/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/include/common.h -------------------------------------------------------------------------------- /Shacham-Waters/include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/include/file.h -------------------------------------------------------------------------------- /Shacham-Waters/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/include/utils.h -------------------------------------------------------------------------------- /Shacham-Waters/include/vector_commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/include/vector_commit.h -------------------------------------------------------------------------------- /Shacham-Waters/param/a.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/param/a.param -------------------------------------------------------------------------------- /Shacham-Waters/param/d159.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/param/d159.param -------------------------------------------------------------------------------- /Shacham-Waters/param/f.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/param/f.param -------------------------------------------------------------------------------- /Shacham-Waters/param/g149.param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/param/g149.param -------------------------------------------------------------------------------- /Shacham-Waters/proofs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/proofs/.gitignore -------------------------------------------------------------------------------- /Shacham-Waters/scripts/roughtime_verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/scripts/roughtime_verify.sh -------------------------------------------------------------------------------- /Shacham-Waters/src/audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/audit.c -------------------------------------------------------------------------------- /Shacham-Waters/src/create_file_and_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/create_file_and_tags.c -------------------------------------------------------------------------------- /Shacham-Waters/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/file.c -------------------------------------------------------------------------------- /Shacham-Waters/src/geo_commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/geo_commit.c -------------------------------------------------------------------------------- /Shacham-Waters/src/prove_and_verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/prove_and_verify.c -------------------------------------------------------------------------------- /Shacham-Waters/src/swpor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/swpor.c -------------------------------------------------------------------------------- /Shacham-Waters/src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/utils.c -------------------------------------------------------------------------------- /Shacham-Waters/src/vector_commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/Shacham-Waters/src/vector_commit.c -------------------------------------------------------------------------------- /data/ip2location_db5/README.md: -------------------------------------------------------------------------------- 1 | Put "IP2LOCATION-LITE-DB5.BIN" in this directory. It can be downloaded from ip2location. 2 | -------------------------------------------------------------------------------- /data/wonder-network/city-ping/cities100000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/city-ping/cities100000.csv -------------------------------------------------------------------------------- /data/wonder-network/city-ping/cleaned-ping-data-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/city-ping/cleaned-ping-data-10.csv -------------------------------------------------------------------------------- /data/wonder-network/city-ping/cleaned-ping-data-9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/city-ping/cleaned-ping-data-9.csv -------------------------------------------------------------------------------- /data/wonder-network/city-ping/ping-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/city-ping/ping-data.json -------------------------------------------------------------------------------- /data/wonder-network/city-ping/relations_US_Europe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/city-ping/relations_US_Europe -------------------------------------------------------------------------------- /data/wonder-network/city-ping/sample-ping-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/city-ping/sample-ping-data.json -------------------------------------------------------------------------------- /data/wonder-network/inter-city/ping-to-blr.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/inter-city/ping-to-blr.xls -------------------------------------------------------------------------------- /data/wonder-network/inter-city/ping-to-blr.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/inter-city/ping-to-blr.xlsx -------------------------------------------------------------------------------- /data/wonder-network/inter-city/ping-to-manhattan.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/inter-city/ping-to-manhattan.xls -------------------------------------------------------------------------------- /data/wonder-network/inter-city/ping-to-manhattan.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/inter-city/ping-to-manhattan.xlsx -------------------------------------------------------------------------------- /data/wonder-network/inter-city/ping-to-sfo.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/inter-city/ping-to-sfo.xlsx -------------------------------------------------------------------------------- /data/wonder-network/inter-city/ping-to-zurich.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/data/wonder-network/inter-city/ping-to-zurich.xlsx -------------------------------------------------------------------------------- /deps/ccan/Makefile: -------------------------------------------------------------------------------- 1 | all: libccan.a 2 | 3 | include Makefile-ccan 4 | -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/build_assert/_info -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/build_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/build_assert/build_assert.h -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/test/compile_fail-expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/build_assert/test/compile_fail-expr.c -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/test/compile_fail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/build_assert/test/compile_fail.c -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/test/compile_ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/build_assert/test/compile_ok.c -------------------------------------------------------------------------------- /deps/ccan/ccan/build_assert/test/run-BUILD_ASSERT_OR_ZERO.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/build_assert/test/run-BUILD_ASSERT_OR_ZERO.c -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/check_type/_info -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/check_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/check_type/check_type.h -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/test/compile_fail-check_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/check_type/test/compile_fail-check_type.c -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/test/compile_fail-check_type_unsigned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/check_type/test/compile_fail-check_type_unsigned.c -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/test/compile_fail-check_types_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/check_type/test/compile_fail-check_types_match.c -------------------------------------------------------------------------------- /deps/ccan/ccan/check_type/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/check_type/test/run.c -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/container_of/_info -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/container_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/container_of/container_of.h -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/test/compile_fail-bad-type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/container_of/test/compile_fail-bad-type.c -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/test/compile_fail-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/container_of/test/compile_fail-types.c -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/test/compile_fail-var-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/container_of/test/compile_fail-var-types.c -------------------------------------------------------------------------------- /deps/ccan/ccan/container_of/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/container_of/test/run.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/BSD-MIT -------------------------------------------------------------------------------- /deps/ccan/ccan/list/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/_info -------------------------------------------------------------------------------- /deps/ccan/ccan/list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/list.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/list.h -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/compile_ok-constant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/compile_ok-constant.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/helper.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/helper.h -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-CCAN_LIST_DEBUG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-CCAN_LIST_DEBUG.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-check-corrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-check-corrupt.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-check-nonconst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-check-nonconst.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-list_del_from-assert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-list_del_from-assert.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-list_prev-list_next.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-list_prev-list_next.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-prepend_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-prepend_list.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-single-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-single-eval.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run-with-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run-with-debug.c -------------------------------------------------------------------------------- /deps/ccan/ccan/list/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/list/test/run.c -------------------------------------------------------------------------------- /deps/ccan/ccan/minmax/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /deps/ccan/ccan/minmax/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/minmax/_info -------------------------------------------------------------------------------- /deps/ccan/ccan/minmax/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/minmax/minmax.h -------------------------------------------------------------------------------- /deps/ccan/ccan/minmax/test/compile_fail-wrongsign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/minmax/test/compile_fail-wrongsign.c -------------------------------------------------------------------------------- /deps/ccan/ccan/minmax/test/compile_fail-wrongsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/minmax/test/compile_fail-wrongsize.c -------------------------------------------------------------------------------- /deps/ccan/ccan/minmax/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/minmax/test/run.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /deps/ccan/ccan/str/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/_info -------------------------------------------------------------------------------- /deps/ccan/ccan/str/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/debug.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/str.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/str.h -------------------------------------------------------------------------------- /deps/ccan/ccan/str/str_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/str_debug.h -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-STR_MAX_CHARS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-STR_MAX_CHARS.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isalnum.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isalpha.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isascii.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isblank.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-iscntrl.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isdigit.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-islower.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isprint.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-ispunct.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isspace.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isupper.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-isxdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-isxdigit.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-strchr.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-strrchr.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_fail-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_fail-strstr.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/compile_ok-STR_MAX_CHARS-static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/compile_ok-STR_MAX_CHARS-static.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/debug.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/run-STR_MAX_CHARS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/run-STR_MAX_CHARS.c -------------------------------------------------------------------------------- /deps/ccan/ccan/str/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/ccan/str/test/run.c -------------------------------------------------------------------------------- /deps/ccan/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/config.h -------------------------------------------------------------------------------- /deps/ccan/licenses/BSD-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/licenses/BSD-MIT -------------------------------------------------------------------------------- /deps/ccan/licenses/CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/ccan/licenses/CC0 -------------------------------------------------------------------------------- /deps/roughenough/.drone.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/.drone.yml -------------------------------------------------------------------------------- /deps/roughenough/.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/.github/workflows/rust.yml -------------------------------------------------------------------------------- /deps/roughenough/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/.gitignore -------------------------------------------------------------------------------- /deps/roughenough/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/.travis.yml -------------------------------------------------------------------------------- /deps/roughenough/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/CHANGELOG.md -------------------------------------------------------------------------------- /deps/roughenough/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/CONTRIBUTING.md -------------------------------------------------------------------------------- /deps/roughenough/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/Cargo.toml -------------------------------------------------------------------------------- /deps/roughenough/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/Dockerfile -------------------------------------------------------------------------------- /deps/roughenough/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/LICENSE -------------------------------------------------------------------------------- /deps/roughenough/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/README.md -------------------------------------------------------------------------------- /deps/roughenough/benches/roughenough-bench.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/benches/roughenough-bench.rs -------------------------------------------------------------------------------- /deps/roughenough/doc/OPTIONAL-FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/doc/OPTIONAL-FEATURES.md -------------------------------------------------------------------------------- /deps/roughenough/doc/rfc-commentary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/doc/rfc-commentary.md -------------------------------------------------------------------------------- /deps/roughenough/example.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/example.cfg -------------------------------------------------------------------------------- /deps/roughenough/src/bin/roughenough-client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/bin/roughenough-client.rs -------------------------------------------------------------------------------- /deps/roughenough/src/bin/roughenough-kms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/bin/roughenough-kms.rs -------------------------------------------------------------------------------- /deps/roughenough/src/bin/roughenough-server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/bin/roughenough-server.rs -------------------------------------------------------------------------------- /deps/roughenough/src/bin/roughenough-verify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/bin/roughenough-verify.rs -------------------------------------------------------------------------------- /deps/roughenough/src/config/environment.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/config/environment.rs -------------------------------------------------------------------------------- /deps/roughenough/src/config/file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/config/file.rs -------------------------------------------------------------------------------- /deps/roughenough/src/config/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/config/memory.rs -------------------------------------------------------------------------------- /deps/roughenough/src/config/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/config/mod.rs -------------------------------------------------------------------------------- /deps/roughenough/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/error.rs -------------------------------------------------------------------------------- /deps/roughenough/src/grease.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/grease.rs -------------------------------------------------------------------------------- /deps/roughenough/src/key/longterm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/key/longterm.rs -------------------------------------------------------------------------------- /deps/roughenough/src/key/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/key/mod.rs -------------------------------------------------------------------------------- /deps/roughenough/src/key/online.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/key/online.rs -------------------------------------------------------------------------------- /deps/roughenough/src/kms/awskms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/kms/awskms.rs -------------------------------------------------------------------------------- /deps/roughenough/src/kms/envelope.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/kms/envelope.rs -------------------------------------------------------------------------------- /deps/roughenough/src/kms/gcpkms.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/kms/gcpkms.rs -------------------------------------------------------------------------------- /deps/roughenough/src/kms/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/kms/mod.rs -------------------------------------------------------------------------------- /deps/roughenough/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/lib.rs -------------------------------------------------------------------------------- /deps/roughenough/src/merkle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/merkle.rs -------------------------------------------------------------------------------- /deps/roughenough/src/message.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/message.rs -------------------------------------------------------------------------------- /deps/roughenough/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/server.rs -------------------------------------------------------------------------------- /deps/roughenough/src/sign.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/sign.rs -------------------------------------------------------------------------------- /deps/roughenough/src/stats/aggregated.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/stats/aggregated.rs -------------------------------------------------------------------------------- /deps/roughenough/src/stats/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/stats/mod.rs -------------------------------------------------------------------------------- /deps/roughenough/src/stats/per_client.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/stats/per_client.rs -------------------------------------------------------------------------------- /deps/roughenough/src/tag.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/roughenough/src/tag.rs -------------------------------------------------------------------------------- /deps/tlse-geo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/LICENSE -------------------------------------------------------------------------------- /deps/tlse-geo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/README.md -------------------------------------------------------------------------------- /deps/tlse-geo/examples/raw-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/examples/raw-time.c -------------------------------------------------------------------------------- /deps/tlse-geo/libtomcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/libtomcrypt.c -------------------------------------------------------------------------------- /deps/tlse-geo/tlse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/tlse.c -------------------------------------------------------------------------------- /deps/tlse-geo/tlse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/tlse.h -------------------------------------------------------------------------------- /deps/tlse-geo/tlstime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/tlstime -------------------------------------------------------------------------------- /deps/tlse-geo/tlstime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/tlstime.c -------------------------------------------------------------------------------- /deps/tlse-geo/tlstime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/deps/tlse-geo/tlstime.h -------------------------------------------------------------------------------- /experiments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/README.md -------------------------------------------------------------------------------- /experiments/iploc_ip2location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/iploc_ip2location.py -------------------------------------------------------------------------------- /experiments/iploc_keycdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/iploc_keycdn.py -------------------------------------------------------------------------------- /experiments/publickey.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/publickey.sh -------------------------------------------------------------------------------- /experiments/remove_cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/remove_cdn.py -------------------------------------------------------------------------------- /experiments/results/anchors-nv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/anchors-nv.csv -------------------------------------------------------------------------------- /experiments/results/anchors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/anchors.csv -------------------------------------------------------------------------------- /experiments/results/bad-anchors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/bad-anchors.csv -------------------------------------------------------------------------------- /experiments/results/exp1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/README.md -------------------------------------------------------------------------------- /experiments/results/exp1/local-filtered-twice.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/local-filtered-twice.csv -------------------------------------------------------------------------------- /experiments/results/exp1/local-filtered.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/local-filtered.csv -------------------------------------------------------------------------------- /experiments/results/exp1/rtt-ca-1612361197.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/rtt-ca-1612361197.csv -------------------------------------------------------------------------------- /experiments/results/exp1/rtt-nv-1612269395.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/rtt-nv-1612269395.csv -------------------------------------------------------------------------------- /experiments/results/exp1/rtt-nv-1612359349.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/rtt-nv-1612359349.csv -------------------------------------------------------------------------------- /experiments/results/exp1/rtt-nv-1612439697.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/rtt-nv-1612439697.csv -------------------------------------------------------------------------------- /experiments/results/exp1/rtt-sp-1612269306.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp1/rtt-sp-1612269306.csv -------------------------------------------------------------------------------- /experiments/results/exp2/publickeys-lon-1612262625.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp2/publickeys-lon-1612262625.csv -------------------------------------------------------------------------------- /experiments/results/exp2/publickeys-nv-1612262122.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp2/publickeys-nv-1612262122.csv -------------------------------------------------------------------------------- /experiments/results/exp2/publickeys-sp-1612263013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp2/publickeys-sp-1612263013.csv -------------------------------------------------------------------------------- /experiments/results/exp2/publickeys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp2/publickeys.csv -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614632401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614632401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614636001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614636001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614639601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614639601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614643201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614643201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614646801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614646801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614650401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614650401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614654001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614654001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614657601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614657601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614661201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614661201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614664801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614664801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614668401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614668401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614672001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614672001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614675601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614675601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614679201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614679201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614682801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614682801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614686401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614686401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614690001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614690001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614693601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614693601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614697201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614697201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614700801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614700801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614704401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614704401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614708001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614708001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614711601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614711601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614715201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614715201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614718801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614718801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614722401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614722401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614726001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614726001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614729601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614729601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614733201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614733201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614736801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614736801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614740401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614740401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614744001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614744001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614747601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614747601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614751201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614751201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614754801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614754801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614758401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614758401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614762001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614762001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614765601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614765601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614769201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614769201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614772801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614772801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614776401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614776401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614780001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614780001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614783601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614783601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614787201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614787201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614790801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614790801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614794401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614794401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614798001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614798001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614801601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614801601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614805201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614805201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614808801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614808801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614812401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614812401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614816001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614816001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614819601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614819601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614823201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614823201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614826801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614826801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614830401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614830401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614834001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614834001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614837601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614837601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614841201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614841201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614844801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614844801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614848401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614848401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614852001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614852001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614855601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614855601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614859201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614859201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614862801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614862801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614866401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614866401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614870001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614870001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614873601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614873601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614877201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614877201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614880801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614880801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614884401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614884401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614888001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614888001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614891601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614891601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614895201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614895201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614898801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614898801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614902401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614902401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614906001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614906001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614909601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614909601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614913201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614913201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614916801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614916801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614920401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614920401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614924001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614924001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614927601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614927601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614931201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614931201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614934801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614934801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614938401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614938401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614942001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614942001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614945601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614945601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614949201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614949201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614952801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614952801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614956401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614956401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614960001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614960001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614963601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614963601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614967201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614967201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614970801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614970801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614974401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614974401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614978001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614978001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614981601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614981601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614985201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614985201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614988801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614988801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614992401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614992401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614996001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614996001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1614999601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1614999601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615003201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615003201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615006801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615006801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615010401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615010401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615014001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615014001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615017601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615017601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615021201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615021201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615024801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615024801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615028401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615028401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615032001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615032001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615035601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615035601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615039201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615039201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615042801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615042801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615046401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615046401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615050001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615050001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615053601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615053601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615057201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615057201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615060801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615060801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615064401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615064401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615068001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615068001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615071601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615071601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615075201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615075201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615078801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615078801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615082401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615082401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615086001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615086001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615089601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615089601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615093201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615093201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615096801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615096801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615100401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615100401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615104001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615104001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615107601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615107601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615111201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615111201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615114801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615114801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615118401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615118401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615122001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615122001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615125601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615125601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615129201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615129201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615132801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615132801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615136401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615136401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615140001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615140001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615143601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615143601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615147201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615147201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615150801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615150801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615154401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615154401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615158001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615158001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615161601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615161601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615165201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615165201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615168801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615168801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615172401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615172401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615176001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615176001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615179601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615179601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615183201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615183201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615186801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615186801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615190401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615190401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615194001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615194001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615197601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615197601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615201201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615201201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615204801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615204801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615208401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615208401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615212001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615212001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615215601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615215601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615219201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615219201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615222801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615222801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615226401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615226401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615230001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615230001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615233601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615233601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615237201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615237201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615240801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615240801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615244401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615244401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615248001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615248001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615251601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615251601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615255201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615255201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615258801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615258801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615262401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615262401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615266001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615266001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615269601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615269601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615273201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615273201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615276801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615276801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615280401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615280401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615284001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615284001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615287601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615287601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615291201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615291201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615294801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615294801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615298401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615298401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615302001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615302001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615305601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615305601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615309201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615309201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615312801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615312801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615316402.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615316402.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615320001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615320001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615323601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615323601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615327201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615327201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615330801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615330801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615334402.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615334402.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615338001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615338001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615341601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615341601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615345201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615345201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615348801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615348801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615352401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615352401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615356001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615356001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615359601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615359601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615363201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615363201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615366801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615366801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615370401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615370401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615374001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615374001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615377601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615377601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615381201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615381201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615384801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615384801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615388401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615388401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615392001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615392001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615395601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615395601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615399201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615399201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615402801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615402801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615406401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615406401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615410001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615410001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615413601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615413601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615417201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615417201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615420801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615420801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615424401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615424401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615428001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615428001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615431601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615431601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615435201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615435201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615438801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615438801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615442401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615442401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615446001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615446001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615449601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615449601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615453201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615453201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615456801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615456801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615460401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615460401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615464001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615464001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615467601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615467601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615471201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615471201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615474801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615474801.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615478401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615478401.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615482001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615482001.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615485601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615485601.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615489201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615489201.out -------------------------------------------------------------------------------- /experiments/results/exp3/logs/debug-1615492801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/logs/debug-1615492801.out -------------------------------------------------------------------------------- /experiments/results/exp3/process.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/process.ipynb -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614632401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614632401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614636001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614636001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614639601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614639601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614643201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614643201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614646801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614646801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614650401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614650401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614654001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614654001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614657601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614657601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614661201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614661201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614664801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614664801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614668401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614668401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614672001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614672001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614675601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614675601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614679201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614679201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614682801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614682801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614686401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614686401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614690001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614690001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614693601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614693601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614697201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614697201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614700801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614700801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614704401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614704401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614708001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614708001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614711601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614711601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614715201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614715201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614718801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614718801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614722401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614722401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614726001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614726001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614729601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614729601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614733201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614733201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614736801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614736801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614740401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614740401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614744001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614744001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614747601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614747601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614751201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614751201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614754801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614754801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614758401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614758401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614762001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614762001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614765601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614765601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614769201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614769201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614772801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614772801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614776401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614776401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614780001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614780001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614783601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614783601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614787201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614787201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614790801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614790801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614794401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614794401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614798001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614798001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614801601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614801601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614805201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614805201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614808801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614808801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614812401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614812401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614816001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614816001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614819601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614819601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614823201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614823201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614826801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614826801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614830401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614830401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614834001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614834001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614837601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614837601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614841201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614841201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614844801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614844801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614848401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614848401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614852001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614852001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614855601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614855601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614859201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614859201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614862801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614862801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614866401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614866401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614870001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614870001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614873601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614873601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614877201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614877201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614880801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614880801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614884401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614884401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614888001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614888001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614891601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614891601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614895201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614895201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614898801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614898801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614902401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614902401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614906001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614906001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614909601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614909601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614913201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614913201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614916801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614916801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614920401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614920401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614924001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614924001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614927601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614927601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614931201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614931201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614934801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614934801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614938401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614938401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614942001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614942001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614945601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614945601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614949201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614949201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614952801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614952801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614956401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614956401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614960001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614960001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614963601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614963601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614967201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614967201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614970801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614970801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614974401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614974401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614978001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614978001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614981601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614981601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614985201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614985201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614988801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614988801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614992401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614992401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614996001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614996001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1614999601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1614999601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615003201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615003201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615006801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615006801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615010401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615010401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615014001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615014001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615017601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615017601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615021201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615021201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615024801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615024801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615028401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615028401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615032001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615032001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615035601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615035601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615039201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615039201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615042801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615042801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615046401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615046401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615050001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615050001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615053601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615053601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615057201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615057201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615060801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615060801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615064401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615064401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615068001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615068001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615071601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615071601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615075201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615075201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615078801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615078801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615082401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615082401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615086001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615086001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615089601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615089601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615093201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615093201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615096801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615096801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615100401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615100401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615104001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615104001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615107601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615107601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615111201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615111201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615114801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615114801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615118401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615118401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615122001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615122001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615125601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615125601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615129201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615129201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615132801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615132801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615136401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615136401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615140001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615140001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615143601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615143601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615147201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615147201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615150801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615150801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615154401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615154401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615158001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615158001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615161601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615161601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615165201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615165201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615168801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615168801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615172401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615172401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615176001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615176001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615179601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615179601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615183201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615183201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615186801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615186801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615190401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615190401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615194001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615194001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615197601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615197601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615201201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615201201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615204801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615204801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615208401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615208401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615212001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615212001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615215601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615215601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615219201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615219201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615222801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615222801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615226401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615226401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615230001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615230001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615233601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615233601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615237201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615237201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615240801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615240801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615244401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615244401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615248001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615248001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615251601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615251601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615255201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615255201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615258801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615258801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615262401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615262401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615266001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615266001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615269601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615269601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615273201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615273201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615276801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615276801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615280401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615280401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615284001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615284001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615287601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615287601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615291201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615291201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615294801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615294801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615298401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615298401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615302001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615302001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615305601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615305601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615309201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615309201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615312801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615312801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615316402.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615316402.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615320001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615320001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615323601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615323601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615327201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615327201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615330801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615330801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615334402.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615334402.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615338001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615338001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615341601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615341601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615345201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615345201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615348801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615348801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615352401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615352401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615356001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615356001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615359601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615359601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615363201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615363201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615366801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615366801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615370401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615370401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615374001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615374001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615377601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615377601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615381201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615381201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615384801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615384801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615388401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615388401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615392001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615392001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615395601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615395601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615399201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615399201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615402801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615402801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615406401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615406401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615410001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615410001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615413601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615413601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615417201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615417201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615420801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615420801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615424401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615424401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615428001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615428001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615431601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615431601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615435201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615435201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615438801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615438801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615442401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615442401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615446001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615446001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615449601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615449601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615453201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615453201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615456801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615456801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615460401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615460401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615464001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615464001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615467601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615467601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615471201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615471201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615474801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615474801.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615478401.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615478401.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615482001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615482001.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615485601.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615485601.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615489201.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615489201.csv -------------------------------------------------------------------------------- /experiments/results/exp3/rtt/rtt-1615492801.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp3/rtt/rtt-1615492801.csv -------------------------------------------------------------------------------- /experiments/results/exp4/Anchors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/Anchors.ipynb -------------------------------------------------------------------------------- /experiments/results/exp4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/README.md -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/anchors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/anchors.csv -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619538001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619538001.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619539801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619539801.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619541601.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619541601.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619543401.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619543401.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619545201.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619545201.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619547001.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619547001.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/gold.ac.uk/output-1619548801.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/gold.ac.uk/output-1619548801.out -------------------------------------------------------------------------------- /experiments/results/exp4/lon/logs/rtt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/lon/logs/rtt.csv -------------------------------------------------------------------------------- /experiments/results/exp4/statistics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/exp4/statistics.sh -------------------------------------------------------------------------------- /experiments/results/local-filtered.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/local-filtered.csv -------------------------------------------------------------------------------- /experiments/results/local.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/local.csv -------------------------------------------------------------------------------- /experiments/results/location/ip2location.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/location/ip2location.csv -------------------------------------------------------------------------------- /experiments/results/location/keycdn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/location/keycdn.csv -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-128.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-128.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-16GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-16GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-1GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-1GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-256GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-256GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-4GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-4GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-64GB-no_direct.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-64GB-no_direct.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/MT-64GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/MT-64GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/SW-16GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/SW-16GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/SW-1GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/SW-1GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/SW-256GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/SW-256GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/SW-4GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/SW-4GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1a/SW-64GB.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1a/SW-64GB.out -------------------------------------------------------------------------------- /experiments/results/logs/task1b/s-128.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1b/s-128.out -------------------------------------------------------------------------------- /experiments/results/logs/task1b/s-16.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1b/s-16.out -------------------------------------------------------------------------------- /experiments/results/logs/task1b/s-192.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1b/s-192.out -------------------------------------------------------------------------------- /experiments/results/logs/task1b/s-256.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1b/s-256.out -------------------------------------------------------------------------------- /experiments/results/logs/task1b/s-64.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/task1b/s-64.out -------------------------------------------------------------------------------- /experiments/results/logs/uk-filtered.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/uk-filtered.csv -------------------------------------------------------------------------------- /experiments/results/logs/uk-initial.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/logs/uk-initial.csv -------------------------------------------------------------------------------- /experiments/results/old/tyler-servers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/old/tyler-servers.csv -------------------------------------------------------------------------------- /experiments/results/top-1m.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/top-1m.csv -------------------------------------------------------------------------------- /experiments/results/uk-final.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/results/uk-final.csv -------------------------------------------------------------------------------- /experiments/rtt_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/rtt_analysis.py -------------------------------------------------------------------------------- /experiments/rtt_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/rtt_openssl.sh -------------------------------------------------------------------------------- /experiments/rtt_tlse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/rtt_tlse.sh -------------------------------------------------------------------------------- /experiments/time_rsa_filter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/experiments/time_rsa_filter.sh -------------------------------------------------------------------------------- /rtt-analysis/Network-Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/rtt-analysis/Network-Model.ipynb -------------------------------------------------------------------------------- /scripts/install/install-pbc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/install/install-pbc.sh -------------------------------------------------------------------------------- /scripts/install/install-roughenough.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/install/install-roughenough.sh -------------------------------------------------------------------------------- /scripts/install/install-tlsdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/install/install-tlsdate.sh -------------------------------------------------------------------------------- /scripts/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/parameters.py -------------------------------------------------------------------------------- /scripts/proof_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/proof_sizes.py -------------------------------------------------------------------------------- /scripts/run-continuosly.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/run-continuosly.sh -------------------------------------------------------------------------------- /scripts/speeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/scripts/speeds.py -------------------------------------------------------------------------------- /ssd-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/README.md -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/.gitignore: -------------------------------------------------------------------------------- 1 | aio-example 2 | aio-test 3 | *.swp 4 | -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/Makefile -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/README.md -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/aio-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/aio-example.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/aio-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/aio-test.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/Makefile: -------------------------------------------------------------------------------- 1 | all: libccan.a 2 | 3 | include Makefile-ccan 4 | -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/build_assert/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/build_assert/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/build_assert/_info -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/build_assert/build_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/build_assert/build_assert.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/build_assert/test/compile_ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/build_assert/test/compile_ok.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/check_type/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/check_type/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/check_type/_info -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/check_type/check_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/check_type/check_type.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/check_type/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/check_type/test/run.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/container_of/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/container_of/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/container_of/_info -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/container_of/container_of.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/container_of/container_of.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/container_of/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/container_of/test/run.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/BSD-MIT -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/_info -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/list.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/list.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/compile_ok-constant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/compile_ok-constant.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/helper.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/helper.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run-CCAN_LIST_DEBUG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run-CCAN_LIST_DEBUG.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run-check-corrupt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run-check-corrupt.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run-check-nonconst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run-check-nonconst.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run-prepend_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run-prepend_list.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run-single-eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run-single-eval.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run-with-debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run-with-debug.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/list/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/list/test/run.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/minmax/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/minmax/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/minmax/_info -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/minmax/minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/minmax/minmax.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/minmax/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/minmax/test/run.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/LICENSE: -------------------------------------------------------------------------------- 1 | ../../licenses/CC0 -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/_info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/_info -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/debug.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/str.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/str.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/str_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/str_debug.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isalnum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isalnum.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isalpha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isalpha.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isascii.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isblank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isblank.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-iscntrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-iscntrl.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isdigit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isdigit.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-islower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-islower.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isprint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isprint.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-ispunct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-ispunct.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isspace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isspace.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isupper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-isupper.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-strchr.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-strrchr.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/compile_fail-strstr.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/debug.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/run-STR_MAX_CHARS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/run-STR_MAX_CHARS.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/ccan/str/test/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/ccan/str/test/run.c -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/config.h -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/licenses/BSD-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/licenses/BSD-MIT -------------------------------------------------------------------------------- /ssd-benchmark/aio-test/ccan/licenses/CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/ssd-benchmark/aio-test/ccan/licenses/CC0 -------------------------------------------------------------------------------- /vcom-testing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/Makefile -------------------------------------------------------------------------------- /vcom-testing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/README.md -------------------------------------------------------------------------------- /vcom-testing/pbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/pbc.c -------------------------------------------------------------------------------- /vcom-testing/relic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/relic.c -------------------------------------------------------------------------------- /vcom-testing/relic_ec_bench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/relic_ec_bench.c -------------------------------------------------------------------------------- /vcom-testing/sodium/vc_parallel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/sodium/vc_parallel.c -------------------------------------------------------------------------------- /vcom-testing/sodium/vc_serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoATTeam/GoAT/HEAD/vcom-testing/sodium/vc_serial.c --------------------------------------------------------------------------------