diff --git a/aurpkg/run.sh b/aurpkg/run.sh index abc74d091..cdbcc4f35 100755 --- a/aurpkg/run.sh +++ b/aurpkg/run.sh @@ -7,6 +7,11 @@ mkdir -p ${OUT} script="./scripts/pacaur.sh" +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +export BENCHMARK_CATEGORY="aurpkg" +export BENCHMARK_SCRIPT="$(realpath "$script")" +export BENCHMARK_INPUT_FILE="$(realpath "$IN")" + # Switch to user "user" to avoid permission issues echo "$script" diff --git a/bio/deps.sh b/bio/deps.sh index a5e29dd6a..4eeb77274 100755 --- a/bio/deps.sh +++ b/bio/deps.sh @@ -1,3 +1,4 @@ +#!/bin/bash # install dependencies required_version="1.7" @@ -43,4 +44,5 @@ else echo "Failed to install the correct version of Samtools." exit 1 fi -fi \ No newline at end of file +fi + diff --git a/bio/input.sh b/bio/input.sh index ea5ab8b9b..e759705ab 100755 --- a/bio/input.sh +++ b/bio/input.sh @@ -1,3 +1,5 @@ +#!/bin/bash + IN=inputs IN_NAME=input.txt diff --git a/bio/run.sh b/bio/run.sh index 960ca924d..6838f9d52 100755 --- a/bio/run.sh +++ b/bio/run.sh @@ -1,3 +1,5 @@ +#!/bin/bash + # create bam files with regions ################### 1KG SAMPLES IN=inputs @@ -8,6 +10,11 @@ if [[ "$@" == *"--small"* ]]; then IN_NAME=input_small.txt fi +export BENCHMARK_CATEGORY="bio" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} -"$BENCHMARK_SHELL" ./scripts/bio.sh "$IN" "$IN_NAME" "$OUT" +script_file=./scripts/bio.sh +export BENCHMARK_SCRIPT="$(realpath "$script_file")" +export BENCHMARK_INPUT_FILE="$(realpath "$IN_NAME")" + +$BENCHMARK_SHELL "$script_file" "$IN" "$IN_NAME" "$OUT" diff --git a/covid-mts/run.sh b/covid-mts/run.sh index 57d478e21..841622c61 100755 --- a/covid-mts/run.sh +++ b/covid-mts/run.sh @@ -16,9 +16,15 @@ output_scoped="$outputs_dir/outputs$suffix" mkdir -p "$output_scoped" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +export BENCHMARK_CATEGORY="covid-mts" +export BENCHMARK_INPUT_FILE="$(realpath "$input_file")" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/1.sh")" $BENCHMARK_SHELL "$scripts_dir/1.sh" "$input_file" > "$output_scoped/1.out" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/2.sh")" $BENCHMARK_SHELL "$scripts_dir/2.sh" "$input_file" > "$output_scoped/2.out" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/3.sh")" $BENCHMARK_SHELL "$scripts_dir/3.sh" "$input_file" > "$output_scoped/3.out" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/4.sh")" $BENCHMARK_SHELL "$scripts_dir/4.sh" "$input_file" > "$output_scoped/4.out" diff --git a/file-enc/deps.sh b/file-enc/deps.sh index d4c4b3e17..3702ddd32 100755 --- a/file-enc/deps.sh +++ b/file-enc/deps.sh @@ -1,3 +1,5 @@ +#!/bin/bash + sudo apt-get update pkgs='ffmpeg unrtf imagemagick libarchive-tools libncurses5-dev libncursesw5-dev zstd liblzma-dev libbz2-dev zip unzip nodejs tcpdump' diff --git a/file-enc/run.sh b/file-enc/run.sh index 2df87c9b9..e710fc5cd 100755 --- a/file-enc/run.sh +++ b/file-enc/run.sh @@ -17,6 +17,11 @@ if [[ "$1" == "--small" ]]; then suffix=".small" fi +export BENCHMARK_CATEGORY="file-enc" +export BENCHMARK_INPUT_FILE="$(realpath "$input_pcaps")" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} -$BENCHMARK_SHELL $scripts_dir/compress_files.sh $input_pcaps $results_dir/compress_files$suffix -$BENCHMARK_SHELL $scripts_dir/encrypt_files.sh $input_pcaps $results_dir/encrypt_files$suffix + +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/compress_files.sh")" +$BENCHMARK_SHELL "$scripts_dir/compress_files.sh" "$input_pcaps" "$results_dir/compress_files$suffix" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/encrypt_files.sh")" +$BENCHMARK_SHELL "$scripts_dir/encrypt_files.sh" "$input_pcaps" "$results_dir/encrypt_files$suffix" diff --git a/infrastructure/Makefile b/infrastructure/Makefile index b03b0e8b4..8a1340a47 100644 --- a/infrastructure/Makefile +++ b/infrastructure/Makefile @@ -1,8 +1,8 @@ -STATIC_OUTPUTS = target/lines_of_code.csv target/nodes_in_scripts.csv target/scripts_to_benchmark.csv target/cyclomatic.csv target/shellmetrics.sh +STATIC_OUTPUTS = target/lines_of_code.csv target/nodes_in_scripts.csv target/cyclomatic.csv target/shellmetrics.sh target/dynamic_analysis.jsonl static: $(STATIC_OUTPUTS) -target/scripts_to_benchmark.csv: scripts_to_benchmark.py +target/dynamic_analysis.jsonl: dynamic_analysis.py python3 $< | sort > $@ target/lines_of_code.csv: count_lines_of_code.py @@ -22,8 +22,6 @@ target/shellmetrics.sh: chmod +x $@ target/cyclomatic.csv: get_cyclomatic.py target/shellmetrics.sh - python3 get_cyclomatic.py > $@ + python3 get_cyclomatic.py | sort > $@ -dynamic: - -.PHONY: static dynamic clean-static static-test +.PHONY: static clean-static static-test diff --git a/infrastructure/all_scripts.py b/infrastructure/all_scripts.py index a72c76e16..3fe1e1028 100755 --- a/infrastructure/all_scripts.py +++ b/infrastructure/all_scripts.py @@ -19,3 +19,7 @@ def get_all_scripts( ] for benchmark_name, benchmark_data in benchmark_data.items() } + +if __name__ == "__main__": + for bench in get_all_scripts().keys(): + print(bench) diff --git a/infrastructure/colossal_table.py b/infrastructure/colossal_table.py new file mode 100755 index 000000000..7993bd23f --- /dev/null +++ b/infrastructure/colossal_table.py @@ -0,0 +1,198 @@ +#!/usr/bin/env python3 + +import pandas as pd +import fnmatch +import viz_syntax as stx +import viz_dynamic as dyn + +from all_scripts import get_all_scripts +from project_root import get_project_root + +root = get_project_root() +data_path = root / 'infrastructure/target/dynamic_analysis.jsonl' +input_size_path = root / 'infrastructure/data/size_inputs.jsonl' +loc_data_path = root / 'infrastructure/target/lines_of_code.csv' + +benchmark_category_style = { + 'bio': ('XXX', 'XXX', 'XXX'), + 'vps-audit': ('XXX', 'XXX', 'XXX'), + 'vps-audit-negate': ('XXX', 'XXX', 'XXX'), + 'aurpkg': ('XXX', 'XXX', 'XXX'), + 'makeself': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/100-files': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/read-write': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/shell-memory': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/sleep': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/time-in-shell-subprocess': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/user-time': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/user-time-in-shell': ('XXX', 'XXX', 'XXX'), + 'infrastructure/standards/write-only': ('XXX', 'XXX', 'XXX'), + 'covid-mts': ('Data analysis', 'Data extraction', '\\cite{covid-mts-source}'), + 'file-enc': ('Cryptography', 'Automation', '\\cite{cito2020empirical}'), + 'log-analysis': ('System admin.', 'Data extraction', '\\cite{spinellis2017extending, raghavan2020posh}'), + 'max-temp': ('Data analysis', 'Data extraction', '\\cite{hadoop-guide-2009}'), + 'media-conv': ('Misc.', 'Automation', '\\cite{spinellis2017extending, raghavan2020posh}'), + 'nlp': ('Machine learning', 'Text processing', '\\cite{unix-for-poets-church}'), + 'oneliners': ('Misc.', 'Text processing', '\\cite{bentley-pearl-cacm-1985, bentley-pearl-cacm-1986, unix-cacm-1974, wicked-cool-shell-scripts}'), + 'riker': ('Development', 'Build scripts', ''), + 'sklearn': ('Machine learning', 'Automation', ''), + 'uniq-ips': ('System admin.', 'Automation', ''), + 'unix50': ('Misc.', 'Text processing', '\\cite{bhandari2020solutions}'), + 'web-index': ('Development', 'Text processing', '\\cite{pash2021}') +} + +def short_category(benchmark): + dom, style, _ = benchmark_category_style[benchmark] + def shorten(str): + return ''.join([x[0].upper() for x in str.split(' ')]) + return shorten(dom) + '/' + shorten(style) + +benchmark_input_description = { + 'aurpkg': 'package files', + 'bio': 'biological data files', + 'covid-mts': 'transit data', + 'file-enc': 'pcap files', + 'log-analysis': 'log files', + 'max-temp': 'temperature data', + 'media-conv': 'media files', + 'nlp': 'text files', + 'oneliners': 'text files', + 'riker': 'source code files', + 'sklearn': 'CSV files', + 'uniq-ips': 'text files', + 'unix50': 'text files', + 'web-index': 'HTML files', + 'bio': 'XXX', + 'vps-audit': 'system status', + 'vps-audit-negate': 'system status', + 'makeself': 'XXX', + 'aurpkg': 'XXX', + 'infrastructure/standards/100-files': 'XXX', + 'infrastructure/standards/read-write': 'XXX', + 'infrastructure/standards/shell-memory': 'XXX', + 'infrastructure/standards/sleep': 'XXX', + 'infrastructure/standards/time-in-shell-subprocess': 'XXX', + 'infrastructure/standards/user-time': 'XXX', + 'infrastructure/standards/user-time-in-shell': 'XXX', + 'infrastructure/standards/write-only': 'XXX', +} + +scripts_to_include = [ + 'covid-mts/scripts/1.sh', + 'file-enc/scripts/encrypt_files.sh', + 'log-analysis/scripts/nginx.sh', + 'media-conv/scripts/img_convert.sh', + 'nlp/scripts/bigrams.sh', + 'oneliners/*', + 'unix50/scripts/1.sh', + 'riker/scripts/redis/build.sh', + # max-temp is just 1 + # sklearn is just 1 + # aurpkg is just 1 + # bio is just 1 + # makeself?? + 'web-index/scripts/ngrams.sh', + # vps-audit is just 1 +] + + +def count_unique_cmds(series): + return len({node for node in series if 'command(' in node}) + +def count_constructs(series): + return len(set(series)) + +def read_loc_data(): + loc_data = pd.read_csv(loc_data_path, header=None) + loc_data.columns = ['script', 'loc'] + loc_data['benchmark'] = loc_data['script'].apply(lambda x: x.split('/')[0]) + loc_data_bench = loc_data.groupby('benchmark').agg({ + 'loc': 'sum', + 'script': 'count' + }).reset_index() + loc_data_bench.rename(columns={'script': 'number_of_scripts'}, inplace=True) + return loc_data, loc_data_bench + +def prettify_bytes_number(n): + if n < 1024: + value, unit = n, "B" + elif n < 1024 * 1024: + value, unit = n / 1024, "KB" + elif n < 1024 * 1024 * 1024: + value, unit = n / (1024 * 1024), "MB" + else: + value, unit = n / (1024 * 1024 * 1024), "GB" + + if value < 10: + decimals = 2 + elif value < 100: + decimals = 1 + else: + decimals = 0 + + color = 'black' if unit == 'GB' else 'gray' + return f"{value:.{decimals}f} \\textcolor{{{color}}}{{{unit}}}" + +def main(): + syntax_script, syntax_bench = stx.read_data(True) + syntax_script_all_cmds, syntax_bench_all_cmds = stx.read_data(False) + dyn_script, dyn_bench = dyn.read_data() + loc_data_script, loc_data_bench = read_loc_data() + + syntax_script_all_cmds['unique_cmds'] = syntax_script_all_cmds['nodes'].apply(count_unique_cmds) + syntax_bench_all_cmds['unique_cmds'] = syntax_bench_all_cmds['nodes'].apply(count_unique_cmds) + syntax_script['constructs'] = syntax_script['nodes'].apply(count_constructs) + syntax_bench['constructs'] = syntax_bench['nodes'].apply(count_constructs) + + # all_scripts = set(syntax_script['script'].unique()) + + # missing_in_dyn = all_scripts - set(dyn_script['script'].unique()) + # missing_in_loc_data = all_scripts - set(loc_data_script['script'].unique()) + # missing_in_cmds = all_scripts - set(syntax_script_all_cmds['script'].unique()) + + # print("Missing in dyn_script:", missing_in_dyn) + # print("Missing in loc_data_script:", missing_in_loc_data) + # print("Missing in syntax_script_all_cmds:", missing_in_cmds) + + dyn_bench['input_description'] = dyn_bench['benchmark'].apply(lambda x: benchmark_input_description[x]) + + big_bench = syntax_bench.merge(dyn_bench, on='benchmark')\ + .merge(loc_data_bench, on='benchmark')\ + .merge(syntax_bench_all_cmds[['benchmark', 'unique_cmds']], on='benchmark') + + big_script = syntax_script.merge(dyn_script, on='script')\ + .merge(loc_data_script, on='script')\ + .merge(syntax_script_all_cmds[['script', 'unique_cmds']], on='script') + + + print(""" + \\def\\idw{5em} +\\begin{tabular}{l|lrr|rr|l|rrrr|lr} + \\toprule +\\multirow{2}{*}{Benchmark/Script} & \\multicolumn{3}{c|}{Surface} & \\multicolumn{2}{c|}{Syntax} & \\multicolumn{1}{c|}{Inputs} & \\multicolumn{4}{c|}{Dynamic} & \\multicolumn{2}{c}{System} \\\\ + & Dom & \\#.sh & LOC & \\# Cons & \\# Cmd & & T.sh & T.cmd & Mem & I/O & \\# s/c & \\# fd \\\\ + \\midrule +""") + # generate a big latex table with the following columns: + # benchmark, short_category, number of scripts, LOC, number of constructs, number of unique commands, input description, time in shell, time in commands, max memory, IO + for _, row in big_bench.iterrows(): + numscripts_shown = 0 + numscripts = row['number_of_scripts'] + print("\\rule{0pt}{5ex}") + print(f"\\textbf{{\\tt {row['benchmark']}}} & {short_category(row['benchmark'])} & {row['number_of_scripts']} & {row['loc']} & {row['constructs']} & {row['unique_cmds']} & \\multirow{{2}}{{*}}{{\\parbox{{\\idw}}{{{prettify_bytes_number(row['input_size']) + ' of ' + row['input_description']}}}}} & {row['time_in_shell']:.2f} & {row['time_in_commands']:.2f} & {prettify_bytes_number(row['max_unique_set_size'])} & {prettify_bytes_number(row['io_chars'])} \\\\") + # now print the details of all scripts in the benchmark + for _, row_script in big_script.iterrows(): + if row_script['benchmark'] == row['benchmark'] and any([fnmatch.fnmatch(row_script['script'], pattern) for pattern in scripts_to_include]): + # all columns except leave blank benchmark, category, number of scripts, input description + print(f"\\hspace{{0.5em}} {row_script['script'].split('/')[-1]} & & & {row_script['loc']} & {row_script['constructs']} & {row_script['unique_cmds']} & & {row_script['time_in_shell']:.2f} & {row_script['time_in_commands']:.2f} & {prettify_bytes_number(row_script['max_unique_set_size'])} & {prettify_bytes_number(row_script['io_chars'])} \\\\") + numscripts_shown += 1 + if numscripts_shown < numscripts and numscripts > 1: + print(f"\\hspace{{0.5em}} \\ldots & & & & & & & & & & \\\\") + print(""" + \\bottomrule + \\end{tabular} +""") + + +if __name__ == '__main__': + main() diff --git a/infrastructure/data/script-globs.json b/infrastructure/data/script-globs.json index b46f96d7b..897a2b01c 100644 --- a/infrastructure/data/script-globs.json +++ b/infrastructure/data/script-globs.json @@ -1,4 +1,10 @@ { + "aurpkg": { + "scripts": ["aurpkg/scripts/*.sh"] + }, + "bio": { + "scripts": ["bio/scripts/*.sh"] + }, "covid-mts": { "scripts": ["covid-mts/scripts/*.sh"] }, @@ -26,9 +32,6 @@ "riker": { "scripts": ["riker/scripts/*/build.sh"] }, - "uniq-ips": { - "scripts": ["uniq-ips/scripts/run.sh"] - }, "unix50": { "scripts": ["unix50/scripts/*.sh"] }, @@ -36,12 +39,36 @@ "scripts": ["web-index/scripts/*.sh"] }, "makeself": { - "scripts": ["makeself/makeself/*.sh"] + "scripts": ["makeself/makeself/test/*/*.sh"] }, "vps-audit": { "scripts": ["vps-audit/scripts/*.sh"] }, "vps-audit-negate": { "scripts": ["vps-audit-negate/scripts/*.sh"] + }, + "infrastructure/standards/100-files": { + "scripts": ["infrastructure/standards/100-files/scripts/*.sh"] + }, + "infrastructure/standards/read-write": { + "scripts": ["infrastructure/standards/read-write/scripts/*.sh"] + }, + "infrastructure/standards/shell-memory": { + "scripts": ["infrastructure/standards/shell-memory/scripts/*.sh"] + }, + "infrastructure/standards/sleep": { + "scripts": ["infrastructure/standards/sleep/scripts/*.sh"] + }, + "infrastructure/standards/time-in-shell-subprocess": { + "scripts": ["infrastructure/standards/time-in-shell-subprocess/scripts/*.sh"] + }, + "infrastructure/standards/user-time": { + "scripts": ["infrastructure/standards/user-time/scripts/*.sh"] + }, + "infrastructure/standards/user-time-in-shell": { + "scripts": ["infrastructure/standards/user-time-in-shell/scripts/*.sh"] + }, + "infrastructure/standards/write-only": { + "scripts": ["infrastructure/standards/write-only/scripts/*.sh"] } } diff --git a/infrastructure/data/size_inputs.jsonl b/infrastructure/data/size_inputs.jsonl new file mode 100644 index 000000000..913642366 --- /dev/null +++ b/infrastructure/data/size_inputs.jsonl @@ -0,0 +1,6483 @@ +{"size_bytes": 4099516, "category": "log-analysis", "path": "pcaps/http-cheez101.pcapng"} +{"size_bytes": 35642028, "category": "log-analysis", "path": "pcaps/general101d.pcapng"} +{"size_bytes": 3842232, "category": "log-analysis", "path": "pcaps/http-pictures101.pcapng"} +{"size_bytes": 366552, "category": "log-analysis", "path": "pcaps/http-pcaprnet101.pcapng"} +{"size_bytes": 27999740, "category": "log-analysis", "path": "pcaps/http-download101c.pcapng"} +{"size_bytes": 1228104, "category": "log-analysis", "path": "pcaps/ftp-passwords101.pcapng"} +{"size_bytes": 74584, "category": "log-analysis", "path": "pcaps/mybackground101.pcapng"} +{"size_bytes": 893560, "category": "log-analysis", "path": "pcaps/challenge101-7.pcapng"} +{"size_bytes": 91256, "category": "log-analysis", "path": "pcaps/http-openoffice101a.pcapng"} +{"size_bytes": 24927920, "category": "log-analysis", "path": "pcaps/ftp-download101.pcapng"} +{"size_bytes": 7426036, "category": "log-analysis", "path": "pcaps/tr-winsize.pcapng"} +{"size_bytes": 764512, "category": "log-analysis", "path": "pcaps/http-au101b.pcapng"} +{"size_bytes": 6142828, "category": "log-analysis", "path": "pcaps/ftp-clientside101.pcapng"} +{"size_bytes": 94036, "category": "log-analysis", "path": "pcaps/general101.pcapng"} +{"size_bytes": 257432, "category": "log-analysis", "path": "pcaps/split250_00002_20160704110759.pcapng"} +{"size_bytes": 172152360, "category": "log-analysis", "path": "pcaps/http-download-a.pcapng"} +{"size_bytes": 555592, "category": "log-analysis", "path": "pcaps/challenge101-4.pcapng"} +{"size_bytes": 160364, "category": "log-analysis", "path": "pcaps/sec-concern101.pcapng"} +{"size_bytes": 7500, "category": "log-analysis", "path": "pcaps/dns-nmap101.pcapng"} +{"size_bytes": 268, "category": "log-analysis", "path": "pcaps/split250_00005_20160704110804.pcapng"} +{"size_bytes": 88904, "category": "log-analysis", "path": "pcaps/net-lost-route.pcapng"} +{"size_bytes": 209236002, "category": "log-analysis", "path": "pcaps/4SICS-GeekLounge-151022.pcap"} +{"size_bytes": 387964, "category": "log-analysis", "path": "pcaps/http-google101.pcapng"} +{"size_bytes": 25711082, "category": "log-analysis", "path": "pcaps/4SICS-GeekLounge-151020.pcap"} +{"size_bytes": 4698292, "category": "log-analysis", "path": "pcaps/http-espn101.pcapng"} +{"size_bytes": 638056, "category": "log-analysis", "path": "pcaps/challenge101-3.pcapng"} +{"size_bytes": 5696, "category": "log-analysis", "path": "pcaps/dhcp-serverdiscovery101.pcapng"} +{"size_bytes": 225980, "category": "log-analysis", "path": "pcaps/challenge101-0.pcapng"} +{"size_bytes": 22678456, "category": "log-analysis", "path": "pcaps/http-download101d.pcapng"} +{"size_bytes": 2457604, "category": "log-analysis", "path": "pcaps/challenge101-5.pcapng"} +{"size_bytes": 826132, "category": "log-analysis", "path": "pcaps/challenge101-1.pcapng"} +{"size_bytes": 858004, "category": "log-analysis", "path": "pcaps/http-browse101c.pcapng"} +{"size_bytes": 21210804, "category": "log-analysis", "path": "pcaps/http-wiresharkdownload101.pcapng"} +{"size_bytes": 969876, "category": "log-analysis", "path": "pcaps/http-chappellu101.pcapng"} +{"size_bytes": 1951400, "category": "log-analysis", "path": "pcaps/ftp-crack101.pcapng"} +{"size_bytes": 123148, "category": "log-analysis", "path": "pcaps/sec-suspicious101.pcapng"} +{"size_bytes": 1757956, "category": "log-analysis", "path": "pcaps/http-college101.pcapng"} +{"size_bytes": 523829292, "category": "log-analysis", "path": "pcaps/f5-honeypot-release.pcap"} +{"size_bytes": 4268288, "category": "log-analysis", "path": "pcaps/tcp-decodeas.pcapng"} +{"size_bytes": 3317236, "category": "log-analysis", "path": "pcaps/gen-startupchatty101.pcapng"} +{"size_bytes": 952652, "category": "log-analysis", "path": "pcaps/challenge101-6.pcapng"} +{"size_bytes": 458992, "category": "log-analysis", "path": "pcaps/general101c.pcapng"} +{"size_bytes": 208, "category": "log-analysis", "path": "pcaps/README"} +{"size_bytes": 629372, "category": "log-analysis", "path": "pcaps/http-chappellu101b.pcapng"} +{"size_bytes": 258568, "category": "log-analysis", "path": "pcaps/split250_00003_20160704110759.pcapng"} +{"size_bytes": 19505700, "category": "log-analysis", "path": "pcaps/http-openoffice101b.pcapng"} +{"size_bytes": 5812132, "category": "log-analysis", "path": "pcaps/http-download101.pcapng"} +{"size_bytes": 1759788, "category": "log-analysis", "path": "pcaps/http-browse101.pcapng"} +{"size_bytes": 254756, "category": "log-analysis", "path": "pcaps/sec-nessus101.pcapng"} +{"size_bytes": 1322332, "category": "log-analysis", "path": "pcaps/http-slow101.pcapng"} +{"size_bytes": 185476, "category": "log-analysis", "path": "pcaps/general101b.pcapng"} +{"size_bytes": 700528, "category": "log-analysis", "path": "pcaps/http-nonstandard101.pcapng"} +{"size_bytes": 8400852, "category": "log-analysis", "path": "pcaps/http-jezebel101.pcapng"} +{"size_bytes": 120844, "category": "log-analysis", "path": "pcaps/http-browse101b.pcapng"} +{"size_bytes": 129164, "category": "log-analysis", "path": "pcaps/smb-join101.pcapng"} +{"size_bytes": 55834524, "category": "log-analysis", "path": "pcaps/tr-twohosts.pcapng"} +{"size_bytes": 9446292, "category": "log-analysis", "path": "pcaps/http-sfgate101.pcapng"} +{"size_bytes": 52152, "category": "log-analysis", "path": "pcaps/ftp-bounce.pcapng"} +{"size_bytes": 912668, "category": "log-analysis", "path": "pcaps/http-misctraffic101.pcapng"} +{"size_bytes": 1306080, "category": "log-analysis", "path": "pcaps/challenge101-8.pcapng"} +{"size_bytes": 66748, "category": "log-analysis", "path": "pcaps/wlan-ipadstartstop101.pcapng"} +{"size_bytes": 169856, "category": "log-analysis", "path": "pcaps/http-winpcap101.cap"} +{"size_bytes": 858004, "category": "log-analysis", "path": "pcaps/http-browse101d.pcapng"} +{"size_bytes": 121076, "category": "log-analysis", "path": "pcaps/http-errors101.pcapng"} +{"size_bytes": 267948, "category": "log-analysis", "path": "pcaps/split250_00000_20160704110754.pcapng"} +{"size_bytes": 6364504, "category": "log-analysis", "path": "pcaps/http-disney101.pcapng"} +{"size_bytes": 176, "category": "log-analysis", "path": "pcaps/._f5-honeypot-release.pcap"} +{"size_bytes": 271016, "category": "log-analysis", "path": "pcaps/split250_00001_20160704110759.pcapng"} +{"size_bytes": 139998821, "category": "log-analysis", "path": "pcaps/4SICS-GeekLounge-151021.pcap"} +{"size_bytes": 249788, "category": "log-analysis", "path": "pcaps/split250_00004_20160704110759.pcapng"} +{"size_bytes": 1524859, "category": "log-analysis", "path": "nginx-logs/log1"} +{"size_bytes": 7728, "category": "log-analysis", "path": "nginx-logs/log2"} +{"size_bytes": 1904707, "category": "log-analysis", "path": "nginx-logs/log6"} +{"size_bytes": 101359028, "category": "log-analysis", "path": "nginx-logs/log7"} +{"size_bytes": 83407, "category": "log-analysis", "path": "nginx-logs/log3"} +{"size_bytes": 13459081, "category": "log-analysis", "path": "nginx-logs/log5"} +{"size_bytes": 6991577, "category": "log-analysis", "path": "nginx-logs/log0"} +{"size_bytes": 2370789, "category": "log-analysis", "path": "nginx-logs/log4"} +{"size_bytes": 262274, "category": "nlp", "path": "genesis"} +{"size_bytes": 801470, "category": "nlp", "path": "exodus"} +{"size_bytes": 3145131, "category": "nlp", "path": "book_links.txt"} +{"size_bytes": 430236, "category": "nlp", "path": "pg/66688-0.txt"} +{"size_bytes": 26958, "category": "nlp", "path": "pg/66660-0.txt"} +{"size_bytes": 306803, "category": "nlp", "path": "pg/66603-0.txt"} +{"size_bytes": 508002, "category": "nlp", "path": "pg/66675-0.txt"} +{"size_bytes": 567849, "category": "nlp", "path": "pg/66674-0.txt"} +{"size_bytes": 310241, "category": "nlp", "path": "pg/66630-0.txt"} +{"size_bytes": 119706, "category": "nlp", "path": "pg/66635-0.txt"} +{"size_bytes": 278331, "category": "nlp", "path": "pg/6662.txt"} +{"size_bytes": 472345, "category": "nlp", "path": "pg/6660.txt"} +{"size_bytes": 172575, "category": "nlp", "path": "pg/66683-0.txt"} +{"size_bytes": 4759041, "category": "nlp", "path": "pg/pgw050ab.txt"} +{"size_bytes": 1636742, "category": "nlp", "path": "pg/6661.txt"} +{"size_bytes": 534584, "category": "nlp", "path": "pg/66650-0.txt"} +{"size_bytes": 342871, "category": "nlp", "path": "pg/6664-0.txt"} +{"size_bytes": 695206, "category": "nlp", "path": "pg/66609-0.txt"} +{"size_bytes": 94137, "category": "nlp", "path": "pg/61-0.txt"} +{"size_bytes": 31141, "category": "nlp", "path": "pg/66698-0.txt"} +{"size_bytes": 195110, "category": "nlp", "path": "pg/66669-0.txt"} +{"size_bytes": 674098, "category": "nlp", "path": "pg/6665-8.txt"} +{"size_bytes": 2364207, "category": "nlp", "path": "pg/655.txt"} +{"size_bytes": 439830, "category": "nlp", "path": "pg/66666-0.txt"} +{"size_bytes": 465532, "category": "nlp", "path": "pg/66626-0.txt"} +{"size_bytes": 399595, "category": "nlp", "path": "pg/6663.txt"} +{"size_bytes": 339638, "category": "nlp", "path": "pg/66663-0.txt"} +{"size_bytes": 960434, "category": "nlp", "path": "pg/66625-0.txt"} +{"size_bytes": 2431442, "category": "nlp", "path": "pg/666.txt"} +{"size_bytes": 438080, "category": "nlp", "path": "pg/66671-0.txt"} +{"size_bytes": 119833, "category": "nlp", "path": "pg/66696-0.txt"} +{"size_bytes": 655623, "category": "nlp", "path": "pg/66689-0.txt"} +{"size_bytes": 94283, "category": "nlp", "path": "pg/61.txt"} +{"size_bytes": 276825, "category": "nlp", "path": "pg/66604-0.txt"} +{"size_bytes": 107438, "category": "nlp", "path": "pg/66687-0.txt"} +{"size_bytes": 340191, "category": "nlp", "path": "pg/fchld10.txt"} +{"size_bytes": 334325, "category": "nlp", "path": "pg/66645-0.txt"} +{"size_bytes": 393449, "category": "nlp", "path": "pg/66637-0.txt"} +{"size_bytes": 217317, "category": "nlp", "path": "pg/66652-0.txt"} +{"size_bytes": 133899, "category": "nlp", "path": "pg/66648-0.txt"} +{"size_bytes": 127419, "category": "nlp", "path": "pg/6667-0.txt"} +{"size_bytes": 49453, "category": "nlp", "path": "pg/66699-0.txt"} +{"size_bytes": 308841, "category": "nlp", "path": "pg/66662-0.txt"} +{"size_bytes": 345010, "category": "nlp", "path": "pg/66664-0.txt"} +{"size_bytes": 273094, "category": "nlp", "path": "pg/lttlc10.txt"} +{"size_bytes": 89589, "category": "nlp", "path": "pg/manif12.txt"} +{"size_bytes": 204028, "category": "nlp", "path": "pg/66672-0.txt"} +{"size_bytes": 512575, "category": "nlp", "path": "pg/66682-0.txt"} +{"size_bytes": 183895, "category": "nlp", "path": "pg/66605-0.txt"} +{"size_bytes": 4800465, "category": "nlp", "path": "pg/pgwab04.txt"} +{"size_bytes": 421897, "category": "nlp", "path": "pg/66673-0.txt"} +{"size_bytes": 50678, "category": "nlp", "path": "pg/66608-0.txt"} +{"size_bytes": 348069, "category": "nlp", "path": "pg/66607-0.txt"} +{"size_bytes": 342034, "category": "nlp", "path": "pg/6664.txt"} +{"size_bytes": 335261, "category": "nlp", "path": "pg/66632-0.txt"} +{"size_bytes": 543193, "category": "nlp", "path": "pg/66697-0.txt"} +{"size_bytes": 79481, "category": "nlp", "path": "pg/66654-0.txt"} +{"size_bytes": 249086, "category": "nlp", "path": "pg/66685-0.txt"} +{"size_bytes": 275791, "category": "nlp", "path": "pg/66602-0.txt"} +{"size_bytes": 111297, "category": "nlp", "path": "pg/ppow10.txt"} +{"size_bytes": 1110945, "category": "nlp", "path": "pg/66638-0.txt"} +{"size_bytes": 329979, "category": "nlp", "path": "pg/66623-0.txt"} +{"size_bytes": 1631811, "category": "nlp", "path": "pg/wvr1210.txt"} +{"size_bytes": 277081, "category": "nlp", "path": "pg/66624-0.txt"} +{"size_bytes": 155940, "category": "nlp", "path": "pg/66629-0.txt"} +{"size_bytes": 358476, "category": "nlp", "path": "pg/66681-0.txt"} +{"size_bytes": 517999, "category": "nlp", "path": "pg/66653-0.txt"} +{"size_bytes": 220854, "category": "nlp", "path": "pg/66684-0.txt"} +{"size_bytes": 515434, "category": "nlp", "path": "pg/66693-0.txt"} +{"size_bytes": 739092, "category": "nlp", "path": "pg/66690-0.txt"} +{"size_bytes": 140498, "category": "nlp", "path": "pg/66642-0.txt"} +{"size_bytes": 93513, "category": "nlp", "path": "pg/helb10.txt"} +{"size_bytes": 120809, "category": "nlp", "path": "pg/66606-0.txt"} +{"size_bytes": 102799, "category": "nlp", "path": "pg/66643-0.txt"} +{"size_bytes": 56136, "category": "nlp", "path": "pg/66601-0.txt"} +{"size_bytes": 145451, "category": "nlp", "path": "pg/66680-0.txt"} +{"size_bytes": 3135795, "category": "nlp", "path": "pg/660.txt"} +{"size_bytes": 216693, "category": "nlp", "path": "pg/66600-0.txt"} +{"size_bytes": 166374, "category": "nlp", "path": "pg/66686-0.txt"} +{"size_bytes": 467601, "category": "nlp", "path": "pg/teop210.txt"} +{"size_bytes": 482396, "category": "nlp", "path": "pg/66695-0.txt"} +{"size_bytes": 615697, "category": "nlp", "path": "pg/66678-0.txt"} +{"size_bytes": 255030, "category": "nlp", "path": "pg/66692-0.txt"} +{"size_bytes": 3556941, "category": "nlp", "path": "pg/665.txt"} +{"size_bytes": 107384, "category": "nlp", "path": "pg/6666-0.txt"} +{"size_bytes": 189743, "category": "nlp", "path": "pg/66628-0.txt"} +{"size_bytes": 147280, "category": "nlp", "path": "pg/66668-0.txt"} +{"size_bytes": 262327, "category": "nlp", "path": "pg/66665-0.txt"} +{"size_bytes": 167781, "category": "nlp", "path": "pg/66667-0.txt"} +{"size_bytes": 396399, "category": "nlp", "path": "pg/66636-0.txt"} +{"size_bytes": 684182, "category": "nlp", "path": "pg/66677-0.txt"} +{"size_bytes": 118918, "category": "nlp", "path": "pg/66659-0.txt"} +{"size_bytes": 83794, "category": "nlp", "path": "pg/manif11.txt"} +{"size_bytes": 23740, "category": "nlp", "path": "pg/66657-0.txt"} +{"size_bytes": 1030735, "category": "nlp", "path": "pg/66620-0.txt"} +{"size_bytes": 332856, "category": "nlp", "path": "pg/66691-0.txt"} +{"size_bytes": 33070, "category": "nlp", "path": "pg/66634-0.txt"} +{"size_bytes": 554369, "category": "nlp", "path": "pg/66631-0.txt"} +{"size_bytes": 3622143, "category": "nlp", "path": "pg/pgw050pq.txt"} +{"size_bytes": 269109, "category": "nlp", "path": "pg/gdlns10.txt"} +{"size_bytes": 178618, "category": "nlp", "path": "pg/66647-0.txt"} +{"size_bytes": 291669, "category": "nlp", "path": "pg/66640-0.txt"} +{"size_bytes": 2446144, "category": "nlp", "path": "pg/66694-0.txt"} +{"size_bytes": 630890, "category": "nlp", "path": "pg/66679-0.txt"} +{"size_bytes": 83380, "category": "nlp", "path": "pg/66676-0.txt"} +{"size_bytes": 698020, "category": "nlp", "path": "pg/66639-0.txt"} +{"size_bytes": 430184, "category": "nlp", "path": "pg/66622-0.txt"} +{"size_bytes": 378023, "category": "nlp", "path": "pg/66627-0.txt"} +{"size_bytes": 3557017, "category": "nlp", "path": "pg/pgw050mo.txt"} +{"size_bytes": 36589, "category": "nlp", "path": "pg/66656-0.txt"} +{"size_bytes": 3613393, "category": "nlp", "path": "pg/pgwmo04.txt"} +{"size_bytes": 191851, "category": "nlp", "path": "pg/66661-0.txt"} +{"size_bytes": 273864, "category": "nlp", "path": "pg/6669.txt"} +{"size_bytes": 109792, "category": "nlp", "path": "pg/66646-0.txt"} +{"size_bytes": 385329, "category": "nlp", "path": "pg/66651-0.txt"} +{"size_bytes": 141541, "category": "nlp", "path": "pg/66649-0.txt"} +{"size_bytes": 3704227, "category": "nlp", "path": "pg/pgwpq04.txt"} +{"size_bytes": 151360, "category": "nlp", "path": "pg/66641-0.txt"} +{"size_bytes": 144863, "category": "nlp", "path": "pg/66621-0.txt"} +{"size_bytes": 358875, "category": "nlp", "path": "pg/66655-0.txt"} +{"size_bytes": 210920, "category": "nlp", "path": "pg/66670-0.txt"} +{"size_bytes": 99320, "category": "nlp", "path": "pg/66633-0.txt"} +{"size_bytes": 206941, "category": "nlp", "path": "pg/66658-0.txt"} +{"size_bytes": 94137, "category": "nlp", "path": "pg-small/61-0.txt"} +{"size_bytes": 2431442, "category": "nlp", "path": "pg-small/666.txt"} +{"size_bytes": 94283, "category": "nlp", "path": "pg-small/61.txt"} +{"size_bytes": 89589, "category": "nlp", "path": "pg-small/manif12.txt"} +{"size_bytes": 3556941, "category": "nlp", "path": "pg-small/665.txt"} +{"size_bytes": 83794, "category": "nlp", "path": "pg-small/manif11.txt"} +{"size_bytes": 3622143, "category": "nlp", "path": "pg-small/pgw050pq.txt"} +{"size_bytes": 3557017, "category": "nlp", "path": "pg-small/pgw050mo.txt"} +{"size_bytes": 3613393, "category": "nlp", "path": "pg-small/pgwmo04.txt"} +{"size_bytes": 3704227, "category": "nlp", "path": "pg-small/pgwpq04.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "091.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "007.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "042.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "057.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "095.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "072.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "001.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "006.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "096.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "089.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "022.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "011.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "004.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "037.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "045.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "027.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "078.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "000.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "079.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "028.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "068.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "098.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "040.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "003.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "008.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "058.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "060.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "030.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "059.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "017.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "019.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "044.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "014.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "081.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "074.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "048.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "097.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "084.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "077.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "082.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "061.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "085.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "013.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "066.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "064.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "088.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "090.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "010.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "075.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "069.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "005.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "050.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "055.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "073.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "070.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "021.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "029.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "067.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "093.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "051.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "039.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "024.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "033.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "023.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "086.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "002.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "018.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "076.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "052.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "099.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "071.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "083.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "038.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "012.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "026.txt"} +{"size_bytes": 2, "category": "infrastructure/standards/100-files", "path": "009.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "031.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "041.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "034.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "015.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "047.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "049.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "043.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "025.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "036.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "056.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "046.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "092.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "087.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "062.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "035.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "032.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "063.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "016.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "020.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "080.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "094.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "065.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "054.txt"} +{"size_bytes": 3, "category": "infrastructure/standards/100-files", "path": "053.txt"} +{"size_bytes": 1048575, "category": "unix50", "path": "9.8_1M.txt"} +{"size_bytes": 3145278000, "category": "unix50", "path": "7_3G.txt"} +{"size_bytes": 1048493, "category": "unix50", "path": "9.5_1M.txt"} +{"size_bytes": 3145725000, "category": "unix50", "path": "9.9_3G.txt"} +{"size_bytes": 1047527, "category": "unix50", "path": "11_1M.txt"} +{"size_bytes": 209, "category": "unix50", "path": "6.txt"} +{"size_bytes": 1048575, "category": "unix50", "path": "9.9_1M.txt"} +{"size_bytes": 3145050000, "category": "unix50", "path": "1_3G.txt"} +{"size_bytes": 3139308000, "category": "unix50", "path": "10_3G.txt"} +{"size_bytes": 3145560000, "category": "unix50", "path": "9.2_3G.txt"} +{"size_bytes": 41, "category": "unix50", "path": "5.txt"} +{"size_bytes": 109, "category": "unix50", "path": "9.7.txt"} +{"size_bytes": 1048575, "category": "unix50", "path": "5_1M.txt"} +{"size_bytes": 1048502, "category": "unix50", "path": "12_1M.txt"} +{"size_bytes": 3145659000, "category": "unix50", "path": "6_3G.txt"} +{"size_bytes": 1046436, "category": "unix50", "path": "10_1M.txt"} +{"size_bytes": 3145725000, "category": "unix50", "path": "9.4_3G.txt"} +{"size_bytes": 3145716000, "category": "unix50", "path": "9.3_3G.txt"} +{"size_bytes": 93, "category": "unix50", "path": "9.9.txt"} +{"size_bytes": 93, "category": "unix50", "path": "9.8.txt"} +{"size_bytes": 3145725000, "category": "unix50", "path": "9.8_3G.txt"} +{"size_bytes": 1103, "category": "unix50", "path": "2.txt"} +{"size_bytes": 1048426, "category": "unix50", "path": "7_1M.txt"} +{"size_bytes": 44, "category": "unix50", "path": "3.txt"} +{"size_bytes": 5626, "category": "unix50", "path": "10.txt"} +{"size_bytes": 3145692000, "category": "unix50", "path": "3_3G.txt"} +{"size_bytes": 88, "category": "unix50", "path": "9.2.txt"} +{"size_bytes": 3145728000, "category": "unix50", "path": "9.6_3G.txt"} +{"size_bytes": 1048576, "category": "unix50", "path": "9.6_1M.txt"} +{"size_bytes": 1048520, "category": "unix50", "path": "9.2_1M.txt"} +{"size_bytes": 1048340, "category": "unix50", "path": "4_1M.txt"} +{"size_bytes": 93, "category": "unix50", "path": "9.4.txt"} +{"size_bytes": 290, "category": "unix50", "path": "1.txt"} +{"size_bytes": 3143550000, "category": "unix50", "path": "2_3G.txt"} +{"size_bytes": 1048572, "category": "unix50", "path": "9.3_1M.txt"} +{"size_bytes": 72, "category": "unix50", "path": "9.1.txt"} +{"size_bytes": 3145479000, "category": "unix50", "path": "9.5_3G.txt"} +{"size_bytes": 3145506000, "category": "unix50", "path": "12_3G.txt"} +{"size_bytes": 3145020000, "category": "unix50", "path": "4_3G.txt"} +{"size_bytes": 1048564, "category": "unix50", "path": "3_1M.txt"} +{"size_bytes": 1048575, "category": "unix50", "path": "9.4_1M.txt"} +{"size_bytes": 3145608000, "category": "unix50", "path": "9.1_3G.txt"} +{"size_bytes": 334, "category": "unix50", "path": "7.txt"} +{"size_bytes": 460, "category": "unix50", "path": "4.txt"} +{"size_bytes": 128, "category": "unix50", "path": "9.6.txt"} +{"size_bytes": 1015050, "category": "unix50", "path": "8_1M.txt"} +{"size_bytes": 3145725000, "category": "unix50", "path": "5_3G.txt"} +{"size_bytes": 3142581000, "category": "unix50", "path": "11_3G.txt"} +{"size_bytes": 4241, "category": "unix50", "path": "11.txt"} +{"size_bytes": 1048553, "category": "unix50", "path": "6_1M.txt"} +{"size_bytes": 73, "category": "unix50", "path": "9.3.txt"} +{"size_bytes": 1048350, "category": "unix50", "path": "1_1M.txt"} +{"size_bytes": 107, "category": "unix50", "path": "9.5.txt"} +{"size_bytes": 91, "category": "unix50", "path": "12.txt"} +{"size_bytes": 3045150000, "category": "unix50", "path": "8_3G.txt"} +{"size_bytes": 40602, "category": "unix50", "path": "8.txt"} +{"size_bytes": 1048471, "category": "unix50", "path": "9.7_1M.txt"} +{"size_bytes": 1047850, "category": "unix50", "path": "2_1M.txt"} +{"size_bytes": 1048536, "category": "unix50", "path": "9.1_1M.txt"} +{"size_bytes": 3145413000, "category": "unix50", "path": "9.7_3G.txt"} +{"size_bytes": 848045838, "category": "max-temp", "path": "temperatures.full.txt"} +{"size_bytes": 123552903, "category": "max-temp", "path": "temperatures.small.txt"} +{"size_bytes": 1073741824, "category": "infrastructure/standards/shell-memory", "path": "1G.zeros"} +{"size_bytes": 3589542298, "category": "covid-mts", "path": "in.csv"} +{"size_bytes": 8000057, "category": "covid-mts", "path": "in_small.csv"} +{"size_bytes": 37286, "category": "web-index", "path": "index_small.txt"} +{"size_bytes": 621, "category": "web-index", "path": "stopwords.txt"} +{"size_bytes": 473, "category": "web-index", "path": "articles/\u20b1/_/_/\u20b1.html"} +{"size_bytes": 502, "category": "web-index", "path": "articles/\u20ab/_/_/\u20ab.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u3005/_/_/\u3005.html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/\u20aa/_/_/\u20aa.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u30fc/_/_/\u30fc.html"} +{"size_bytes": 476, "category": "web-index", "path": "articles/\u20a4/a/_/\u20a4A_4f27.html"} +{"size_bytes": 484, "category": "web-index", "path": "articles/\u20a4/_/_/\u20a4.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u20a4/_/\u2022/\u20a4_\u2022.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/(/0/,/(0,1)-matrix.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/(/0/,/(0,1)_matrix.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/(/0/,/(0,1)-matrices.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/(/\u00a4/\u0434/(\u00a4\u0414\u00a4)_192e.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/\u20b4/_/_/\u20b4.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u20a7/_/_/\u20a7.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u17db/_/_/\u17db.html"} +{"size_bytes": 504, "category": "web-index", "path": "articles/\u20a0/_/_/\u20a0.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\uffe1/_/_/\uffe1.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/\u20ae/_/_/\u20ae.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\uffe6/_/_/\uffe6.html"} +{"size_bytes": 449, "category": "web-index", "path": "articles/\u20ad/_/_/\u20ad.html"} +{"size_bytes": 516, "category": "web-index", "path": "articles/$/6/0/$6000000_man.html"} +{"size_bytes": 506, "category": "web-index", "path": "articles/$/6/4/$64,000_Question_fd1a.html"} +{"size_bytes": 486, "category": "web-index", "path": "articles/$/6/7/$67_Million_pants_2420.html"} +{"size_bytes": 30729, "category": "web-index", "path": "articles/$/6/m/User_talk~$6milliondollarman.html"} +{"size_bytes": 17282, "category": "web-index", "path": "articles/$/6/m/User~$6milliondollarman.html"} +{"size_bytes": 9136, "category": "web-index", "path": "articles/$/n/e/User~$nevesso$.html"} +{"size_bytes": 9561, "category": "web-index", "path": "articles/$/n/i/User~$nileshji.html"} +{"size_bytes": 448, "category": "web-index", "path": "articles/$/5/0/$500_bill.html"} +{"size_bytes": 445, "category": "web-index", "path": "articles/$/5/0/$50_note.html"} +{"size_bytes": 9769, "category": "web-index", "path": "articles/$/5/0/$5000.html"} +{"size_bytes": 20653, "category": "web-index", "path": "articles/$/5/0/Image~$5000_Space.jpg_3f8d.html"} +{"size_bytes": 17920, "category": "web-index", "path": "articles/$/5/0/Talk~$50,000_a_Minute_5354.html"} +{"size_bytes": 451, "category": "web-index", "path": "articles/$/5/0/$5000_bill.html"} +{"size_bytes": 10469, "category": "web-index", "path": "articles/$/5/0/Talk~$500.html"} +{"size_bytes": 15386, "category": "web-index", "path": "articles/$/5/0/$50,000_a_Minute_874e.html"} +{"size_bytes": 503, "category": "web-index", "path": "articles/$/5/0/$50_note_(Australian)_952b.html"} +{"size_bytes": 10476, "category": "web-index", "path": "articles/$/5/0/Talk~$5000.html"} +{"size_bytes": 13653, "category": "web-index", "path": "articles/$/5/0/$50.html"} +{"size_bytes": 10462, "category": "web-index", "path": "articles/$/5/0/Talk~$50.html"} +{"size_bytes": 14706, "category": "web-index", "path": "articles/$/5/0/Image~$50ia.jpg.html"} +{"size_bytes": 445, "category": "web-index", "path": "articles/$/5/0/$50_bill.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/$/5/0/$50,000_Pyramid_78c4.html"} +{"size_bytes": 11340, "category": "web-index", "path": "articles/$/5/0/$500.html"} +{"size_bytes": 9265, "category": "web-index", "path": "articles/$/5/0/Image_talk~$50ia.jpg.html"} +{"size_bytes": 9928, "category": "web-index", "path": "articles/$/5/l/User_talk~$5lylt.html"} +{"size_bytes": 13918, "category": "web-index", "path": "articles/$/5/_/$5.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/5/_/$5_bill.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/5/_/$5_note.html"} +{"size_bytes": 7678, "category": "web-index", "path": "articles/$/5/_/User_talk~$5_to_$5000_in_less_than_30_days.html"} +{"size_bytes": 28323, "category": "web-index", "path": "articles/$/5/_/Image~$5_tree.JPG_5804.html"} +{"size_bytes": 500, "category": "web-index", "path": "articles/$/5/_/$5_note_(Australian)_5955.html"} +{"size_bytes": 11599, "category": "web-index", "path": "articles/$/5/_/Talk~$5.html"} +{"size_bytes": 9345, "category": "web-index", "path": "articles/$/5/_/Image_talk~$5_Demand_Note_date.jpg_2eb1.html"} +{"size_bytes": 16898, "category": "web-index", "path": "articles/$/5/_/Image~$5_Demand_Note_date.jpg_d473.html"} +{"size_bytes": 9265, "category": "web-index", "path": "articles/$/5/c/Image_talk~$5C.jpg_60b4.html"} +{"size_bytes": 14617, "category": "web-index", "path": "articles/$/5/c/Image~$5C.jpg_a0d3.html"} +{"size_bytes": 14638, "category": "web-index", "path": "articles/$/5/c/Image~$5Ca.jpg_51fd.html"} +{"size_bytes": 9270, "category": "web-index", "path": "articles/$/5/c/Image_talk~$5Ca.jpg_0afe.html"} +{"size_bytes": 21474, "category": "web-index", "path": "articles/$/h/r/User_talk~$hrine.html"} +{"size_bytes": 8239, "category": "web-index", "path": "articles/$/h/a/User_talk~$hapka.html"} +{"size_bytes": 10365, "category": "web-index", "path": "articles/$/h/a/User_talk~$hamoney.html"} +{"size_bytes": 8822, "category": "web-index", "path": "articles/$/h/a/User~$hapka.html"} +{"size_bytes": 11703, "category": "web-index", "path": "articles/$/h/a/User~$hamoney.html"} +{"size_bytes": 552, "category": "web-index", "path": "articles/$/h/a/$hamrock.html"} +{"size_bytes": 10434, "category": "web-index", "path": "articles/$/h/a/User_talk~$haan.html"} +{"size_bytes": 20405, "category": "web-index", "path": "articles/$/h/a/User_talk~$hadow_Grinch_095a.html"} +{"size_bytes": 489, "category": "web-index", "path": "articles/$/h/o/$how_Me_the_Money_050f.html"} +{"size_bytes": 7204, "category": "web-index", "path": "articles/$/h/o/User_talk~$HORRTIE_ab46.html"} +{"size_bytes": 8097, "category": "web-index", "path": "articles/$/h/!/User_talk~$h!7.html"} +{"size_bytes": 10977, "category": "web-index", "path": "articles/$/p/p/User_talk~$PP$Clan_e044.html"} +{"size_bytes": 7484, "category": "web-index", "path": "articles/$/p/r/User_talk~$PRINGeragh_d2f6.html"} +{"size_bytes": 686, "category": "web-index", "path": "articles/$/p/r/$pringfield.html"} +{"size_bytes": 16262, "category": "web-index", "path": "articles/$/p/r/Image~$pringfieldScreenCap_png.png_a593.html"} +{"size_bytes": 29596, "category": "web-index", "path": "articles/$/p/r/Talk~$pringfield_(Or,_How_I_Learned_to_Stop_Worrying_and_Love_Legalized_Gambling)_4ab0.html"} +{"size_bytes": 454, "category": "web-index", "path": "articles/$/p/r/$pread_magazine.html"} +{"size_bytes": 15474, "category": "web-index", "path": "articles/$/p/r/$pread.html"} +{"size_bytes": 454, "category": "web-index", "path": "articles/$/p/r/$pread_Magazine_1c34.html"} +{"size_bytes": 45521, "category": "web-index", "path": "articles/$/p/r/$pringfield_(Or,_How_I_Learned_to_Stop_Worrying_and_Love_Legalized_Gambling)_e94a.html"} +{"size_bytes": 17567, "category": "web-index", "path": "articles/$/p/r/Talk~$pread.html"} +{"size_bytes": 686, "category": "web-index", "path": "articles/$/p/r/$pringfield_(Or_How_I_Learned_to_Stop_Worrying_and_Love_Legalized_Gambling)_7acc.html"} +{"size_bytes": 9608, "category": "web-index", "path": "articles/$/p/0/User_talk~$P0NG3B0B_0485.html"} +{"size_bytes": 484, "category": "web-index", "path": "articles/$/p/a/$PATH_b6ae.html"} +{"size_bytes": 9416, "category": "web-index", "path": "articles/$/p/i/User_talk~$pider.html"} +{"size_bytes": 8724, "category": "web-index", "path": "articles/$/s/l/User_talk~$SlimSwitch$_a5ca.html"} +{"size_bytes": 9742, "category": "web-index", "path": "articles/$/s/i/User_talk~$SimonDiamond$_5099.html"} +{"size_bytes": 7285, "category": "web-index", "path": "articles/$/$/$/User_talk~$$$RoNiT_rOlLz$$$_8770.html"} +{"size_bytes": 8720, "category": "web-index", "path": "articles/$/$/$/User_talk~$$$Gabri3l$$$_9ea4.html"} +{"size_bytes": 9863, "category": "web-index", "path": "articles/$/$/$/User_talk~$$$C.L.D$$$_2c0a.html"} +{"size_bytes": 13843, "category": "web-index", "path": "articles/$/$/$/User_talk~$$$MAV$$$_c233.html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/$/$/$/$$$.html"} +{"size_bytes": 7273, "category": "web-index", "path": "articles/$/$/$/User_talk~$$$t-t-h$$$.html"} +{"size_bytes": 9808, "category": "web-index", "path": "articles/$/$/27/User~$$'s_and_sense.html"} +{"size_bytes": 10641, "category": "web-index", "path": "articles/$/$/27/User_talk~$$'s_and_sense.html"} +{"size_bytes": 14180, "category": "web-index", "path": "articles/$/$/d/User~$$drichinsnukka14$$.html"} +{"size_bytes": 10537, "category": "web-index", "path": "articles/$/$/d/User_talk~$$drichinsnukka14$$.html"} +{"size_bytes": 8816, "category": "web-index", "path": "articles/$/$/y/User_talk~$$yuka_con_huevo$$.html"} +{"size_bytes": 11654, "category": "web-index", "path": "articles/$/r/$/Image~$R$WALogo.png_c5b9.html"} +{"size_bytes": 10168, "category": "web-index", "path": "articles/$/r/i/User_talk~$rikanthk$.html"} +{"size_bytes": 9510, "category": "web-index", "path": "articles/$/40/_/User~$@.html"} +{"size_bytes": 9275, "category": "web-index", "path": "articles/$/0/5/Image_talk~$050a.JPG_9e89.html"} +{"size_bytes": 14885, "category": "web-index", "path": "articles/$/0/5/Image~$05a.JPG_8a1b.html"} +{"size_bytes": 9270, "category": "web-index", "path": "articles/$/0/5/Image_talk~$050.JPG_58f7.html"} +{"size_bytes": 14707, "category": "web-index", "path": "articles/$/0/5/Image~$050.JPG_e9e0.html"} +{"size_bytes": 13463, "category": "web-index", "path": "articles/$/0/5/Image~$05.JPG_8b59.html"} +{"size_bytes": 14727, "category": "web-index", "path": "articles/$/0/5/Image~$050a.JPG_5242.html"} +{"size_bytes": 9270, "category": "web-index", "path": "articles/$/0/5/Image_talk~$05a.JPG_e79f.html"} +{"size_bytes": 16239, "category": "web-index", "path": "articles/$/0/1/Image~$010.JPG_2ae7.html"} +{"size_bytes": 9513, "category": "web-index", "path": "articles/$/0/1/Image_talk~$010.JPG_080f.html"} +{"size_bytes": 9275, "category": "web-index", "path": "articles/$/0/1/Image_talk~$010a.JPG_489e.html"} +{"size_bytes": 14727, "category": "web-index", "path": "articles/$/0/1/Image~$010a.JPG_4219.html"} +{"size_bytes": 14727, "category": "web-index", "path": "articles/$/0/2/Image~$025a.JPG_249e.html"} +{"size_bytes": 9275, "category": "web-index", "path": "articles/$/0/2/Image_talk~$025a.JPG_3b5e.html"} +{"size_bytes": 9270, "category": "web-index", "path": "articles/$/0/2/Image_talk~$025.JPG_bfea.html"} +{"size_bytes": 14707, "category": "web-index", "path": "articles/$/0/2/Image~$025.JPG_16c1.html"} +{"size_bytes": 19994, "category": "web-index", "path": "articles/$/g/0/User_talk~$g0LD_L34D3r$_0305.html"} +{"size_bytes": 10109, "category": "web-index", "path": "articles/$/2E/3A/User_talk~$.~UndiscoverdAllianceMember~.$_c905.html"} +{"size_bytes": 35803, "category": "web-index", "path": "articles/$/4/0/$40_a_Day_45fe.html"} +{"size_bytes": 473, "category": "web-index", "path": "articles/$/4/0/$40_A_Day_4ea0.html"} +{"size_bytes": 474, "category": "web-index", "path": "articles/$/4/0/$400_haircut.html"} +{"size_bytes": 12484, "category": "web-index", "path": "articles/$/4/0/Talk~$40_a_Day_459f.html"} +{"size_bytes": 7531, "category": "web-index", "path": "articles/$/4/_/User~$4.html"} +{"size_bytes": 11795, "category": "web-index", "path": "articles/$/a/n/User_talk~$aNdMaN_77_0568.html"} +{"size_bytes": 10236, "category": "web-index", "path": "articles/$/a/b/User_talk~$aba.html"} +{"size_bytes": 495, "category": "web-index", "path": "articles/$/a/l/$ale_of_the_Century_43c7.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/$/a/_/$A_b892.html"} +{"size_bytes": 10965, "category": "web-index", "path": "articles/$/a/m/User_talk~$amuel_Da_Big_White_Pimp_5ed7.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/$/a/u/$AUD_f1dc.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/8/_/$8_shop.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/8/_/$8_store.html"} +{"size_bytes": 20172, "category": "web-index", "path": "articles/$/l/a/User_talk~$LadiesBillionare$_0f15.html"} +{"size_bytes": 7466, "category": "web-index", "path": "articles/$/l/a/User~$LadiesBillionare$_2047.html"} +{"size_bytes": 9242, "category": "web-index", "path": "articles/$/l/a/User_talk~$layer''13.html"} +{"size_bytes": 9849, "category": "web-index", "path": "articles/$/l/e/User_talk~$leek.html"} +{"size_bytes": 10094, "category": "web-index", "path": "articles/$/l/o/User~$look$likeanS_7e5b.html"} +{"size_bytes": 14631, "category": "web-index", "path": "articles/$/l/o/User_talk~$look$likeanS_a35f.html"} +{"size_bytes": 9987, "category": "web-index", "path": "articles/$/l/i/User_talk~$lick9109.html"} +{"size_bytes": 8698, "category": "web-index", "path": "articles/$/e/6/User~$e6-kid.html"} +{"size_bytes": 10006, "category": "web-index", "path": "articles/$/e/p/User_talk~$eph_Green_18ea.html"} +{"size_bytes": 14638, "category": "web-index", "path": "articles/$/e/l/Talk~$ell.Out_8eb9.html"} +{"size_bytes": 14477, "category": "web-index", "path": "articles/$/e/l/$ell.Out_1f82.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/$/e/l/$ell.Out_(Pist.On_album)_928f.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/$/e/e/$EED_09ee.html"} +{"size_bytes": 15595, "category": "web-index", "path": "articles/$/e/t/User_talk~$eti.html"} +{"size_bytes": 15611, "category": "web-index", "path": "articles/$/e/t/User~$eti.html"} +{"size_bytes": 7323, "category": "web-index", "path": "articles/$/w/g/User~$wgUser_1df0.html"} +{"size_bytes": 7256, "category": "web-index", "path": "articles/$/w/g/User_talk~$wgUser_bddf.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/$/w/i/$wingin'_Utter$_15c8.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/$/w/i/$wingin_Utter$_b300.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/$/w/i/$wingin\u2019_Utter$_220c.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/$/w/i/$winging_Utter$_eaf0.html"} +{"size_bytes": 478, "category": "web-index", "path": "articles/$/w/i/$windle.html"} +{"size_bytes": 519, "category": "web-index", "path": "articles/$/w/i/$wingin'_Utter$_(album)_a0e5.html"} +{"size_bytes": 485, "category": "web-index", "path": "articles/$/o/n/$ony.html"} +{"size_bytes": 17368, "category": "web-index", "path": "articles/$/o/v/Untitled_album_by_~$OVIET~FRANCE~_fe07.html"} +{"size_bytes": 7450, "category": "web-index", "path": "articles/$/o/c/Talk~$ocialites.html"} +{"size_bytes": 525, "category": "web-index", "path": "articles/$/o/c/$ocialites.html"} +{"size_bytes": 27030, "category": "web-index", "path": "articles/$/7/0/Image~$700,000_Home.jpg_26ab.html"} +{"size_bytes": 9231, "category": "web-index", "path": "articles/$/i/l/User_talk~$ilencer.html"} +{"size_bytes": 9518, "category": "web-index", "path": "articles/$/i/m/User_talk~$imple.html"} +{"size_bytes": 11328, "category": "web-index", "path": "articles/$/i/d/User~$id.html"} +{"size_bytes": 24336, "category": "web-index", "path": "articles/$/i/d/User_talk~$id.html"} +{"size_bytes": 8181, "category": "web-index", "path": "articles/$/k/r/User_talk~$kraypa.html"} +{"size_bytes": 9282, "category": "web-index", "path": "articles/$/k/e/User_talk~$kelet0r.html"} +{"size_bytes": 7739, "category": "web-index", "path": "articles/$/k/i/User_talk~$kip_2_My_Lou_4894.html"} +{"size_bytes": 7988, "category": "web-index", "path": "articles/$/k/i/User~$killz.html"} +{"size_bytes": 9945, "category": "web-index", "path": "articles/$/k/i/User_talk~$killz.html"} +{"size_bytes": 480, "category": "web-index", "path": "articles/$/1/0/$10_(Owarai)_bec8.html"} +{"size_bytes": 448, "category": "web-index", "path": "articles/$/1/0/$100_note.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/1/0/$100_computer.html"} +{"size_bytes": 454, "category": "web-index", "path": "articles/$/1/0/$10000_bill.html"} +{"size_bytes": 15119, "category": "web-index", "path": "articles/$/1/0/$100_Hamburger_0e71.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/1/0/$10_store.html"} +{"size_bytes": 9350, "category": "web-index", "path": "articles/$/1/0/Image_talk~$10_Demand_Note_date.jpg_cd05.html"} +{"size_bytes": 486, "category": "web-index", "path": "articles/$/1/0/$10.90_Chicken_Parmigiana_355d.html"} +{"size_bytes": 9616, "category": "web-index", "path": "articles/$/1/0/Talk~$100,000_Challenge_2c18.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/1/0/$100_PC_77b1.html"} +{"size_bytes": 10469, "category": "web-index", "path": "articles/$/1/0/Talk~$100.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/1/0/$100_laptop.html"} +{"size_bytes": 16379, "category": "web-index", "path": "articles/$/1/0/Talk~$100,000_Dollar_Mamal_3441.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/$/1/0/$10,000_Pyramid_d7e5.html"} +{"size_bytes": 12059, "category": "web-index", "path": "articles/$/1/0/Talk~$100_Hamburger_5a00.html"} +{"size_bytes": 11507, "category": "web-index", "path": "articles/$/1/0/Talk~$10.html"} +{"size_bytes": 12895, "category": "web-index", "path": "articles/$/1/0/$100,000_Challenge_751b.html"} +{"size_bytes": 14954, "category": "web-index", "path": "articles/$/1/0/Image~$100i2.jpg.html"} +{"size_bytes": 448, "category": "web-index", "path": "articles/$/1/0/$100_bill.html"} +{"size_bytes": 488, "category": "web-index", "path": "articles/$/1/0/$100_hamburger.html"} +{"size_bytes": 457, "category": "web-index", "path": "articles/$/1/0/$100,000_bill.html"} +{"size_bytes": 477, "category": "web-index", "path": "articles/$/1/0/$100,000_Bars_620d.html"} +{"size_bytes": 451, "category": "web-index", "path": "articles/$/1/0/$1000_bill.html"} +{"size_bytes": 11273, "category": "web-index", "path": "articles/$/1/0/$1000.html"} +{"size_bytes": 477, "category": "web-index", "path": "articles/$/1/0/$100,000_Bar_96c6.html"} +{"size_bytes": 14874, "category": "web-index", "path": "articles/$/1/0/$10.html"} +{"size_bytes": 17392, "category": "web-index", "path": "articles/$/1/0/Image~$100,00_mamal.jpg.html"} +{"size_bytes": 11022, "category": "web-index", "path": "articles/$/1/0/Talk~$100000.html"} +{"size_bytes": 13460, "category": "web-index", "path": "articles/$/1/0/$100.html"} +{"size_bytes": 524, "category": "web-index", "path": "articles/$/1/0/$100_million_sports_contracts.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/1/0/$10_shop.html"} +{"size_bytes": 9270, "category": "web-index", "path": "articles/$/1/0/Image_talk~$100i2.jpg.html"} +{"size_bytes": 20475, "category": "web-index", "path": "articles/$/1/0/Image~$10,000_Space_from_2007.jpg_5025.html"} +{"size_bytes": 10483, "category": "web-index", "path": "articles/$/1/0/Talk~$10000.html"} +{"size_bytes": 25602, "category": "web-index", "path": "articles/$/1/0/$100_Film_Festival_a50b.html"} +{"size_bytes": 24142, "category": "web-index", "path": "articles/$/1/0/$100_Bill_Y'all_3518.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/1/0/$100_Laptop_1858.html"} +{"size_bytes": 9488, "category": "web-index", "path": "articles/$/1/0/Talk~$100_Bill_Y'all_29d4.html"} +{"size_bytes": 503, "category": "web-index", "path": "articles/$/1/0/$10_note_(Australian)_e8c4.html"} +{"size_bytes": 14667, "category": "web-index", "path": "articles/$/1/0/Image~$10ia.jpg.html"} +{"size_bytes": 445, "category": "web-index", "path": "articles/$/1/0/$10_bill.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/$/1/0/$100,000_Pyramid_0700.html"} +{"size_bytes": 506, "category": "web-index", "path": "articles/$/1/0/$100_note_(Australian)_f66d.html"} +{"size_bytes": 9880, "category": "web-index", "path": "articles/$/1/0/$10000.html"} +{"size_bytes": 25514, "category": "web-index", "path": "articles/$/1/0/Talk~$100_Film_Festival_3931.html"} +{"size_bytes": 457, "category": "web-index", "path": "articles/$/1/0/$100,000.html"} +{"size_bytes": 9265, "category": "web-index", "path": "articles/$/1/0/Image_talk~$10ia.jpg.html"} +{"size_bytes": 17066, "category": "web-index", "path": "articles/$/1/0/Image~$10_Demand_Note_date.jpg_cf64.html"} +{"size_bytes": 10958, "category": "web-index", "path": "articles/$/1/0/$100,000_Dollar_Mamal_02bf.html"} +{"size_bytes": 13231, "category": "web-index", "path": "articles/$/1/0/Singles~_$100_EP_(Alien_Ant_Farm_album)_ba7a.html"} +{"size_bytes": 8589, "category": "web-index", "path": "articles/$/1/0/Talk~$10_(owarai).html"} +{"size_bytes": 9386, "category": "web-index", "path": "articles/$/1/0/$100000.html"} +{"size_bytes": 10476, "category": "web-index", "path": "articles/$/1/0/Talk~$1000.html"} +{"size_bytes": 10267, "category": "web-index", "path": "articles/$/1/0/User_talk~$1000000000ten0one1.html"} +{"size_bytes": 457, "category": "web-index", "path": "articles/$/1/0/$100000_bill.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/1/0/$100_notebook.html"} +{"size_bytes": 10696, "category": "web-index", "path": "articles/$/1/0/$10_(owarai).html"} +{"size_bytes": 518, "category": "web-index", "path": "articles/$/1/0/$100_oil.html"} +{"size_bytes": 445, "category": "web-index", "path": "articles/$/1/0/$10_note.html"} +{"size_bytes": 491, "category": "web-index", "path": "articles/$/1/9/$19.95.html"} +{"size_bytes": 491, "category": "web-index", "path": "articles/$/1/9/$19.99.html"} +{"size_bytes": 15577, "category": "web-index", "path": "articles/$/1/2E/Talk~$1.98_Beauty_Show_38b4.html"} +{"size_bytes": 11324, "category": "web-index", "path": "articles/$/1/2E/Talk~$1.99_Romances_1d7e.html"} +{"size_bytes": 14066, "category": "web-index", "path": "articles/$/1/2E/$1.99_Romances_30b3.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/1/2E/$1.00.html"} +{"size_bytes": 18402, "category": "web-index", "path": "articles/$/1/2E/$1.98_Beauty_Show_579e.html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/$/1/,/$1,000,000.html"} +{"size_bytes": 507, "category": "web-index", "path": "articles/$/1/,/$1,000,000_Duck_2fad.html"} +{"size_bytes": 555, "category": "web-index", "path": "articles/$/1/,/$1,000,000_Chance_of_a_Lifetime_c603.html"} +{"size_bytes": 507, "category": "web-index", "path": "articles/$/1/,/$1,000,000_Duck,_The_02c5.html"} +{"size_bytes": 18470, "category": "web-index", "path": "articles/$/1/,/Image~$1,000,000_Chance_of_a_Lifetime.jpg_91a5.html"} +{"size_bytes": 9260, "category": "web-index", "path": "articles/$/1/i/Image_talk~$1i2.jpg.html"} +{"size_bytes": 14438, "category": "web-index", "path": "articles/$/1/i/Image~$1i2.jpg.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/1/_/$1_bill.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/1/_/$1_bills.html"} +{"size_bytes": 478, "category": "web-index", "path": "articles/$/1/_/User~$1.html"} +{"size_bytes": 457, "category": "web-index", "path": "articles/$/1/_/$1_Coin_45c5.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/1/_/$1_note.html"} +{"size_bytes": 9584, "category": "web-index", "path": "articles/$/1/_/$1_coin.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/1/_/$1_store.html"} +{"size_bytes": 549, "category": "web-index", "path": "articles/$/1/_/$1_Money_Wars_b685.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/$/1/_/$1_salary.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/1/_/$1_shop.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/1/_/$1_Bill_ea60.html"} +{"size_bytes": 16152, "category": "web-index", "path": "articles/$/1/_/$1.html"} +{"size_bytes": 500, "category": "web-index", "path": "articles/$/1/_/$1_note_(Australian)_b91a.html"} +{"size_bytes": 500, "category": "web-index", "path": "articles/$/1/_/$1_coin_(Australian)_cfd2.html"} +{"size_bytes": 19102, "category": "web-index", "path": "articles/$/1/_/Talk~$1.html"} +{"size_bytes": 7698, "category": "web-index", "path": "articles/$/1/_/Talk~$1_Money_Wars_293e.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/$/1/_/User_talk~$1.html"} +{"size_bytes": 8548, "category": "web-index", "path": "articles/$/1/_/Talk~$1_coin.html"} +{"size_bytes": 549, "category": "web-index", "path": "articles/$/1/_/Lupin_III~_$1_Money_Wars_ff8d.html"} +{"size_bytes": 15112, "category": "web-index", "path": "articles/$/2/5/Talk~$25_Million_Dollar_Hoax_1e0f.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/$/2/5/$25,000_Pyramid_75db.html"} +{"size_bytes": 15650, "category": "web-index", "path": "articles/$/2/5/Image~$25,000_Pyramid.jpg_a849.html"} +{"size_bytes": 18165, "category": "web-index", "path": "articles/$/2/5/$25_Million_Dollar_Hoax_b360.html"} +{"size_bytes": 534, "category": "web-index", "path": "articles/$/2/0/$20_bill_U.S._fe39.html"} +{"size_bytes": 14579, "category": "web-index", "path": "articles/$/2/0/Image~$20ia.jpg.html"} +{"size_bytes": 13876, "category": "web-index", "path": "articles/$/2/0/$20.html"} +{"size_bytes": 445, "category": "web-index", "path": "articles/$/2/0/$20_bill.html"} +{"size_bytes": 17768, "category": "web-index", "path": "articles/$/2/0/Image~$20_Demand_Note_date.jpg_587a.html"} +{"size_bytes": 503, "category": "web-index", "path": "articles/$/2/0/$20_note_(Australian)_8560.html"} +{"size_bytes": 9350, "category": "web-index", "path": "articles/$/2/0/Image_talk~$20_Demand_Note_date.jpg_4900.html"} +{"size_bytes": 11516, "category": "web-index", "path": "articles/$/2/0/Talk~$20.html"} +{"size_bytes": 445, "category": "web-index", "path": "articles/$/2/0/$20_note.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/$/2/0/$20,000_Pyramid_f930.html"} +{"size_bytes": 9265, "category": "web-index", "path": "articles/$/2/0/Image_talk~$20ia.jpg.html"} +{"size_bytes": 17569, "category": "web-index", "path": "articles/$/2/9/User_talk~$295,040.16!__I_CANT_BELIEVE_IT!!_ec69.html"} +{"size_bytes": 14455, "category": "web-index", "path": "articles/$/2/a/Image~$2a.jpg.html"} +{"size_bytes": 9255, "category": "web-index", "path": "articles/$/2/a/Image_talk~$2a.jpg.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/2/_/$2_note.html"} +{"size_bytes": 11599, "category": "web-index", "path": "articles/$/2/_/Talk~$2.html"} +{"size_bytes": 12714, "category": "web-index", "path": "articles/$/2/_/$2.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/2/_/$2_store.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/$/2/_/$2_shop.html"} +{"size_bytes": 500, "category": "web-index", "path": "articles/$/2/_/$2_coin_(Australian)_436e.html"} +{"size_bytes": 473, "category": "web-index", "path": "articles/$/2/_/$2_bills.html"} +{"size_bytes": 8548, "category": "web-index", "path": "articles/$/2/_/Talk~$2_coin.html"} +{"size_bytes": 500, "category": "web-index", "path": "articles/$/2/_/$2_note_(Australian)_1761.html"} +{"size_bytes": 442, "category": "web-index", "path": "articles/$/2/_/$2_bill.html"} +{"size_bytes": 8598, "category": "web-index", "path": "articles/$/2/_/Talk~$2_shop.html"} +{"size_bytes": 9272, "category": "web-index", "path": "articles/$/2/_/$2_coin.html"} +{"size_bytes": 9270, "category": "web-index", "path": "articles/$/2/c/Image_talk~$2Ca.jpg_8a2f.html"} +{"size_bytes": 14417, "category": "web-index", "path": "articles/$/2/c/Image~$2Ca.jpg_7e34.html"} +{"size_bytes": 9265, "category": "web-index", "path": "articles/$/2/c/Image_talk~$2C.jpg_a3f7.html"} +{"size_bytes": 14400, "category": "web-index", "path": "articles/$/2/c/Image~$2C.jpg_d034.html"} +{"size_bytes": 7923, "category": "web-index", "path": "articles/$/j/f/User_talk~$jFeEd$_57a1.html"} +{"size_bytes": 9359, "category": "web-index", "path": "articles/$/j/4/User_talk~$j4mii3$.html"} +{"size_bytes": 10302, "category": "web-index", "path": "articles/$/!/a/User~$!ARA_1f1f.html"} +{"size_bytes": 7675, "category": "web-index", "path": "articles/$/!/a/User_talk~$!ARA_a85e.html"} +{"size_bytes": 15334, "category": "web-index", "path": "articles/$/_/f/Image~$_film.jpg.html"} +{"size_bytes": 38321, "category": "web-index", "path": "articles/$/_/(/$_(disambiguation).html"} +{"size_bytes": 472, "category": "web-index", "path": "articles/$/_/(/$_(Dollars)_03ed.html"} +{"size_bytes": 10592, "category": "web-index", "path": "articles/$/_/(/Talk~$_(disambiguation).html"} +{"size_bytes": 23471, "category": "web-index", "path": "articles/$/_/(/Talk~$_(film).html"} +{"size_bytes": 464, "category": "web-index", "path": "articles/$/_/(/$_(Chile)_4f31.html"} +{"size_bytes": 29442, "category": "web-index", "path": "articles/$/_/(/$_(film).html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/$/_/s/$_sign.html"} +{"size_bytes": 14816, "category": "web-index", "path": "articles/$/_/l/User~$_London_Apartments_67b4.html"} +{"size_bytes": 11776, "category": "web-index", "path": "articles/$/_/l/User_talk~$_London_Apartments_683d.html"} +{"size_bytes": 19952, "category": "web-index", "path": "articles/$/_/l/User_talk~$_LoOoPy_$_9a85.html"} +{"size_bytes": 10050, "category": "web-index", "path": "articles/$/_/_/User_talk~$.html"} +{"size_bytes": 585, "category": "web-index", "path": "articles/$/_/_/Wikipedia~$.html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/$/_/_/$.html"} +{"size_bytes": 522, "category": "web-index", "path": "articles/$/m/a/$MART_ad40.html"} +{"size_bytes": 10150, "category": "web-index", "path": "articles/$/m/o/User_talk~$mone$.html"} +{"size_bytes": 9291, "category": "web-index", "path": "articles/$/m/o/User_talk~$MoNeYmAn$239_be33.html"} +{"size_bytes": 7213, "category": "web-index", "path": "articles/$/m/o/User~$Money$_c7aa.html"} +{"size_bytes": 9729, "category": "web-index", "path": "articles/$/m/!/User_talk~$M!L3Z_0afd.html"} +{"size_bytes": 9416, "category": "web-index", "path": "articles/$/d/a/User_talk~$Danny_Fresh$_6c6e.html"} +{"size_bytes": 11836, "category": "web-index", "path": "articles/$/d/e/User_talk~$deluxe247$.html"} +{"size_bytes": 10006, "category": "web-index", "path": "articles/$/d/o/User_talk~$dollarz$.html"} +{"size_bytes": 7944, "category": "web-index", "path": "articles/$/d/o/User_talk~$dollar$_babe.html"} +{"size_bytes": 473, "category": "web-index", "path": "articles/$/u/p/$uper_$aver_(The_Price_is_Right_pricing_game)_e3e7.html"} +{"size_bytes": 7129, "category": "web-index", "path": "articles/$/u/p/User_talk~$uperman_5.html"} +{"size_bytes": 7245, "category": "web-index", "path": "articles/$/u/p/User~$uper_$tar.html"} +{"size_bytes": 44821, "category": "web-index", "path": "articles/$/u/p/$uper_$aver.html"} +{"size_bytes": 12543, "category": "web-index", "path": "articles/$/u/p/Talk~$uper_$aver.html"} +{"size_bytes": 49837, "category": "web-index", "path": "articles/$/u/p/User~$upra.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/$/u/s/$US_94ee.html"} +{"size_bytes": 10112, "category": "web-index", "path": "articles/$/t/r/User_talk~$traight-$hoota.html"} +{"size_bytes": 7279, "category": "web-index", "path": "articles/$/t/r/User_talk~$trassenjunge.html"} +{"size_bytes": 25192, "category": "web-index", "path": "articles/$/t/r/User~$traight-$hoota.html"} +{"size_bytes": 9429, "category": "web-index", "path": "articles/$/t/r/User~$traight-$hoota_MenuBar_72c3.html"} +{"size_bytes": 489, "category": "web-index", "path": "articles/$/t/a/$tateside_Records_a9f9.html"} +{"size_bytes": 489, "category": "web-index", "path": "articles/$/t/a/$tateside.html"} +{"size_bytes": 7353, "category": "web-index", "path": "articles/$/t/e/User_talk~$teVen_f612.html"} +{"size_bytes": 8307, "category": "web-index", "path": "articles/$/t/e/User_talk~$teauA_6591.html"} +{"size_bytes": 11983, "category": "web-index", "path": "articles/$/t/e/User_talk~$ter!~ng.html"} +{"size_bytes": 8540, "category": "web-index", "path": "articles/$/t/e/User~$teVen_6af4.html"} +{"size_bytes": 24074, "category": "web-index", "path": "articles/$/t/e/User_talk~$teve.html"} +{"size_bytes": 573, "category": "web-index", "path": "articles/$/t/e/$Texas_6503.html"} +{"size_bytes": 7425, "category": "web-index", "path": "articles/$/t/o/User~$tones_daughter.html"} +{"size_bytes": 10536, "category": "web-index", "path": "articles/$/t/i/User_talk~$tink0man.html"} +{"size_bytes": 10360, "category": "web-index", "path": "articles/$/y/z/User_talk~$yzygy.html"} +{"size_bytes": 9449, "category": "web-index", "path": "articles/$/y/e/User_talk~$yeti.html"} +{"size_bytes": 134398, "category": "web-index", "path": "articles/$/y/d/User_talk~$yD!_4eb1.html"} +{"size_bytes": 25777, "category": "web-index", "path": "articles/$/y/d/User~$yD!_1c61.html"} +{"size_bytes": 573, "category": "web-index", "path": "articles/$/3/5/$35K_O._B._O._6313.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/$/3/5/$35KOBO_9bd5.html"} +{"size_bytes": 9117, "category": "web-index", "path": "articles/$/3/5/Talk~$35K_O.B.O._8b03.html"} +{"size_bytes": 573, "category": "web-index", "path": "articles/$/3/5/$35K_O.B.O._(CSI_episode)_da45.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/$/3/5/$35K_O.B.O.(CSI_episode)_4813.html"} +{"size_bytes": 32617, "category": "web-index", "path": "articles/$/3/5/$35K_O.B.O._7be1.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/$/3/5/$35K_O_B_O_9856.html"} +{"size_bytes": 11417, "category": "web-index", "path": "articles/$/3/0/Talk~$30_Film_School_8ad1.html"} +{"size_bytes": 12059, "category": "web-index", "path": "articles/$/3/0/$30_Film_School_65fa.html"} +{"size_bytes": 477, "category": "web-index", "path": "articles/$/3/_/$3.html"} +{"size_bytes": 560, "category": "web-index", "path": "articles/$/3/_/$3_Tax_Checkoff_bd6d.html"} +{"size_bytes": 14556, "category": "web-index", "path": "articles/$/\u9ad8/\u8f2a/Image~$\u9ad8\u8f2a\u795e\u793e.jpg.html"} +{"size_bytes": 19895, "category": "web-index", "path": "articles/$/c/a/User~$cammer.html"} +{"size_bytes": 32897, "category": "web-index", "path": "articles/$/c/a/User_talk~$cammer.html"} +{"size_bytes": 7320, "category": "web-index", "path": "articles/$/c/i/User~$cirisme.html"} +{"size_bytes": 9539, "category": "web-index", "path": "articles/$/c/i/User_talk~$cirisme.html"} +{"size_bytes": 485, "category": "web-index", "path": "articles/$/c/i/$cientology.html"} +{"size_bytes": 11248, "category": "web-index", "path": "articles/$/c/j/User_talk~$CJ_e30a.html"} +{"size_bytes": 7199, "category": "web-index", "path": "articles/$/c/j/User~$CJ_3c6d.html"} +{"size_bytes": 11214, "category": "web-index", "path": "articles/$/c/y/User_talk~$CyBeRwIz$_db28.html"} +{"size_bytes": 8750, "category": "web-index", "path": "articles/$/\u00a3/$/User_talk~$\u00a3$\u00a3$\u00a3.html"} +{"size_bytes": 482, "category": "web-index", "path": "articles/\u20a2/_/_/\u20a2.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/0/-/0/0-0-0_emergency.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/0/-/0/0-0.html"} +{"size_bytes": 22075, "category": "web-index", "path": "articles/0/-/0/0-0-1-3.html"} +{"size_bytes": 10002, "category": "web-index", "path": "articles/0/-/0/0-0-0.html"} +{"size_bytes": 21588, "category": "web-index", "path": "articles/0/0/6/Image~006859_2fe22f00-by-Val-Vannet.jpg_2d5e.html"} +{"size_bytes": 480, "category": "web-index", "path": "articles/0/0/6/006.html"} +{"size_bytes": 17491, "category": "web-index", "path": "articles/0/0/6/Image~0064MC.jpg_ea90.html"} +{"size_bytes": 30658, "category": "web-index", "path": "articles/0/0/6/Image~00610r_Herkules.jpg_b71c.html"} +{"size_bytes": 17321, "category": "web-index", "path": "articles/0/0/6/Image~0069.JPG_c66f.html"} +{"size_bytes": 17104, "category": "web-index", "path": "articles/0/0/6/Image~00692uc.jpg.html"} +{"size_bytes": 20922, "category": "web-index", "path": "articles/0/0/6/Image~0060930497.01.LZZZZZZZ.jpg_3ed2.html"} +{"size_bytes": 17419, "category": "web-index", "path": "articles/0/0/6/Image~0060233281-1-.jpg.html"} +{"size_bytes": 17938, "category": "web-index", "path": "articles/0/0/6/Image~006114630701.JPG_704f.html"} +{"size_bytes": 18114, "category": "web-index", "path": "articles/0/0/6/Image~0060872985.01.png.html"} +{"size_bytes": 19802, "category": "web-index", "path": "articles/0/0/6/Image~006396_ca6fec42-by-Chris-J-Dixon.jpg_f0ef.html"} +{"size_bytes": 14324, "category": "web-index", "path": "articles/0/0/6/Image~0069fr.jpg.html"} +{"size_bytes": 12317, "category": "web-index", "path": "articles/0/0/6/Image~00621435.jpg.html"} +{"size_bytes": 14521, "category": "web-index", "path": "articles/0/0/6/Image~00610007.JPG_2d78.html"} +{"size_bytes": 15002, "category": "web-index", "path": "articles/0/0/6/Image~00602498712160_300x300.jpg.html"} +{"size_bytes": 501, "category": "web-index", "path": "articles/0/0/6/0064410153.html"} +{"size_bytes": 19937, "category": "web-index", "path": "articles/0/0/6/Image~006397_3edf5805-by-Chris-J-Dixon.jpg_7a28.html"} +{"size_bytes": 26106, "category": "web-index", "path": "articles/0/0/6/Image~006011b0.jpg.html"} +{"size_bytes": 15656, "category": "web-index", "path": "articles/0/0/6/Image~006111.jpg.html"} +{"size_bytes": 8274, "category": "web-index", "path": "articles/0/0/5/User~00527.html"} +{"size_bytes": 31577, "category": "web-index", "path": "articles/0/0/5/Image~005_AWB_illustrations_for_AWB_manual.png_3553.html"} +{"size_bytes": 26313, "category": "web-index", "path": "articles/0/0/5/Image~005-a-Ruby-kindles-in-the-vine-810x1146.jpg_6284.html"} +{"size_bytes": 15037, "category": "web-index", "path": "articles/0/0/5/Image~005_dkg-made_detail.jpg.html"} +{"size_bytes": 17625, "category": "web-index", "path": "articles/0/0/5/Image~0050_01_15sec_00.jpg.html"} +{"size_bytes": 22620, "category": "web-index", "path": "articles/0/0/5/Image~0057-Ancient-British-Canoes-q75-500x225.jpg_4b86.html"} +{"size_bytes": 11686, "category": "web-index", "path": "articles/0/0/5/Image~005_Friary.jpg_643b.html"} +{"size_bytes": 20003, "category": "web-index", "path": "articles/0/0/5/Image~00500+Sucres+Bill+Ecuador+1988.jpg_32f5.html"} +{"size_bytes": 19908, "category": "web-index", "path": "articles/0/0/5/005.html"} +{"size_bytes": 13309, "category": "web-index", "path": "articles/0/0/5/Image~005990015.jpg.html"} +{"size_bytes": 27543, "category": "web-index", "path": "articles/0/0/5/Image~0051valtesse.JPG_dd69.html"} +{"size_bytes": 11789, "category": "web-index", "path": "articles/0/0/5/Image~005030_4106f820.jpg.html"} +{"size_bytes": 16155, "category": "web-index", "path": "articles/0/0/5/Image~005_5A1.JPG_0ed5.html"} +{"size_bytes": 19941, "category": "web-index", "path": "articles/0/0/5/Image~0050+Centavos+Ecuador+2000.jpg_837a.html"} +{"size_bytes": 28693, "category": "web-index", "path": "articles/0/0/5/Talk~005.html"} +{"size_bytes": 18658, "category": "web-index", "path": "articles/0/0/5/Image~0050.jpg.html"} +{"size_bytes": 23012, "category": "web-index", "path": "articles/0/0/5/Image~005.fin.01.jpg.html"} +{"size_bytes": 29850, "category": "web-index", "path": "articles/0/0/5/Image~00565-Araujo-Porto-Alegre--.jpg_a23a.html"} +{"size_bytes": 16002, "category": "web-index", "path": "articles/0/0/5/Image~0051.jpg.html"} +{"size_bytes": 25584, "category": "web-index", "path": "articles/0/0/5/Image~005_Eemsmond.ogg_fea4.html"} +{"size_bytes": 8185, "category": "web-index", "path": "articles/0/0/5/User_talk~00527.html"} +{"size_bytes": 17447, "category": "web-index", "path": "articles/0/0/5/Image~005_5.JPG_e1d5.html"} +{"size_bytes": 16993, "category": "web-index", "path": "articles/0/0/5/Image~005arcadegame.png.html"} +{"size_bytes": 10295, "category": "web-index", "path": "articles/0/0/5/Image~005_Tiberius.jpg_8caa.html"} +{"size_bytes": 20830, "category": "web-index", "path": "articles/0/0/5/Image~0052_xray_opt_radio.jpg.html"} +{"size_bytes": 14067, "category": "web-index", "path": "articles/0/0/5/Image~005ae.jpg.html"} +{"size_bytes": 25529, "category": "web-index", "path": "articles/0/0/5/User_talk~00504sevel.html"} +{"size_bytes": 9174, "category": "web-index", "path": "articles/0/0/5/User_talk~005am.html"} +{"size_bytes": 20563, "category": "web-index", "path": "articles/0/0/5/Image~0055_mandawa.jpg.html"} +{"size_bytes": 488, "category": "web-index", "path": "articles/0/0/-/00-xx.html"} +{"size_bytes": 20094, "category": "web-index", "path": "articles/0/0/0/Image~0002+Sucres+Ecuador+1944.jpg_0563.html"} +{"size_bytes": 13717, "category": "web-index", "path": "articles/0/0/0/Image~0000145-R1-E042.jpg_3919.html"} +{"size_bytes": 26662, "category": "web-index", "path": "articles/0/0/0/Image~00019413.jpg.html"} +{"size_bytes": 12259, "category": "web-index", "path": "articles/0/0/0/Image~000003-lescun_1200x800.JPG_0bff.html"} +{"size_bytes": 24345, "category": "web-index", "path": "articles/0/0/0/Image~000_2677.JPG_f6ff.html"} +{"size_bytes": 7199, "category": "web-index", "path": "articles/0/0/0/User~000111222a.html"} +{"size_bytes": 19916, "category": "web-index", "path": "articles/0/0/0/Image~0001+Centavo+Ecuador+2000.jpg_d6d0.html"} +{"size_bytes": 9406, "category": "web-index", "path": "articles/0/0/0/User_talk~000097798.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/0/0/0/000.html"} +{"size_bytes": 16356, "category": "web-index", "path": "articles/0/0/0/Image~000_jhgh0sdfdts280_edited.jpg.html"} +{"size_bytes": 18159, "category": "web-index", "path": "articles/0/0/0/Image~00022-Ado-Malagoli---O-gato.jpg_44fd.html"} +{"size_bytes": 14926, "category": "web-index", "path": "articles/0/0/0/Image~000-28EC.jpg_95ba.html"} +{"size_bytes": 7217, "category": "web-index", "path": "articles/0/0/0/User~000010110.html"} +{"size_bytes": 14046, "category": "web-index", "path": "articles/0/0/0/Image~000_Museum_Skeletons.jpg_a3f9.html"} +{"size_bytes": 16844, "category": "web-index", "path": "articles/0/0/0/Image~00000085.JPG_bead.html"} +{"size_bytes": 13737, "category": "web-index", "path": "articles/0/0/0/Image~000h9bf4.jpg.html"} +{"size_bytes": 16523, "category": "web-index", "path": "articles/0/0/0/Image~000joVANFLEET.png_61b1.html"} +{"size_bytes": 12972, "category": "web-index", "path": "articles/0/0/0/Image~0007_Caridad_del_Cobre.jpg_dc96.html"} +{"size_bytes": 17019, "category": "web-index", "path": "articles/0/0/0/Image~000_0114.jpg.html"} +{"size_bytes": 16108, "category": "web-index", "path": "articles/0/0/0/Image~000_1549.jpg.html"} +{"size_bytes": 23145, "category": "web-index", "path": "articles/0/0/0/Image~000_0088.jpg.html"} +{"size_bytes": 15458, "category": "web-index", "path": "articles/0/0/0/Image~000086'.jpg.html"} +{"size_bytes": 60928, "category": "web-index", "path": "articles/0/0/0/Image~0001.jpg.html"} +{"size_bytes": 138978, "category": "web-index", "path": "articles/0/0/0/User~00001yogen.html"} +{"size_bytes": 12502, "category": "web-index", "path": "articles/0/0/0/Image~0000johnson_md2.jpg.html"} +{"size_bytes": 35586, "category": "web-index", "path": "articles/0/0/0/Image~000_0559.jpg.html"} +{"size_bytes": 23510, "category": "web-index", "path": "articles/0/0/0/Image~000_0091.jpg.html"} +{"size_bytes": 7459, "category": "web-index", "path": "articles/0/0/0/User~000lynx.html"} +{"size_bytes": 9686, "category": "web-index", "path": "articles/0/0/0/User_talk~0007b.html"} +{"size_bytes": 18381, "category": "web-index", "path": "articles/0/0/0/Image~0000050606-F-1234P-014.jpg_21c6.html"} +{"size_bytes": 23553, "category": "web-index", "path": "articles/0/0/0/Image~000_0331.JPG_83b3.html"} +{"size_bytes": 11696, "category": "web-index", "path": "articles/0/0/0/User_talk~000unknown000.html"} +{"size_bytes": 26071, "category": "web-index", "path": "articles/0/0/0/Image~0008MAN-KourosHead2.jpg_5c39.html"} +{"size_bytes": 7186, "category": "web-index", "path": "articles/0/0/0/User_talk~00008sheila.html"} +{"size_bytes": 23871, "category": "web-index", "path": "articles/0/0/0/Image~000_0080.JPG_c21b.html"} +{"size_bytes": 443, "category": "web-index", "path": "articles/0/0/0/000-012-3456.html"} +{"size_bytes": 34981, "category": "web-index", "path": "articles/0/0/0/Image~000000000_WinShape.jpg_c65a.html"} +{"size_bytes": 13696, "category": "web-index", "path": "articles/0/0/0/Image~000931pv.jpg.html"} +{"size_bytes": 13786, "category": "web-index", "path": "articles/0/0/0/Image~000Guntur_Division.JPG_1508.html"} +{"size_bytes": 37180, "category": "web-index", "path": "articles/0/0/0/Image~000_0045.jpg.html"} +{"size_bytes": 17909, "category": "web-index", "path": "articles/0/0/0/Image~0007198051.01._SX140_SCLZZZZZZZ_.jpg_cfd4.html"} +{"size_bytes": 9230, "category": "web-index", "path": "articles/0/0/0/User_talk~000malt000.html"} +{"size_bytes": 9858, "category": "web-index", "path": "articles/0/0/0/User_talk~0001jackal.html"} +{"size_bytes": 9146, "category": "web-index", "path": "articles/0/0/0/Image_talk~00000.jpg.html"} +{"size_bytes": 19696, "category": "web-index", "path": "articles/0/0/0/Image~00010+Sucres+Bill+Ecuador+1983.jpg_b0a2.html"} +{"size_bytes": 18063, "category": "web-index", "path": "articles/0/0/0/Image~000_1198.jpg.html"} +{"size_bytes": 12606, "category": "web-index", "path": "articles/0/0/0/Image~0000_Masons_Web.jpg_ebc1.html"} +{"size_bytes": 24029, "category": "web-index", "path": "articles/0/0/0/Image~000_1351.jpg.html"} +{"size_bytes": 41769, "category": "web-index", "path": "articles/0/0/0/Image~000000.jpg.html"} +{"size_bytes": 17411, "category": "web-index", "path": "articles/0/0/0/Image~000_0606.jpg.html"} +{"size_bytes": 12575, "category": "web-index", "path": "articles/0/0/0/Image~0002s9rg.jpg.html"} +{"size_bytes": 27181, "category": "web-index", "path": "articles/0/0/0/Image~000_0254.jpg.html"} +{"size_bytes": 20755, "category": "web-index", "path": "articles/0/0/0/Image~000409_bb07dd88-by-George-Griffin.jpg_afb0.html"} +{"size_bytes": 19123, "category": "web-index", "path": "articles/0/0/0/Image~00008860_mrsrobinson-1-.jpg.html"} +{"size_bytes": 30327, "category": "web-index", "path": "articles/0/0/0/Image~00090--Arthur-T.jpg_da11.html"} +{"size_bytes": 12434, "category": "web-index", "path": "articles/0/0/0/User_talk~000sponge.html"} +{"size_bytes": 27285, "category": "web-index", "path": "articles/0/0/0/Image~000_0989.jpg.html"} +{"size_bytes": 27163, "category": "web-index", "path": "articles/0/0/0/User_talk~000lynx.html"} +{"size_bytes": 16465, "category": "web-index", "path": "articles/0/0/0/Image~000_2845.jpg.html"} +{"size_bytes": 21071, "category": "web-index", "path": "articles/0/0/0/Image~000_1486.jpg.html"} +{"size_bytes": 22568, "category": "web-index", "path": "articles/0/0/0/Image~000_0405.JPG_3367.html"} +{"size_bytes": 9603, "category": "web-index", "path": "articles/0/0/0/User_talk~000999bbb.html"} +{"size_bytes": 20693, "category": "web-index", "path": "articles/0/0/0/Image~0001videoconferencing.PNG_f982.html"} +{"size_bytes": 8883, "category": "web-index", "path": "articles/0/0/0/User_talk~0000_ir1337.html"} +{"size_bytes": 25643, "category": "web-index", "path": "articles/0/0/0/Image~000_Groningen.ogg_a508.html"} +{"size_bytes": 8270, "category": "web-index", "path": "articles/0/0/0/User_talk~000george000.html"} +{"size_bytes": 17020, "category": "web-index", "path": "articles/0/0/0/Image~000_2197.jpg.html"} +{"size_bytes": 462, "category": "web-index", "path": "articles/0/0/0/00000000-0000-0000-C000-000000000046_4d27.html"} +{"size_bytes": 489, "category": "web-index", "path": "articles/0/0/0/0001_Cemetery_Ridge_7768.html"} +{"size_bytes": 18432, "category": "web-index", "path": "articles/0/0/0/Image~00001a.png.html"} +{"size_bytes": 33289, "category": "web-index", "path": "articles/0/0/0/Image~00000.jpg.html"} +{"size_bytes": 19198, "category": "web-index", "path": "articles/0/0/0/Image~00027823.gif.html"} +{"size_bytes": 8398, "category": "web-index", "path": "articles/0/0/0/User_talk~000glyB000gly_f349.html"} +{"size_bytes": 7294, "category": "web-index", "path": "articles/0/0/0/User~000BlueSky000_003e.html"} +{"size_bytes": 19887, "category": "web-index", "path": "articles/0/0/0/Image~00020+Sucres+Bill+Ecuador+1988.jpg_70d2.html"} +{"size_bytes": 20297, "category": "web-index", "path": "articles/0/0/0/User_talk~000khalil000.html"} +{"size_bytes": 26149, "category": "web-index", "path": "articles/0/0/0/Image~00059-A-creche.jpg_c938.html"} +{"size_bytes": 14367, "category": "web-index", "path": "articles/0/0/0/Image~000_Serbia_dhe_Mali_i_Zi.PNG_78f5.html"} +{"size_bytes": 7969, "category": "web-index", "path": "articles/0/0/0/User_talk~000000.html"} +{"size_bytes": 30278, "category": "web-index", "path": "articles/0/0/0/000_emergency.html"} +{"size_bytes": 7525, "category": "web-index", "path": "articles/0/0/0/User_talk~000kate000.html"} +{"size_bytes": 19800, "category": "web-index", "path": "articles/0/0/0/Image~00059840_b003.jpg.html"} +{"size_bytes": 11772, "category": "web-index", "path": "articles/0/0/0/Image~000000_Bullet.png_20e3.html"} +{"size_bytes": 11819, "category": "web-index", "path": "articles/0/0/0/User_talk~000-000-000.html"} +{"size_bytes": 23963, "category": "web-index", "path": "articles/0/0/0/Image~000_0497.jpg.html"} +{"size_bytes": 18581, "category": "web-index", "path": "articles/0/0/0/Image~000_0121_tiny.jpg.html"} +{"size_bytes": 8824, "category": "web-index", "path": "articles/0/0/0/User_talk~000christa000.html"} +{"size_bytes": 17535, "category": "web-index", "path": "articles/0/0/0/Image~0000003298_small.jpeg.html"} +{"size_bytes": 10113, "category": "web-index", "path": "articles/0/0/0/User_talk~0007.html"} +{"size_bytes": 19887, "category": "web-index", "path": "articles/0/0/0/Image~00050+Sucres+Bill+Ecuador+1988.jpg_d5b7.html"} +{"size_bytes": 20322, "category": "web-index", "path": "articles/0/0/0/Image~0000205316_350.jpg.html"} +{"size_bytes": 7937, "category": "web-index", "path": "articles/0/0/0/User_talk~000justin000.html"} +{"size_bytes": 10353, "category": "web-index", "path": "articles/0/0/0/Image_talk~00027823.gif.html"} +{"size_bytes": 23707, "category": "web-index", "path": "articles/0/0/0/Image~000_0137.JPG_2708.html"} +{"size_bytes": 9378, "category": "web-index", "path": "articles/0/0/0/User~0001b.html"} +{"size_bytes": 23639, "category": "web-index", "path": "articles/0/0/0/Image~000_1058.jpg.html"} +{"size_bytes": 10451, "category": "web-index", "path": "articles/0/0/0/User_talk~0007h.html"} +{"size_bytes": 18499, "category": "web-index", "path": "articles/0/0/0/Image~000001M1B.01.jpg_e250.html"} +{"size_bytes": 23919, "category": "web-index", "path": "articles/0/0/0/Image~0005.png.html"} +{"size_bytes": 7982, "category": "web-index", "path": "articles/0/0/0/User_talk~00000000000000000000000.html"} +{"size_bytes": 12780, "category": "web-index", "path": "articles/0/0/0/Image~000976_34bb218f.jpg.html"} +{"size_bytes": 18014, "category": "web-index", "path": "articles/0/0/0/User_talk~000012.html"} +{"size_bytes": 443, "category": "web-index", "path": "articles/0/0/0/0000123456.html"} +{"size_bytes": 23971, "category": "web-index", "path": "articles/0/0/0/Image~000_0092_edited.jpg.html"} +{"size_bytes": 12660, "category": "web-index", "path": "articles/0/0/0/Image~000_Maqedonia_harta.PNG_0499.html"} +{"size_bytes": 7572, "category": "web-index", "path": "articles/0/0/0/User_talk~0001n.html"} +{"size_bytes": 16680, "category": "web-index", "path": "articles/0/0/0/Image~000508-F-2171A-011.jpg_87ca.html"} +{"size_bytes": 31469, "category": "web-index", "path": "articles/0/0/0/Image~000_AWB_illustrations_for_AWB_manual.png_9a03.html"} +{"size_bytes": 16786, "category": "web-index", "path": "articles/0/0/0/Image~000_0413.JPG_a507.html"} +{"size_bytes": 8347, "category": "web-index", "path": "articles/0/0/0/Image_talk~000_Montenegrins.JPG_34c9.html"} +{"size_bytes": 23575, "category": "web-index", "path": "articles/0/0/0/Image~000_1136.jpg.html"} +{"size_bytes": 19936, "category": "web-index", "path": "articles/0/0/0/Image~0005+Centavos+Ecuador+2000.jpg_d29a.html"} +{"size_bytes": 19919, "category": "web-index", "path": "articles/0/0/0/Image~000sheelsLogo.gif_1779.html"} +{"size_bytes": 16590, "category": "web-index", "path": "articles/0/0/0/Image~000_0603.JPG_2f01.html"} +{"size_bytes": 31421, "category": "web-index", "path": "articles/0/0/0/Image~000_0007.JPG_d695.html"} +{"size_bytes": 17088, "category": "web-index", "path": "articles/0/0/0/Image~000_2198.jpg.html"} +{"size_bytes": 21251, "category": "web-index", "path": "articles/0/0/0/Image~0002-Stonehenge-Restored-plan-q75-500x458.jpg_fcd7.html"} +{"size_bytes": 23620, "category": "web-index", "path": "articles/0/0/0/Image~000_0382.JPG_860d.html"} +{"size_bytes": 17439, "category": "web-index", "path": "articles/0/0/0/Image~000_0546.jpg.html"} +{"size_bytes": 17887, "category": "web-index", "path": "articles/0/0/0/Image~000_0027.JPG_742c.html"} +{"size_bytes": 18976, "category": "web-index", "path": "articles/0/0/0/Image~0000b69a0c8r.jpg.html"} +{"size_bytes": 21365, "category": "web-index", "path": "articles/0/0/0/Image~00071-Gl\u00eanio-Bianchetti---J.jpg_6438.html"} +{"size_bytes": 12945, "category": "web-index", "path": "articles/0/0/0/Image~000_Montenegrins.JPG_fe72.html"} +{"size_bytes": 26834, "category": "web-index", "path": "articles/0/0/0/Image~00046637.jpg.html"} +{"size_bytes": 9145, "category": "web-index", "path": "articles/0/0/0/User_talk~0000charles0000.html"} +{"size_bytes": 14087, "category": "web-index", "path": "articles/0/0/0/Image~000_Greqia_harta.PNG_574e.html"} +{"size_bytes": 18119, "category": "web-index", "path": "articles/0/0/0/Image~000_Tim-Fischer.jpg_cd54.html"} +{"size_bytes": 8731, "category": "web-index", "path": "articles/0/0/0/User~000Cranleigh000Sauce000_1ef2.html"} +{"size_bytes": 24262, "category": "web-index", "path": "articles/0/0/0/Image~000_2675.JPG_cedd.html"} +{"size_bytes": 8183, "category": "web-index", "path": "articles/0/0/0/User_talk~0001b.html"} +{"size_bytes": 23271, "category": "web-index", "path": "articles/0/0/0/Image~000_0136.jpg.html"} +{"size_bytes": 18473, "category": "web-index", "path": "articles/0/0/0/Image~0007173342.01._AA240_SCLZZZZZZZ_.jpg_d816.html"} +{"size_bytes": 14919, "category": "web-index", "path": "articles/0/0/0/Image~0008ng.png.html"} +{"size_bytes": 13090, "category": "web-index", "path": "articles/0/0/0/Image~00003a.gif.html"} +{"size_bytes": 19774, "category": "web-index", "path": "articles/0/0/0/Image~0001Medfacu.jpg_8600.html"} +{"size_bytes": 19028, "category": "web-index", "path": "articles/0/0/0/Image~000_0701.JPG_65d1.html"} +{"size_bytes": 15137, "category": "web-index", "path": "articles/0/0/0/Image~000_0387_edited.jpg.html"} +{"size_bytes": 17635, "category": "web-index", "path": "articles/0/0/0/Image~0008811297923.jpg.html"} +{"size_bytes": 13168, "category": "web-index", "path": "articles/0/0/0/Image~0000002450_small.jpeg.html"} +{"size_bytes": 13117, "category": "web-index", "path": "articles/0/0/0/Image~000910_tivoli_v_d_este_47_facciata.jpg.html"} +{"size_bytes": 14443, "category": "web-index", "path": "articles/0/0/0/Image~00000362.jpg.html"} +{"size_bytes": 10039, "category": "web-index", "path": "articles/0/0/0/User_talk~000nemo000.html"} +{"size_bytes": 19547, "category": "web-index", "path": "articles/0/0/0/Image~0004212-R1-020-8A.JPG_883b.html"} +{"size_bytes": 12689, "category": "web-index", "path": "articles/0/0/0/User_talk~0000001.html"} +{"size_bytes": 16689, "category": "web-index", "path": "articles/0/0/0/Image~0000_BrandenburgStore_web.jpg_24f7.html"} +{"size_bytes": 14231, "category": "web-index", "path": "articles/0/0/0/Image~0000mmmcclung-photo-01.jpg.html"} +{"size_bytes": 9603, "category": "web-index", "path": "articles/0/0/0/User_talk~000001socialscience.html"} +{"size_bytes": 8737, "category": "web-index", "path": "articles/0/0/0/User_talk~00009999oooo.html"} +{"size_bytes": 13048, "category": "web-index", "path": "articles/0/0/0/User_talk~0007136a.html"} +{"size_bytes": 17301, "category": "web-index", "path": "articles/0/0/0/Image~00034065.jpg.html"} +{"size_bytes": 13943, "category": "web-index", "path": "articles/0/0/0/User_talk~000francesca000.html"} +{"size_bytes": 17622, "category": "web-index", "path": "articles/0/0/0/User_talk~000zero.html"} +{"size_bytes": 13660, "category": "web-index", "path": "articles/0/0/0/Image~000932pv.jpg.html"} +{"size_bytes": 27574, "category": "web-index", "path": "articles/0/0/0/Image~00009_copy.jpg.html"} +{"size_bytes": 17059, "category": "web-index", "path": "articles/0/0/0/Image~000_0062.jpg.html"} +{"size_bytes": 7525, "category": "web-index", "path": "articles/0/0/0/User_talk~000033195.html"} +{"size_bytes": 489, "category": "web-index", "path": "articles/0/0/0/0000.html"} +{"size_bytes": 23391, "category": "web-index", "path": "articles/0/0/0/Image~000_1161.JPG_3d68.html"} +{"size_bytes": 7216, "category": "web-index", "path": "articles/0/0/0/User_talk~00001yogen.html"} +{"size_bytes": 23804, "category": "web-index", "path": "articles/0/0/0/Image~000_0607.JPG_ecbf.html"} +{"size_bytes": 23525, "category": "web-index", "path": "articles/0/0/0/Image~000_0200.jpg.html"} +{"size_bytes": 12789, "category": "web-index", "path": "articles/0/0/0/Image~000815_4_s_antonio_ai_portoghesi_2.jpg.html"} +{"size_bytes": 24725, "category": "web-index", "path": "articles/0/0/0/Image~0000taa.jpg.html"} +{"size_bytes": 22958, "category": "web-index", "path": "articles/0/0/0/Image~000DSC00552.jpg_f3d8.html"} +{"size_bytes": 9830, "category": "web-index", "path": "articles/0/0/0/User~0007.html"} +{"size_bytes": 504, "category": "web-index", "path": "articles/0/0/0/00000000.html"} +{"size_bytes": 20750, "category": "web-index", "path": "articles/0/0/0/Image~000_0080.jpg.html"} +{"size_bytes": 8238, "category": "web-index", "path": "articles/0/0/0/User_talk~00000001.html"} +{"size_bytes": 19691, "category": "web-index", "path": "articles/0/0/0/Image~00005+Sucres+Bill+Ecuador+1988.jpg_3308.html"} +{"size_bytes": 16779, "category": "web-index", "path": "articles/0/0/0/Image~00034078.jpg.html"} +{"size_bytes": 19747, "category": "web-index", "path": "articles/0/0/0/Image~000_0017.jpg.html"} +{"size_bytes": 9369, "category": "web-index", "path": "articles/0/0/0/User_talk~000023.html"} +{"size_bytes": 41189, "category": "web-index", "path": "articles/0/0/0/Image~0000.jpg.html"} +{"size_bytes": 17080, "category": "web-index", "path": "articles/0/0/0/Image~00034421.jpg.html"} +{"size_bytes": 17279, "category": "web-index", "path": "articles/0/0/0/Image~000_0516.jpg.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/0/0/0/000_Emergency_6f10.html"} +{"size_bytes": 16804, "category": "web-index", "path": "articles/0/0/0/Image~000-15.jpg.html"} +{"size_bytes": 9242, "category": "web-index", "path": "articles/0/0/0/User_talk~000mikes000.html"} +{"size_bytes": 18378, "category": "web-index", "path": "articles/0/0/0/Image~000_0152_edited.jpg.html"} +{"size_bytes": 15973, "category": "web-index", "path": "articles/0/0/0/Image~0000811346_170.jpg.html"} +{"size_bytes": 19341, "category": "web-index", "path": "articles/0/0/0/Image~000_1371.JPG_5b17.html"} +{"size_bytes": 26856, "category": "web-index", "path": "articles/0/0/0/Image~0002MAN-Hermes.jpg_b39f.html"} +{"size_bytes": 30044, "category": "web-index", "path": "articles/0/0/0/Image~0001dw41.jpeg.html"} +{"size_bytes": 8147, "category": "web-index", "path": "articles/0/0/0/Image~00040_copy.jpg.html"} +{"size_bytes": 8247, "category": "web-index", "path": "articles/0/0/0/User_talk~0001jackal2.html"} +{"size_bytes": 21525, "category": "web-index", "path": "articles/0/0/0/Image~000_0106.JPG_e642.html"} +{"size_bytes": 27135, "category": "web-index", "path": "articles/0/0/0/Talk~000_emergency.html"} +{"size_bytes": 60977, "category": "web-index", "path": "articles/0/0/0/Image~00000004.jpg.html"} +{"size_bytes": 23594, "category": "web-index", "path": "articles/0/0/0/Image~000_0124.jpg.html"} +{"size_bytes": 15851, "category": "web-index", "path": "articles/0/0/0/Image~000_1098.JPG.JPG_5911.html"} +{"size_bytes": 13913, "category": "web-index", "path": "articles/0/0/0/Image~000_0rysdf251_edited.jpg.html"} +{"size_bytes": 8489, "category": "web-index", "path": "articles/0/0/0/User_talk~000999888.html"} +{"size_bytes": 16483, "category": "web-index", "path": "articles/0/0/0/Image~000_4950.jpg.html"} +{"size_bytes": 17791, "category": "web-index", "path": "articles/0/0/0/Image~000025_edit.JPG_eed0.html"} +{"size_bytes": 18947, "category": "web-index", "path": "articles/0/0/0/Image~0007863675162_500X500-1-.jpg_a2c9.html"} +{"size_bytes": 60944, "category": "web-index", "path": "articles/0/0/0/Image~00055.jpg.html"} +{"size_bytes": 17675, "category": "web-index", "path": "articles/0/0/0/Image~00008811299224_800x800.jpg.html"} +{"size_bytes": 33748, "category": "web-index", "path": "articles/0/0/0/Image~000_0239.jpg.html"} +{"size_bytes": 19569, "category": "web-index", "path": "articles/0/0/0/Image~0001686183512_500X500.jpg_303f.html"} +{"size_bytes": 41730, "category": "web-index", "path": "articles/0/0/0/Image~000001.jpg.html"} +{"size_bytes": 13459, "category": "web-index", "path": "articles/0/0/0/Image~0000_George_Asher.jpg_2b8c.html"} +{"size_bytes": 23510, "category": "web-index", "path": "articles/0/0/0/Image~000_12891.JPG_6776.html"} +{"size_bytes": 11601, "category": "web-index", "path": "articles/0/0/2E/User_talk~00.03_Rumor_8ec6.html"} +{"size_bytes": 41557, "category": "web-index", "path": "articles/0/0/2E/Image~00.jpg.html"} +{"size_bytes": 15463, "category": "web-index", "path": "articles/0/0/2E/Image~00.back.jpg.html"} +{"size_bytes": 14248, "category": "web-index", "path": "articles/0/0/4/Image~004251_dd5e4c34.jpg.html"} +{"size_bytes": 8711, "category": "web-index", "path": "articles/0/0/4/User_talk~004Jb$$$$_30cf.html"} +{"size_bytes": 9712, "category": "web-index", "path": "articles/0/0/4/User_talk~004shew.html"} +{"size_bytes": 17863, "category": "web-index", "path": "articles/0/0/4/Image~004runner.jpg.html"} +{"size_bytes": 31579, "category": "web-index", "path": "articles/0/0/4/Image~004_AWB_illustrations_for_AWB_manual.png_0bf3.html"} +{"size_bytes": 10031, "category": "web-index", "path": "articles/0/0/4/User_talk~004.html"} +{"size_bytes": 26182, "category": "web-index", "path": "articles/0/0/4/Image~0042MC.jpg_0077.html"} +{"size_bytes": 7179, "category": "web-index", "path": "articles/0/0/4/User~004shew.html"} +{"size_bytes": 18256, "category": "web-index", "path": "articles/0/0/4/Image~00498_Britto_Velho_Pintura2.jpg_58f8.html"} +{"size_bytes": 16365, "category": "web-index", "path": "articles/0/0/4/Image~004a.JPG_9122.html"} +{"size_bytes": 19766, "category": "web-index", "path": "articles/0/0/4/Image~004.gif.html"} +{"size_bytes": 16926, "category": "web-index", "path": "articles/0/0/4/Image~004_Ottawa_station.jpg_b582.html"} +{"size_bytes": 18679, "category": "web-index", "path": "articles/0/0/4/Image~004ok_end.jpg.html"} +{"size_bytes": 23557, "category": "web-index", "path": "articles/0/0/4/Image~004.JPG_f67a.html"} +{"size_bytes": 29516, "category": "web-index", "path": "articles/0/0/4/Image~004_L'ours_brun_de_Luchon.jpg_1096.html"} +{"size_bytes": 11595, "category": "web-index", "path": "articles/0/0/4/Image~004724_260d7cd7.jpg.html"} +{"size_bytes": 10239, "category": "web-index", "path": "articles/0/0/4/User_talk~004106.html"} +{"size_bytes": 16994, "category": "web-index", "path": "articles/0/0/4/Image~0047MC.jpg_bae6.html"} +{"size_bytes": 19689, "category": "web-index", "path": "articles/0/0/4/Image~0049blanchisseuse5.JPG_caa7.html"} +{"size_bytes": 16684, "category": "web-index", "path": "articles/0/0/4/Image~004_Sir_Thomas_Fairfax_in_a_print_of_the_time_and_portrayed_by_Douglas_Wilmer.jpg_f5fe.html"} +{"size_bytes": 7410, "category": "web-index", "path": "articles/0/0/4/User~004.html"} +{"size_bytes": 14757, "category": "web-index", "path": "articles/0/0/4/Image~004353Drummond1.jpg_f559.html"} +{"size_bytes": 513, "category": "web-index", "path": "articles/0/0/4/004.html"} +{"size_bytes": 25584, "category": "web-index", "path": "articles/0/0/4/Image~004_Delfzijl.ogg_872b.html"} +{"size_bytes": 16688, "category": "web-index", "path": "articles/0/0/4/Image~004gutheires.jpg.html"} +{"size_bytes": 10937, "category": "web-index", "path": "articles/0/0/4/Image~004_Agrippa.jpg_d660.html"} +{"size_bytes": 16116, "category": "web-index", "path": "articles/0/0/4/Image~004aeroport_hb_1.JPG_6dfc.html"} +{"size_bytes": 16483, "category": "web-index", "path": "articles/0/0/3A/Talk~00~00~1998_(album).html"} +{"size_bytes": 12797, "category": "web-index", "path": "articles/0/0/3A/00~00~1998_(album).html"} +{"size_bytes": 437, "category": "web-index", "path": "articles/0/0/27/00's.html"} +{"size_bytes": 23193, "category": "web-index", "path": "articles/0/0/1/Image~001_Fro\u00f0ba.JPG_8dda.html"} +{"size_bytes": 13115, "category": "web-index", "path": "articles/0/0/1/Image~001-tourismbldg.jpg.html"} +{"size_bytes": 20117, "category": "web-index", "path": "articles/0/0/1/User_talk~001livingston.html"} +{"size_bytes": 35236, "category": "web-index", "path": "articles/0/0/1/Image~001down.jpg.html"} +{"size_bytes": 17091, "category": "web-index", "path": "articles/0/0/1/Image~001Paskal.JPG_8332.html"} +{"size_bytes": 23526, "category": "web-index", "path": "articles/0/0/1/Image~001221_Cassini_Jupiter_&_Europa_&_Callisto.jpg_55d3.html"} +{"size_bytes": 22951, "category": "web-index", "path": "articles/0/0/1/Image~001_rue_St-Alphonse_Sud.jpg_7b3b.html"} +{"size_bytes": 29498, "category": "web-index", "path": "articles/0/0/1/User_talk~001012A_4feb.html"} +{"size_bytes": 11248, "category": "web-index", "path": "articles/0/0/1/Image~00115319-thumbnail.jpg.html"} +{"size_bytes": 14180, "category": "web-index", "path": "articles/0/0/1/Image~001015_gauge_buster.jpg.html"} +{"size_bytes": 13535, "category": "web-index", "path": "articles/0/0/1/Image~001xxx.jpg.html"} +{"size_bytes": 14071, "category": "web-index", "path": "articles/0/0/1/Image~001songs_big.jpg.html"} +{"size_bytes": 10275, "category": "web-index", "path": "articles/0/0/1/User~001_001.html"} +{"size_bytes": 13054, "category": "web-index", "path": "articles/0/0/1/Image~001-santacruzchurch.jpg.html"} +{"size_bytes": 453, "category": "web-index", "path": "articles/0/0/1/00100.html"} +{"size_bytes": 8664, "category": "web-index", "path": "articles/0/0/1/User_talk~00121851.html"} +{"size_bytes": 29845, "category": "web-index", "path": "articles/0/0/1/Image~0012_SLO_Ljubljana_TrgRepublike_030714_HelgeKuehnel.JPG_8c11.html"} +{"size_bytes": 27472, "category": "web-index", "path": "articles/0/0/1/Image~0013zero.jpg.html"} +{"size_bytes": 18847, "category": "web-index", "path": "articles/0/0/1/Image~001_Headbanger_Spoof_Comics_th.jpg_3771.html"} +{"size_bytes": 13210, "category": "web-index", "path": "articles/0/0/1/Image~001-remedioscircle.jpg.html"} +{"size_bytes": 13185, "category": "web-index", "path": "articles/0/0/1/Image~001front.jpg.html"} +{"size_bytes": 13197, "category": "web-index", "path": "articles/0/0/1/Image~001-quiapochurch.jpg.html"} +{"size_bytes": 13153, "category": "web-index", "path": "articles/0/0/1/Image~001k_133.jpg.html"} +{"size_bytes": 16778, "category": "web-index", "path": "articles/0/0/1/Image~001_Charles_I_as_painted_by_Sir_Anthony_van_Dyck_and_portrayed_by_Sir_Alec_Guiness.jpg_629f.html"} +{"size_bytes": 19680, "category": "web-index", "path": "articles/0/0/1/Image~001-mabini.jpg.html"} +{"size_bytes": 22946, "category": "web-index", "path": "articles/0/0/1/Image~001_1A.JPG_16d5.html"} +{"size_bytes": 19847, "category": "web-index", "path": "articles/0/0/1/Image~001-NAIA1.jpg_5b24.html"} +{"size_bytes": 12864, "category": "web-index", "path": "articles/0/0/1/Image~001_Match_Mar11.jpg_a6cf.html"} +{"size_bytes": 19583, "category": "web-index", "path": "articles/0/0/1/Image~001_Landenhausen_2006.png_9cf7.html"} +{"size_bytes": 16814, "category": "web-index", "path": "articles/0/0/1/Image~00141913.jpeg.html"} +{"size_bytes": 9840, "category": "web-index", "path": "articles/0/0/1/User_talk~0017806209BQ_4253.html"} +{"size_bytes": 10712, "category": "web-index", "path": "articles/0/0/1/User_talk~00112233.html"} +{"size_bytes": 8911, "category": "web-index", "path": "articles/0/0/1/User_talk~001leonardo.html"} +{"size_bytes": 27254, "category": "web-index", "path": "articles/0/0/1/Image~001Intruders.jpg_9d5f.html"} +{"size_bytes": 26939, "category": "web-index", "path": "articles/0/0/1/Image~00139.jpg.html"} +{"size_bytes": 10360, "category": "web-index", "path": "articles/0/0/1/User_talk~001popandfresh.html"} +{"size_bytes": 8144, "category": "web-index", "path": "articles/0/0/1/User_talk~00110001.html"} +{"size_bytes": 12554, "category": "web-index", "path": "articles/0/0/1/Image~0013.jpg.html"} +{"size_bytes": 13324, "category": "web-index", "path": "articles/0/0/1/Image~001-pacoparkrizal.jpg.html"} +{"size_bytes": 9809, "category": "web-index", "path": "articles/0/0/1/User_talk~001797fb.html"} +{"size_bytes": 19890, "category": "web-index", "path": "articles/0/0/1/Image~00100+Sucres+Bill+Ecuador+1994.jpg_e21b.html"} +{"size_bytes": 27401, "category": "web-index", "path": "articles/0/0/1/Image~001instantthisbillboard.jpg.html"} +{"size_bytes": 10699, "category": "web-index", "path": "articles/0/0/1/User_talk~0010.html"} +{"size_bytes": 19890, "category": "web-index", "path": "articles/0/0/1/Image~001-pacopark.jpg.html"} +{"size_bytes": 20403, "category": "web-index", "path": "articles/0/0/1/Image~00137.gif.html"} +{"size_bytes": 60932, "category": "web-index", "path": "articles/0/0/1/Image~001.JPG_f85e.html"} +{"size_bytes": 9621, "category": "web-index", "path": "articles/0/0/1/User_talk~001viper100.html"} +{"size_bytes": 13824, "category": "web-index", "path": "articles/0/0/1/Image~001103_4ee9ecef.jpg.html"} +{"size_bytes": 23216, "category": "web-index", "path": "articles/0/0/1/Image~0019waterfall.JPG_5cea.html"} +{"size_bytes": 20223, "category": "web-index", "path": "articles/0/0/1/Image~001.fin.01.jpg.html"} +{"size_bytes": 13024, "category": "web-index", "path": "articles/0/0/1/Image~001-rajahsulayman.jpg.html"} +{"size_bytes": 19326, "category": "web-index", "path": "articles/0/0/1/Image~001018_kaprun.jpg.html"} +{"size_bytes": 15987, "category": "web-index", "path": "articles/0/0/1/Image~0016.jpg.html"} +{"size_bytes": 20398, "category": "web-index", "path": "articles/0/0/1/Image~00171749.jpg.html"} +{"size_bytes": 17891, "category": "web-index", "path": "articles/0/0/1/User_talk~0010011.html"} +{"size_bytes": 19997, "category": "web-index", "path": "articles/0/0/1/Image~0010+Centavos+Ecuador+2000.jpg_f05d.html"} +{"size_bytes": 15120, "category": "web-index", "path": "articles/0/0/1/Image~001_RON.gif_69d0.html"} +{"size_bytes": 14307, "category": "web-index", "path": "articles/0/0/1/Image~001_Marquee.gif_b336.html"} +{"size_bytes": 60915, "category": "web-index", "path": "articles/0/0/1/Image~001.jpg.html"} +{"size_bytes": 19806, "category": "web-index", "path": "articles/0/0/1/Image~001-manilahotel.jpg.html"} +{"size_bytes": 19645, "category": "web-index", "path": "articles/0/0/1/Image~001-binondochurch.jpg.html"} +{"size_bytes": 13238, "category": "web-index", "path": "articles/0/0/1/Image~001k_132.jpg.html"} +{"size_bytes": 12830, "category": "web-index", "path": "articles/0/0/1/Image~0016t.jpg.html"} +{"size_bytes": 431, "category": "web-index", "path": "articles/0/0/1/001.html"} +{"size_bytes": 9275, "category": "web-index", "path": "articles/0/0/1/Image_talk~001_RON.gif_431b.html"} +{"size_bytes": 20579, "category": "web-index", "path": "articles/0/0/1/Image~001_Casablanka1.jpg_b13d.html"} +{"size_bytes": 12066, "category": "web-index", "path": "articles/0/0/1/Image~001k_134.jpg.html"} +{"size_bytes": 530, "category": "web-index", "path": "articles/0/0/1/001100010010011110100001101101110011.html"} +{"size_bytes": 12574, "category": "web-index", "path": "articles/0/0/1/Image~001dr.jpg.html"} +{"size_bytes": 16683, "category": "web-index", "path": "articles/0/0/1/Image~001meier.jpg.html"} +{"size_bytes": 19755, "category": "web-index", "path": "articles/0/0/1/Image~001-hidalgoquiapo.jpg.html"} +{"size_bytes": 25628, "category": "web-index", "path": "articles/0/0/1/Image~001_Appingedam.ogg_a0e0.html"} +{"size_bytes": 9484, "category": "web-index", "path": "articles/0/0/1/User_talk~001angusk.html"} +{"size_bytes": 31405, "category": "web-index", "path": "articles/0/0/1/Image~001_AWB_illustrations_for_AWB_manual.png_d52d.html"} +{"size_bytes": 19571, "category": "web-index", "path": "articles/0/0/1/Image~001-delpan.jpg.html"} +{"size_bytes": 30994, "category": "web-index", "path": "articles/0/0/1/Image~001SFEC_GLOBE_THEATRE-200705.JPG_8841.html"} +{"size_bytes": 15886, "category": "web-index", "path": "articles/0/0/1/Image~00135628.jpg.html"} +{"size_bytes": 23888, "category": "web-index", "path": "articles/0/0/1/Image~0017trpoicbird.JPG_cf20.html"} +{"size_bytes": 19837, "category": "web-index", "path": "articles/0/0/1/Image~001-pacoparkpancratius.jpg.html"} +{"size_bytes": 32074, "category": "web-index", "path": "articles/0/0/1/Image~001-IMG3701.JPG_d829.html"} +{"size_bytes": 17500, "category": "web-index", "path": "articles/0/0/2/Image~002-Street.JPG_9702.html"} +{"size_bytes": 23604, "category": "web-index", "path": "articles/0/0/2/User_talk~002168.html"} +{"size_bytes": 23543, "category": "web-index", "path": "articles/0/0/2/Image~002_Fro\u00f0ba_Basaltformationer.JPG_8c7c.html"} +{"size_bytes": 513, "category": "web-index", "path": "articles/0/0/2/002.html"} +{"size_bytes": 26295, "category": "web-index", "path": "articles/0/0/2/Image~0029MAN-Themis.jpg_c328.html"} +{"size_bytes": 12081, "category": "web-index", "path": "articles/0/0/2/Image~002544.jpg.html"} +{"size_bytes": 16937, "category": "web-index", "path": "articles/0/0/2/Image~002_VIA_1_Interior.jpg_ff3b.html"} +{"size_bytes": 28159, "category": "web-index", "path": "articles/0/0/2/Image~002-The_Imperial_Portrait_of_a_Chinese_Emperor_called__Tongzhi_.JPG_c4a3.html"} +{"size_bytes": 14055, "category": "web-index", "path": "articles/0/0/2/Image~002_00A.JPG_c97f.html"} +{"size_bytes": 18403, "category": "web-index", "path": "articles/0/0/2/Image~002388_fee14cd6NM.jpg_17fe.html"} +{"size_bytes": 13543, "category": "web-index", "path": "articles/0/0/2/Image~002573_d05ab163MCK.jpg_8e71.html"} +{"size_bytes": 13469, "category": "web-index", "path": "articles/0/0/2/Image~0024548-1-.jpg.html"} +{"size_bytes": 10167, "category": "web-index", "path": "articles/0/0/2/User~002octoper.html"} +{"size_bytes": 25518, "category": "web-index", "path": "articles/0/0/2/Image~002_Bedum.ogg_9eda.html"} +{"size_bytes": 25984, "category": "web-index", "path": "articles/0/0/2/Image~0025MAN-Relief2.jpg_cba9.html"} +{"size_bytes": 11595, "category": "web-index", "path": "articles/0/0/2/Image_talk~002006_Kumunat_e_Kosov\u00ebs_NR.PNG_5b61.html"} +{"size_bytes": 21156, "category": "web-index", "path": "articles/0/0/2/Image~00226-Jo\u00e3o-Fahrion-MARGS.jpg_297b.html"} +{"size_bytes": 17948, "category": "web-index", "path": "articles/0/0/2/Image~002-003.jpg.html"} +{"size_bytes": 12145, "category": "web-index", "path": "articles/0/0/2/Image~00201.gif.html"} +{"size_bytes": 17482, "category": "web-index", "path": "articles/0/0/2/Image~0026MAN-Nike.jpg_3438.html"} +{"size_bytes": 25981, "category": "web-index", "path": "articles/0/0/2/Image~0024MAN-Antinous.jpg_2aa5.html"} +{"size_bytes": 14730, "category": "web-index", "path": "articles/0/0/2/Image~002006_Kumunat_e_Kosov\u00ebs_NR.PNG_0193.html"} +{"size_bytes": 8994, "category": "web-index", "path": "articles/0/0/2/User_talk~002KFlash052_bdb9.html"} +{"size_bytes": 18093, "category": "web-index", "path": "articles/0/0/2/Image~00296_zebra.jpg.html"} +{"size_bytes": 14791, "category": "web-index", "path": "articles/0/0/2/Image~002807_20.jpg.html"} +{"size_bytes": 35239, "category": "web-index", "path": "articles/0/0/2/Image~002down.jpg.html"} +{"size_bytes": 8849, "category": "web-index", "path": "articles/0/0/2/User_talk~0022935621.html"} +{"size_bytes": 21768, "category": "web-index", "path": "articles/0/0/2/Image~002sonic.jpg.html"} +{"size_bytes": 26427, "category": "web-index", "path": "articles/0/0/2/Image~0027MAN_Paris_or_Perseus2.jpg_cef5.html"} +{"size_bytes": 12224, "category": "web-index", "path": "articles/0/0/2/User_talk~002sixaz.html"} +{"size_bytes": 23422, "category": "web-index", "path": "articles/0/0/2/Image~002_lg.jpg.html"} +{"size_bytes": 18336, "category": "web-index", "path": "articles/0/0/2/Image~002428_8d231923.jpg.html"} +{"size_bytes": 20223, "category": "web-index", "path": "articles/0/0/2/Image~002.fin.01.jpg.html"} +{"size_bytes": 7848, "category": "web-index", "path": "articles/0/0/2/Image_talk~002sonic.jpg.html"} +{"size_bytes": 31258, "category": "web-index", "path": "articles/0/0/2/Image~002_AWB_illustrations_for_AWB_manual.png_32b4.html"} +{"size_bytes": 26065, "category": "web-index", "path": "articles/0/0/2/Image~0028MAN-Room3.jpg_32d7.html"} +{"size_bytes": 17222, "category": "web-index", "path": "articles/0/0/2/Image~002-Cavalry-Regiment-COA.png_9e75.html"} +{"size_bytes": 7269, "category": "web-index", "path": "articles/0/0/2/User~0025Paperboy_c483.html"} +{"size_bytes": 19640, "category": "web-index", "path": "articles/0/0/2/Image~0025+Centavos+Ecuador+2000.jpg_4099.html"} +{"size_bytes": 17339, "category": "web-index", "path": "articles/0/0/2/Image~002_Olivier_Cromwell_as_painted_warts_and_all_by_Peter_Lely_aka_Pieter_van_der_Faes_and_portrayed_by_Richard_Harris.jpg_71b3.html"} +{"size_bytes": 9980, "category": "web-index", "path": "articles/0/0/2/User_talk~0025Paperboy_1398.html"} +{"size_bytes": 22099, "category": "web-index", "path": "articles/0/0/2/Image~002.jpg.html"} +{"size_bytes": 26570, "category": "web-index", "path": "articles/0/0/2/Image~002.JPG_22c8.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/0/0/_/12~00_AM_808d.html"} +{"size_bytes": 496, "category": "web-index", "path": "articles/0/0/_/5~00_World_0d2b.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/0/0/_/00~00.html"} +{"size_bytes": 83715, "category": "web-index", "path": "articles/0/0/_/00_Agent_b9ab.html"} +{"size_bytes": 501, "category": "web-index", "path": "articles/0/0/_/00_Void_e401.html"} +{"size_bytes": 462, "category": "web-index", "path": "articles/0/0/_/00_agents.html"} +{"size_bytes": 14826, "category": "web-index", "path": "articles/0/0/_/00.html"} +{"size_bytes": 462, "category": "web-index", "path": "articles/0/0/_/00_gauge.html"} +{"size_bytes": 462, "category": "web-index", "path": "articles/0/0/_/00_scale.html"} +{"size_bytes": 434, "category": "web-index", "path": "articles/0/0/_/00_(disambiguation).html"} +{"size_bytes": 489, "category": "web-index", "path": "articles/0/0/_/5~00_shadow.html"} +{"size_bytes": 30759, "category": "web-index", "path": "articles/0/0/_/2~00_AM_Paradise_Cafe_0232.html"} +{"size_bytes": 15242, "category": "web-index", "path": "articles/0/0/3/Talk~003\u00bd~_The_Adventures_of_James_Bond_Junior_6ca9.html"} +{"size_bytes": 14856, "category": "web-index", "path": "articles/0/0/3/Image~0030.jpeg.html"} +{"size_bytes": 9393, "category": "web-index", "path": "articles/0/0/3/User_talk~003jane.html"} +{"size_bytes": 14025, "category": "web-index", "path": "articles/0/0/3/Image~003_0A.JPG_f225.html"} +{"size_bytes": 23813, "category": "web-index", "path": "articles/0/0/3/Image~003_Fro\u00f0ba_grotten_Hol_\u00ed_Hellu.jpg_8048.html"} +{"size_bytes": 19763, "category": "web-index", "path": "articles/0/0/3/Image~003.gif.html"} +{"size_bytes": 25672, "category": "web-index", "path": "articles/0/0/3/Image~003_Bellingwedde.ogg_bffb.html"} +{"size_bytes": 10476, "category": "web-index", "path": "articles/0/0/3/Image~003_Sob_o_sol_o_descanso,_muta-muta\u00e7\u00f5es,_araguaia.jpg_4157.html"} +{"size_bytes": 19565, "category": "web-index", "path": "articles/0/0/3/Image~003JamesBondJunior.jpg_e0db.html"} +{"size_bytes": 7964, "category": "web-index", "path": "articles/0/0/3/User_talk~0031724.html"} +{"size_bytes": 12560, "category": "web-index", "path": "articles/0/0/3/Image~0030_stance.jpg.html"} +{"size_bytes": 11574, "category": "web-index", "path": "articles/0/0/3/Image~003171_7b063640.jpg.html"} +{"size_bytes": 16535, "category": "web-index", "path": "articles/0/0/3/Image~003west.jpg.html"} +{"size_bytes": 17058, "category": "web-index", "path": "articles/0/0/3/Image~003_Sir_Edward_Hyde_later_1st_Earl_of_Clarendon_in_a_print_of_the_time_and_portrayed_by_Nigel_Stock.jpg_3369.html"} +{"size_bytes": 8871, "category": "web-index", "path": "articles/0/0/3/User_talk~0033.html"} +{"size_bytes": 9458, "category": "web-index", "path": "articles/0/0/3/User_talk~003062hrs.html"} +{"size_bytes": 32159, "category": "web-index", "path": "articles/0/0/3/Image~003_AWB_illustrations_for_AWB_manual.png_0380.html"} +{"size_bytes": 23753, "category": "web-index", "path": "articles/0/0/3/Image~003.JPG_5c5a.html"} +{"size_bytes": 31082, "category": "web-index", "path": "articles/0/0/3/Image~003SFEC_BIG-TRUCKS.JPG_a45b.html"} +{"size_bytes": 16543, "category": "web-index", "path": "articles/0/0/3/Image~003a.jpg.html"} +{"size_bytes": 10421, "category": "web-index", "path": "articles/0/0/3/Image~003_Livia.jpg_9141.html"} +{"size_bytes": 60954, "category": "web-index", "path": "articles/0/0/3/Image~00327.JPG_c659.html"} +{"size_bytes": 513, "category": "web-index", "path": "articles/0/0/3/003.html"} +{"size_bytes": 9167, "category": "web-index", "path": "articles/0/0/3/User_talk~0035.html"} +{"size_bytes": 28176, "category": "web-index", "path": "articles/0/0/3/Image~003-The_Imperial_Portrait_of_a_Chinese_Emperor_called__Daoguang_.JPG_3b6a.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/0/_/0/0_0.html"} +{"size_bytes": 501, "category": "web-index", "path": "articles/0/_/0/0_0_void.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/0/^/0/0^0.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/\u20b3/_/_/\u20b3.html"} +{"size_bytes": 455, "category": "web-index", "path": "articles/\u0e3f/_/_/\u0e3f.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u02d1/_/_/\u02d1.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/\u20b5/_/_/\u20b5.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u00a5/\u03c0/\u00a5/\u00a5\u03a0\u00a5_5204.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/\u00a5/\u03c0/\u00a5/Talk~\u00a5\u03a0\u00a5_a18c.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u00a5/\u03c0/\u00a5/\u00a5\u03c0\u00a5.html"} +{"size_bytes": 19285, "category": "web-index", "path": "articles/\u00a5/1/2/Talk~\u00a5120_Stories_62de.html"} +{"size_bytes": 18423, "category": "web-index", "path": "articles/\u00a5/1/2/\u00a5120_Stories_eaaf.html"} +{"size_bytes": 11259, "category": "web-index", "path": "articles/\u00a5/_/_/Talk~\u00a5.html"} +{"size_bytes": 30455, "category": "web-index", "path": "articles/\u00a5/_/_/\u00a5.html"} +{"size_bytes": 9562, "category": "web-index", "path": "articles/\u00a5/\u20ac/$/User_talk~\u00a5\u20ac$.html"} +{"size_bytes": 8897, "category": "web-index", "path": "articles/\u00a5/\u20ac/$/User~\u00a5\u20ac$_monobook.js_8ae4.html"} +{"size_bytes": 7510, "category": "web-index", "path": "articles/\u00a5/\u20ac/$/User~\u00a5\u20ac$.html"} +{"size_bytes": 481, "category": "web-index", "path": "articles/\uffe0/_/_/\uffe0.html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/\ufe69/_/_/\ufe69.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/\uffe5/_/_/\uffe5.html"} +{"size_bytes": 464, "category": "web-index", "path": "articles/\u20a3/_/_/\u20a3.html"} +{"size_bytes": 484, "category": "web-index", "path": "articles/\u00ad/\u00a3/_/\u00ad\u00a3.html"} +{"size_bytes": 481, "category": "web-index", "path": "articles/\u20a5/_/_/\u20a5.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/\u20b2/_/_/\u20b2.html"} +{"size_bytes": 499, "category": "web-index", "path": "articles/\u00a4/_/_/\u00a4.html"} +{"size_bytes": 495, "category": "web-index", "path": "articles/\u20a1/_/_/\u20a1.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u20a6/_/_/\u20a6.html"} +{"size_bytes": 8643, "category": "web-index", "path": "articles/\u00a2/_/k/User_talk~\u00a2_King_341c.html"} +{"size_bytes": 481, "category": "web-index", "path": "articles/\u00a2/_/_/\u00a2.html"} +{"size_bytes": 461, "category": "web-index", "path": "articles/\uff04/_/_/\uff04.html"} +{"size_bytes": 476, "category": "web-index", "path": "articles/\u09f3/_/_/\u09f3.html"} +{"size_bytes": 449, "category": "web-index", "path": "articles/\u20b0/_/_/\u20b0.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/\u20af/_/_/\u20af.html"} +{"size_bytes": 493, "category": "web-index", "path": "articles/\u02d0/_/_/\u02d0.html"} +{"size_bytes": 498, "category": "web-index", "path": "articles/\u02d0/x/a/\u02d0Xam_language_ec12.html"} +{"size_bytes": 9864, "category": "web-index", "path": "articles/\u20ac/n/t/User~\u20acnthusiastFRANCE_cb98.html"} +{"size_bytes": 9918, "category": "web-index", "path": "articles/\u20ac/n/t/User~\u20acnthusiastFRANC\u20ac_6501.html"} +{"size_bytes": 7388, "category": "web-index", "path": "articles/\u20ac/p/a/User~\u20acpa.html"} +{"size_bytes": 45873, "category": "web-index", "path": "articles/\u20ac/p/a/User_talk~\u20acpa.html"} +{"size_bytes": 7384, "category": "web-index", "path": "articles/\u20ac/p/a/User~\u20acpa_Notes_ea40.html"} +{"size_bytes": 7874, "category": "web-index", "path": "articles/\u20ac/-/d/\u20ac-Day_86f5.html"} +{"size_bytes": 7382, "category": "web-index", "path": "articles/\u20ac/r/o/User~\u20acro.html"} +{"size_bytes": 30720, "category": "web-index", "path": "articles/\u20ac/r/o/User_talk~\u20acro.html"} +{"size_bytes": 482, "category": "web-index", "path": "articles/\u20ac/0/2E/\u20ac0.10.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/\u20ac/0/2E/\u20ac0.05.html"} +{"size_bytes": 482, "category": "web-index", "path": "articles/\u20ac/0/2E/\u20ac0.50.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/\u20ac/0/2E/\u20ac0.01.html"} +{"size_bytes": 482, "category": "web-index", "path": "articles/\u20ac/0/2E/\u20ac0.20.html"} +{"size_bytes": 479, "category": "web-index", "path": "articles/\u20ac/0/2E/\u20ac0.02.html"} +{"size_bytes": 7197, "category": "web-index", "path": "articles/\u20ac/a/l/User_talk~\u20acAlex\u20ac_151f.html"} +{"size_bytes": 464, "category": "web-index", "path": "articles/\u20ac/1/2E/\u20ac1.00.html"} +{"size_bytes": 464, "category": "web-index", "path": "articles/\u20ac/1/_/\u20ac1.html"} +{"size_bytes": 24439, "category": "web-index", "path": "articles/\u20ac/1/_/Image~\u20ac1_finland_first.gif.html"} +{"size_bytes": 464, "category": "web-index", "path": "articles/\u20ac/2/2E/\u20ac2.00.html"} +{"size_bytes": 9479, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Portugal_2007_TOR.jpg_e5af.html"} +{"size_bytes": 22111, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Finland_2007.jpg_1230.html"} +{"size_bytes": 9464, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Italy_2007_TOR.jpg_4eb9.html"} +{"size_bytes": 9489, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Luxembourg_2007_TOR.jpg_3ba3.html"} +{"size_bytes": 19814, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_France_2007_TOR.jpg_add4.html"} +{"size_bytes": 15267, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Austria_2005.jpg_c2b8.html"} +{"size_bytes": 22089, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Germany_2007.jpg_b097.html"} +{"size_bytes": 21241, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_France_2008.jpg_aace.html"} +{"size_bytes": 15194, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Finland_2005.jpg_fe3e.html"} +{"size_bytes": 15368, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Greece_2004.jpg_4ddf.html"} +{"size_bytes": 20500, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Portugal_2007_TOR.jpg_5db3.html"} +{"size_bytes": 9494, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Netherlands_2007_TOR.jpg_f0f3.html"} +{"size_bytes": 15544, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Vatican_City_2006.jpg_6af3.html"} +{"size_bytes": 9459, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Portugal_2007.jpg_7a0e.html"} +{"size_bytes": 20583, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Belgium_2007_TOR.jpg_b409.html"} +{"size_bytes": 9464, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_SanMarino_2007.jpg_ed03.html"} +{"size_bytes": 9469, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_France_2007_TOR.jpg_d90c.html"} +{"size_bytes": 20551, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Luxembourg_2007_TOR.jpg_47e9.html"} +{"size_bytes": 20260, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_San_Marino_2008.jpg_ebb5.html"} +{"size_bytes": 24594, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Portugal_2007.jpg_37aa.html"} +{"size_bytes": 18814, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Germany_2006.jpg_85f0.html"} +{"size_bytes": 51423, "category": "web-index", "path": "articles/\u20ac/2/_/Talk~\u20ac2_commemorative_coins.html"} +{"size_bytes": 16184, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Belgium_2005.jpg_b380.html"} +{"size_bytes": 14970, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Luxembourg_2004.jpg_e2f2.html"} +{"size_bytes": 22123, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Slovenia_2008.jpg_747a.html"} +{"size_bytes": 17199, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Italy_2008.jpg_e851.html"} +{"size_bytes": 22394, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Luxembourg_2007.jpg_2ab4.html"} +{"size_bytes": 19661, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_San_Marino_2006.jpg_5ac9.html"} +{"size_bytes": 20552, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Netherlands_2007_TOR.jpg_bda9.html"} +{"size_bytes": 14970, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Luxembourg_2005.jpg_055e.html"} +{"size_bytes": 15090, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Italy_2004.jpg_1436.html"} +{"size_bytes": 9479, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Slovenia_2007_TOR.jpg_797f.html"} +{"size_bytes": 20428, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Spain_2007_TOR.jpg_5f75.html"} +{"size_bytes": 9474, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Ireland_2007_TOR.jpg_8ede.html"} +{"size_bytes": 9474, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Germany_2007_TOR.jpg_92f4.html"} +{"size_bytes": 15192, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Finland_2004.jpg_332d.html"} +{"size_bytes": 24673, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Germany_2008.jpg_39a7.html"} +{"size_bytes": 14608, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Vatican_City_2004.jpg_230f.html"} +{"size_bytes": 9474, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Austria_2007_TOR.jpg_0bec.html"} +{"size_bytes": 20252, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_San_Marino_2005.jpg_2b43.html"} +{"size_bytes": 9454, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Vatican_2007.jpg_9ad9.html"} +{"size_bytes": 22396, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Luxembourg_2008.jpg_2394.html"} +{"size_bytes": 24219, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Finland_2006.jpg_f56c.html"} +{"size_bytes": 16968, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Belgium_2006.jpg_5a28.html"} +{"size_bytes": 22125, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Vatican_City_2008.jpg_17a4.html"} +{"size_bytes": 209291, "category": "web-index", "path": "articles/\u20ac/2/_/Talk~\u20ac2_commemorative_coins_Archive_1_3f00.html"} +{"size_bytes": 9469, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Greece_2007_TOR.jpg_d307.html"} +{"size_bytes": 25703, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Germany_2009.jpg_e9bc.html"} +{"size_bytes": 20428, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Italy_2007_TOR.jpg_f81b.html"} +{"size_bytes": 20596, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Slovenia_2007_TOR.jpg_cdc6.html"} +{"size_bytes": 20443, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Greece_2007_TOR.jpg_b22f.html"} +{"size_bytes": 26534, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Vatican_City_2005.jpg_6cb3.html"} +{"size_bytes": 23726, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Portugal_2008.jpg_f9dc.html"} +{"size_bytes": 14726, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Luxembourg_2006.jpg_6feb.html"} +{"size_bytes": 15258, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Italy_2005.jpg_e126.html"} +{"size_bytes": 20464, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Ireland_2007_TOR.jpg_ef7b.html"} +{"size_bytes": 20436, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Vatican_2007.jpg_06f0.html"} +{"size_bytes": 20467, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Germany_2007_TOR.jpg_9731.html"} +{"size_bytes": 20470, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Finland_2007_TOR.jpg_c0e5.html"} +{"size_bytes": 20678, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Austria_2007_TOR.jpg_d4d9.html"} +{"size_bytes": 9474, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Finland_2007_TOR.jpg_37e3.html"} +{"size_bytes": 30564, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_SanMarino_2007.jpg_6ea3.html"} +{"size_bytes": 15020, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Italy_2006.jpg_15fe.html"} +{"size_bytes": 16243, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Belgium_2008.jpg_5085.html"} +{"size_bytes": 9474, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Belgium_2007_TOR.jpg_7366.html"} +{"size_bytes": 24156, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Monaco.jpg_5c9c.html"} +{"size_bytes": 9454, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Germany_2007.jpg_8f8d.html"} +{"size_bytes": 304503, "category": "web-index", "path": "articles/\u20ac/2/_/\u20ac2_commemorative_coins.html"} +{"size_bytes": 15050, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_Spain_2005.jpg_c1d5.html"} +{"size_bytes": 20830, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_San_Marino_2004.jpg_c803.html"} +{"size_bytes": 21206, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_UEM_2009_General.jpg_f00d.html"} +{"size_bytes": 9469, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Luxembourg_2007.jpg_26a4.html"} +{"size_bytes": 464, "category": "web-index", "path": "articles/\u20ac/2/_/\u20ac2.html"} +{"size_bytes": 9464, "category": "web-index", "path": "articles/\u20ac/2/_/Image_talk~\u20ac2_commemorative_coin_Spain_2007_TOR.jpg_fe36.html"} +{"size_bytes": 15602, "category": "web-index", "path": "articles/\u20ac/2/_/Image~\u20ac2_commemorative_coin_TOR_2007_General.jpg_fbae.html"} +{"size_bytes": 11371, "category": "web-index", "path": "articles/\u20ac/_/_/Talk~\u20ac.html"} +{"size_bytes": 455, "category": "web-index", "path": "articles/\u20ac/_/_/\u20ac.html"} +{"size_bytes": 14124, "category": "web-index", "path": "articles/\u20ac/_/d/Image~\u20ac_defined.jpg.html"} +{"size_bytes": 440, "category": "web-index", "path": "articles/\u20ac/u/r/\u20acuro.html"} +{"size_bytes": 468, "category": "web-index", "path": "articles/\u20ac/u/r/\u20acuroMayDay_2831.html"} +{"size_bytes": 440, "category": "web-index", "path": "articles/\u20ac/u/r/\u20acUR_c626.html"} +{"size_bytes": 495, "category": "web-index", "path": "articles/\u20ac/c/_/\u20acC_c900.html"} +{"size_bytes": 476, "category": "web-index", "path": "articles/\u09f2/_/_/\u09f2.html"} +{"size_bytes": 519, "category": "web-index", "path": "articles/\u00a3/5/0/\u00a350.html"} +{"size_bytes": 9228, "category": "web-index", "path": "articles/\u00a3/5/_/\u00a35.html"} +{"size_bytes": 497, "category": "web-index", "path": "articles/\u00a3/5/_/\u00a35_Coin_324c.html"} +{"size_bytes": 8560, "category": "web-index", "path": "articles/\u00a3/5/_/Talk~\u00a35.html"} +{"size_bytes": 497, "category": "web-index", "path": "articles/\u00a3/5/_/\u00a35_coin.html"} +{"size_bytes": 24222, "category": "web-index", "path": "articles/\u00a3/s/d/\u00a3sd.html"} +{"size_bytes": 11595, "category": "web-index", "path": "articles/\u00a3/s/d/Talk~\u00a3sd.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u00a3/-/s/\u00a3-stretcher.html"} +{"size_bytes": 523, "category": "web-index", "path": "articles/\u00a3/r/r/Wikipedia~\u00a3RR_6b41.html"} +{"size_bytes": 9263, "category": "web-index", "path": "articles/\u00a3/0/2E/Image_talk~\u00a30.10.JPG_7153.html"} +{"size_bytes": 19272, "category": "web-index", "path": "articles/\u00a3/0/2E/Image~\u00a30.10.JPG_6b0e.html"} +{"size_bytes": 19301, "category": "web-index", "path": "articles/\u00a3/0/2E/Image~\u00a30.05.JPG_a05e.html"} +{"size_bytes": 9263, "category": "web-index", "path": "articles/\u00a3/0/2E/Image_talk~\u00a30.01.JPG_82be.html"} +{"size_bytes": 9263, "category": "web-index", "path": "articles/\u00a3/0/2E/Image_talk~\u00a30.50.JPG_094d.html"} +{"size_bytes": 9263, "category": "web-index", "path": "articles/\u00a3/0/2E/Image_talk~\u00a30.02.JPG_713a.html"} +{"size_bytes": 19300, "category": "web-index", "path": "articles/\u00a3/0/2E/Image~\u00a30.20.JPG_af78.html"} +{"size_bytes": 19031, "category": "web-index", "path": "articles/\u00a3/0/2E/Image~\u00a30.01.JPG_5075.html"} +{"size_bytes": 9263, "category": "web-index", "path": "articles/\u00a3/0/2E/Image_talk~\u00a30.05.JPG_3413.html"} +{"size_bytes": 19288, "category": "web-index", "path": "articles/\u00a3/0/2E/Image~\u00a30.50.JPG_920a.html"} +{"size_bytes": 9263, "category": "web-index", "path": "articles/\u00a3/0/2E/Image_talk~\u00a30.20.JPG_c45d.html"} +{"size_bytes": 18996, "category": "web-index", "path": "articles/\u00a3/0/2E/Image~\u00a30.02.JPG_677b.html"} +{"size_bytes": 470, "category": "web-index", "path": "articles/\u00a3/e/_/\u00a3E_c68f.html"} +{"size_bytes": 485, "category": "web-index", "path": "articles/\u00a3/i/n/\u00a3inux.html"} +{"size_bytes": 519, "category": "web-index", "path": "articles/\u00a3/1/0/\u00a310.html"} +{"size_bytes": 15599, "category": "web-index", "path": "articles/\u00a3/1/,/Image~\u00a31,000,000_BankNote_Stories.jpg_5e86.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/\u00a3/1/_/\u00a31_shop.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u00a3/1/_/\u00a31_coin.html"} +{"size_bytes": 494, "category": "web-index", "path": "articles/\u00a3/1/_/\u00a31.html"} +{"size_bytes": 536, "category": "web-index", "path": "articles/\u00a3/2/5/\u00a3250,000.html"} +{"size_bytes": 519, "category": "web-index", "path": "articles/\u00a3/2/0/\u00a320.html"} +{"size_bytes": 9845, "category": "web-index", "path": "articles/\u00a3/2/0/User_talk~\u00a320.html"} +{"size_bytes": 18274, "category": "web-index", "path": "articles/\u00a3/2/_/Image~\u00a32_Commonwealth_Games_W-issue.jpg_7de5.html"} +{"size_bytes": 467, "category": "web-index", "path": "articles/\u00a3/2/_/\u00a32_shop.html"} +{"size_bytes": 18291, "category": "web-index", "path": "articles/\u00a3/2/_/Image~\u00a32_Commonwealth_Games_NI-issue.jpg_550d.html"} +{"size_bytes": 494, "category": "web-index", "path": "articles/\u00a3/2/_/\u00a32.html"} +{"size_bytes": 494, "category": "web-index", "path": "articles/\u00a3/2/_/\u00a32_coin.html"} +{"size_bytes": 15567, "category": "web-index", "path": "articles/\u00a3/_/(/Talk~\u00a3_(currency).html"} +{"size_bytes": 484, "category": "web-index", "path": "articles/\u00a3/_/(/\u00a3_(currency).html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u00a3/_/(/\u00a3_(disambiguation).html"} +{"size_bytes": 516, "category": "web-index", "path": "articles/\u00a3/_/(/Talk~\u00a3_(disambiguation).html"} +{"size_bytes": 7290, "category": "web-index", "path": "articles/\u00a3/_/_/Template~\u00a3.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u00a3/_/_/\u00a3.html"} +{"size_bytes": 10764, "category": "web-index", "path": "articles/\u00a3/_/_/User~\u00a3.html"} +{"size_bytes": 25766, "category": "web-index", "path": "articles/\u00a3/_/_/User_talk~\u00a3.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/\u00a3/_/_/Talk~\u00a3.html"} +{"size_bytes": 487, "category": "web-index", "path": "articles/\u00a3/_/\u2022/Talk~\u00a3_\u2022.html"} +{"size_bytes": 458, "category": "web-index", "path": "articles/\u00a3/_/\u2022/\u00a3_\u2022.html"} +{"size_bytes": 9629, "category": "web-index", "path": "articles/\u00a3/u/k/User_talk~\u00a3ukasz.html"} +{"size_bytes": 452, "category": "web-index", "path": "articles/\u20a9/_/_/\u20a9.html"} +{"size_bytes": 2138, "category": "aurpkg", "path": "packages"} +{"size_bytes": 4099516, "category": "file-enc", "path": "pcaps/http-cheez101.pcapng"} +{"size_bytes": 35642028, "category": "file-enc", "path": "pcaps/general101d.pcapng"} +{"size_bytes": 3842232, "category": "file-enc", "path": "pcaps/http-pictures101.pcapng"} +{"size_bytes": 366552, "category": "file-enc", "path": "pcaps/http-pcaprnet101.pcapng"} +{"size_bytes": 27999740, "category": "file-enc", "path": "pcaps/http-download101c.pcapng"} +{"size_bytes": 1228104, "category": "file-enc", "path": "pcaps/ftp-passwords101.pcapng"} +{"size_bytes": 74584, "category": "file-enc", "path": "pcaps/mybackground101.pcapng"} +{"size_bytes": 893560, "category": "file-enc", "path": "pcaps/challenge101-7.pcapng"} +{"size_bytes": 91256, "category": "file-enc", "path": "pcaps/http-openoffice101a.pcapng"} +{"size_bytes": 24927920, "category": "file-enc", "path": "pcaps/ftp-download101.pcapng"} +{"size_bytes": 7426036, "category": "file-enc", "path": "pcaps/tr-winsize.pcapng"} +{"size_bytes": 764512, "category": "file-enc", "path": "pcaps/http-au101b.pcapng"} +{"size_bytes": 6142828, "category": "file-enc", "path": "pcaps/ftp-clientside101.pcapng"} +{"size_bytes": 94036, "category": "file-enc", "path": "pcaps/general101.pcapng"} +{"size_bytes": 257432, "category": "file-enc", "path": "pcaps/split250_00002_20160704110759.pcapng"} +{"size_bytes": 172152360, "category": "file-enc", "path": "pcaps/http-download-a.pcapng"} +{"size_bytes": 555592, "category": "file-enc", "path": "pcaps/challenge101-4.pcapng"} +{"size_bytes": 160364, "category": "file-enc", "path": "pcaps/sec-concern101.pcapng"} +{"size_bytes": 7500, "category": "file-enc", "path": "pcaps/dns-nmap101.pcapng"} +{"size_bytes": 268, "category": "file-enc", "path": "pcaps/split250_00005_20160704110804.pcapng"} +{"size_bytes": 88904, "category": "file-enc", "path": "pcaps/net-lost-route.pcapng"} +{"size_bytes": 209236002, "category": "file-enc", "path": "pcaps/4SICS-GeekLounge-151022.pcap"} +{"size_bytes": 387964, "category": "file-enc", "path": "pcaps/http-google101.pcapng"} +{"size_bytes": 25711082, "category": "file-enc", "path": "pcaps/4SICS-GeekLounge-151020.pcap"} +{"size_bytes": 4698292, "category": "file-enc", "path": "pcaps/http-espn101.pcapng"} +{"size_bytes": 638056, "category": "file-enc", "path": "pcaps/challenge101-3.pcapng"} +{"size_bytes": 5696, "category": "file-enc", "path": "pcaps/dhcp-serverdiscovery101.pcapng"} +{"size_bytes": 225980, "category": "file-enc", "path": "pcaps/challenge101-0.pcapng"} +{"size_bytes": 22678456, "category": "file-enc", "path": "pcaps/http-download101d.pcapng"} +{"size_bytes": 2457604, "category": "file-enc", "path": "pcaps/challenge101-5.pcapng"} +{"size_bytes": 826132, "category": "file-enc", "path": "pcaps/challenge101-1.pcapng"} +{"size_bytes": 858004, "category": "file-enc", "path": "pcaps/http-browse101c.pcapng"} +{"size_bytes": 21210804, "category": "file-enc", "path": "pcaps/http-wiresharkdownload101.pcapng"} +{"size_bytes": 969876, "category": "file-enc", "path": "pcaps/http-chappellu101.pcapng"} +{"size_bytes": 1951400, "category": "file-enc", "path": "pcaps/ftp-crack101.pcapng"} +{"size_bytes": 123148, "category": "file-enc", "path": "pcaps/sec-suspicious101.pcapng"} +{"size_bytes": 1757956, "category": "file-enc", "path": "pcaps/http-college101.pcapng"} +{"size_bytes": 523829292, "category": "file-enc", "path": "pcaps/f5-honeypot-release.pcap"} +{"size_bytes": 4268288, "category": "file-enc", "path": "pcaps/tcp-decodeas.pcapng"} +{"size_bytes": 3317236, "category": "file-enc", "path": "pcaps/gen-startupchatty101.pcapng"} +{"size_bytes": 952652, "category": "file-enc", "path": "pcaps/challenge101-6.pcapng"} +{"size_bytes": 458992, "category": "file-enc", "path": "pcaps/general101c.pcapng"} +{"size_bytes": 208, "category": "file-enc", "path": "pcaps/README"} +{"size_bytes": 629372, "category": "file-enc", "path": "pcaps/http-chappellu101b.pcapng"} +{"size_bytes": 258568, "category": "file-enc", "path": "pcaps/split250_00003_20160704110759.pcapng"} +{"size_bytes": 19505700, "category": "file-enc", "path": "pcaps/http-openoffice101b.pcapng"} +{"size_bytes": 5812132, "category": "file-enc", "path": "pcaps/http-download101.pcapng"} +{"size_bytes": 1759788, "category": "file-enc", "path": "pcaps/http-browse101.pcapng"} +{"size_bytes": 254756, "category": "file-enc", "path": "pcaps/sec-nessus101.pcapng"} +{"size_bytes": 1322332, "category": "file-enc", "path": "pcaps/http-slow101.pcapng"} +{"size_bytes": 185476, "category": "file-enc", "path": "pcaps/general101b.pcapng"} +{"size_bytes": 700528, "category": "file-enc", "path": "pcaps/http-nonstandard101.pcapng"} +{"size_bytes": 8400852, "category": "file-enc", "path": "pcaps/http-jezebel101.pcapng"} +{"size_bytes": 120844, "category": "file-enc", "path": "pcaps/http-browse101b.pcapng"} +{"size_bytes": 129164, "category": "file-enc", "path": "pcaps/smb-join101.pcapng"} +{"size_bytes": 55834524, "category": "file-enc", "path": "pcaps/tr-twohosts.pcapng"} +{"size_bytes": 9446292, "category": "file-enc", "path": "pcaps/http-sfgate101.pcapng"} +{"size_bytes": 52152, "category": "file-enc", "path": "pcaps/ftp-bounce.pcapng"} +{"size_bytes": 912668, "category": "file-enc", "path": "pcaps/http-misctraffic101.pcapng"} +{"size_bytes": 1306080, "category": "file-enc", "path": "pcaps/challenge101-8.pcapng"} +{"size_bytes": 66748, "category": "file-enc", "path": "pcaps/wlan-ipadstartstop101.pcapng"} +{"size_bytes": 169856, "category": "file-enc", "path": "pcaps/http-winpcap101.cap"} +{"size_bytes": 858004, "category": "file-enc", "path": "pcaps/http-browse101d.pcapng"} +{"size_bytes": 121076, "category": "file-enc", "path": "pcaps/http-errors101.pcapng"} +{"size_bytes": 267948, "category": "file-enc", "path": "pcaps/split250_00000_20160704110754.pcapng"} +{"size_bytes": 6364504, "category": "file-enc", "path": "pcaps/http-disney101.pcapng"} +{"size_bytes": 176, "category": "file-enc", "path": "pcaps/._f5-honeypot-release.pcap"} +{"size_bytes": 271016, "category": "file-enc", "path": "pcaps/split250_00001_20160704110759.pcapng"} +{"size_bytes": 139998821, "category": "file-enc", "path": "pcaps/4SICS-GeekLounge-151021.pcap"} +{"size_bytes": 249788, "category": "file-enc", "path": "pcaps/split250_00004_20160704110759.pcapng"} +{"size_bytes": 240003699, "category": "bio", "path": "HG00614.bam"} +{"size_bytes": 3081009000, "category": "oneliners", "path": "3G.txt"} +{"size_bytes": 0, "category": "oneliners", "path": "all_cmdsx100.txt"} +{"size_bytes": 0, "category": "oneliners", "path": "all_cmds.txt"} +{"size_bytes": 1027003, "category": "oneliners", "path": "1M.txt"} +{"size_bytes": 6830085, "category": "oneliners", "path": "dict.txt"} +{"size_bytes": 1027003000, "category": "oneliners", "path": "1G.txt"} +{"size_bytes": 709652329, "category": "oneliners", "path": "logs-popcount-org.txt"} +{"size_bytes": 8595, "category": "riker", "path": "scripts/xz-clang/dev/PACKAGERS"} +{"size_bytes": 23155, "category": "riker", "path": "scripts/xz-clang/dev/CMakeLists.txt"} +{"size_bytes": 35147, "category": "riker", "path": "scripts/xz-clang/dev/COPYING.GPLv3"} +{"size_bytes": 18092, "category": "riker", "path": "scripts/xz-clang/dev/COPYING.GPLv2"} +{"size_bytes": 4040, "category": "riker", "path": "scripts/xz-clang/dev/TODO"} +{"size_bytes": 15756, "category": "riker", "path": "scripts/xz-clang/dev/INSTALL.generic"} +{"size_bytes": 2673, "category": "riker", "path": "scripts/xz-clang/dev/THANKS"} +{"size_bytes": 28925, "category": "riker", "path": "scripts/xz-clang/dev/INSTALL"} +{"size_bytes": 1100, "category": "riker", "path": "scripts/xz-clang/dev/.gitignore"} +{"size_bytes": 248, "category": "riker", "path": "scripts/xz-clang/dev/ChangeLog"} +{"size_bytes": 1043, "category": "riker", "path": "scripts/xz-clang/dev/AUTHORS"} +{"size_bytes": 26530, "category": "riker", "path": "scripts/xz-clang/dev/COPYING.LGPLv2.1"} +{"size_bytes": 26012, "category": "riker", "path": "scripts/xz-clang/dev/NEWS"} +{"size_bytes": 9936, "category": "riker", "path": "scripts/xz-clang/dev/README"} +{"size_bytes": 2775, "category": "riker", "path": "scripts/xz-clang/dev/COPYING"} +{"size_bytes": 50472, "category": "riker", "path": "scripts/xz-clang/dev/Doxyfile.in"} +{"size_bytes": 2961, "category": "riker", "path": "scripts/xz-clang/dev/Makefile.am"} +{"size_bytes": 957, "category": "riker", "path": "scripts/xz-clang/dev/autogen.sh"} +{"size_bytes": 29450, "category": "riker", "path": "scripts/xz-clang/dev/configure.ac"} +{"size_bytes": 73, "category": "riker", "path": "scripts/xz-clang/dev/.git/description"} +{"size_bytes": 256, "category": "riker", "path": "scripts/xz-clang/dev/.git/config"} +{"size_bytes": 4926, "category": "riker", "path": "scripts/xz-clang/dev/.git/packed-refs"} +{"size_bytes": 38908, "category": "riker", "path": "scripts/xz-clang/dev/.git/index"} +{"size_bytes": 41, "category": "riker", "path": "scripts/xz-clang/dev/.git/HEAD"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz-clang/dev/.git/refs/remotes/origin/HEAD"} +{"size_bytes": 41, "category": "riker", "path": "scripts/xz-clang/dev/.git/refs/heads/master"} +{"size_bytes": 240, "category": "riker", "path": "scripts/xz-clang/dev/.git/info/exclude"} +{"size_bytes": 5134206, "category": "riker", "path": "scripts/xz-clang/dev/.git/objects/pack/pack-f11289bfbb30370d0e09a63928ad71f3d13fd7e2.pack"} +{"size_bytes": 63764, "category": "riker", "path": "scripts/xz-clang/dev/.git/objects/pack/pack-f11289bfbb30370d0e09a63928ad71f3d13fd7e2.rev"} +{"size_bytes": 447056, "category": "riker", "path": "scripts/xz-clang/dev/.git/objects/pack/pack-f11289bfbb30370d0e09a63928ad71f3d13fd7e2.idx"} +{"size_bytes": 189, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/post-update.sample"} +{"size_bytes": 416, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/pre-merge-commit.sample"} +{"size_bytes": 544, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/pre-receive.sample"} +{"size_bytes": 1643, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/pre-commit.sample"} +{"size_bytes": 3650, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/update.sample"} +{"size_bytes": 1492, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/prepare-commit-msg.sample"} +{"size_bytes": 478, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/applypatch-msg.sample"} +{"size_bytes": 2783, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/push-to-checkout.sample"} +{"size_bytes": 4898, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/pre-rebase.sample"} +{"size_bytes": 2308, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/sendemail-validate.sample"} +{"size_bytes": 1374, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/pre-push.sample"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/pre-applypatch.sample"} +{"size_bytes": 4726, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/fsmonitor-watchman.sample"} +{"size_bytes": 896, "category": "riker", "path": "scripts/xz-clang/dev/.git/hooks/commit-msg.sample"} +{"size_bytes": 379, "category": "riker", "path": "scripts/xz-clang/dev/.git/logs/HEAD"} +{"size_bytes": 175, "category": "riker", "path": "scripts/xz-clang/dev/.git/logs/refs/remotes/origin/HEAD"} +{"size_bytes": 175, "category": "riker", "path": "scripts/xz-clang/dev/.git/logs/refs/heads/master"} +{"size_bytes": 643, "category": "riker", "path": "scripts/xz-clang/dev/cmake/tuklib_mbstr.cmake"} +{"size_bytes": 5928, "category": "riker", "path": "scripts/xz-clang/dev/cmake/tuklib_cpucores.cmake"} +{"size_bytes": 1593, "category": "riker", "path": "scripts/xz-clang/dev/cmake/tuklib_common.cmake"} +{"size_bytes": 627, "category": "riker", "path": "scripts/xz-clang/dev/cmake/tuklib_progname.cmake"} +{"size_bytes": 4677, "category": "riker", "path": "scripts/xz-clang/dev/cmake/tuklib_physmem.cmake"} +{"size_bytes": 4200, "category": "riker", "path": "scripts/xz-clang/dev/cmake/tuklib_integer.cmake"} +{"size_bytes": 4720, "category": "riker", "path": "scripts/xz-clang/dev/windows/README-Windows.txt"} +{"size_bytes": 1864, "category": "riker", "path": "scripts/xz-clang/dev/windows/INSTALL-MSVC.txt"} +{"size_bytes": 5264, "category": "riker", "path": "scripts/xz-clang/dev/windows/INSTALL-MinGW.txt"} +{"size_bytes": 6243, "category": "riker", "path": "scripts/xz-clang/dev/windows/build.bash"} +{"size_bytes": 21953, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2019/liblzma.vcxproj"} +{"size_bytes": 23574, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2019/liblzma_dll.vcxproj"} +{"size_bytes": 2893, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2019/xz_win.sln"} +{"size_bytes": 4117, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2019/config.h"} +{"size_bytes": 21884, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2017/liblzma.vcxproj"} +{"size_bytes": 23505, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2017/liblzma_dll.vcxproj"} +{"size_bytes": 2758, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2017/xz_win.sln"} +{"size_bytes": 4117, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2017/config.h"} +{"size_bytes": 21883, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2013/liblzma.vcxproj"} +{"size_bytes": 23504, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2013/liblzma_dll.vcxproj"} +{"size_bytes": 2759, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2013/xz_win.sln"} +{"size_bytes": 4117, "category": "riker", "path": "scripts/xz-clang/dev/windows/vs2013/config.h"} +{"size_bytes": 4939, "category": "riker", "path": "scripts/xz-clang/dev/m4/tuklib_physmem.m4"} +{"size_bytes": 462, "category": "riker", "path": "scripts/xz-clang/dev/m4/.gitignore"} +{"size_bytes": 3425, "category": "riker", "path": "scripts/xz-clang/dev/m4/tuklib_integer.m4"} +{"size_bytes": 364, "category": "riker", "path": "scripts/xz-clang/dev/m4/tuklib_common.m4"} +{"size_bytes": 853, "category": "riker", "path": "scripts/xz-clang/dev/m4/tuklib_mbstr.m4"} +{"size_bytes": 3265, "category": "riker", "path": "scripts/xz-clang/dev/m4/visibility.m4"} +{"size_bytes": 4774, "category": "riker", "path": "scripts/xz-clang/dev/m4/tuklib_cpucores.m4"} +{"size_bytes": 1713, "category": "riker", "path": "scripts/xz-clang/dev/m4/posix-shell.m4"} +{"size_bytes": 567, "category": "riker", "path": "scripts/xz-clang/dev/m4/tuklib_progname.m4"} +{"size_bytes": 21970, "category": "riker", "path": "scripts/xz-clang/dev/m4/ax_pthread.m4"} +{"size_bytes": 2656, "category": "riker", "path": "scripts/xz-clang/dev/m4/getopt.m4"} +{"size_bytes": 3122, "category": "riker", "path": "scripts/xz-clang/dev/m4/ax_check_capsicum.m4"} +{"size_bytes": 5689, "category": "riker", "path": "scripts/xz-clang/dev/doc/lzma-file-format.txt"} +{"size_bytes": 43305, "category": "riker", "path": "scripts/xz-clang/dev/doc/xz-file-format.txt"} +{"size_bytes": 9411, "category": "riker", "path": "scripts/xz-clang/dev/doc/faq.txt"} +{"size_bytes": 7427, "category": "riker", "path": "scripts/xz-clang/dev/doc/history.txt"} +{"size_bytes": 3130, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples_old/xz_pipe_decomp.c"} +{"size_bytes": 3043, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples_old/xz_pipe_comp.c"} +{"size_bytes": 337, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples/Makefile"} +{"size_bytes": 8913, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples/02_decompress.c"} +{"size_bytes": 9534, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples/01_compress_easy.c"} +{"size_bytes": 5025, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples/03_compress_custom.c"} +{"size_bytes": 1037, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples/00_README.txt"} +{"size_bytes": 5214, "category": "riker", "path": "scripts/xz-clang/dev/doc/examples/04_compress_easy_mt.c"} +{"size_bytes": 36283, "category": "riker", "path": "scripts/xz-clang/dev/po/vi.po"} +{"size_bytes": 33980, "category": "riker", "path": "scripts/xz-clang/dev/po/pl.po"} +{"size_bytes": 257, "category": "riker", "path": "scripts/xz-clang/dev/po/POTFILES.in"} +{"size_bytes": 34663, "category": "riker", "path": "scripts/xz-clang/dev/po/it.po"} +{"size_bytes": 344, "category": "riker", "path": "scripts/xz-clang/dev/po/.gitignore"} +{"size_bytes": 33890, "category": "riker", "path": "scripts/xz-clang/dev/po/cs.po"} +{"size_bytes": 32637, "category": "riker", "path": "scripts/xz-clang/dev/po/zh_CN.po"} +{"size_bytes": 1957, "category": "riker", "path": "scripts/xz-clang/dev/po/Makevars"} +{"size_bytes": 36129, "category": "riker", "path": "scripts/xz-clang/dev/po/de.po"} +{"size_bytes": 27713, "category": "riker", "path": "scripts/xz-clang/dev/po/da.po"} +{"size_bytes": 33664, "category": "riker", "path": "scripts/xz-clang/dev/po/fi.po"} +{"size_bytes": 34845, "category": "riker", "path": "scripts/xz-clang/dev/po/hu.po"} +{"size_bytes": 31816, "category": "riker", "path": "scripts/xz-clang/dev/po/zh_TW.po"} +{"size_bytes": 35592, "category": "riker", "path": "scripts/xz-clang/dev/po/pt_BR.po"} +{"size_bytes": 45, "category": "riker", "path": "scripts/xz-clang/dev/po/LINGUAS"} +{"size_bytes": 35769, "category": "riker", "path": "scripts/xz-clang/dev/po/fr.po"} +{"size_bytes": 822, "category": "riker", "path": "scripts/xz-clang/dev/src/Makefile.am"} +{"size_bytes": 2338, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/liblzma.map"} +{"size_bytes": 410, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/liblzma.pc.in"} +{"size_bytes": 1509, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/validate_map.sh"} +{"size_bytes": 287, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/liblzma_w32res.rc"} +{"size_bytes": 3375, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/Makefile.am"} +{"size_bytes": 429, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/Makefile.inc"} +{"size_bytes": 889, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_private.h"} +{"size_bytes": 3435, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_encoder.c"} +{"size_bytes": 1910, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_decoder.c"} +{"size_bytes": 736, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_decoder.h"} +{"size_bytes": 676, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_encoder.h"} +{"size_bytes": 1914, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_common.c"} +{"size_bytes": 542, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/delta/delta_common.h"} +{"size_bytes": 833, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/Makefile.inc"} +{"size_bytes": 2006, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/sparc.c"} +{"size_bytes": 3575, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/x86.c"} +{"size_bytes": 2171, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_coder.h"} +{"size_bytes": 2211, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_private.h"} +{"size_bytes": 1936, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/powerpc.c"} +{"size_bytes": 1906, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/armthumb.c"} +{"size_bytes": 622, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_decoder.h"} +{"size_bytes": 1686, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/arm.c"} +{"size_bytes": 982, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_decoder.c"} +{"size_bytes": 8705, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_coder.c"} +{"size_bytes": 641, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_encoder.h"} +{"size_bytes": 2740, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/ia64.c"} +{"size_bytes": 983, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/simple/simple_encoder.c"} +{"size_bytes": 27321, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_decoder.c"} +{"size_bytes": 873, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/Makefile.inc"} +{"size_bytes": 3996, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/fastpos.h"} +{"size_bytes": 819, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma2_decoder.h"} +{"size_bytes": 23286, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_encoder_optimum_normal.c"} +{"size_bytes": 33959, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/fastpos_table.c"} +{"size_bytes": 1554, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_decoder.h"} +{"size_bytes": 7576, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma2_decoder.c"} +{"size_bytes": 18518, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_encoder.c"} +{"size_bytes": 1606, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_encoder.h"} +{"size_bytes": 4402, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_encoder_optimum_fast.c"} +{"size_bytes": 10500, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma2_encoder.c"} +{"size_bytes": 6947, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_common.h"} +{"size_bytes": 3911, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_encoder_private.h"} +{"size_bytes": 1268, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/fastpos_tablegen.c"} +{"size_bytes": 1763, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma_encoder_presets.c"} +{"size_bytes": 1186, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lzma/lzma2_encoder.h"} +{"size_bytes": 4424, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_decoder.c"} +{"size_bytes": 35440, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/index.c"} +{"size_bytes": 4902, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/auto_decoder.c"} +{"size_bytes": 4056, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_buffer_encoder.c"} +{"size_bytes": 1881, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/Makefile.inc"} +{"size_bytes": 1935, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/vli_encoder.c"} +{"size_bytes": 1537, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_buffer_encoder.c"} +{"size_bytes": 840, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/easy_buffer_encoder.c"} +{"size_bytes": 1890, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_encoder.h"} +{"size_bytes": 10652, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/common.c"} +{"size_bytes": 630, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/vli_size.c"} +{"size_bytes": 4998, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/outqueue.h"} +{"size_bytes": 13001, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_decoder.c"} +{"size_bytes": 526, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/hardware_cputhreads.c"} +{"size_bytes": 1187, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_flags_decoder.c"} +{"size_bytes": 5662, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/alone_decoder.c"} +{"size_bytes": 3751, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/alone_encoder.c"} +{"size_bytes": 30356, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_encoder_mt.c"} +{"size_bytes": 1978, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/index.h"} +{"size_bytes": 2640, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_util.c"} +{"size_bytes": 9856, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_encoder.c"} +{"size_bytes": 2785, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_buffer_decoder.c"} +{"size_bytes": 2059, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_flags_encoder.c"} +{"size_bytes": 763, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_buffer_encoder.h"} +{"size_bytes": 1407, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_flags_encoder.c"} +{"size_bytes": 8706, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_common.c"} +{"size_bytes": 10123, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_buffer_encoder.c"} +{"size_bytes": 599, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_decoder.h"} +{"size_bytes": 4819, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/memcmplen.h"} +{"size_bytes": 10467, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/common.h"} +{"size_bytes": 8605, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/index_decoder.c"} +{"size_bytes": 6988, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_decoder.c"} +{"size_bytes": 2279, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_flags_decoder.c"} +{"size_bytes": 601, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/alone_decoder.h"} +{"size_bytes": 576, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_decoder.h"} +{"size_bytes": 668, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/easy_decoder_memusage.c"} +{"size_bytes": 678, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/easy_encoder.c"} +{"size_bytes": 2559, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/vli_decoder.c"} +{"size_bytes": 921, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/easy_preset.h"} +{"size_bytes": 654, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/easy_encoder_memusage.c"} +{"size_bytes": 683, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/hardware_physmem.c"} +{"size_bytes": 5766, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_encoder.c"} +{"size_bytes": 727, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/easy_preset.c"} +{"size_bytes": 617, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_decoder.h"} +{"size_bytes": 8981, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/index_hash.c"} +{"size_bytes": 732, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_encoder.h"} +{"size_bytes": 2510, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_buffer_decoder.c"} +{"size_bytes": 1326, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_flags_common.c"} +{"size_bytes": 584, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/index_encoder.h"} +{"size_bytes": 3346, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_header_encoder.c"} +{"size_bytes": 883, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/stream_flags_common.h"} +{"size_bytes": 4586, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/outqueue.c"} +{"size_bytes": 7345, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_encoder.c"} +{"size_bytes": 1258, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/filter_common.h"} +{"size_bytes": 3710, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_header_decoder.c"} +{"size_bytes": 2368, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/block_buffer_decoder.c"} +{"size_bytes": 5853, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/common/index_encoder.c"} +{"size_bytes": 9866, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma.h"} +{"size_bytes": 409, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/Makefile.am"} +{"size_bytes": 24858, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/base.h"} +{"size_bytes": 3914, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/index_hash.h"} +{"size_bytes": 8253, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/stream_flags.h"} +{"size_bytes": 6546, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/vli.h"} +{"size_bytes": 2604, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/hardware.h"} +{"size_bytes": 22107, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/block.h"} +{"size_bytes": 4255, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/check.h"} +{"size_bytes": 16520, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/filter.h"} +{"size_bytes": 23491, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/index.h"} +{"size_bytes": 2630, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/bcj.h"} +{"size_bytes": 1865, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/delta.h"} +{"size_bytes": 14744, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/lzma12.h"} +{"size_bytes": 24844, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/container.h"} +{"size_bytes": 3497, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/api/lzma/version.h"} +{"size_bytes": 4616, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/range_encoder.h"} +{"size_bytes": 827, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/price_table.c"} +{"size_bytes": 432, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/Makefile.inc"} +{"size_bytes": 5009, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/range_decoder.h"} +{"size_bytes": 2317, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/range_common.h"} +{"size_bytes": 2013, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/price.h"} +{"size_bytes": 1768, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/rangecoder/price_tablegen.c"} +{"size_bytes": 380, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/Makefile.inc"} +{"size_bytes": 10458, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_encoder.h"} +{"size_bytes": 3539, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_encoder_hash.h"} +{"size_bytes": 9130, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_decoder.c"} +{"size_bytes": 5841, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_decoder.h"} +{"size_bytes": 17392, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_encoder.c"} +{"size_bytes": 3252, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_encoder_hash_table.h"} +{"size_bytes": 17379, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/lz/lz_encoder_mf.c"} +{"size_bytes": 970, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/Makefile.inc"} +{"size_bytes": 2245, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_tablegen.c"} +{"size_bytes": 5405, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/sha256.c"} +{"size_bytes": 787, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc_macros.h"} +{"size_bytes": 4718, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/check.h"} +{"size_bytes": 25758, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_table_be.h"} +{"size_bytes": 1044, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_small.c"} +{"size_bytes": 31882, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_table_le.h"} +{"size_bytes": 31882, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_table_be.h"} +{"size_bytes": 2277, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_fast.c"} +{"size_bytes": 7228, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_x86.S"} +{"size_bytes": 2910, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/check.c"} +{"size_bytes": 641, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_table.c"} +{"size_bytes": 6761, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_x86.S"} +{"size_bytes": 1744, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_tablegen.c"} +{"size_bytes": 641, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_table.c"} +{"size_bytes": 966, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_small.c"} +{"size_bytes": 1640, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc64_fast.c"} +{"size_bytes": 25758, "category": "riker", "path": "scripts/xz-clang/dev/src/liblzma/check/crc32_table_le.h"} +{"size_bytes": 12051, "category": "riker", "path": "scripts/xz-clang/dev/src/common/mythread.h"} +{"size_bytes": 1136, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_progname.c"} +{"size_bytes": 2881, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_mbstr.h"} +{"size_bytes": 745, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_mbstr_fw.c"} +{"size_bytes": 17067, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_integer.h"} +{"size_bytes": 121, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_config.h"} +{"size_bytes": 1060, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_gettext.h"} +{"size_bytes": 1547, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_exit.c"} +{"size_bytes": 1518, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_mbstr_width.c"} +{"size_bytes": 1461, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_open_stdxxx.c"} +{"size_bytes": 1902, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_common.h"} +{"size_bytes": 706, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_exit.h"} +{"size_bytes": 5786, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_physmem.c"} +{"size_bytes": 4914, "category": "riker", "path": "scripts/xz-clang/dev/src/common/sysdefs.h"} +{"size_bytes": 1311, "category": "riker", "path": "scripts/xz-clang/dev/src/common/common_w32res.rc"} +{"size_bytes": 763, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_physmem.h"} +{"size_bytes": 817, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_progname.h"} +{"size_bytes": 2357, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_cpucores.c"} +{"size_bytes": 606, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_cpucores.h"} +{"size_bytes": 647, "category": "riker", "path": "scripts/xz-clang/dev/src/common/tuklib_open_stdxxx.h"} +{"size_bytes": 1109, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/suffix.h"} +{"size_bytes": 26013, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/coder.c"} +{"size_bytes": 1945, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/mytime.c"} +{"size_bytes": 4450, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/util.h"} +{"size_bytes": 7709, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/options.c"} +{"size_bytes": 5531, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/file_io.h"} +{"size_bytes": 1481, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/hardware.h"} +{"size_bytes": 34010, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/list.c"} +{"size_bytes": 36623, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/message.c"} +{"size_bytes": 1135, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/args.h"} +{"size_bytes": 298, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/xz_w32res.rc"} +{"size_bytes": 972, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/main.h"} +{"size_bytes": 4945, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/signals.c"} +{"size_bytes": 575, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/list.h"} +{"size_bytes": 2119, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/coder.h"} +{"size_bytes": 36331, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/file_io.c"} +{"size_bytes": 5526, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/message.h"} +{"size_bytes": 10365, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/suffix.c"} +{"size_bytes": 9565, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/main.c"} +{"size_bytes": 7149, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/util.c"} +{"size_bytes": 5174, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/hardware.c"} +{"size_bytes": 17926, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/args.c"} +{"size_bytes": 65014, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/xz.1"} +{"size_bytes": 3100, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/Makefile.am"} +{"size_bytes": 1337, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/private.h"} +{"size_bytes": 1423, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/mytime.h"} +{"size_bytes": 977, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/options.h"} +{"size_bytes": 1473, "category": "riker", "path": "scripts/xz-clang/dev/src/xz/signals.h"} +{"size_bytes": 5668, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzgrep.in"} +{"size_bytes": 6671, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzdiff.in"} +{"size_bytes": 1153, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzmore.1"} +{"size_bytes": 1360, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzless.1"} +{"size_bytes": 1489, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzgrep.1"} +{"size_bytes": 2200, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzmore.in"} +{"size_bytes": 2440, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/Makefile.am"} +{"size_bytes": 1837, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzless.in"} +{"size_bytes": 1469, "category": "riker", "path": "scripts/xz-clang/dev/src/scripts/xzdiff.1"} +{"size_bytes": 297, "category": "riker", "path": "scripts/xz-clang/dev/src/xzdec/lzmadec_w32res.rc"} +{"size_bytes": 7616, "category": "riker", "path": "scripts/xz-clang/dev/src/xzdec/xzdec.c"} +{"size_bytes": 2822, "category": "riker", "path": "scripts/xz-clang/dev/src/xzdec/Makefile.am"} +{"size_bytes": 2838, "category": "riker", "path": "scripts/xz-clang/dev/src/xzdec/xzdec.1"} +{"size_bytes": 291, "category": "riker", "path": "scripts/xz-clang/dev/src/xzdec/xzdec_w32res.rc"} +{"size_bytes": 1250, "category": "riker", "path": "scripts/xz-clang/dev/src/lzmainfo/lzmainfo.1"} +{"size_bytes": 300, "category": "riker", "path": "scripts/xz-clang/dev/src/lzmainfo/lzmainfo_w32res.rc"} +{"size_bytes": 787, "category": "riker", "path": "scripts/xz-clang/dev/src/lzmainfo/Makefile.am"} +{"size_bytes": 4853, "category": "riker", "path": "scripts/xz-clang/dev/src/lzmainfo/lzmainfo.c"} +{"size_bytes": 4796, "category": "riker", "path": "scripts/xz-clang/dev/lib/getopt_int.h"} +{"size_bytes": 8094, "category": "riker", "path": "scripts/xz-clang/dev/lib/getopt.in.h"} +{"size_bytes": 32345, "category": "riker", "path": "scripts/xz-clang/dev/lib/getopt.c"} +{"size_bytes": 4010, "category": "riker", "path": "scripts/xz-clang/dev/lib/getopt1.c"} +{"size_bytes": 1069, "category": "riker", "path": "scripts/xz-clang/dev/lib/Makefile.am"} +{"size_bytes": 1902, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_check.c"} +{"size_bytes": 5506, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_filter_flags.c"} +{"size_bytes": 3492, "category": "riker", "path": "scripts/xz-clang/dev/tests/create_compress_files.c"} +{"size_bytes": 5897, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_block_header.c"} +{"size_bytes": 1280, "category": "riker", "path": "scripts/xz-clang/dev/tests/bcj_test.c"} +{"size_bytes": 1873, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_scripts.sh"} +{"size_bytes": 2793, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_bcj_exact_size.c"} +{"size_bytes": 1388, "category": "riker", "path": "scripts/xz-clang/dev/tests/compress_prepared_bcj_x86"} +{"size_bytes": 1240, "category": "riker", "path": "scripts/xz-clang/dev/tests/compress_prepared_bcj_sparc"} +{"size_bytes": 2405, "category": "riker", "path": "scripts/xz-clang/dev/tests/tests.h"} +{"size_bytes": 18661, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_index.c"} +{"size_bytes": 1022, "category": "riker", "path": "scripts/xz-clang/dev/tests/Makefile.am"} +{"size_bytes": 1069, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_files.sh"} +{"size_bytes": 840, "category": "riker", "path": "scripts/xz-clang/dev/tests/xzgrep_expected_output"} +{"size_bytes": 2992, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_compress.sh"} +{"size_bytes": 4333, "category": "riker", "path": "scripts/xz-clang/dev/tests/test_stream_flags.c"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-3.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-block_header-5.xz"} +{"size_bytes": 716, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-x86-lzma2.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/unsupported-check.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-2-index-1.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-2-lzma2.xz"} +{"size_bytes": 69, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0catpad-empty.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0-nonempty_index.xz"} +{"size_bytes": 96, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-check-sha256.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-stream_flags-2.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-1.xz"} +{"size_bytes": 31, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0-empty-truncated.xz"} +{"size_bytes": 464, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-8.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0-backward_size.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-lzma2-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-check-crc32.xz"} +{"size_bytes": 55, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0cat-alone.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0cat-header_magic.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/unsupported-filter_flags-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/unsupported-filter_flags-2.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-4.xz"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-lzma2-2.xz"} +{"size_bytes": 464, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-lzma2-4.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0-header_magic.xz"} +{"size_bytes": 36, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-0pad-empty.xz"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-lzma2-1.xz"} +{"size_bytes": 51316, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-delta-lzma2.tiff.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-check-crc64.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-stream_flags-1.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-check-none.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-2-index-5.xz"} +{"size_bytes": 52, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-lzma2-5.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-block_header-3.xz"} +{"size_bytes": 76, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-block_header-4.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-block_header-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/unsupported-block_header.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-check-crc64.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-5.xz"} +{"size_bytes": 76, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-vli-2.xz"} +{"size_bytes": 96, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-check-sha256.xz"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-2.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-block_header-2.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-7.xz"} +{"size_bytes": 9042, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/README"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-stream_flags-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-block_header-2.xz"} +{"size_bytes": 528, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-3delta-lzma2.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-block_header-6.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0-footer_magic.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-2-index-4.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-lzma2-6.xz"} +{"size_bytes": 612, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-sparc-lzma2.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-check-crc32.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-vli-1.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-0cat-empty.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/unsupported-filter_flags-1.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-2-compressed_data_padding.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-1-block_header-1.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-0-empty.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/good-0catpad-empty.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-2-index-2.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-1-block_header-1.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-2-index-3.xz"} +{"size_bytes": 37, "category": "riker", "path": "scripts/xz-clang/dev/tests/files/bad-0pad-empty.xz"} +{"size_bytes": 3450, "category": "riker", "path": "scripts/xz-clang/dev/macosx/build.sh"} +{"size_bytes": 694, "category": "riker", "path": "scripts/xz-clang/dev/po4a/po4a.conf"} +{"size_bytes": 1443, "category": "riker", "path": "scripts/xz-clang/dev/po4a/update-po"} +{"size_bytes": 17, "category": "riker", "path": "scripts/xz-clang/dev/po4a/.gitignore"} +{"size_bytes": 201921, "category": "riker", "path": "scripts/xz-clang/dev/po4a/de.po"} +{"size_bytes": 783, "category": "riker", "path": "scripts/xz-clang/dev/build-aux/version.sh"} +{"size_bytes": 1474, "category": "riker", "path": "scripts/xz-clang/dev/build-aux/manconv.sh"} +{"size_bytes": 2490, "category": "riker", "path": "scripts/xz-clang/dev/extra/scanlzma/scanlzma.c"} +{"size_bytes": 3311, "category": "riker", "path": "scripts/xz-clang/dev/extra/7z2lzma/7z2lzma.bash"} +{"size_bytes": 4333, "category": "riker", "path": "scripts/xz-clang/dev/dos/Makefile"} +{"size_bytes": 5281, "category": "riker", "path": "scripts/xz-clang/dev/dos/README.txt"} +{"size_bytes": 3074, "category": "riker", "path": "scripts/xz-clang/dev/dos/INSTALL.txt"} +{"size_bytes": 3943, "category": "riker", "path": "scripts/xz-clang/dev/dos/config.h"} +{"size_bytes": 2252, "category": "riker", "path": "scripts/xz-clang/dev/debug/full_flush.c"} +{"size_bytes": 2880, "category": "riker", "path": "scripts/xz-clang/dev/debug/translation.bash"} +{"size_bytes": 1106, "category": "riker", "path": "scripts/xz-clang/dev/debug/memusage.c"} +{"size_bytes": 2679, "category": "riker", "path": "scripts/xz-clang/dev/debug/sync_flush.c"} +{"size_bytes": 3068, "category": "riker", "path": "scripts/xz-clang/dev/debug/known_sizes.c"} +{"size_bytes": 971, "category": "riker", "path": "scripts/xz-clang/dev/debug/hex2bin.c"} +{"size_bytes": 939, "category": "riker", "path": "scripts/xz-clang/dev/debug/crc32.c"} +{"size_bytes": 647, "category": "riker", "path": "scripts/xz-clang/dev/debug/README"} +{"size_bytes": 921, "category": "riker", "path": "scripts/xz-clang/dev/debug/repeat.c"} +{"size_bytes": 480, "category": "riker", "path": "scripts/xz-clang/dev/debug/Makefile.am"} +{"size_bytes": 358216, "category": "riker", "path": "scripts/lua/lua-5.4.3.tar.gz"} +{"size_bytes": 3146, "category": "riker", "path": "scripts/lua/lua-5.4.3/Makefile"} +{"size_bytes": 151, "category": "riker", "path": "scripts/lua/lua-5.4.3/README"} +{"size_bytes": 3774, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/osi-certified-72x60.png"} +{"size_bytes": 357352, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/manual.html"} +{"size_bytes": 3040, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/lua.1"} +{"size_bytes": 11101, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/readme.html"} +{"size_bytes": 3071, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/luac.1"} +{"size_bytes": 240, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/index.css"} +{"size_bytes": 32484, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/contents.html"} +{"size_bytes": 9893, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/logo.gif"} +{"size_bytes": 256, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/manual.css"} +{"size_bytes": 2225, "category": "riker", "path": "scripts/lua/lua-5.4.3/doc/lua.css"} +{"size_bytes": 1322, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lzio.c"} +{"size_bytes": 13356, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ldblib.c"} +{"size_bytes": 7636, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/Makefile"} +{"size_bytes": 14902, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lbaselib.c"} +{"size_bytes": 22392, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lobject.h"} +{"size_bytes": 2907, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ltm.h"} +{"size_bytes": 5927, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lparser.h"} +{"size_bytes": 9105, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lauxlib.h"} +{"size_bytes": 51130, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lcode.c"} +{"size_bytes": 1703, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lfunc.h"} +{"size_bytes": 3368, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lmem.h"} +{"size_bytes": 1395, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lapi.h"} +{"size_bytes": 6008, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lgc.h"} +{"size_bytes": 3801, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lcode.h"} +{"size_bytes": 21511, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/luaconf.h"} +{"size_bytes": 4836, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lcorolib.c"} +{"size_bytes": 35558, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lapi.c"} +{"size_bytes": 8367, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lfunc.c"} +{"size_bytes": 18884, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lmathlib.c"} +{"size_bytes": 8218, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ltm.c"} +{"size_bytes": 15818, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lua.h"} +{"size_bytes": 1143, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lopnames.h"} +{"size_bytes": 32454, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ldo.c"} +{"size_bytes": 2168, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ldebug.h"} +{"size_bytes": 17095, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/llex.c"} +{"size_bytes": 12716, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lopcodes.h"} +{"size_bytes": 2236, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ltable.h"} +{"size_bytes": 11859, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/loslib.c"} +{"size_bytes": 54654, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lstrlib.c"} +{"size_bytes": 828, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lprefix.h"} +{"size_bytes": 4429, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lvm.h"} +{"size_bytes": 2926, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ldo.h"} +{"size_bytes": 57340, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lvm.c"} +{"size_bytes": 26604, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ldebug.c"} +{"size_bytes": 1663, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ljumptab.h"} +{"size_bytes": 1603, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lstring.h"} +{"size_bytes": 7865, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lundump.c"} +{"size_bytes": 13191, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ltablib.c"} +{"size_bytes": 7499, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lstring.c"} +{"size_bytes": 15145, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/luac.c"} +{"size_bytes": 1116, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lualib.h"} +{"size_bytes": 863, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lundump.h"} +{"size_bytes": 11150, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lstate.c"} +{"size_bytes": 19320, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lua.c"} +{"size_bytes": 31459, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ltable.c"} +{"size_bytes": 18890, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lobject.c"} +{"size_bytes": 8093, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lutf8lib.c"} +{"size_bytes": 15199, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lstate.h"} +{"size_bytes": 191, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lua.hpp"} +{"size_bytes": 4126, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lopcodes.c"} +{"size_bytes": 56053, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lparser.c"} +{"size_bytes": 8639, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/llimits.h"} +{"size_bytes": 2115, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lctype.h"} +{"size_bytes": 56086, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lgc.c"} +{"size_bytes": 32746, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lauxlib.c"} +{"size_bytes": 1621, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/linit.c"} +{"size_bytes": 22058, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/liolib.c"} +{"size_bytes": 5894, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lmem.c"} +{"size_bytes": 1438, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lzio.h"} +{"size_bytes": 4771, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/ldump.c"} +{"size_bytes": 23030, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/loadlib.c"} +{"size_bytes": 2402, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/llex.h"} +{"size_bytes": 2461, "category": "riker", "path": "scripts/lua/lua-5.4.3/src/lctype.c"} +{"size_bytes": 549, "category": "riker", "path": "scripts/memcached/dev/BUILD"} +{"size_bytes": 154746, "category": "riker", "path": "scripts/memcached/dev/Makefile"} +{"size_bytes": 4428, "category": "riker", "path": "scripts/memcached/dev/cache.c"} +{"size_bytes": 1327, "category": "riker", "path": "scripts/memcached/dev/solaris_priv.c"} +{"size_bytes": 36317, "category": "riker", "path": "scripts/memcached/dev/memcached.h"} +{"size_bytes": 3167, "category": "riker", "path": "scripts/memcached/dev/trace.h"} +{"size_bytes": 63824, "category": "riker", "path": "scripts/memcached/dev/items.c"} +{"size_bytes": 3025, "category": "riker", "path": "scripts/memcached/dev/authfile.c"} +{"size_bytes": 3083, "category": "riker", "path": "scripts/memcached/dev/items.h"} +{"size_bytes": 568, "category": "riker", "path": "scripts/memcached/dev/slab_automove.h"} +{"size_bytes": 588, "category": "riker", "path": "scripts/memcached/dev/tls.h"} +{"size_bytes": 49482, "category": "riker", "path": "scripts/memcached/dev/config.guess"} +{"size_bytes": 2118, "category": "riker", "path": "scripts/memcached/dev/bipbuffer.h"} +{"size_bytes": 43323, "category": "riker", "path": "scripts/memcached/dev/aclocal.m4"} +{"size_bytes": 3082, "category": "riker", "path": "scripts/memcached/dev/daemon.c"} +{"size_bytes": 1731, "category": "riker", "path": "scripts/memcached/dev/README.md"} +{"size_bytes": 1331, "category": "riker", "path": "scripts/memcached/dev/util.h"} +{"size_bytes": 4587, "category": "riker", "path": "scripts/memcached/dev/extstore.h"} +{"size_bytes": 4387, "category": "riker", "path": "scripts/memcached/dev/stats_prefix.c"} +{"size_bytes": 246, "category": "riker", "path": "scripts/memcached/dev/slab_automove_extstore.h"} +{"size_bytes": 17285, "category": "riker", "path": "scripts/memcached/dev/crc32c.c"} +{"size_bytes": 921, "category": "riker", "path": "scripts/memcached/dev/openbsd_priv.c"} +{"size_bytes": 28897, "category": "riker", "path": "scripts/memcached/dev/thread.c"} +{"size_bytes": 2251, "category": "riker", "path": "scripts/memcached/dev/HACKING"} +{"size_bytes": 23, "category": "riker", "path": "scripts/memcached/dev/stamp-h1"} +{"size_bytes": 11468, "category": "riker", "path": "scripts/memcached/dev/assoc.c"} +{"size_bytes": 1472, "category": "riker", "path": "scripts/memcached/dev/LICENSE.bipbuffer"} +{"size_bytes": 244, "category": "riker", "path": "scripts/memcached/dev/hash.h"} +{"size_bytes": 37, "category": "riker", "path": "scripts/memcached/dev/version.m4"} +{"size_bytes": 35137, "category": "riker", "path": "scripts/memcached/dev/config.status"} +{"size_bytes": 529, "category": "riker", "path": "scripts/memcached/dev/.gitignore"} +{"size_bytes": 19669, "category": "riker", "path": "scripts/memcached/dev/ChangeLog"} +{"size_bytes": 4963, "category": "riker", "path": "scripts/memcached/dev/logger.h"} +{"size_bytes": 910, "category": "riker", "path": "scripts/memcached/dev/globals.c"} +{"size_bytes": 298, "category": "riker", "path": "scripts/memcached/dev/version.sh"} +{"size_bytes": 822, "category": "riker", "path": "scripts/memcached/dev/itoa_ljust.h"} +{"size_bytes": 10792, "category": "riker", "path": "scripts/memcached/dev/slab_automove_extstore.c"} +{"size_bytes": 69, "category": "riker", "path": "scripts/memcached/dev/AUTHORS"} +{"size_bytes": 89207, "category": "riker", "path": "scripts/memcached/dev/proto_text.c"} +{"size_bytes": 5810, "category": "riker", "path": "scripts/memcached/dev/memcached.spec.in"} +{"size_bytes": 1250, "category": "riker", "path": "scripts/memcached/dev/storage.h"} +{"size_bytes": 25686, "category": "riker", "path": "scripts/memcached/dev/crawler.c"} +{"size_bytes": 50095, "category": "riker", "path": "scripts/memcached/dev/storage.c"} +{"size_bytes": 194, "category": "riker", "path": "scripts/memcached/dev/proto_text.h"} +{"size_bytes": 1772, "category": "riker", "path": "scripts/memcached/dev/LICENSE.itoa_ljust"} +{"size_bytes": 1321, "category": "riker", "path": "scripts/memcached/dev/crawler.h"} +{"size_bytes": 6562, "category": "riker", "path": "scripts/memcached/dev/util.c"} +{"size_bytes": 23, "category": "riker", "path": "scripts/memcached/dev/NEWS"} +{"size_bytes": 284, "category": "riker", "path": "scripts/memcached/dev/proto_bin.h"} +{"size_bytes": 14709, "category": "riker", "path": "scripts/memcached/dev/jenkins_hash.c"} +{"size_bytes": 1503, "category": "riker", "path": "scripts/memcached/dev/COPYING"} +{"size_bytes": 6203, "category": "riker", "path": "scripts/memcached/dev/sasl_defs.c"} +{"size_bytes": 48849, "category": "riker", "path": "scripts/memcached/dev/config.log"} +{"size_bytes": 4365, "category": "riker", "path": "scripts/memcached/dev/cache.h"} +{"size_bytes": 2691, "category": "riker", "path": "scripts/memcached/dev/timedrun.c"} +{"size_bytes": 80841, "category": "riker", "path": "scripts/memcached/dev/testapp.c"} +{"size_bytes": 28207, "category": "riker", "path": "scripts/memcached/dev/logger.c"} +{"size_bytes": 770, "category": "riker", "path": "scripts/memcached/dev/crc32c.h"} +{"size_bytes": 14061, "category": "riker", "path": "scripts/memcached/dev/restart.c"} +{"size_bytes": 215933, "category": "riker", "path": "scripts/memcached/dev/memcached.c"} +{"size_bytes": 1503, "category": "riker", "path": "scripts/memcached/dev/LICENSE"} +{"size_bytes": 5242, "category": "riker", "path": "scripts/memcached/dev/itoa_ljust.c"} +{"size_bytes": 1446, "category": "riker", "path": "scripts/memcached/dev/version.pl"} +{"size_bytes": 1152, "category": "riker", "path": "scripts/memcached/dev/sizes.c"} +{"size_bytes": 260212, "category": "riker", "path": "scripts/memcached/dev/configure"} +{"size_bytes": 423, "category": "riker", "path": "scripts/memcached/dev/docker-compose.yml"} +{"size_bytes": 375, "category": "riker", "path": "scripts/memcached/dev/authfile.h"} +{"size_bytes": 693, "category": "riker", "path": "scripts/memcached/dev/sasl_defs.h"} +{"size_bytes": 16525, "category": "riker", "path": "scripts/memcached/dev/protocol_binary.h"} +{"size_bytes": 681, "category": "riker", "path": "scripts/memcached/dev/murmur3_hash.h"} +{"size_bytes": 46171, "category": "riker", "path": "scripts/memcached/dev/slabs.c"} +{"size_bytes": 213, "category": "riker", "path": "scripts/memcached/dev/jenkins_hash.h"} +{"size_bytes": 5371, "category": "riker", "path": "scripts/memcached/dev/config.h"} +{"size_bytes": 640, "category": "riker", "path": "scripts/memcached/dev/assoc.h"} +{"size_bytes": 31990, "category": "riker", "path": "scripts/memcached/dev/extstore.c"} +{"size_bytes": 62775, "category": "riker", "path": "scripts/memcached/dev/Doxyfile"} +{"size_bytes": 1378, "category": "riker", "path": "scripts/memcached/dev/freebsd_priv.c"} +{"size_bytes": 5164, "category": "riker", "path": "scripts/memcached/dev/Makefile.am"} +{"size_bytes": 8628, "category": "riker", "path": "scripts/memcached/dev/linux_priv.c"} +{"size_bytes": 179234, "category": "riker", "path": "scripts/memcached/dev/Makefile.in"} +{"size_bytes": 7400, "category": "riker", "path": "scripts/memcached/dev/compile"} +{"size_bytes": 1182, "category": "riker", "path": "scripts/memcached/dev/autogen.sh"} +{"size_bytes": 3764, "category": "riker", "path": "scripts/memcached/dev/bipbuffer.c"} +{"size_bytes": 1851, "category": "riker", "path": "scripts/memcached/dev/stats_prefix.h"} +{"size_bytes": 15358, "category": "riker", "path": "scripts/memcached/dev/install-sh"} +{"size_bytes": 5686, "category": "riker", "path": "scripts/memcached/dev/slab_automove.c"} +{"size_bytes": 23568, "category": "riker", "path": "scripts/memcached/dev/depcomp"} +{"size_bytes": 152, "category": "riker", "path": "scripts/memcached/dev/.shipit"} +{"size_bytes": 859, "category": "riker", "path": "scripts/memcached/dev/restart.h"} +{"size_bytes": 6878, "category": "riker", "path": "scripts/memcached/dev/missing"} +{"size_bytes": 556, "category": "riker", "path": "scripts/memcached/dev/hash.c"} +{"size_bytes": 43438, "category": "riker", "path": "scripts/memcached/dev/proto_bin.c"} +{"size_bytes": 2826, "category": "riker", "path": "scripts/memcached/dev/murmur3_hash.c"} +{"size_bytes": 35406, "category": "riker", "path": "scripts/memcached/dev/config.sub"} +{"size_bytes": 8278, "category": "riker", "path": "scripts/memcached/dev/tls.c"} +{"size_bytes": 482, "category": "riker", "path": "scripts/memcached/dev/CONTRIBUTING.md"} +{"size_bytes": 2346, "category": "riker", "path": "scripts/memcached/dev/slabs.h"} +{"size_bytes": 10708, "category": "riker", "path": "scripts/memcached/dev/memcached_dtrace.d"} +{"size_bytes": 5798, "category": "riker", "path": "scripts/memcached/dev/memcached.spec"} +{"size_bytes": 24349, "category": "riker", "path": "scripts/memcached/dev/configure.ac"} +{"size_bytes": 4974, "category": "riker", "path": "scripts/memcached/dev/config.h.in"} +{"size_bytes": 73, "category": "riker", "path": "scripts/memcached/dev/.git/description"} +{"size_bytes": 267, "category": "riker", "path": "scripts/memcached/dev/.git/config"} +{"size_bytes": 12877, "category": "riker", "path": "scripts/memcached/dev/.git/packed-refs"} +{"size_bytes": 18346, "category": "riker", "path": "scripts/memcached/dev/.git/index"} +{"size_bytes": 41, "category": "riker", "path": "scripts/memcached/dev/.git/HEAD"} +{"size_bytes": 32, "category": "riker", "path": "scripts/memcached/dev/.git/refs/remotes/origin/HEAD"} +{"size_bytes": 41, "category": "riker", "path": "scripts/memcached/dev/.git/refs/heads/master"} +{"size_bytes": 240, "category": "riker", "path": "scripts/memcached/dev/.git/info/exclude"} +{"size_bytes": 371428, "category": "riker", "path": "scripts/memcached/dev/.git/objects/pack/pack-674153ddf8c099acaf59f98da9c9ee5089a0df85.idx"} +{"size_bytes": 52960, "category": "riker", "path": "scripts/memcached/dev/.git/objects/pack/pack-674153ddf8c099acaf59f98da9c9ee5089a0df85.rev"} +{"size_bytes": 6493419, "category": "riker", "path": "scripts/memcached/dev/.git/objects/pack/pack-674153ddf8c099acaf59f98da9c9ee5089a0df85.pack"} +{"size_bytes": 189, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/post-update.sample"} +{"size_bytes": 416, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/pre-merge-commit.sample"} +{"size_bytes": 544, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/pre-receive.sample"} +{"size_bytes": 1643, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/pre-commit.sample"} +{"size_bytes": 3650, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/update.sample"} +{"size_bytes": 1492, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/prepare-commit-msg.sample"} +{"size_bytes": 478, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/applypatch-msg.sample"} +{"size_bytes": 2783, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/push-to-checkout.sample"} +{"size_bytes": 4898, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/pre-rebase.sample"} +{"size_bytes": 2308, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/sendemail-validate.sample"} +{"size_bytes": 1374, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/pre-push.sample"} +{"size_bytes": 424, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/pre-applypatch.sample"} +{"size_bytes": 4726, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/fsmonitor-watchman.sample"} +{"size_bytes": 896, "category": "riker", "path": "scripts/memcached/dev/.git/hooks/commit-msg.sample"} +{"size_bytes": 390, "category": "riker", "path": "scripts/memcached/dev/.git/logs/HEAD"} +{"size_bytes": 186, "category": "riker", "path": "scripts/memcached/dev/.git/logs/refs/remotes/origin/HEAD"} +{"size_bytes": 186, "category": "riker", "path": "scripts/memcached/dev/.git/logs/refs/heads/master"} +{"size_bytes": 5188, "category": "riker", "path": "scripts/memcached/dev/m4/c99-backport.m4"} +{"size_bytes": 16298, "category": "riker", "path": "scripts/memcached/dev/doc/Makefile"} +{"size_bytes": 2289, "category": "riker", "path": "scripts/memcached/dev/doc/napi_ids.txt"} +{"size_bytes": 76293, "category": "riker", "path": "scripts/memcached/dev/doc/protocol.txt"} +{"size_bytes": 5428, "category": "riker", "path": "scripts/memcached/dev/doc/storage.txt"} +{"size_bytes": 74, "category": "riker", "path": "scripts/memcached/dev/doc/readme.txt"} +{"size_bytes": 62850, "category": "riker", "path": "scripts/memcached/dev/doc/protocol-binary.xml"} +{"size_bytes": 1567, "category": "riker", "path": "scripts/memcached/dev/doc/CONTRIBUTORS"} +{"size_bytes": 51537, "category": "riker", "path": "scripts/memcached/dev/doc/Doxyfile"} +{"size_bytes": 9289, "category": "riker", "path": "scripts/memcached/dev/doc/protocol-binary-range.xml"} +{"size_bytes": 822, "category": "riker", "path": "scripts/memcached/dev/doc/Makefile.am"} +{"size_bytes": 15906, "category": "riker", "path": "scripts/memcached/dev/doc/Makefile.in"} +{"size_bytes": 6718, "category": "riker", "path": "scripts/memcached/dev/doc/memcached.1"} +{"size_bytes": 2478, "category": "riker", "path": "scripts/memcached/dev/doc/threads.txt"} +{"size_bytes": 7644, "category": "riker", "path": "scripts/memcached/dev/doc/tls.txt"} +{"size_bytes": 2469, "category": "riker", "path": "scripts/memcached/dev/doc/new_lru.txt"} +{"size_bytes": 3082, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/rfc2629-noinc.xsl"} +{"size_bytes": 9288, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/rfc2629.dtd"} +{"size_bytes": 15480, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/rfc2629-xhtml.ent"} +{"size_bytes": 2566, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/rfc2629-refchk.xsl"} +{"size_bytes": 3756, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/rfc2629-other.ent"} +{"size_bytes": 1696, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/reference.RFC.2119.xml"} +{"size_bytes": 704, "category": "riker", "path": "scripts/memcached/dev/doc/xml2rfc/reference.RFC.0768.xml"} +{"size_bytes": 921, "category": "riker", "path": "scripts/memcached/dev/devtools/clean-whitespace.pl"} +{"size_bytes": 302, "category": "riker", "path": "scripts/memcached/dev/devtools/Dockerfile.alpine"} +{"size_bytes": 307, "category": "riker", "path": "scripts/memcached/dev/devtools/Dockerfile.fedora"} +{"size_bytes": 374, "category": "riker", "path": "scripts/memcached/dev/devtools/Dockerfile.arch"} +{"size_bytes": 1644, "category": "riker", "path": "scripts/memcached/dev/devtools/bench_noreply.pl"} +{"size_bytes": 1432, "category": "riker", "path": "scripts/memcached/dev/devtools/slab_loadgen"} +{"size_bytes": 274, "category": "riker", "path": "scripts/memcached/dev/devtools/Dockerfile.ubuntu"} +{"size_bytes": 11676, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/requests"} +{"size_bytes": 56160, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/traces.2"} +{"size_bytes": 261840, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/output.1"} +{"size_bytes": 261840, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/output.0"} +{"size_bytes": 71477, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/traces.0"} +{"size_bytes": 261843, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/output.2"} +{"size_bytes": 56160, "category": "riker", "path": "scripts/memcached/dev/autom4te.cache/traces.1"} +{"size_bytes": 1894, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached-tool.1"} +{"size_bytes": 716, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached-server.upstart"} +{"size_bytes": 294, "category": "riker", "path": "scripts/memcached/dev/scripts/damemtop.yaml"} +{"size_bytes": 12122, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached-automove-extstore"} +{"size_bytes": 6196, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached-tool"} +{"size_bytes": 15891, "category": "riker", "path": "scripts/memcached/dev/scripts/damemtop"} +{"size_bytes": 3675, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached@.service"} +{"size_bytes": 3404, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached.service"} +{"size_bytes": 638, "category": "riker", "path": "scripts/memcached/dev/scripts/README.damemtop"} +{"size_bytes": 8793, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached-automove"} +{"size_bytes": 571, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached.upstart"} +{"size_bytes": 2770, "category": "riker", "path": "scripts/memcached/dev/scripts/start-memcached"} +{"size_bytes": 313, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached.sysconfig"} +{"size_bytes": 1414, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached.sysv"} +{"size_bytes": 3339, "category": "riker", "path": "scripts/memcached/dev/scripts/memcached-init"} +{"size_bytes": 2010, "category": "riker", "path": "scripts/memcached/dev/t/ssl_session_resumption.t"} +{"size_bytes": 1873, "category": "riker", "path": "scripts/memcached/dev/t/README-TLS.md"} +{"size_bytes": 2599, "category": "riker", "path": "scripts/memcached/dev/t/dyn-maxbytes.t"} +{"size_bytes": 499, "category": "riker", "path": "scripts/memcached/dev/t/binary-get.t"} +{"size_bytes": 516, "category": "riker", "path": "scripts/memcached/dev/t/line-lengths.t"} +{"size_bytes": 3901, "category": "riker", "path": "scripts/memcached/dev/t/chunked-items.t"} +{"size_bytes": 873, "category": "riker", "path": "scripts/memcached/dev/t/evictions.t"} +{"size_bytes": 820, "category": "riker", "path": "scripts/memcached/dev/t/malicious-commands.t"} +{"size_bytes": 631, "category": "riker", "path": "scripts/memcached/dev/t/issue_29.t"} +{"size_bytes": 389, "category": "riker", "path": "scripts/memcached/dev/t/issue_50.t"} +{"size_bytes": 944, "category": "riker", "path": "scripts/memcached/dev/t/ssl_settings.t"} +{"size_bytes": 4019, "category": "riker", "path": "scripts/memcached/dev/t/slabs-reassign-chunked.t"} +{"size_bytes": 2419, "category": "riker", "path": "scripts/memcached/dev/t/stats-conns.t"} +{"size_bytes": 689, "category": "riker", "path": "scripts/memcached/dev/t/ssl_ports.t"} +{"size_bytes": 659, "category": "riker", "path": "scripts/memcached/dev/t/issue_183.t"} +{"size_bytes": 2953, "category": "riker", "path": "scripts/memcached/dev/t/issue_67.t"} +{"size_bytes": 3763, "category": "riker", "path": "scripts/memcached/dev/t/getset.t"} +{"size_bytes": 505, "category": "riker", "path": "scripts/memcached/dev/t/issue_68.t"} +{"size_bytes": 3900, "category": "riker", "path": "scripts/memcached/dev/t/slabs-reassign2.t"} +{"size_bytes": 612, "category": "riker", "path": "scripts/memcached/dev/t/issue_70.t"} +{"size_bytes": 2131, "category": "riker", "path": "scripts/memcached/dev/t/00-startup.t"} +{"size_bytes": 1355, "category": "riker", "path": "scripts/memcached/dev/t/getandtouch.t"} +{"size_bytes": 1790, "category": "riker", "path": "scripts/memcached/dev/t/extstore-buckets.t"} +{"size_bytes": 17762, "category": "riker", "path": "scripts/memcached/dev/t/binary-extstore.t"} +{"size_bytes": 1266, "category": "riker", "path": "scripts/memcached/dev/t/item_size_max.t"} +{"size_bytes": 3823, "category": "riker", "path": "scripts/memcached/dev/t/expirations.t"} +{"size_bytes": 2770, "category": "riker", "path": "scripts/memcached/dev/t/ssl_cert_refresh.t"} +{"size_bytes": 769, "category": "riker", "path": "scripts/memcached/dev/t/issue_42.t"} +{"size_bytes": 473, "category": "riker", "path": "scripts/memcached/dev/t/touch.t"} +{"size_bytes": 390, "category": "riker", "path": "scripts/memcached/dev/t/issue_152.t"} +{"size_bytes": 1679, "category": "riker", "path": "scripts/memcached/dev/t/cakey.pem"} +{"size_bytes": 17882, "category": "riker", "path": "scripts/memcached/dev/t/binary-sasl.t"} +{"size_bytes": 639, "category": "riker", "path": "scripts/memcached/dev/t/misbehave.t"} +{"size_bytes": 19, "category": "riker", "path": "scripts/memcached/dev/t/authfile"} +{"size_bytes": 2369, "category": "riker", "path": "scripts/memcached/dev/t/issue_260.t"} +{"size_bytes": 1142, "category": "riker", "path": "scripts/memcached/dev/t/issue_22.t"} +{"size_bytes": 3768, "category": "riker", "path": "scripts/memcached/dev/t/lru-maintainer.t"} +{"size_bytes": 1364, "category": "riker", "path": "scripts/memcached/dev/t/issue_3.t"} +{"size_bytes": 5685, "category": "riker", "path": "scripts/memcached/dev/t/stats.t"} +{"size_bytes": 2157, "category": "riker", "path": "scripts/memcached/dev/t/incrdecr.t"} +{"size_bytes": 687, "category": "riker", "path": "scripts/memcached/dev/t/issue_108.t"} +{"size_bytes": 593, "category": "riker", "path": "scripts/memcached/dev/t/quit.t"} +{"size_bytes": 738, "category": "riker", "path": "scripts/memcached/dev/t/daemonize.t"} +{"size_bytes": 383, "category": "riker", "path": "scripts/memcached/dev/t/strtol-testing.t"} +{"size_bytes": 1068, "category": "riker", "path": "scripts/memcached/dev/t/issue_163.t"} +{"size_bytes": 22694, "category": "riker", "path": "scripts/memcached/dev/t/metaget.t"} +{"size_bytes": 725, "category": "riker", "path": "scripts/memcached/dev/t/dash-M.t"} +{"size_bytes": 1846, "category": "riker", "path": "scripts/memcached/dev/t/refhang.t"} +{"size_bytes": 25312, "category": "riker", "path": "scripts/memcached/dev/t/binary.t"} +{"size_bytes": 4357, "category": "riker", "path": "scripts/memcached/dev/t/server_crt.pem"} +{"size_bytes": 742, "category": "riker", "path": "scripts/memcached/dev/t/unixsocket.t"} +{"size_bytes": 4205, "category": "riker", "path": "scripts/memcached/dev/t/restart.t"} +{"size_bytes": 463, "category": "riker", "path": "scripts/memcached/dev/t/flags.t"} +{"size_bytes": 10236, "category": "riker", "path": "scripts/memcached/dev/t/udp.t"} +{"size_bytes": 1428, "category": "riker", "path": "scripts/memcached/dev/t/cacert.pem"} +{"size_bytes": 4481, "category": "riker", "path": "scripts/memcached/dev/t/lru-crawler.t"} +{"size_bytes": 1345, "category": "riker", "path": "scripts/memcached/dev/t/ascii-auth.t"} +{"size_bytes": 2117, "category": "riker", "path": "scripts/memcached/dev/t/stats-detail.t"} +{"size_bytes": 5889, "category": "riker", "path": "scripts/memcached/dev/t/chunked-extstore.t"} +{"size_bytes": 271, "category": "riker", "path": "scripts/memcached/dev/t/bogus-commands.t"} +{"size_bytes": 980, "category": "riker", "path": "scripts/memcached/dev/t/issue_41.t"} +{"size_bytes": 548, "category": "riker", "path": "scripts/memcached/dev/t/issue_192.t"} +{"size_bytes": 2621, "category": "riker", "path": "scripts/memcached/dev/t/slabs_reassign.t"} +{"size_bytes": 791, "category": "riker", "path": "scripts/memcached/dev/t/issue_61.t"} +{"size_bytes": 3602, "category": "riker", "path": "scripts/memcached/dev/t/error-extstore.t"} +{"size_bytes": 806, "category": "riker", "path": "scripts/memcached/dev/t/issue_14.t"} +{"size_bytes": 1896, "category": "riker", "path": "scripts/memcached/dev/t/multiversioning.t"} +{"size_bytes": 1215, "category": "riker", "path": "scripts/memcached/dev/t/noreply.t"} +{"size_bytes": 974, "category": "riker", "path": "scripts/memcached/dev/t/issue_140.t"} +{"size_bytes": 931, "category": "riker", "path": "scripts/memcached/dev/t/maxconns.t"} +{"size_bytes": 1675, "category": "riker", "path": "scripts/memcached/dev/t/server_key.pem"} +{"size_bytes": 1138, "category": "riker", "path": "scripts/memcached/dev/t/64bit.t"} +{"size_bytes": 2045, "category": "riker", "path": "scripts/memcached/dev/t/watcher_connid.t"} +{"size_bytes": 4564, "category": "riker", "path": "scripts/memcached/dev/t/watcher.t"} +{"size_bytes": 1642, "category": "riker", "path": "scripts/memcached/dev/t/lru.t"} +{"size_bytes": 2159, "category": "riker", "path": "scripts/memcached/dev/t/conn-limits.t"} +{"size_bytes": 1356, "category": "riker", "path": "scripts/memcached/dev/t/shutdown.t"} +{"size_bytes": 1635, "category": "riker", "path": "scripts/memcached/dev/t/whitespace.t"} +{"size_bytes": 3193, "category": "riker", "path": "scripts/memcached/dev/t/flush-all.t"} +{"size_bytes": 4701, "category": "riker", "path": "scripts/memcached/dev/t/cas.t"} +{"size_bytes": 4981, "category": "riker", "path": "scripts/memcached/dev/t/server.pem"} +{"size_bytes": 613, "category": "riker", "path": "scripts/memcached/dev/t/issue_104.t"} +{"size_bytes": 4436, "category": "riker", "path": "scripts/memcached/dev/t/client_crt.pem"} +{"size_bytes": 1170, "category": "riker", "path": "scripts/memcached/dev/t/idle-timeout.t"} +{"size_bytes": 2054, "category": "riker", "path": "scripts/memcached/dev/t/extstore-jbod.t"} +{"size_bytes": 1679, "category": "riker", "path": "scripts/memcached/dev/t/client_key.pem"} +{"size_bytes": 2229, "category": "riker", "path": "scripts/memcached/dev/t/stress-memcached.pl"} +{"size_bytes": 1785, "category": "riker", "path": "scripts/memcached/dev/t/slabhang.t"} +{"size_bytes": 6055, "category": "riker", "path": "scripts/memcached/dev/t/extstore.t"} +{"size_bytes": 532, "category": "riker", "path": "scripts/memcached/dev/t/ssl_verify_modes.t"} +{"size_bytes": 13807, "category": "riker", "path": "scripts/memcached/dev/t/lib/MemcachedTest.pm"} +{"size_bytes": 79, "category": "riker", "path": "scripts/memcached/dev/t/sasl/memcached.conf"} +{"size_bytes": 1117, "category": "riker", "path": "scripts/memcached/dev/.github/ISSUE_TEMPLATE/bug_report.md"} +{"size_bytes": 508, "category": "riker", "path": "scripts/memcached/dev/.github/workflows/ci.yml"} +{"size_bytes": 1046, "category": "riker", "path": "scripts/redis/dev/runtest-moduleapi"} +{"size_bytes": 151, "category": "riker", "path": "scripts/redis/dev/Makefile"} +{"size_bytes": 21567, "category": "riker", "path": "scripts/redis/dev/README.md"} +{"size_bytes": 635, "category": "riker", "path": "scripts/redis/dev/00-RELEASENOTES"} +{"size_bytes": 3055, "category": "riker", "path": "scripts/redis/dev/TLS.md"} +{"size_bytes": 11, "category": "riker", "path": "scripts/redis/dev/INSTALL"} +{"size_bytes": 483, "category": "riker", "path": "scripts/redis/dev/.gitignore"} +{"size_bytes": 279, "category": "riker", "path": "scripts/redis/dev/runtest-cluster"} +{"size_bytes": 5026, "category": "riker", "path": "scripts/redis/dev/CONDUCT"} +{"size_bytes": 275, "category": "riker", "path": "scripts/redis/dev/runtest"} +{"size_bytes": 93690, "category": "riker", "path": "scripts/redis/dev/redis.conf"} +{"size_bytes": 1487, "category": "riker", "path": "scripts/redis/dev/COPYING"} +{"size_bytes": 51, "category": "riker", "path": "scripts/redis/dev/BUGS"} +{"size_bytes": 3384, "category": "riker", "path": "scripts/redis/dev/CONTRIBUTING"} +{"size_bytes": 6888, "category": "riker", "path": "scripts/redis/dev/MANIFESTO"} +{"size_bytes": 13768, "category": "riker", "path": "scripts/redis/dev/sentinel.conf"} +{"size_bytes": 281, "category": "riker", "path": "scripts/redis/dev/runtest-sentinel"} +{"size_bytes": 694, "category": "riker", "path": "scripts/redis/dev/utils/whatisdoing.sh"} +{"size_bytes": 1303, "category": "riker", "path": "scripts/redis/dev/utils/cluster_fail_time.tcl"} +{"size_bytes": 9981, "category": "riker", "path": "scripts/redis/dev/utils/install_server.sh"} +{"size_bytes": 2271, "category": "riker", "path": "scripts/redis/dev/utils/tracking_collisions.c"} +{"size_bytes": 1098, "category": "riker", "path": "scripts/redis/dev/utils/corrupt_rdb.c"} +{"size_bytes": 1277, "category": "riker", "path": "scripts/redis/dev/utils/redis-copy.rb"} +{"size_bytes": 1310, "category": "riker", "path": "scripts/redis/dev/utils/systemd-redis_multiple_servers@.service"} +{"size_bytes": 1352, "category": "riker", "path": "scripts/redis/dev/utils/redis_init_script"} +{"size_bytes": 1550, "category": "riker", "path": "scripts/redis/dev/utils/systemd-redis_server.service"} +{"size_bytes": 3787, "category": "riker", "path": "scripts/redis/dev/utils/speed-regression.tcl"} +{"size_bytes": 1762, "category": "riker", "path": "scripts/redis/dev/utils/redis-sha1.rb"} +{"size_bytes": 2285, "category": "riker", "path": "scripts/redis/dev/utils/generate-command-help.rb"} +{"size_bytes": 1047, "category": "riker", "path": "scripts/redis/dev/utils/redis_init_script.tpl"} +{"size_bytes": 593, "category": "riker", "path": "scripts/redis/dev/utils/build-static-symbols.tcl"} +{"size_bytes": 1813, "category": "riker", "path": "scripts/redis/dev/utils/gen-test-certs.sh"} +{"size_bytes": 396, "category": "riker", "path": "scripts/redis/dev/utils/hashtable/README"} +{"size_bytes": 3561, "category": "riker", "path": "scripts/redis/dev/utils/hashtable/rehashing.c"} +{"size_bytes": 424, "category": "riker", "path": "scripts/redis/dev/utils/srandmember/showfreq.rb"} +{"size_bytes": 624, "category": "riker", "path": "scripts/redis/dev/utils/srandmember/README.md"} +{"size_bytes": 581, "category": "riker", "path": "scripts/redis/dev/utils/srandmember/showdist.rb"} +{"size_bytes": 700, "category": "riker", "path": "scripts/redis/dev/utils/graphs/commits-over-time/README.md"} +{"size_bytes": 2495, "category": "riker", "path": "scripts/redis/dev/utils/graphs/commits-over-time/genhtml.tcl"} +{"size_bytes": 475, "category": "riker", "path": "scripts/redis/dev/utils/releasetools/04_release_hash.sh"} +{"size_bytes": 517, "category": "riker", "path": "scripts/redis/dev/utils/releasetools/03_test_release.sh"} +{"size_bytes": 1195, "category": "riker", "path": "scripts/redis/dev/utils/releasetools/changelog.tcl"} +{"size_bytes": 329, "category": "riker", "path": "scripts/redis/dev/utils/releasetools/01_create_tarball.sh"} +{"size_bytes": 964, "category": "riker", "path": "scripts/redis/dev/utils/releasetools/02_upload_tarball.sh"} +{"size_bytes": 35, "category": "riker", "path": "scripts/redis/dev/utils/create-cluster/.gitignore"} +{"size_bytes": 1437, "category": "riker", "path": "scripts/redis/dev/utils/create-cluster/README"} +{"size_bytes": 2787, "category": "riker", "path": "scripts/redis/dev/utils/create-cluster/create-cluster"} +{"size_bytes": 5297, "category": "riker", "path": "scripts/redis/dev/utils/lru/lfu-simulation.c"} +{"size_bytes": 5545, "category": "riker", "path": "scripts/redis/dev/utils/lru/test-lru.rb"} +{"size_bytes": 771, "category": "riker", "path": "scripts/redis/dev/utils/lru/README"} +{"size_bytes": 2617, "category": "riker", "path": "scripts/redis/dev/utils/hyperloglog/hll-gnuplot-graph.rb"} +{"size_bytes": 6, "category": "riker", "path": "scripts/redis/dev/utils/hyperloglog/.gitignore"} +{"size_bytes": 637, "category": "riker", "path": "scripts/redis/dev/utils/hyperloglog/hll-err.rb"} +{"size_bytes": 73, "category": "riker", "path": "scripts/redis/dev/.git/description"} +{"size_bytes": 259, "category": "riker", "path": "scripts/redis/dev/.git/config"} +{"size_bytes": 34520, "category": "riker", "path": "scripts/redis/dev/.git/packed-refs"} +{"size_bytes": 86680, "category": "riker", "path": "scripts/redis/dev/.git/index"} +{"size_bytes": 41, "category": "riker", "path": "scripts/redis/dev/.git/HEAD"} +{"size_bytes": 34, "category": "riker", "path": "scripts/redis/dev/.git/refs/remotes/origin/HEAD"} +{"size_bytes": 41, "category": "riker", "path": "scripts/redis/dev/.git/refs/heads/unstable"} +{"size_bytes": 240, "category": "riker", "path": "scripts/redis/dev/.git/info/exclude"} +{"size_bytes": 380824, "category": "riker", "path": "scripts/redis/dev/.git/objects/pack/pack-863017e206d575e46aeee80fb527b800b44d49d2.rev"} +{"size_bytes": 2666476, "category": "riker", "path": "scripts/redis/dev/.git/objects/pack/pack-863017e206d575e46aeee80fb527b800b44d49d2.idx"} +{"size_bytes": 145827555, "category": "riker", "path": "scripts/redis/dev/.git/objects/pack/pack-863017e206d575e46aeee80fb527b800b44d49d2.pack"} +{"size_bytes": 189, "category": "riker", "path": "scripts/redis/dev/.git/hooks/post-update.sample"} +{"size_bytes": 416, "category": "riker", "path": "scripts/redis/dev/.git/hooks/pre-merge-commit.sample"} +{"size_bytes": 544, "category": "riker", "path": "scripts/redis/dev/.git/hooks/pre-receive.sample"} +{"size_bytes": 1643, "category": "riker", "path": "scripts/redis/dev/.git/hooks/pre-commit.sample"} +{"size_bytes": 3650, "category": "riker", "path": "scripts/redis/dev/.git/hooks/update.sample"} +{"size_bytes": 1492, "category": "riker", "path": "scripts/redis/dev/.git/hooks/prepare-commit-msg.sample"} +{"size_bytes": 478, "category": "riker", "path": "scripts/redis/dev/.git/hooks/applypatch-msg.sample"} +{"size_bytes": 2783, "category": "riker", "path": "scripts/redis/dev/.git/hooks/push-to-checkout.sample"} +{"size_bytes": 4898, "category": "riker", "path": "scripts/redis/dev/.git/hooks/pre-rebase.sample"} +{"size_bytes": 2308, "category": "riker", "path": "scripts/redis/dev/.git/hooks/sendemail-validate.sample"} +{"size_bytes": 1374, "category": "riker", "path": "scripts/redis/dev/.git/hooks/pre-push.sample"} +{"size_bytes": 424, "category": "riker", "path": "scripts/redis/dev/.git/hooks/pre-applypatch.sample"} +{"size_bytes": 4726, "category": "riker", "path": "scripts/redis/dev/.git/hooks/fsmonitor-watchman.sample"} +{"size_bytes": 896, "category": "riker", "path": "scripts/redis/dev/.git/hooks/commit-msg.sample"} +{"size_bytes": 380, "category": "riker", "path": "scripts/redis/dev/.git/logs/HEAD"} +{"size_bytes": 174, "category": "riker", "path": "scripts/redis/dev/.git/logs/refs/remotes/origin/HEAD"} +{"size_bytes": 174, "category": "riker", "path": "scripts/redis/dev/.git/logs/refs/heads/unstable"} +{"size_bytes": 2847, "category": "riker", "path": "scripts/redis/dev/deps/Makefile"} +{"size_bytes": 4411, "category": "riker", "path": "scripts/redis/dev/deps/README.md"} +{"size_bytes": 1, "category": "riker", "path": "scripts/redis/dev/deps/.make-ldflags"} +{"size_bytes": 1, "category": "riker", "path": "scripts/redis/dev/deps/.make-cflags"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/deps/.make-prerequisites"} +{"size_bytes": 282, "category": "riker", "path": "scripts/redis/dev/deps/update-jemalloc.sh"} +{"size_bytes": 3695, "category": "riker", "path": "scripts/redis/dev/deps/lua/Makefile"} +{"size_bytes": 1528, "category": "riker", "path": "scripts/redis/dev/deps/lua/COPYRIGHT"} +{"size_bytes": 3868, "category": "riker", "path": "scripts/redis/dev/deps/lua/INSTALL"} +{"size_bytes": 1378, "category": "riker", "path": "scripts/redis/dev/deps/lua/README"} +{"size_bytes": 7907, "category": "riker", "path": "scripts/redis/dev/deps/lua/HISTORY"} +{"size_bytes": 254745, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/manual.html"} +{"size_bytes": 3896, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/luac.html"} +{"size_bytes": 3305, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/cover.png"} +{"size_bytes": 3951, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/lua.html"} +{"size_bytes": 3619, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/lua.1"} +{"size_bytes": 834, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/readme.html"} +{"size_bytes": 3617, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/luac.1"} +{"size_bytes": 22482, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/contents.html"} +{"size_bytes": 4232, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/logo.gif"} +{"size_bytes": 341, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/manual.css"} +{"size_bytes": 1306, "category": "riker", "path": "scripts/redis/dev/deps/lua/doc/lua.css"} +{"size_bytes": 749, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/trace-calls.lua"} +{"size_bytes": 1494, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/sort.lua"} +{"size_bytes": 707, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/factorial.lua"} +{"size_bytes": 86, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/hello.lua"} +{"size_bytes": 293, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/cf.lua"} +{"size_bytes": 728, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/trace-globals.lua"} +{"size_bytes": 254, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/fibfor.lua"} +{"size_bytes": 181, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/env.lua"} +{"size_bytes": 645, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/bisect.lua"} +{"size_bytes": 418, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/globals.lua"} +{"size_bytes": 774, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/sieve.lua"} +{"size_bytes": 364, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/xd.lua"} +{"size_bytes": 1177, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/README"} +{"size_bytes": 260, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/readonly.lua"} +{"size_bytes": 2635, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/life.lua"} +{"size_bytes": 234, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/luac.lua"} +{"size_bytes": 283, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/table.lua"} +{"size_bytes": 169, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/printf.lua"} +{"size_bytes": 605, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/fib.lua"} +{"size_bytes": 80, "category": "riker", "path": "scripts/redis/dev/deps/lua/test/echo.lua"} +{"size_bytes": 1628, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lzio.c"} +{"size_bytes": 10092, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldblib.c"} +{"size_bytes": 6205, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/Makefile"} +{"size_bytes": 17045, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lbaselib.c"} +{"size_bytes": 8502, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lobject.h"} +{"size_bytes": 32944, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lparser.o"} +{"size_bytes": 5453, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_bit.c"} +{"size_bytes": 1018, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltm.h"} +{"size_bytes": 4480, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/fpconv.o"} +{"size_bytes": 2261, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lparser.h"} +{"size_bytes": 10048, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/print.o"} +{"size_bytes": 5777, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lauxlib.h"} +{"size_bytes": 21170, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lcode.c"} +{"size_bytes": 1125, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lfunc.h"} +{"size_bytes": 9960, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lgc.o"} +{"size_bytes": 2848, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lopcodes.o"} +{"size_bytes": 1494, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lmem.h"} +{"size_bytes": 13632, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lmathlib.o"} +{"size_bytes": 262, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lapi.h"} +{"size_bytes": 3159, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lgc.h"} +{"size_bytes": 2750, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lcode.h"} +{"size_bytes": 22299, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/luaconf.h"} +{"size_bytes": 28432, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lapi.o"} +{"size_bytes": 10728, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltablib.o"} +{"size_bytes": 4944, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/print.c"} +{"size_bytes": 22708, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lapi.c"} +{"size_bytes": 4618, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lfunc.c"} +{"size_bytes": 15888, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/llex.o"} +{"size_bytes": 3232, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldump.o"} +{"size_bytes": 5831, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lmathlib.c"} +{"size_bytes": 1650, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltm.c"} +{"size_bytes": 11688, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua.h"} +{"size_bytes": 4349, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/strbuf.h"} +{"size_bytes": 15328, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua.o"} +{"size_bytes": 6576, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lobject.o"} +{"size_bytes": 14859, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldo.c"} +{"size_bytes": 228992, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua"} +{"size_bytes": 26944, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lbaselib.o"} +{"size_bytes": 1061, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldebug.h"} +{"size_bytes": 12501, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/llex.c"} +{"size_bytes": 8086, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lopcodes.h"} +{"size_bytes": 1184, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltable.h"} +{"size_bytes": 5992, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/loslib.c"} +{"size_bytes": 23561, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstrlib.c"} +{"size_bytes": 26208, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstrlib.o"} +{"size_bytes": 8384, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lundump.o"} +{"size_bytes": 18448, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lcode.o"} +{"size_bytes": 30832, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_cmsgpack.c"} +{"size_bytes": 2272, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lmem.o"} +{"size_bytes": 8344, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/luac.o"} +{"size_bytes": 1159, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lvm.h"} +{"size_bytes": 1897, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldo.h"} +{"size_bytes": 41626, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_cjson.c"} +{"size_bytes": 23242, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lvm.c"} +{"size_bytes": 16840, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldebug.c"} +{"size_bytes": 11264, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldo.o"} +{"size_bytes": 2840, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/linit.o"} +{"size_bytes": 9160, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltable.o"} +{"size_bytes": 814, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstring.h"} +{"size_bytes": 4629, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lundump.c"} +{"size_bytes": 7341, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltablib.c"} +{"size_bytes": 10736, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_bit.o"} +{"size_bytes": 3110, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstring.c"} +{"size_bytes": 3552, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltm.o"} +{"size_bytes": 4661, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/luac.c"} +{"size_bytes": 20192, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lauxlib.o"} +{"size_bytes": 1026, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lualib.h"} +{"size_bytes": 890, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lundump.h"} +{"size_bytes": 21584, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_cmsgpack.o"} +{"size_bytes": 5674, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstate.c"} +{"size_bytes": 4056, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lfunc.o"} +{"size_bytes": 23280, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/liolib.o"} +{"size_bytes": 149952, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/luac"} +{"size_bytes": 10163, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua.c"} +{"size_bytes": 16263, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ltable.c"} +{"size_bytes": 6056, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/fpconv.c"} +{"size_bytes": 5498, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lobject.c"} +{"size_bytes": 13528, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_struct.o"} +{"size_bytes": 5011, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstate.h"} +{"size_bytes": 2736, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstring.o"} +{"size_bytes": 465826, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/liblua.a"} +{"size_bytes": 17184, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/loadlib.o"} +{"size_bytes": 2884, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lopcodes.c"} +{"size_bytes": 36696, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lparser.c"} +{"size_bytes": 2349, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/llimits.h"} +{"size_bytes": 11481, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_struct.c"} +{"size_bytes": 2464, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lzio.o"} +{"size_bytes": 20053, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lgc.c"} +{"size_bytes": 17416, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lauxlib.c"} +{"size_bytes": 6132, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/strbuf.c"} +{"size_bytes": 765, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/linit.c"} +{"size_bytes": 13466, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/liolib.c"} +{"size_bytes": 14312, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldebug.o"} +{"size_bytes": 518, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/fpconv.h"} +{"size_bytes": 2172, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lmem.c"} +{"size_bytes": 4816, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lstate.o"} +{"size_bytes": 5696, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/strbuf.o"} +{"size_bytes": 19856, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lvm.o"} +{"size_bytes": 18240, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldblib.o"} +{"size_bytes": 1556, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lzio.h"} +{"size_bytes": 3114, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/ldump.c"} +{"size_bytes": 19216, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/loadlib.c"} +{"size_bytes": 29680, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/lua_cjson.o"} +{"size_bytes": 2177, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/llex.h"} +{"size_bytes": 12040, "category": "riker", "path": "scripts/redis/dev/deps/lua/src/loslib.o"} +{"size_bytes": 912, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/Makefile"} +{"size_bytes": 1070, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/luavs.bat"} +{"size_bytes": 800, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/min.c"} +{"size_bytes": 1253, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/noparser.c"} +{"size_bytes": 678, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/all.c"} +{"size_bytes": 658, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/lua.pc"} +{"size_bytes": 928, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/strict.lua"} +{"size_bytes": 972, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/README"} +{"size_bytes": 191, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/lua.hpp"} +{"size_bytes": 1078, "category": "riker", "path": "scripts/redis/dev/deps/lua/etc/lua.ico"} +{"size_bytes": 11604, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/Makefile"} +{"size_bytes": 552528, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/libhiredis.a"} +{"size_bytes": 72840, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/read.o"} +{"size_bytes": 5241, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/CMakeLists.txt"} +{"size_bytes": 41609, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sds.c"} +{"size_bytes": 6027, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/async.h"} +{"size_bytes": 28025, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/README.md"} +{"size_bytes": 130128, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis.o"} +{"size_bytes": 3367, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/async_private.h"} +{"size_bytes": 306, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis_ssl.pc.in"} +{"size_bytes": 21885, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/read.c"} +{"size_bytes": 4615, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis_ssl.h"} +{"size_bytes": 133752, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sds.o"} +{"size_bytes": 2800, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/alloc.c"} +{"size_bytes": 2982, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/alloc.h"} +{"size_bytes": 4918, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/read.h"} +{"size_bytes": 1042, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/win32.h"} +{"size_bytes": 2728, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sockcompat.o"} +{"size_bytes": 84, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/.gitignore"} +{"size_bytes": 23452, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/CHANGELOG.md"} +{"size_bytes": 308, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis-config.cmake.in"} +{"size_bytes": 2009, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/test.sh"} +{"size_bytes": 340, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis_ssl-config.cmake.in"} +{"size_bytes": 28870, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/async.c"} +{"size_bytes": 225, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/fmacros.h"} +{"size_bytes": 9773, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sds.h"} +{"size_bytes": 4329, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sockcompat.h"} +{"size_bytes": 120552, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/async.o"} +{"size_bytes": 10826, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/dict.c"} +{"size_bytes": 1588, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/COPYING"} +{"size_bytes": 14359, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/ssl.c"} +{"size_bytes": 48025, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/test.c"} +{"size_bytes": 6416, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/alloc.o"} +{"size_bytes": 743, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/appveyor.yml"} +{"size_bytes": 4691, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/dict.h"} +{"size_bytes": 3556, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sdscompat.h"} +{"size_bytes": 19141, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/net.c"} +{"size_bytes": 2762, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/net.h"} +{"size_bytes": 12753, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis.h"} +{"size_bytes": 3384, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/.travis.yml"} +{"size_bytes": 2130, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sdsalloc.h"} +{"size_bytes": 369, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis.pc.in"} +{"size_bytes": 82960, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/net.o"} +{"size_bytes": 8972, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/sockcompat.c"} +{"size_bytes": 35586, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/hiredis.c"} +{"size_bytes": 5601, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/libevent.h"} +{"size_bytes": 3885, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/macosx.h"} +{"size_bytes": 3854, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/glib.h"} +{"size_bytes": 4233, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/qt.h"} +{"size_bytes": 2580, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/libuv.h"} +{"size_bytes": 2327, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/ivykis.h"} +{"size_bytes": 4271, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/ae.h"} +{"size_bytes": 5498, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/adapters/libev.h"} +{"size_bytes": 1327, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/CMakeLists.txt"} +{"size_bytes": 2322, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-libevent-ssl.c"} +{"size_bytes": 3104, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-ssl.c"} +{"size_bytes": 1750, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-libevent.c"} +{"size_bytes": 6028, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-push.c"} +{"size_bytes": 1632, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-glib.c"} +{"size_bytes": 1440, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-ivykis.c"} +{"size_bytes": 1047, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-qt.cpp"} +{"size_bytes": 1654, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-macosx.c"} +{"size_bytes": 2614, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example.c"} +{"size_bytes": 1427, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-libev.c"} +{"size_bytes": 620, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-qt.h"} +{"size_bytes": 1468, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-libuv.c"} +{"size_bytes": 1583, "category": "riker", "path": "scripts/redis/dev/deps/hiredis/examples/example-ae.c"} +{"size_bytes": 7048, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/COPYING.txt"} +{"size_bytes": 254, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/Makefile"} +{"size_bytes": 498, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/README.md"} +{"size_bytes": 34757, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/hdr_histogram.c"} +{"size_bytes": 17175, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/hdr_histogram.h"} +{"size_bytes": 72904, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/hdr_histogram.o"} +{"size_bytes": 2161, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/LICENSE.txt"} +{"size_bytes": 3842, "category": "riker", "path": "scripts/redis/dev/deps/hdr_histogram/hdr_atomic.h"} +{"size_bytes": 315, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/Makefile"} +{"size_bytes": 84912, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/linenoise.o"} +{"size_bytes": 37, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/.gitignore"} +{"size_bytes": 10628, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/README.markdown"} +{"size_bytes": 39999, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/linenoise.c"} +{"size_bytes": 2609, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/example.c"} +{"size_bytes": 2898, "category": "riker", "path": "scripts/redis/dev/deps/linenoise/linenoise.h"} +{"size_bytes": 465, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/jemalloc.pc.in"} +{"size_bytes": 22857, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/Makefile"} +{"size_bytes": 11, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/VERSION"} +{"size_bytes": 42487, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/config.status"} +{"size_bytes": 1913, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/.gitignore"} +{"size_bytes": 67526, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/ChangeLog"} +{"size_bytes": 5920, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/TUNING.md"} +{"size_bytes": 14947, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/INSTALL.md"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/config.stamp.in"} +{"size_bytes": 1047, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/README"} +{"size_bytes": 1703, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/COPYING"} +{"size_bytes": 130673, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/config.log"} +{"size_bytes": 19, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/.gitattributes"} +{"size_bytes": 985, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/.appveyor.yml"} +{"size_bytes": 371150, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/configure"} +{"size_bytes": 371, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/jemalloc.pc"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/config.stamp"} +{"size_bytes": 21316, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/Makefile.in"} +{"size_bytes": 107, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/.autom4te.cfg"} +{"size_bytes": 266, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/autogen.sh"} +{"size_bytes": 48, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/run_tests.sh"} +{"size_bytes": 8862, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/.travis.yml"} +{"size_bytes": 72549, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/configure.ac"} +{"size_bytes": 13824, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/m4/ax_cxx_compile_stdcxx.m4"} +{"size_bytes": 415, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/stylesheet.xsl"} +{"size_bytes": 207, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/manpages.xsl.in"} +{"size_bytes": 154727, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/jemalloc.xml.in"} +{"size_bytes": 154711, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/jemalloc.xml"} +{"size_bytes": 283, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/html.xsl"} +{"size_bytes": 241, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/manpages.xsl"} +{"size_bytes": 249, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/doc/html.xsl.in"} +{"size_bytes": 3880, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/jemalloc_vc2015.sln"} +{"size_bytes": 539, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/ReadMe.txt"} +{"size_bytes": 3880, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/jemalloc_vc2017.sln"} +{"size_bytes": 34, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/test_threads/test_threads.h"} +{"size_bytes": 200, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/test_threads/test_threads_main.cpp"} +{"size_bytes": 3177, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/test_threads/test_threads.cpp"} +{"size_bytes": 19286, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.vcxproj"} +{"size_bytes": 981, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2015/test_threads/test_threads.vcxproj.filters"} +{"size_bytes": 19190, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj"} +{"size_bytes": 3517, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2015/jemalloc/jemalloc.vcxproj.filters"} +{"size_bytes": 19217, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2017/test_threads/test_threads.vcxproj"} +{"size_bytes": 981, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2017/test_threads/test_threads.vcxproj.filters"} +{"size_bytes": 19001, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj"} +{"size_bytes": 3517, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/msvc/projects/vc2017/jemalloc/jemalloc.vcxproj.filters"} +{"size_bytes": 2300, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/test.sh"} +{"size_bytes": 2290, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/test.sh.in"} +{"size_bytes": 3195, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/stress/microbench.c"} +{"size_bytes": 50, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/btalloc_0.c"} +{"size_bytes": 1375, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/mtx.c"} +{"size_bytes": 458, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/mq.c"} +{"size_bytes": 1091, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/timer.c"} +{"size_bytes": 20600, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/SFMT.c"} +{"size_bytes": 4589, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/test.c"} +{"size_bytes": 759, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/thd.c"} +{"size_bytes": 50, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/btalloc_1.c"} +{"size_bytes": 48, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/math.c"} +{"size_bytes": 111, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/src/btalloc.c"} +{"size_bytes": 2882, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/posix_memalign.c"} +{"size_bytes": 5734, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/mallocx.c"} +{"size_bytes": 10004, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/xallocx.c"} +{"size_bytes": 1839, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/thread_arena.c"} +{"size_bytes": 1049, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/sdallocx.c"} +{"size_bytes": 2357, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/thread_tcache_enabled.c"} +{"size_bytes": 87, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/extent.sh"} +{"size_bytes": 8102, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/extent.c"} +{"size_bytes": 3074, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/allocated.c"} +{"size_bytes": 87, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/xallocx.sh"} +{"size_bytes": 1441, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/MALLOCX_ARENA.c"} +{"size_bytes": 87, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/mallocx.sh"} +{"size_bytes": 5968, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/rallocx.c"} +{"size_bytes": 1375, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/overflow.c"} +{"size_bytes": 3039, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/aligned_alloc.c"} +{"size_bytes": 429, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/integration/cpp/basic.cpp"} +{"size_bytes": 10365, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/emitter.c"} +{"size_bytes": 26407, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/mallctl.c"} +{"size_bytes": 1391, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/bit_util.c"} +{"size_bytes": 6103, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prng.c"} +{"size_bytes": 18, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/junk_free.c"} +{"size_bytes": 133, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_active.sh"} +{"size_bytes": 261, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/spin.c"} +{"size_bytes": 3213, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/tsd.c"} +{"size_bytes": 3593, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_active.c"} +{"size_bytes": 828, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_idump.c"} +{"size_bytes": 1008, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/mtx.c"} +{"size_bytes": 59, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/arena_reset_prof.sh"} +{"size_bytes": 23081, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/stats_print.c"} +{"size_bytes": 137, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_accum.sh"} +{"size_bytes": 7086, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/atomic.c"} +{"size_bytes": 2042, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/ticker.c"} +{"size_bytes": 1802, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_accum.c"} +{"size_bytes": 4044, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/log.c"} +{"size_bytes": 1801, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/mq.c"} +{"size_bytes": 7373, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/ph.c"} +{"size_bytes": 5272, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/qr.c"} +{"size_bytes": 3174, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/background_thread.c"} +{"size_bytes": 12378, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/stats.c"} +{"size_bytes": 104, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_thread_name.sh"} +{"size_bytes": 6672, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/base.c"} +{"size_bytes": 11233, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/bitmap.c"} +{"size_bytes": 6857, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/size_classes.c"} +{"size_bytes": 110, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/junk_alloc.sh"} +{"size_bytes": 7479, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_reset.c"} +{"size_bytes": 4860, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/retained.c"} +{"size_bytes": 103, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_tctx.sh"} +{"size_bytes": 1268, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/zero.c"} +{"size_bytes": 18, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/junk_alloc.c"} +{"size_bytes": 18233, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/decay.c"} +{"size_bytes": 87608, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/SFMT.c"} +{"size_bytes": 88, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/decay.sh"} +{"size_bytes": 121, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_gdump.sh"} +{"size_bytes": 109, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/junk_free.sh"} +{"size_bytes": 121, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_reset.sh"} +{"size_bytes": 109, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/zero.sh"} +{"size_bytes": 8098, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/witness.c"} +{"size_bytes": 3213, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_thread_name.c"} +{"size_bytes": 6322, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/nstime.c"} +{"size_bytes": 6855, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/rtree.c"} +{"size_bytes": 726, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/pages.c"} +{"size_bytes": 1299, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_tctx.c"} +{"size_bytes": 2732, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/smoothstep.c"} +{"size_bytes": 1981, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_gdump.c"} +{"size_bytes": 5478, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/ckh.c"} +{"size_bytes": 4535, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/ql.c"} +{"size_bytes": 3597, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/junk.c"} +{"size_bytes": 752, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/hooks.c"} +{"size_bytes": 229, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/a0.c"} +{"size_bytes": 86, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/arena_reset_prof.c"} +{"size_bytes": 207, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/prof_idump.sh"} +{"size_bytes": 113, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/pack.sh"} +{"size_bytes": 2991, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/fork.c"} +{"size_bytes": 5052, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/hash.c"} +{"size_bytes": 4030, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/pack.c"} +{"size_bytes": 901, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/slab.c"} +{"size_bytes": 8787, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/arena_reset.c"} +{"size_bytes": 8030, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/malloc_io.c"} +{"size_bytes": 693, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/div.c"} +{"size_bytes": 18488, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/math.c"} +{"size_bytes": 2733, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/background_thread_enable.c"} +{"size_bytes": 109, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/junk.sh"} +{"size_bytes": 7944, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/rb.c"} +{"size_bytes": 4329, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/unit/extent_quantize.c"} +{"size_bytes": 3552, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params4253.h"} +{"size_bytes": 403, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/jemalloc_test_defs.h"} +{"size_bytes": 290, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/jemalloc_test_defs.h.in"} +{"size_bytes": 3552, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params2281.h"} +{"size_bytes": 224, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/thd.h"} +{"size_bytes": 13468, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/test.h"} +{"size_bytes": 5203, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-sse2.h"} +{"size_bytes": 584, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/mtx.h"} +{"size_bytes": 5331, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT.h"} +{"size_bytes": 312, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/timer.h"} +{"size_bytes": 814, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/btalloc.h"} +{"size_bytes": 3560, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params19937.h"} +{"size_bytes": 3564, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params86243.h"} +{"size_bytes": 3558, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params607.h"} +{"size_bytes": 2883, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/mq.h"} +{"size_bytes": 3552, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params1279.h"} +{"size_bytes": 3566, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params11213.h"} +{"size_bytes": 3564, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params132049.h"} +{"size_bytes": 9757, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/extent_hooks.h"} +{"size_bytes": 5911, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-alti.h"} +{"size_bytes": 4589, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/jemalloc_test.h.in"} +{"size_bytes": 4286, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params.h"} +{"size_bytes": 3566, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params44497.h"} +{"size_bytes": 3566, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/SFMT-params216091.h"} +{"size_bytes": 4541, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/jemalloc_test.h"} +{"size_bytes": 7866, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/test/include/test/math.h"} +{"size_bytes": 626832, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/background_thread.o"} +{"size_bytes": 1667432, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc.o"} +{"size_bytes": 3271, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prng.d"} +{"size_bytes": 3269, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bin.d"} +{"size_bytes": 3027, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc_cpp.cpp"} +{"size_bytes": 48, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_mmap.sym"} +{"size_bytes": 3322, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_dss.d"} +{"size_bytes": 117, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/malloc_io.sym"} +{"size_bytes": 457776, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bitmap.o"} +{"size_bytes": 41, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bitmap.sym"} +{"size_bytes": 1574856, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/stats.o"} +{"size_bytes": 3425, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc.d"} +{"size_bytes": 3266, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ckh.d"} +{"size_bytes": 60141, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prof.c"} +{"size_bytes": 470536, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/rtree.sym.o"} +{"size_bytes": 5723, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex.c"} +{"size_bytes": 19556, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tcache.c"} +{"size_bytes": 456304, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_mmap.o"} +{"size_bytes": 3221, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ckh.sym.d"} +{"size_bytes": 471520, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tsd.sym.o"} +{"size_bytes": 87199, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc.c"} +{"size_bytes": 3284, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/malloc_io.d"} +{"size_bytes": 3271, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hash.d"} +{"size_bytes": 1144312, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/arena.o"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hash.sym"} +{"size_bytes": 3275, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ticker.d"} +{"size_bytes": 132, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prng.c"} +{"size_bytes": 3267, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex.sym.d"} +{"size_bytes": 3275, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tcache.d"} +{"size_bytes": 473584, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex_pool.o"} +{"size_bytes": 3380, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc.sym.d"} +{"size_bytes": 3309, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex.d"} +{"size_bytes": 3300, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/background_thread.d"} +{"size_bytes": 809344, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ckh.o"} +{"size_bytes": 517656, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/base.sym.o"} +{"size_bytes": 675, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/sz.d"} +{"size_bytes": 3226, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prof.sym.d"} +{"size_bytes": 500528, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/rtree.o"} +{"size_bytes": 220, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/base.sym"} +{"size_bytes": 1113472, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/arena.sym.o"} +{"size_bytes": 3292, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc_cpp.d"} +{"size_bytes": 49, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/log.sym"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ticker.sym"} +{"size_bytes": 3302, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/stats.sym.d"} +{"size_bytes": 323, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hooks.sym.d"} +{"size_bytes": 3299, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ctl.sym.d"} +{"size_bytes": 8977, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tsd.c"} +{"size_bytes": 6878, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_dss.c"} +{"size_bytes": 453328, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prng.o"} +{"size_bytes": 3348, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/arena.d"} +{"size_bytes": 16, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex_pool.sym"} +{"size_bytes": 11023, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/large.c"} +{"size_bytes": 95, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ctl.sym"} +{"size_bytes": 481, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex_pool.c"} +{"size_bytes": 522880, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/malloc_io.o"} +{"size_bytes": 1144568, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent.sym.o"} +{"size_bytes": 3269, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tsd.d"} +{"size_bytes": 453328, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hash.o"} +{"size_bytes": 3231, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/rtree.sym.d"} +{"size_bytes": 423408, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hash.sym.o"} +{"size_bytes": 3273, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/pages.d"} +{"size_bytes": 3224, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bin.sym.d"} +{"size_bytes": 134, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ticker.c"} +{"size_bytes": 349296, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/sz.sym.o"} +{"size_bytes": 2493, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/log.c"} +{"size_bytes": 3226, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prng.sym.d"} +{"size_bytes": 443648, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex_pool.sym.o"} +{"size_bytes": 789872, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tcache.o"} +{"size_bytes": 467, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc.sym"} +{"size_bytes": 3269, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/base.sym.d"} +{"size_bytes": 460, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/div.sym.d"} +{"size_bytes": 562336, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc_cpp.o"} +{"size_bytes": 230, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/nstime.sym"} +{"size_bytes": 596544, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/background_thread.sym.o"} +{"size_bytes": 27160, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/background_thread.c"} +{"size_bytes": 432760, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/nstime.sym.o"} +{"size_bytes": 3316, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/large.d"} +{"size_bytes": 40914, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/stats.c"} +{"size_bytes": 624504, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/large.o"} +{"size_bytes": 143, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ckh.sym"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prng.sym"} +{"size_bytes": 503992, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_dss.o"} +{"size_bytes": 463, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tcache.sym"} +{"size_bytes": 3241, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex_pool.sym.d"} +{"size_bytes": 559, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/background_thread.sym"} +{"size_bytes": 1879712, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ctl.sym.o"} +{"size_bytes": 3304, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/log.d"} +{"size_bytes": 15501, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/base.c"} +{"size_bytes": 3231, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/pages.sym.d"} +{"size_bytes": 492904, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/malloc_io.sym.o"} +{"size_bytes": 3196, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bitmap.c"} +{"size_bytes": 3274, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/large.sym.d"} +{"size_bytes": 3275, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bitmap.d"} +{"size_bytes": 242, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/large.sym"} +{"size_bytes": 3273, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/rtree.d"} +{"size_bytes": 3235, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/witness.sym.d"} +{"size_bytes": 3224, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tsd.sym.d"} +{"size_bytes": 9, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/div.sym"} +{"size_bytes": 3344, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ctl.d"} +{"size_bytes": 2464, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/sz.c"} +{"size_bytes": 3276, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent.sym.d"} +{"size_bytes": 177, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/witness.sym"} +{"size_bytes": 86, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/stats.sym"} +{"size_bytes": 630, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/sz.sym.d"} +{"size_bytes": 473992, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_dss.sym.o"} +{"size_bytes": 905, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_mmap.c"} +{"size_bytes": 3255, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/background_thread.sym.d"} +{"size_bytes": 66589, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent.c"} +{"size_bytes": 744784, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prof.sym.o"} +{"size_bytes": 314552, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hooks.sym.o"} +{"size_bytes": 3314, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/base.d"} +{"size_bytes": 423416, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ticker.sym.o"} +{"size_bytes": 166, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex.sym"} +{"size_bytes": 131, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_dss.sym"} +{"size_bytes": 465232, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex.sym.o"} +{"size_bytes": 14945, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/zone.c"} +{"size_bytes": 329744, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/div.sym.o"} +{"size_bytes": 2461, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/witness.c"} +{"size_bytes": 433088, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/witness.sym.o"} +{"size_bytes": 3499, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/nstime.c"} +{"size_bytes": 8805, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/rtree.c"} +{"size_bytes": 14483, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/pages.c"} +{"size_bytes": 431536, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/log.sym.o"} +{"size_bytes": 3259, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/log.sym.d"} +{"size_bytes": 3277, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_dss.sym.d"} +{"size_bytes": 379288, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/sz.o"} +{"size_bytes": 423408, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prng.sym.o"} +{"size_bytes": 51, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/sz.sym"} +{"size_bytes": 759600, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tcache.sym.o"} +{"size_bytes": 501624, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tsd.o"} +{"size_bytes": 3233, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/nstime.sym.d"} +{"size_bytes": 14704, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ckh.c"} +{"size_bytes": 3344, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/stats.d"} +{"size_bytes": 70, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bin.sym"} +{"size_bytes": 37, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hooks.sym"} +{"size_bytes": 1636552, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/jemalloc.sym.o"} +{"size_bytes": 3226, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hash.sym.d"} +{"size_bytes": 510344, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/pages.o"} +{"size_bytes": 480264, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/pages.sym.o"} +{"size_bytes": 426344, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_mmap.sym.o"} +{"size_bytes": 3306, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/arena.sym.d"} +{"size_bytes": 397, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hooks.c"} +{"size_bytes": 547792, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/base.o"} +{"size_bytes": 853, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent.sym"} +{"size_bytes": 1910304, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ctl.o"} +{"size_bytes": 1329, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bin.c"} +{"size_bytes": 3233, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tcache.sym.d"} +{"size_bytes": 344488, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hooks.o"} +{"size_bytes": 3286, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex_pool.d"} +{"size_bytes": 3275, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/nstime.d"} +{"size_bytes": 461488, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/log.o"} +{"size_bytes": 127, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/rtree.sym"} +{"size_bytes": 60817, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/arena.c"} +{"size_bytes": 594248, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/large.sym.o"} +{"size_bytes": 81383, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ctl.c"} +{"size_bytes": 3233, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bitmap.sym.d"} +{"size_bytes": 505, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/div.d"} +{"size_bytes": 478032, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bin.o"} +{"size_bytes": 453344, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ticker.o"} +{"size_bytes": 132, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hash.c"} +{"size_bytes": 448056, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bin.sym.o"} +{"size_bytes": 779224, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ckh.sym.o"} +{"size_bytes": 365, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/hooks.d"} +{"size_bytes": 14681, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/malloc_io.c"} +{"size_bytes": 1566, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/div.c"} +{"size_bytes": 3331, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_mmap.d"} +{"size_bytes": 359680, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/div.o"} +{"size_bytes": 463080, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/witness.o"} +{"size_bytes": 3271, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prof.d"} +{"size_bytes": 213, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/pages.sym"} +{"size_bytes": 3233, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/ticker.sym.d"} +{"size_bytes": 168, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/tsd.sym"} +{"size_bytes": 3318, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent.d"} +{"size_bytes": 462792, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/nstime.o"} +{"size_bytes": 3239, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/malloc_io.sym.d"} +{"size_bytes": 775248, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prof.o"} +{"size_bytes": 824, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/prof.sym"} +{"size_bytes": 3280, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/witness.d"} +{"size_bytes": 3286, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent_mmap.sym.d"} +{"size_bytes": 495256, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/mutex.o"} +{"size_bytes": 1175016, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/extent.o"} +{"size_bytes": 1544880, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/stats.sym.o"} +{"size_bytes": 427832, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/bitmap.sym.o"} +{"size_bytes": 1107, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/src/arena.sym"} +{"size_bytes": 20950970, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/lib/libjemalloc.a"} +{"size_bytes": 3183, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/scripts/gen_travis.py"} +{"size_bytes": 3566, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/scripts/gen_run_tests.py"} +{"size_bytes": 43940, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/build-aux/config.guess"} +{"size_bytes": 5585, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/build-aux/install-sh"} +{"size_bytes": 36339, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/build-aux/config.sub"} +{"size_bytes": 1049, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/msvc_compat/strings.h"} +{"size_bytes": 134, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/msvc_compat/windows_extra.h"} +{"size_bytes": 7728, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/msvc_compat/C99/stdint.h"} +{"size_bytes": 449, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/msvc_compat/C99/stdbool.h"} +{"size_bytes": 2285, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_typedefs.h"} +{"size_bytes": 457, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc.sh"} +{"size_bytes": 460, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_rename.sh"} +{"size_bytes": 1038, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_rename.h"} +{"size_bytes": 2165, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_mangle_jet.h"} +{"size_bytes": 1143, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_defs.h.in"} +{"size_bytes": 4160, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_macros.h.in"} +{"size_bytes": 1252, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_defs.h"} +{"size_bytes": 1262, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_mangle.sh"} +{"size_bytes": 13995, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc.h"} +{"size_bytes": 3284, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_protos.h.in"} +{"size_bytes": 4039, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_macros.h"} +{"size_bytes": 3220, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_protos.h"} +{"size_bytes": 3260, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_protos_jet.h"} +{"size_bytes": 2120, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_mangle.h"} +{"size_bytes": 2285, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/jemalloc_typedefs.h.in"} +{"size_bytes": 129, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/public_namespace.sh"} +{"size_bytes": 3531, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_preamble.h"} +{"size_bytes": 3754, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/log.h"} +{"size_bytes": 28479, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/size_classes.h"} +{"size_bytes": 312, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/base_inlines.h"} +{"size_bytes": 293, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_structs_a.h"} +{"size_bytes": 7528, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/extent_structs.h"} +{"size_bytes": 1330, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/assert.h"} +{"size_bytes": 955, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/stats.h"} +{"size_bytes": 20998, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/private_namespace.gen.h"} +{"size_bytes": 1962, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/background_thread_inlines.h"} +{"size_bytes": 1563, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/base_structs.h"} +{"size_bytes": 5540, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/atomic_msvc.h"} +{"size_bytes": 1463, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/util.h"} +{"size_bytes": 6121, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/atomic_gcc_sync.h"} +{"size_bytes": 530, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/public_symbols.txt"} +{"size_bytes": 2015, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/ticker.h"} +{"size_bytes": 4547, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_externs.h"} +{"size_bytes": 16320, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/rtree.h"} +{"size_bytes": 2504, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/ql.h"} +{"size_bytes": 12557, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/ph.h"} +{"size_bytes": 1855, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/rtree_tsd.h"} +{"size_bytes": 613, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/spin.h"} +{"size_bytes": 1368, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/background_thread_externs.h"} +{"size_bytes": 3018, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tsd_win.h"} +{"size_bytes": 7702, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/hash.h"} +{"size_bytes": 2132, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_decls.h"} +{"size_bytes": 38305, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/rb.h"} +{"size_bytes": 493, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/extent_types.h"} +{"size_bytes": 3016, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/mutex_prof.h"} +{"size_bytes": 9611, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tsd.h"} +{"size_bytes": 452, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/public_unnamespace.h"} +{"size_bytes": 1395, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/private_symbols.awk"} +{"size_bytes": 5459, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/prof_inlines_b.h"} +{"size_bytes": 3381, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/cache_bin.h"} +{"size_bytes": 1172, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/div.h"} +{"size_bytes": 11232, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/bitmap.h"} +{"size_bytes": 3475, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/prof_externs.h"} +{"size_bytes": 5746, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tcache_inlines.h"} +{"size_bytes": 3613, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/ctl.h"} +{"size_bytes": 2350, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/qr.h"} +{"size_bytes": 11730, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/extent_inlines.h"} +{"size_bytes": 1304, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/nstime.h"} +{"size_bytes": 328, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/extent_mmap.h"} +{"size_bytes": 1303, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/bin_stats.h"} +{"size_bytes": 11537, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/emitter.h"} +{"size_bytes": 4291, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_includes.h"} +{"size_bytes": 3604, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tsd_generic.h"} +{"size_bytes": 10705, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h.in"} +{"size_bytes": 9798, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/size_classes.sh"} +{"size_bytes": 1931, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tcache_types.h"} +{"size_bytes": 6843, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_stats.h"} +{"size_bytes": 1417, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/private_symbols_jet.awk"} +{"size_bytes": 1851, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tcache_structs.h"} +{"size_bytes": 2183, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tcache_externs.h"} +{"size_bytes": 9570, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_inlines_b.h"} +{"size_bytes": 1148, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/private_symbols.sh"} +{"size_bytes": 1139, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tsd_malloc_thread_cleanup.h"} +{"size_bytes": 4113, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/atomic_gcc_atomic.h"} +{"size_bytes": 2479, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/prof_inlines_a.h"} +{"size_bytes": 258, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tsd_types.h"} +{"size_bytes": 1778, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/prof_types.h"} +{"size_bytes": 3127, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/pages.h"} +{"size_bytes": 4433, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_a.h"} +{"size_bytes": 8089, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/mutex.h"} +{"size_bytes": 3064, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/bin.h"} +{"size_bytes": 811, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/hooks.h"} +{"size_bytes": 946, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/base_externs.h"} +{"size_bytes": 111, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/public_unnamespace.sh"} +{"size_bytes": 3265, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/ckh.h"} +{"size_bytes": 95, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/private_namespace.sh"} +{"size_bytes": 1474, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_inlines_a.h"} +{"size_bytes": 2985, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/malloc_io.h"} +{"size_bytes": 2875, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/mutex_pool.h"} +{"size_bytes": 1105, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/base_types.h"} +{"size_bytes": 4804, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/prng.h"} +{"size_bytes": 1089, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/tsd_tls.h"} +{"size_bytes": 970, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/public_namespace.h"} +{"size_bytes": 11294, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h"} +{"size_bytes": 8168, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/sz.h"} +{"size_bytes": 2466, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/atomic.h"} +{"size_bytes": 3201, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/bit_util.h"} +{"size_bytes": 3546, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/atomic_c11.h"} +{"size_bytes": 3294, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/extent_externs.h"} +{"size_bytes": 1744, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/background_thread_structs.h"} +{"size_bytes": 728, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/extent_dss.h"} +{"size_bytes": 9480, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/witness.h"} +{"size_bytes": 1238, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/large_externs.h"} +{"size_bytes": 6693, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_structs_b.h"} +{"size_bytes": 2970, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/smoothstep.sh"} +{"size_bytes": 5140, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_types.h"} +{"size_bytes": 1689, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_externs.h"} +{"size_bytes": 1477, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/arena_types.h"} +{"size_bytes": 15626, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/smoothstep.h"} +{"size_bytes": 8349, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_c.h"} +{"size_bytes": 3579, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_preamble.h.in"} +{"size_bytes": 20998, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/private_namespace.h"} +{"size_bytes": 2289, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_inlines_b.h"} +{"size_bytes": 1016, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/jemalloc_internal_macros.h"} +{"size_bytes": 5170, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/include/jemalloc/internal/prof_structs.h"} +{"size_bytes": 151, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/bin/jemalloc.sh.in"} +{"size_bytes": 145, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/bin/jemalloc.sh"} +{"size_bytes": 179141, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/bin/jeprof"} +{"size_bytes": 1598, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/bin/jemalloc-config.in"} +{"size_bytes": 179331, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/bin/jeprof.in"} +{"size_bytes": 1940, "category": "riker", "path": "scripts/redis/dev/deps/jemalloc/bin/jemalloc-config"} +{"size_bytes": 13423, "category": "riker", "path": "scripts/redis/dev/src/Makefile"} +{"size_bytes": 4477, "category": "riker", "path": "scripts/redis/dev/src/crc16.c"} +{"size_bytes": 4597, "category": "riker", "path": "scripts/redis/dev/src/ae_kqueue.c"} +{"size_bytes": 6965, "category": "riker", "path": "scripts/redis/dev/src/stream.h"} +{"size_bytes": 230, "category": "riker", "path": "scripts/redis/dev/src/crc64.h"} +{"size_bytes": 3254, "category": "riker", "path": "scripts/redis/dev/src/anet.h"} +{"size_bytes": 3942, "category": "riker", "path": "scripts/redis/dev/src/latency.h"} +{"size_bytes": 7515, "category": "riker", "path": "scripts/redis/dev/src/lolwut5.c"} +{"size_bytes": 46058, "category": "riker", "path": "scripts/redis/dev/src/sds.c"} +{"size_bytes": 1964, "category": "riker", "path": "scripts/redis/dev/src/pqsort.h"} +{"size_bytes": 26301, "category": "riker", "path": "scripts/redis/dev/src/expire.c"} +{"size_bytes": 3324, "category": "riker", "path": "scripts/redis/dev/src/connhelpers.h"} +{"size_bytes": 1897, "category": "riker", "path": "scripts/redis/dev/src/monotonic.h"} +{"size_bytes": 36481, "category": "riker", "path": "scripts/redis/dev/src/geo.c"} +{"size_bytes": 3227, "category": "riker", "path": "scripts/redis/dev/src/util.h"} +{"size_bytes": 1619, "category": "riker", "path": "scripts/redis/dev/src/cli_common.h"} +{"size_bytes": 29906, "category": "riker", "path": "scripts/redis/dev/src/evict.c"} +{"size_bytes": 5536, "category": "riker", "path": "scripts/redis/dev/src/monotonic.c"} +{"size_bytes": 7667, "category": "riker", "path": "scripts/redis/dev/src/timeout.c"} +{"size_bytes": 89446, "category": "riker", "path": "scripts/redis/dev/src/acl.c"} +{"size_bytes": 32768, "category": "riker", "path": "scripts/redis/dev/src/blocked.c"} +{"size_bytes": 14745, "category": "riker", "path": "scripts/redis/dev/src/redis-check-rdb.c"} +{"size_bytes": 5263, "category": "riker", "path": "scripts/redis/dev/src/sha256.c"} +{"size_bytes": 4656, "category": "riker", "path": "scripts/redis/dev/src/geohash.h"} +{"size_bytes": 1165, "category": "riker", "path": "scripts/redis/dev/src/sha256.h"} +{"size_bytes": 112334, "category": "riker", "path": "scripts/redis/dev/src/crc16_slottable.h"} +{"size_bytes": 316469, "category": "riker", "path": "scripts/redis/dev/src/redis-cli.c"} +{"size_bytes": 6456, "category": "riker", "path": "scripts/redis/dev/src/lzf_d.c"} +{"size_bytes": 6943, "category": "riker", "path": "scripts/redis/dev/src/atomicvar.h"} +{"size_bytes": 447, "category": "riker", "path": "scripts/redis/dev/src/.make-settings"} +{"size_bytes": 7695, "category": "riker", "path": "scripts/redis/dev/src/rdb.h"} +{"size_bytes": 76203, "category": "riker", "path": "scripts/redis/dev/src/debug.c"} +{"size_bytes": 735, "category": "riker", "path": "scripts/redis/dev/src/mkreleasehdr.sh"} +{"size_bytes": 7175, "category": "riker", "path": "scripts/redis/dev/src/redis-check-aof.c"} +{"size_bytes": 9220, "category": "riker", "path": "scripts/redis/dev/src/crcspeed.c"} +{"size_bytes": 19033, "category": "riker", "path": "scripts/redis/dev/src/anet.c"} +{"size_bytes": 153556, "category": "riker", "path": "scripts/redis/dev/src/replication.c"} +{"size_bytes": 14854, "category": "riker", "path": "scripts/redis/dev/src/cluster.h"} +{"size_bytes": 3567, "category": "riker", "path": "scripts/redis/dev/src/adlist.h"} +{"size_bytes": 11148, "category": "riker", "path": "scripts/redis/dev/src/geohash_helper.c"} +{"size_bytes": 14853, "category": "riker", "path": "scripts/redis/dev/src/multi.c"} +{"size_bytes": 8091, "category": "riker", "path": "scripts/redis/dev/src/lolwut6.c"} +{"size_bytes": 14091, "category": "riker", "path": "scripts/redis/dev/src/siphash.c"} +{"size_bytes": 4139, "category": "riker", "path": "scripts/redis/dev/src/setcpuaffinity.c"} +{"size_bytes": 35656, "category": "riker", "path": "scripts/redis/dev/src/listpack.c"} +{"size_bytes": 55908, "category": "riker", "path": "scripts/redis/dev/src/object.c"} +{"size_bytes": 2838, "category": "riker", "path": "scripts/redis/dev/src/asciilogo.h"} +{"size_bytes": 42, "category": "riker", "path": "scripts/redis/dev/src/.gitignore"} +{"size_bytes": 3933, "category": "riker", "path": "scripts/redis/dev/src/ziplist.h"} +{"size_bytes": 76522, "category": "riker", "path": "scripts/redis/dev/src/rax.c"} +{"size_bytes": 7947, "category": "riker", "path": "scripts/redis/dev/src/slowlog.c"} +{"size_bytes": 2893, "category": "riker", "path": "scripts/redis/dev/src/crcspeed.h"} +{"size_bytes": 6143, "category": "riker", "path": "scripts/redis/dev/src/crc64.c"} +{"size_bytes": 2261, "category": "riker", "path": "scripts/redis/dev/src/bio.h"} +{"size_bytes": 17702, "category": "riker", "path": "scripts/redis/dev/src/intset.c"} +{"size_bytes": 4900, "category": "riker", "path": "scripts/redis/dev/src/ae_epoll.c"} +{"size_bytes": 45205, "category": "riker", "path": "scripts/redis/dev/src/defrag.c"} +{"size_bytes": 2268, "category": "riker", "path": "scripts/redis/dev/src/fmacros.h"} +{"size_bytes": 3848, "category": "riker", "path": "scripts/redis/dev/src/rand.c"} +{"size_bytes": 42727, "category": "riker", "path": "scripts/redis/dev/src/bitops.c"} +{"size_bytes": 11018, "category": "riker", "path": "scripts/redis/dev/src/ae_evport.c"} +{"size_bytes": 2736, "category": "riker", "path": "scripts/redis/dev/src/zipmap.h"} +{"size_bytes": 2602, "category": "riker", "path": "scripts/redis/dev/src/lolwut.h"} +{"size_bytes": 95743, "category": "riker", "path": "scripts/redis/dev/src/ziplist.c"} +{"size_bytes": 9470, "category": "riker", "path": "scripts/redis/dev/src/sds.h"} +{"size_bytes": 2430, "category": "riker", "path": "scripts/redis/dev/src/redisassert.h"} +{"size_bytes": 405, "category": "riker", "path": "scripts/redis/dev/src/geo.h"} +{"size_bytes": 114872, "category": "riker", "path": "scripts/redis/dev/src/rdb.c"} +{"size_bytes": 5963, "category": "riker", "path": "scripts/redis/dev/src/notify.c"} +{"size_bytes": 106838, "category": "riker", "path": "scripts/redis/dev/src/quicklist.c"} +{"size_bytes": 129917, "category": "riker", "path": "scripts/redis/dev/src/server.h"} +{"size_bytes": 5580, "category": "riker", "path": "scripts/redis/dev/src/syncio.c"} +{"size_bytes": 4557, "category": "riker", "path": "scripts/redis/dev/src/gopher.c"} +{"size_bytes": 241596, "category": "riker", "path": "scripts/redis/dev/src/cluster.c"} +{"size_bytes": 25110, "category": "riker", "path": "scripts/redis/dev/src/tracking.c"} +{"size_bytes": 2082, "category": "riker", "path": "scripts/redis/dev/src/rax_malloc.h"} +{"size_bytes": 2345, "category": "riker", "path": "scripts/redis/dev/src/sparkline.h"} +{"size_bytes": 30534, "category": "riker", "path": "scripts/redis/dev/src/util.c"} +{"size_bytes": 78793, "category": "riker", "path": "scripts/redis/dev/src/aof.c"} +{"size_bytes": 378015, "category": "riker", "path": "scripts/redis/dev/src/module.c"} +{"size_bytes": 44203, "category": "riker", "path": "scripts/redis/dev/src/dict.c"} +{"size_bytes": 5874, "category": "riker", "path": "scripts/redis/dev/src/lzfP.h"} +{"size_bytes": 66509, "category": "riker", "path": "scripts/redis/dev/src/redismodule.h"} +{"size_bytes": 7277, "category": "riker", "path": "scripts/redis/dev/src/lolwut.c"} +{"size_bytes": 76131, "category": "riker", "path": "scripts/redis/dev/src/redis-benchmark.c"} +{"size_bytes": 143816, "category": "riker", "path": "scripts/redis/dev/src/t_stream.c"} +{"size_bytes": 237290, "category": "riker", "path": "scripts/redis/dev/src/server.c"} +{"size_bytes": 41095, "category": "riker", "path": "scripts/redis/dev/src/t_set.c"} +{"size_bytes": 5676, "category": "riker", "path": "scripts/redis/dev/src/localtime.c"} +{"size_bytes": 15737, "category": "riker", "path": "scripts/redis/dev/src/rio.c"} +{"size_bytes": 5215, "category": "riker", "path": "scripts/redis/dev/src/zmalloc.h"} +{"size_bytes": 2379, "category": "riker", "path": "scripts/redis/dev/src/slowlog.h"} +{"size_bytes": 58153, "category": "riker", "path": "scripts/redis/dev/src/hyperloglog.c"} +{"size_bytes": 9902, "category": "riker", "path": "scripts/redis/dev/src/connection.h"} +{"size_bytes": 6513, "category": "riker", "path": "scripts/redis/dev/src/cli_common.c"} +{"size_bytes": 10219, "category": "riker", "path": "scripts/redis/dev/src/geohash.c"} +{"size_bytes": 27777, "category": "riker", "path": "scripts/redis/dev/src/latency.c"} +{"size_bytes": 6587, "category": "riker", "path": "scripts/redis/dev/src/sparkline.c"} +{"size_bytes": 2187, "category": "riker", "path": "scripts/redis/dev/src/listpack_malloc.h"} +{"size_bytes": 3828, "category": "riker", "path": "scripts/redis/dev/src/ae_select.c"} +{"size_bytes": 1763, "category": "riker", "path": "scripts/redis/dev/src/rand.h"} +{"size_bytes": 21090, "category": "riker", "path": "scripts/redis/dev/src/zmalloc.c"} +{"size_bytes": 111, "category": "riker", "path": "scripts/redis/dev/src/release.h"} +{"size_bytes": 6059, "category": "riker", "path": "scripts/redis/dev/src/mt19937-64.c"} +{"size_bytes": 19077, "category": "riker", "path": "scripts/redis/dev/src/zipmap.c"} +{"size_bytes": 8057, "category": "riker", "path": "scripts/redis/dev/src/setproctitle.c"} +{"size_bytes": 7888, "category": "riker", "path": "scripts/redis/dev/src/dict.h"} +{"size_bytes": 5469, "category": "riker", "path": "scripts/redis/dev/src/ae.h"} +{"size_bytes": 9621, "category": "riker", "path": "scripts/redis/dev/src/rax.h"} +{"size_bytes": 2951, "category": "riker", "path": "scripts/redis/dev/src/endianconv.h"} +{"size_bytes": 6787, "category": "riker", "path": "scripts/redis/dev/src/childinfo.c"} +{"size_bytes": 13518, "category": "riker", "path": "scripts/redis/dev/src/memtest.c"} +{"size_bytes": 40670, "category": "riker", "path": "scripts/redis/dev/src/t_hash.c"} +{"size_bytes": 110883, "category": "riker", "path": "scripts/redis/dev/src/config.c"} +{"size_bytes": 7288, "category": "riker", "path": "scripts/redis/dev/src/sha1.c"} +{"size_bytes": 9012, "category": "riker", "path": "scripts/redis/dev/src/lzf_c.c"} +{"size_bytes": 3600, "category": "riker", "path": "scripts/redis/dev/src/redis-trib.rb"} +{"size_bytes": 8355, "category": "riker", "path": "scripts/redis/dev/src/config.h"} +{"size_bytes": 3092, "category": "riker", "path": "scripts/redis/dev/src/geohash_helper.h"} +{"size_bytes": 142346, "category": "riker", "path": "scripts/redis/dev/src/networking.c"} +{"size_bytes": 6632, "category": "riker", "path": "scripts/redis/dev/src/rio.h"} +{"size_bytes": 16788, "category": "riker", "path": "scripts/redis/dev/src/pubsub.c"} +{"size_bytes": 5528, "category": "riker", "path": "scripts/redis/dev/src/pqsort.c"} +{"size_bytes": 100411, "category": "riker", "path": "scripts/redis/dev/src/scripting.c"} +{"size_bytes": 73, "category": "riker", "path": "scripts/redis/dev/src/version.h"} +{"size_bytes": 17217, "category": "riker", "path": "scripts/redis/dev/src/ae.c"} +{"size_bytes": 2429, "category": "riker", "path": "scripts/redis/dev/src/testhelp.h"} +{"size_bytes": 2355, "category": "riker", "path": "scripts/redis/dev/src/debugmacro.h"} +{"size_bytes": 8508, "category": "riker", "path": "scripts/redis/dev/src/lazyfree.c"} +{"size_bytes": 2411, "category": "riker", "path": "scripts/redis/dev/src/sdsalloc.h"} +{"size_bytes": 14982, "category": "riker", "path": "scripts/redis/dev/src/connection.c"} +{"size_bytes": 580, "category": "riker", "path": "scripts/redis/dev/src/sha1.h"} +{"size_bytes": 3318, "category": "riker", "path": "scripts/redis/dev/src/mt19937-64.h"} +{"size_bytes": 11511, "category": "riker", "path": "scripts/redis/dev/src/bio.c"} +{"size_bytes": 392, "category": "riker", "path": "scripts/redis/dev/src/valgrind.sup"} +{"size_bytes": 4407, "category": "riker", "path": "scripts/redis/dev/src/lzf.h"} +{"size_bytes": 3008, "category": "riker", "path": "scripts/redis/dev/src/listpack.h"} +{"size_bytes": 0, "category": "riker", "path": "scripts/redis/dev/src/.make-prerequisites"} +{"size_bytes": 2201, "category": "riker", "path": "scripts/redis/dev/src/solarisfixes.h"} +{"size_bytes": 32892, "category": "riker", "path": "scripts/redis/dev/src/tls.c"} +{"size_bytes": 34257, "category": "riker", "path": "scripts/redis/dev/src/t_string.c"} +{"size_bytes": 35040, "category": "riker", "path": "scripts/redis/dev/src/t_list.c"} +{"size_bytes": 22591, "category": "riker", "path": "scripts/redis/dev/src/sort.c"} +{"size_bytes": 70257, "category": "riker", "path": "scripts/redis/dev/src/db.c"} +{"size_bytes": 203010, "category": "riker", "path": "scripts/redis/dev/src/sentinel.c"} +{"size_bytes": 2393, "category": "riker", "path": "scripts/redis/dev/src/intset.h"} +{"size_bytes": 10764, "category": "riker", "path": "scripts/redis/dev/src/adlist.c"} +{"size_bytes": 3814, "category": "riker", "path": "scripts/redis/dev/src/endianconv.c"} +{"size_bytes": 2591, "category": "riker", "path": "scripts/redis/dev/src/release.c"} +{"size_bytes": 9435, "category": "riker", "path": "scripts/redis/dev/src/quicklist.h"} +{"size_bytes": 141475, "category": "riker", "path": "scripts/redis/dev/src/t_zset.c"} +{"size_bytes": 37607, "category": "riker", "path": "scripts/redis/dev/src/help.h"} +{"size_bytes": 1568, "category": "riker", "path": "scripts/redis/dev/src/modules/Makefile"} +{"size_bytes": 13471, "category": "riker", "path": "scripts/redis/dev/src/modules/hellotype.c"} +{"size_bytes": 10, "category": "riker", "path": "scripts/redis/dev/src/modules/.gitignore"} +{"size_bytes": 3178, "category": "riker", "path": "scripts/redis/dev/src/modules/hellotimer.c"} +{"size_bytes": 17850, "category": "riker", "path": "scripts/redis/dev/src/modules/testmodule.c"} +{"size_bytes": 9255, "category": "riker", "path": "scripts/redis/dev/src/modules/helloblock.c"} +{"size_bytes": 3808, "category": "riker", "path": "scripts/redis/dev/src/modules/hellohook.c"} +{"size_bytes": 7374, "category": "riker", "path": "scripts/redis/dev/src/modules/helloacl.c"} +{"size_bytes": 5277, "category": "riker", "path": "scripts/redis/dev/src/modules/hellocluster.c"} +{"size_bytes": 5279, "category": "riker", "path": "scripts/redis/dev/src/modules/hellodict.c"} +{"size_bytes": 2306, "category": "riker", "path": "scripts/redis/dev/src/modules/gendoc.rb"} +{"size_bytes": 24576, "category": "riker", "path": "scripts/redis/dev/src/modules/helloworld.c"} +{"size_bytes": 26376, "category": "riker", "path": "scripts/redis/dev/tests/test_helper.tcl"} +{"size_bytes": 22020, "category": "riker", "path": "scripts/redis/dev/tests/instances.tcl"} +{"size_bytes": 759, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/run.tcl"} +{"size_bytes": 19, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tmp/.gitignore"} +{"size_bytes": 207, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/04-slave-selection.tcl"} +{"size_bytes": 2546, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/07-down-conditions.tcl"} +{"size_bytes": 1981, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/08-hostname-conf.tcl"} +{"size_bytes": 1250, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/01-conf-update.tcl"} +{"size_bytes": 1394, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/05-manual.tcl"} +{"size_bytes": 1134, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/06-ckquorum.tcl"} +{"size_bytes": 53, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/03-runtime-reconf.tcl"} +{"size_bytes": 3957, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/00-base.tcl"} +{"size_bytes": 2669, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/02-slaves-reconf.tcl"} +{"size_bytes": 2791, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/10-replica-priority.tcl"} +{"size_bytes": 1338, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/09-acl-support.tcl"} +{"size_bytes": 2202, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/helpers/check_leaked_fds.tcl"} +{"size_bytes": 621, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/includes/start-init-tests.tcl"} +{"size_bytes": 2693, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/includes/init-tests.tcl"} +{"size_bytes": 333, "category": "riker", "path": "scripts/redis/dev/tests/sentinel/tests/includes/sentinel.conf"} +{"size_bytes": 425, "category": "riker", "path": "scripts/redis/dev/tests/assets/default.conf"} +{"size_bytes": 113, "category": "riker", "path": "scripts/redis/dev/tests/assets/user.acl"} +{"size_bytes": 667, "category": "riker", "path": "scripts/redis/dev/tests/assets/encodings.rdb"} +{"size_bytes": 115, "category": "riker", "path": "scripts/redis/dev/tests/assets/minimal.conf"} +{"size_bytes": 1415, "category": "riker", "path": "scripts/redis/dev/tests/assets/corrupt_ziplist.rdb"} +{"size_bytes": 35, "category": "riker", "path": "scripts/redis/dev/tests/assets/hash-zipmap.rdb"} +{"size_bytes": 5251, "category": "riker", "path": "scripts/redis/dev/tests/cluster/cluster.tcl"} +{"size_bytes": 699, "category": "riker", "path": "scripts/redis/dev/tests/cluster/run.tcl"} +{"size_bytes": 19, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tmp/.gitignore"} +{"size_bytes": 1981, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/08-update-msg.tcl"} +{"size_bytes": 1692, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/15-cluster-slots.tcl"} +{"size_bytes": 2189, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/12-replica-migration-2.tcl"} +{"size_bytes": 1325, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/13-no-failover-option.tcl"} +{"size_bytes": 1272, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/11-manual-takeover.tcl"} +{"size_bytes": 4713, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/05-slave-selection.tcl"} +{"size_bytes": 1308, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/02-failover.tcl"} +{"size_bytes": 1583, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/00-base.tcl"} +{"size_bytes": 3868, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/14-consistency-check.tcl"} +{"size_bytes": 2955, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/20-half-migrated-slot.tcl"} +{"size_bytes": 6512, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/04-resharding.tcl"} +{"size_bytes": 763, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/01-faildet.tcl"} +{"size_bytes": 2065, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/06-slave-stop-cond.tcl"} +{"size_bytes": 1800, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/16-transactions-on-replica.tcl"} +{"size_bytes": 3299, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/03-failover-loop.tcl"} +{"size_bytes": 2022, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/12.1-replica-migration-3.tcl"} +{"size_bytes": 2474, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/07-replica-migration.tcl"} +{"size_bytes": 4350, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/10-manual-failover.tcl"} +{"size_bytes": 2450, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/19-cluster-nodes-slots.tcl"} +{"size_bytes": 1022, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/09-pubsub.tcl"} +{"size_bytes": 1414, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/21-many-slot-migration.tcl"} +{"size_bytes": 1207, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/18-info.tcl"} +{"size_bytes": 2446, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/17-diskless-load-swapdb.tcl"} +{"size_bytes": 469, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/helpers/onlydots.tcl"} +{"size_bytes": 829, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/includes/utils.tcl"} +{"size_bytes": 2070, "category": "riker", "path": "scripts/redis/dev/tests/cluster/tests/includes/init-tests.tcl"} +{"size_bytes": 2, "category": "riker", "path": "scripts/redis/dev/tests/tmp/.gitignore"} +{"size_bytes": 4587, "category": "riker", "path": "scripts/redis/dev/tests/modules/infotest.c"} +{"size_bytes": 1244, "category": "riker", "path": "scripts/redis/dev/tests/modules/Makefile"} +{"size_bytes": 7623, "category": "riker", "path": "scripts/redis/dev/tests/modules/defragtest.c"} +{"size_bytes": 7130, "category": "riker", "path": "scripts/redis/dev/tests/modules/datatype.c"} +{"size_bytes": 3803, "category": "riker", "path": "scripts/redis/dev/tests/modules/scan.c"} +{"size_bytes": 9869, "category": "riker", "path": "scripts/redis/dev/tests/modules/testrdb.c"} +{"size_bytes": 9522, "category": "riker", "path": "scripts/redis/dev/tests/modules/stream.c"} +{"size_bytes": 1127, "category": "riker", "path": "scripts/redis/dev/tests/modules/zset.c"} +{"size_bytes": 3066, "category": "riker", "path": "scripts/redis/dev/tests/modules/auth.c"} +{"size_bytes": 11498, "category": "riker", "path": "scripts/redis/dev/tests/modules/misc.c"} +{"size_bytes": 3093, "category": "riker", "path": "scripts/redis/dev/tests/modules/timer.c"} +{"size_bytes": 6185, "category": "riker", "path": "scripts/redis/dev/tests/modules/blockedclient.c"} +{"size_bytes": 6188, "category": "riker", "path": "scripts/redis/dev/tests/modules/test_lazyfree.c"} +{"size_bytes": 3544, "category": "riker", "path": "scripts/redis/dev/tests/modules/getkeys.c"} +{"size_bytes": 8345, "category": "riker", "path": "scripts/redis/dev/tests/modules/keyspace_events.c"} +{"size_bytes": 5370, "category": "riker", "path": "scripts/redis/dev/tests/modules/commandfilter.c"} +{"size_bytes": 8600, "category": "riker", "path": "scripts/redis/dev/tests/modules/propagate.c"} +{"size_bytes": 8558, "category": "riker", "path": "scripts/redis/dev/tests/modules/blockonbackground.c"} +{"size_bytes": 12591, "category": "riker", "path": "scripts/redis/dev/tests/modules/hooks.c"} +{"size_bytes": 2708, "category": "riker", "path": "scripts/redis/dev/tests/modules/fork.c"} +{"size_bytes": 3481, "category": "riker", "path": "scripts/redis/dev/tests/modules/hash.c"} +{"size_bytes": 18426, "category": "riker", "path": "scripts/redis/dev/tests/modules/blockonkeys.c"} +{"size_bytes": 1691, "category": "riker", "path": "scripts/redis/dev/tests/integration/logging.tcl"} +{"size_bytes": 9676, "category": "riker", "path": "scripts/redis/dev/tests/integration/redis-cli.tcl"} +{"size_bytes": 1305, "category": "riker", "path": "scripts/redis/dev/tests/integration/convert-zipmap-hash-on-load.tcl"} +{"size_bytes": 10385, "category": "riker", "path": "scripts/redis/dev/tests/integration/aof.tcl"} +{"size_bytes": 8029, "category": "riker", "path": "scripts/redis/dev/tests/integration/redis-benchmark.tcl"} +{"size_bytes": 9351, "category": "riker", "path": "scripts/redis/dev/tests/integration/psync2-pingoff.tcl"} +{"size_bytes": 11064, "category": "riker", "path": "scripts/redis/dev/tests/integration/rdb.tcl"} +{"size_bytes": 1327, "category": "riker", "path": "scripts/redis/dev/tests/integration/aof-race.tcl"} +{"size_bytes": 2109, "category": "riker", "path": "scripts/redis/dev/tests/integration/block-repl.tcl"} +{"size_bytes": 3289, "category": "riker", "path": "scripts/redis/dev/tests/integration/replication-2.tcl"} +{"size_bytes": 2816, "category": "riker", "path": "scripts/redis/dev/tests/integration/psync2-reg.tcl"} +{"size_bytes": 36733, "category": "riker", "path": "scripts/redis/dev/tests/integration/corrupt-dump.tcl"} +{"size_bytes": 5037, "category": "riker", "path": "scripts/redis/dev/tests/integration/replication-3.tcl"} +{"size_bytes": 5156, "category": "riker", "path": "scripts/redis/dev/tests/integration/replication-4.tcl"} +{"size_bytes": 37242, "category": "riker", "path": "scripts/redis/dev/tests/integration/replication.tcl"} +{"size_bytes": 14876, "category": "riker", "path": "scripts/redis/dev/tests/integration/psync2.tcl"} +{"size_bytes": 9937, "category": "riker", "path": "scripts/redis/dev/tests/integration/failover.tcl"} +{"size_bytes": 5924, "category": "riker", "path": "scripts/redis/dev/tests/integration/replication-psync.tcl"} +{"size_bytes": 8389, "category": "riker", "path": "scripts/redis/dev/tests/integration/corrupt-dump-fuzzer.tcl"} +{"size_bytes": 6281, "category": "riker", "path": "scripts/redis/dev/tests/support/test.tcl"} +{"size_bytes": 517, "category": "riker", "path": "scripts/redis/dev/tests/support/cli.tcl"} +{"size_bytes": 10396, "category": "riker", "path": "scripts/redis/dev/tests/support/redis.tcl"} +{"size_bytes": 13466, "category": "riker", "path": "scripts/redis/dev/tests/support/cluster.tcl"} +{"size_bytes": 21763, "category": "riker", "path": "scripts/redis/dev/tests/support/util.tcl"} +{"size_bytes": 403, "category": "riker", "path": "scripts/redis/dev/tests/support/tmpfile.tcl"} +{"size_bytes": 19989, "category": "riker", "path": "scripts/redis/dev/tests/support/server.tcl"} +{"size_bytes": 541, "category": "riker", "path": "scripts/redis/dev/tests/support/benchmark.tcl"} +{"size_bytes": 424, "category": "riker", "path": "scripts/redis/dev/tests/helpers/gen_write_load.tcl"} +{"size_bytes": 1511, "category": "riker", "path": "scripts/redis/dev/tests/helpers/bg_block_op.tcl"} +{"size_bytes": 326, "category": "riker", "path": "scripts/redis/dev/tests/helpers/bg_complex_data.tcl"} +{"size_bytes": 5520, "category": "riker", "path": "scripts/redis/dev/tests/unit/slowlog.tcl"} +{"size_bytes": 558, "category": "riker", "path": "scripts/redis/dev/tests/unit/limits.tcl"} +{"size_bytes": 16877, "category": "riker", "path": "scripts/redis/dev/tests/unit/multi.tcl"} +{"size_bytes": 6476, "category": "riker", "path": "scripts/redis/dev/tests/unit/hyperloglog.tcl"} +{"size_bytes": 12484, "category": "riker", "path": "scripts/redis/dev/tests/unit/expire.tcl"} +{"size_bytes": 5617, "category": "riker", "path": "scripts/redis/dev/tests/unit/pause.tcl"} +{"size_bytes": 7140, "category": "riker", "path": "scripts/redis/dev/tests/unit/info.tcl"} +{"size_bytes": 12975, "category": "riker", "path": "scripts/redis/dev/tests/unit/maxmemory.tcl"} +{"size_bytes": 18231, "category": "riker", "path": "scripts/redis/dev/tests/unit/acl.tcl"} +{"size_bytes": 187, "category": "riker", "path": "scripts/redis/dev/tests/unit/printver.tcl"} +{"size_bytes": 1233, "category": "riker", "path": "scripts/redis/dev/tests/unit/lazyfree.tcl"} +{"size_bytes": 13759, "category": "riker", "path": "scripts/redis/dev/tests/unit/pubsub.tcl"} +{"size_bytes": 11144, "category": "riker", "path": "scripts/redis/dev/tests/unit/other.tcl"} +{"size_bytes": 2122, "category": "riker", "path": "scripts/redis/dev/tests/unit/auth.tcl"} +{"size_bytes": 1689, "category": "riker", "path": "scripts/redis/dev/tests/unit/wait.tcl"} +{"size_bytes": 2169, "category": "riker", "path": "scripts/redis/dev/tests/unit/introspection-2.tcl"} +{"size_bytes": 21103, "category": "riker", "path": "scripts/redis/dev/tests/unit/memefficiency.tcl"} +{"size_bytes": 5462, "category": "riker", "path": "scripts/redis/dev/tests/unit/tls.tcl"} +{"size_bytes": 11013, "category": "riker", "path": "scripts/redis/dev/tests/unit/bitops.tcl"} +{"size_bytes": 10244, "category": "riker", "path": "scripts/redis/dev/tests/unit/sort.tcl"} +{"size_bytes": 1127, "category": "riker", "path": "scripts/redis/dev/tests/unit/networking.tcl"} +{"size_bytes": 26740, "category": "riker", "path": "scripts/redis/dev/tests/unit/geo.tcl"} +{"size_bytes": 32519, "category": "riker", "path": "scripts/redis/dev/tests/unit/scripting.tcl"} +{"size_bytes": 2397, "category": "riker", "path": "scripts/redis/dev/tests/unit/latency-monitor.tcl"} +{"size_bytes": 6477, "category": "riker", "path": "scripts/redis/dev/tests/unit/introspection.tcl"} +{"size_bytes": 3458, "category": "riker", "path": "scripts/redis/dev/tests/unit/protocol.tcl"} +{"size_bytes": 1830, "category": "riker", "path": "scripts/redis/dev/tests/unit/shutdown.tcl"} +{"size_bytes": 13243, "category": "riker", "path": "scripts/redis/dev/tests/unit/dump.tcl"} +{"size_bytes": 1060, "category": "riker", "path": "scripts/redis/dev/tests/unit/pendingquerybuf.tcl"} +{"size_bytes": 9291, "category": "riker", "path": "scripts/redis/dev/tests/unit/scan.tcl"} +{"size_bytes": 986, "category": "riker", "path": "scripts/redis/dev/tests/unit/quit.tcl"} +{"size_bytes": 8191, "category": "riker", "path": "scripts/redis/dev/tests/unit/bitfield.tcl"} +{"size_bytes": 14027, "category": "riker", "path": "scripts/redis/dev/tests/unit/keyspace.tcl"} +{"size_bytes": 2674, "category": "riker", "path": "scripts/redis/dev/tests/unit/oom-score-adj.tcl"} +{"size_bytes": 6061, "category": "riker", "path": "scripts/redis/dev/tests/unit/obuf-limits.tcl"} +{"size_bytes": 7438, "category": "riker", "path": "scripts/redis/dev/tests/unit/aofrw.tcl"} +{"size_bytes": 20733, "category": "riker", "path": "scripts/redis/dev/tests/unit/tracking.tcl"} +{"size_bytes": 7365, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/blockonkeys.tcl"} +{"size_bytes": 811, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/fork.tcl"} +{"size_bytes": 2502, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/commandfilter.tcl"} +{"size_bytes": 1497, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/getkeys.tcl"} +{"size_bytes": 1612, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/defrag.tcl"} +{"size_bytes": 1967, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/datatype.tcl"} +{"size_bytes": 962, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/test_lazyfree.tcl"} +{"size_bytes": 6271, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/testrdb.tcl"} +{"size_bytes": 2272, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/auth.tcl"} +{"size_bytes": 477, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/zset.tcl"} +{"size_bytes": 3152, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/blockonbackground.tcl"} +{"size_bytes": 6567, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/stream.tcl"} +{"size_bytes": 6552, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/hooks.tcl"} +{"size_bytes": 3383, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/infotest.tcl"} +{"size_bytes": 1067, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/hash.tcl"} +{"size_bytes": 1389, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/scan.tcl"} +{"size_bytes": 1556, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/timer.tcl"} +{"size_bytes": 2994, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/blockedclient.tcl"} +{"size_bytes": 2193, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/keyspace_events.tcl"} +{"size_bytes": 3575, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/misc.tcl"} +{"size_bytes": 9101, "category": "riker", "path": "scripts/redis/dev/tests/unit/moduleapi/propagate.tcl"} +{"size_bytes": 4617, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/incr.tcl"} +{"size_bytes": 26552, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/stream-cgroups.tcl"} +{"size_bytes": 23209, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/set.tcl"} +{"size_bytes": 1663, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/list-2.tcl"} +{"size_bytes": 17692, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/string.tcl"} +{"size_bytes": 66408, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/zset.tcl"} +{"size_bytes": 23044, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/stream.tcl"} +{"size_bytes": 28340, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/hash.tcl"} +{"size_bytes": 38958, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/list.tcl"} +{"size_bytes": 4522, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/list-3.tcl"} +{"size_bytes": 238, "category": "riker", "path": "scripts/redis/dev/tests/unit/type/list-common.tcl"} +{"size_bytes": 110, "category": "riker", "path": "scripts/redis/dev/.github/ISSUE_TEMPLATE/other_stuff.md"} +{"size_bytes": 409, "category": "riker", "path": "scripts/redis/dev/.github/ISSUE_TEMPLATE/bug_report.md"} +{"size_bytes": 957, "category": "riker", "path": "scripts/redis/dev/.github/ISSUE_TEMPLATE/question.md"} +{"size_bytes": 364, "category": "riker", "path": "scripts/redis/dev/.github/ISSUE_TEMPLATE/crash_report.md"} +{"size_bytes": 623, "category": "riker", "path": "scripts/redis/dev/.github/ISSUE_TEMPLATE/feature_request.md"} +{"size_bytes": 1360, "category": "riker", "path": "scripts/redis/dev/.github/workflows/ci.yml"} +{"size_bytes": 8823, "category": "riker", "path": "scripts/redis/dev/.github/workflows/daily.yml"} +{"size_bytes": 8595, "category": "riker", "path": "scripts/xz/dev/PACKAGERS"} +{"size_bytes": 23155, "category": "riker", "path": "scripts/xz/dev/CMakeLists.txt"} +{"size_bytes": 35147, "category": "riker", "path": "scripts/xz/dev/COPYING.GPLv3"} +{"size_bytes": 18092, "category": "riker", "path": "scripts/xz/dev/COPYING.GPLv2"} +{"size_bytes": 4040, "category": "riker", "path": "scripts/xz/dev/TODO"} +{"size_bytes": 15756, "category": "riker", "path": "scripts/xz/dev/INSTALL.generic"} +{"size_bytes": 2673, "category": "riker", "path": "scripts/xz/dev/THANKS"} +{"size_bytes": 28925, "category": "riker", "path": "scripts/xz/dev/INSTALL"} +{"size_bytes": 1100, "category": "riker", "path": "scripts/xz/dev/.gitignore"} +{"size_bytes": 248, "category": "riker", "path": "scripts/xz/dev/ChangeLog"} +{"size_bytes": 1043, "category": "riker", "path": "scripts/xz/dev/AUTHORS"} +{"size_bytes": 26530, "category": "riker", "path": "scripts/xz/dev/COPYING.LGPLv2.1"} +{"size_bytes": 26012, "category": "riker", "path": "scripts/xz/dev/NEWS"} +{"size_bytes": 9936, "category": "riker", "path": "scripts/xz/dev/README"} +{"size_bytes": 2775, "category": "riker", "path": "scripts/xz/dev/COPYING"} +{"size_bytes": 50472, "category": "riker", "path": "scripts/xz/dev/Doxyfile.in"} +{"size_bytes": 2961, "category": "riker", "path": "scripts/xz/dev/Makefile.am"} +{"size_bytes": 957, "category": "riker", "path": "scripts/xz/dev/autogen.sh"} +{"size_bytes": 29450, "category": "riker", "path": "scripts/xz/dev/configure.ac"} +{"size_bytes": 73, "category": "riker", "path": "scripts/xz/dev/.git/description"} +{"size_bytes": 256, "category": "riker", "path": "scripts/xz/dev/.git/config"} +{"size_bytes": 4926, "category": "riker", "path": "scripts/xz/dev/.git/packed-refs"} +{"size_bytes": 38908, "category": "riker", "path": "scripts/xz/dev/.git/index"} +{"size_bytes": 41, "category": "riker", "path": "scripts/xz/dev/.git/HEAD"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz/dev/.git/refs/remotes/origin/HEAD"} +{"size_bytes": 41, "category": "riker", "path": "scripts/xz/dev/.git/refs/heads/master"} +{"size_bytes": 240, "category": "riker", "path": "scripts/xz/dev/.git/info/exclude"} +{"size_bytes": 5135306, "category": "riker", "path": "scripts/xz/dev/.git/objects/pack/pack-365c4486f30500f517075ced1948990ad5bce750.pack"} +{"size_bytes": 447056, "category": "riker", "path": "scripts/xz/dev/.git/objects/pack/pack-365c4486f30500f517075ced1948990ad5bce750.idx"} +{"size_bytes": 63764, "category": "riker", "path": "scripts/xz/dev/.git/objects/pack/pack-365c4486f30500f517075ced1948990ad5bce750.rev"} +{"size_bytes": 189, "category": "riker", "path": "scripts/xz/dev/.git/hooks/post-update.sample"} +{"size_bytes": 416, "category": "riker", "path": "scripts/xz/dev/.git/hooks/pre-merge-commit.sample"} +{"size_bytes": 544, "category": "riker", "path": "scripts/xz/dev/.git/hooks/pre-receive.sample"} +{"size_bytes": 1643, "category": "riker", "path": "scripts/xz/dev/.git/hooks/pre-commit.sample"} +{"size_bytes": 3650, "category": "riker", "path": "scripts/xz/dev/.git/hooks/update.sample"} +{"size_bytes": 1492, "category": "riker", "path": "scripts/xz/dev/.git/hooks/prepare-commit-msg.sample"} +{"size_bytes": 478, "category": "riker", "path": "scripts/xz/dev/.git/hooks/applypatch-msg.sample"} +{"size_bytes": 2783, "category": "riker", "path": "scripts/xz/dev/.git/hooks/push-to-checkout.sample"} +{"size_bytes": 4898, "category": "riker", "path": "scripts/xz/dev/.git/hooks/pre-rebase.sample"} +{"size_bytes": 2308, "category": "riker", "path": "scripts/xz/dev/.git/hooks/sendemail-validate.sample"} +{"size_bytes": 1374, "category": "riker", "path": "scripts/xz/dev/.git/hooks/pre-push.sample"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz/dev/.git/hooks/pre-applypatch.sample"} +{"size_bytes": 4726, "category": "riker", "path": "scripts/xz/dev/.git/hooks/fsmonitor-watchman.sample"} +{"size_bytes": 896, "category": "riker", "path": "scripts/xz/dev/.git/hooks/commit-msg.sample"} +{"size_bytes": 379, "category": "riker", "path": "scripts/xz/dev/.git/logs/HEAD"} +{"size_bytes": 175, "category": "riker", "path": "scripts/xz/dev/.git/logs/refs/remotes/origin/HEAD"} +{"size_bytes": 175, "category": "riker", "path": "scripts/xz/dev/.git/logs/refs/heads/master"} +{"size_bytes": 643, "category": "riker", "path": "scripts/xz/dev/cmake/tuklib_mbstr.cmake"} +{"size_bytes": 5928, "category": "riker", "path": "scripts/xz/dev/cmake/tuklib_cpucores.cmake"} +{"size_bytes": 1593, "category": "riker", "path": "scripts/xz/dev/cmake/tuklib_common.cmake"} +{"size_bytes": 627, "category": "riker", "path": "scripts/xz/dev/cmake/tuklib_progname.cmake"} +{"size_bytes": 4677, "category": "riker", "path": "scripts/xz/dev/cmake/tuklib_physmem.cmake"} +{"size_bytes": 4200, "category": "riker", "path": "scripts/xz/dev/cmake/tuklib_integer.cmake"} +{"size_bytes": 4720, "category": "riker", "path": "scripts/xz/dev/windows/README-Windows.txt"} +{"size_bytes": 1864, "category": "riker", "path": "scripts/xz/dev/windows/INSTALL-MSVC.txt"} +{"size_bytes": 5264, "category": "riker", "path": "scripts/xz/dev/windows/INSTALL-MinGW.txt"} +{"size_bytes": 6243, "category": "riker", "path": "scripts/xz/dev/windows/build.bash"} +{"size_bytes": 21953, "category": "riker", "path": "scripts/xz/dev/windows/vs2019/liblzma.vcxproj"} +{"size_bytes": 23574, "category": "riker", "path": "scripts/xz/dev/windows/vs2019/liblzma_dll.vcxproj"} +{"size_bytes": 2893, "category": "riker", "path": "scripts/xz/dev/windows/vs2019/xz_win.sln"} +{"size_bytes": 4117, "category": "riker", "path": "scripts/xz/dev/windows/vs2019/config.h"} +{"size_bytes": 21884, "category": "riker", "path": "scripts/xz/dev/windows/vs2017/liblzma.vcxproj"} +{"size_bytes": 23505, "category": "riker", "path": "scripts/xz/dev/windows/vs2017/liblzma_dll.vcxproj"} +{"size_bytes": 2758, "category": "riker", "path": "scripts/xz/dev/windows/vs2017/xz_win.sln"} +{"size_bytes": 4117, "category": "riker", "path": "scripts/xz/dev/windows/vs2017/config.h"} +{"size_bytes": 21883, "category": "riker", "path": "scripts/xz/dev/windows/vs2013/liblzma.vcxproj"} +{"size_bytes": 23504, "category": "riker", "path": "scripts/xz/dev/windows/vs2013/liblzma_dll.vcxproj"} +{"size_bytes": 2759, "category": "riker", "path": "scripts/xz/dev/windows/vs2013/xz_win.sln"} +{"size_bytes": 4117, "category": "riker", "path": "scripts/xz/dev/windows/vs2013/config.h"} +{"size_bytes": 4939, "category": "riker", "path": "scripts/xz/dev/m4/tuklib_physmem.m4"} +{"size_bytes": 462, "category": "riker", "path": "scripts/xz/dev/m4/.gitignore"} +{"size_bytes": 3425, "category": "riker", "path": "scripts/xz/dev/m4/tuklib_integer.m4"} +{"size_bytes": 364, "category": "riker", "path": "scripts/xz/dev/m4/tuklib_common.m4"} +{"size_bytes": 853, "category": "riker", "path": "scripts/xz/dev/m4/tuklib_mbstr.m4"} +{"size_bytes": 3265, "category": "riker", "path": "scripts/xz/dev/m4/visibility.m4"} +{"size_bytes": 4774, "category": "riker", "path": "scripts/xz/dev/m4/tuklib_cpucores.m4"} +{"size_bytes": 1713, "category": "riker", "path": "scripts/xz/dev/m4/posix-shell.m4"} +{"size_bytes": 567, "category": "riker", "path": "scripts/xz/dev/m4/tuklib_progname.m4"} +{"size_bytes": 21970, "category": "riker", "path": "scripts/xz/dev/m4/ax_pthread.m4"} +{"size_bytes": 2656, "category": "riker", "path": "scripts/xz/dev/m4/getopt.m4"} +{"size_bytes": 3122, "category": "riker", "path": "scripts/xz/dev/m4/ax_check_capsicum.m4"} +{"size_bytes": 5689, "category": "riker", "path": "scripts/xz/dev/doc/lzma-file-format.txt"} +{"size_bytes": 43305, "category": "riker", "path": "scripts/xz/dev/doc/xz-file-format.txt"} +{"size_bytes": 9411, "category": "riker", "path": "scripts/xz/dev/doc/faq.txt"} +{"size_bytes": 7427, "category": "riker", "path": "scripts/xz/dev/doc/history.txt"} +{"size_bytes": 3130, "category": "riker", "path": "scripts/xz/dev/doc/examples_old/xz_pipe_decomp.c"} +{"size_bytes": 3043, "category": "riker", "path": "scripts/xz/dev/doc/examples_old/xz_pipe_comp.c"} +{"size_bytes": 337, "category": "riker", "path": "scripts/xz/dev/doc/examples/Makefile"} +{"size_bytes": 8913, "category": "riker", "path": "scripts/xz/dev/doc/examples/02_decompress.c"} +{"size_bytes": 9534, "category": "riker", "path": "scripts/xz/dev/doc/examples/01_compress_easy.c"} +{"size_bytes": 5025, "category": "riker", "path": "scripts/xz/dev/doc/examples/03_compress_custom.c"} +{"size_bytes": 1037, "category": "riker", "path": "scripts/xz/dev/doc/examples/00_README.txt"} +{"size_bytes": 5214, "category": "riker", "path": "scripts/xz/dev/doc/examples/04_compress_easy_mt.c"} +{"size_bytes": 36283, "category": "riker", "path": "scripts/xz/dev/po/vi.po"} +{"size_bytes": 33980, "category": "riker", "path": "scripts/xz/dev/po/pl.po"} +{"size_bytes": 257, "category": "riker", "path": "scripts/xz/dev/po/POTFILES.in"} +{"size_bytes": 34663, "category": "riker", "path": "scripts/xz/dev/po/it.po"} +{"size_bytes": 344, "category": "riker", "path": "scripts/xz/dev/po/.gitignore"} +{"size_bytes": 33890, "category": "riker", "path": "scripts/xz/dev/po/cs.po"} +{"size_bytes": 32637, "category": "riker", "path": "scripts/xz/dev/po/zh_CN.po"} +{"size_bytes": 1957, "category": "riker", "path": "scripts/xz/dev/po/Makevars"} +{"size_bytes": 36129, "category": "riker", "path": "scripts/xz/dev/po/de.po"} +{"size_bytes": 27713, "category": "riker", "path": "scripts/xz/dev/po/da.po"} +{"size_bytes": 33664, "category": "riker", "path": "scripts/xz/dev/po/fi.po"} +{"size_bytes": 34845, "category": "riker", "path": "scripts/xz/dev/po/hu.po"} +{"size_bytes": 31816, "category": "riker", "path": "scripts/xz/dev/po/zh_TW.po"} +{"size_bytes": 35592, "category": "riker", "path": "scripts/xz/dev/po/pt_BR.po"} +{"size_bytes": 45, "category": "riker", "path": "scripts/xz/dev/po/LINGUAS"} +{"size_bytes": 35769, "category": "riker", "path": "scripts/xz/dev/po/fr.po"} +{"size_bytes": 822, "category": "riker", "path": "scripts/xz/dev/src/Makefile.am"} +{"size_bytes": 2338, "category": "riker", "path": "scripts/xz/dev/src/liblzma/liblzma.map"} +{"size_bytes": 410, "category": "riker", "path": "scripts/xz/dev/src/liblzma/liblzma.pc.in"} +{"size_bytes": 1509, "category": "riker", "path": "scripts/xz/dev/src/liblzma/validate_map.sh"} +{"size_bytes": 287, "category": "riker", "path": "scripts/xz/dev/src/liblzma/liblzma_w32res.rc"} +{"size_bytes": 3375, "category": "riker", "path": "scripts/xz/dev/src/liblzma/Makefile.am"} +{"size_bytes": 429, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/Makefile.inc"} +{"size_bytes": 889, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_private.h"} +{"size_bytes": 3435, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_encoder.c"} +{"size_bytes": 1910, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_decoder.c"} +{"size_bytes": 736, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_decoder.h"} +{"size_bytes": 676, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_encoder.h"} +{"size_bytes": 1914, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_common.c"} +{"size_bytes": 542, "category": "riker", "path": "scripts/xz/dev/src/liblzma/delta/delta_common.h"} +{"size_bytes": 833, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/Makefile.inc"} +{"size_bytes": 2006, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/sparc.c"} +{"size_bytes": 3575, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/x86.c"} +{"size_bytes": 2171, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_coder.h"} +{"size_bytes": 2211, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_private.h"} +{"size_bytes": 1936, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/powerpc.c"} +{"size_bytes": 1906, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/armthumb.c"} +{"size_bytes": 622, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_decoder.h"} +{"size_bytes": 1686, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/arm.c"} +{"size_bytes": 982, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_decoder.c"} +{"size_bytes": 8705, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_coder.c"} +{"size_bytes": 641, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_encoder.h"} +{"size_bytes": 2740, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/ia64.c"} +{"size_bytes": 983, "category": "riker", "path": "scripts/xz/dev/src/liblzma/simple/simple_encoder.c"} +{"size_bytes": 27321, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_decoder.c"} +{"size_bytes": 873, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/Makefile.inc"} +{"size_bytes": 3996, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/fastpos.h"} +{"size_bytes": 819, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma2_decoder.h"} +{"size_bytes": 23286, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_encoder_optimum_normal.c"} +{"size_bytes": 33959, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/fastpos_table.c"} +{"size_bytes": 1554, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_decoder.h"} +{"size_bytes": 7576, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma2_decoder.c"} +{"size_bytes": 18518, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_encoder.c"} +{"size_bytes": 1606, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_encoder.h"} +{"size_bytes": 4402, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_encoder_optimum_fast.c"} +{"size_bytes": 10500, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma2_encoder.c"} +{"size_bytes": 6947, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_common.h"} +{"size_bytes": 3911, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_encoder_private.h"} +{"size_bytes": 1268, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/fastpos_tablegen.c"} +{"size_bytes": 1763, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma_encoder_presets.c"} +{"size_bytes": 1186, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lzma/lzma2_encoder.h"} +{"size_bytes": 4424, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_decoder.c"} +{"size_bytes": 35440, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/index.c"} +{"size_bytes": 4902, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/auto_decoder.c"} +{"size_bytes": 4056, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_buffer_encoder.c"} +{"size_bytes": 1881, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/Makefile.inc"} +{"size_bytes": 1935, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/vli_encoder.c"} +{"size_bytes": 1537, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_buffer_encoder.c"} +{"size_bytes": 840, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/easy_buffer_encoder.c"} +{"size_bytes": 1890, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_encoder.h"} +{"size_bytes": 10652, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/common.c"} +{"size_bytes": 630, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/vli_size.c"} +{"size_bytes": 4998, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/outqueue.h"} +{"size_bytes": 13001, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_decoder.c"} +{"size_bytes": 526, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/hardware_cputhreads.c"} +{"size_bytes": 1187, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_flags_decoder.c"} +{"size_bytes": 5662, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/alone_decoder.c"} +{"size_bytes": 3751, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/alone_encoder.c"} +{"size_bytes": 30356, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_encoder_mt.c"} +{"size_bytes": 1978, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/index.h"} +{"size_bytes": 2640, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_util.c"} +{"size_bytes": 9856, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_encoder.c"} +{"size_bytes": 2785, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_buffer_decoder.c"} +{"size_bytes": 2059, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_flags_encoder.c"} +{"size_bytes": 763, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_buffer_encoder.h"} +{"size_bytes": 1407, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_flags_encoder.c"} +{"size_bytes": 8706, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_common.c"} +{"size_bytes": 10123, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_buffer_encoder.c"} +{"size_bytes": 599, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_decoder.h"} +{"size_bytes": 4819, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/memcmplen.h"} +{"size_bytes": 10467, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/common.h"} +{"size_bytes": 8605, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/index_decoder.c"} +{"size_bytes": 6988, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_decoder.c"} +{"size_bytes": 2279, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_flags_decoder.c"} +{"size_bytes": 601, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/alone_decoder.h"} +{"size_bytes": 576, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_decoder.h"} +{"size_bytes": 668, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/easy_decoder_memusage.c"} +{"size_bytes": 678, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/easy_encoder.c"} +{"size_bytes": 2559, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/vli_decoder.c"} +{"size_bytes": 921, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/easy_preset.h"} +{"size_bytes": 654, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/easy_encoder_memusage.c"} +{"size_bytes": 683, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/hardware_physmem.c"} +{"size_bytes": 5766, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_encoder.c"} +{"size_bytes": 727, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/easy_preset.c"} +{"size_bytes": 617, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_decoder.h"} +{"size_bytes": 8981, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/index_hash.c"} +{"size_bytes": 732, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_encoder.h"} +{"size_bytes": 2510, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_buffer_decoder.c"} +{"size_bytes": 1326, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_flags_common.c"} +{"size_bytes": 584, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/index_encoder.h"} +{"size_bytes": 3346, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_header_encoder.c"} +{"size_bytes": 883, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/stream_flags_common.h"} +{"size_bytes": 4586, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/outqueue.c"} +{"size_bytes": 7345, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_encoder.c"} +{"size_bytes": 1258, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/filter_common.h"} +{"size_bytes": 3710, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_header_decoder.c"} +{"size_bytes": 2368, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/block_buffer_decoder.c"} +{"size_bytes": 5853, "category": "riker", "path": "scripts/xz/dev/src/liblzma/common/index_encoder.c"} +{"size_bytes": 9866, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma.h"} +{"size_bytes": 409, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/Makefile.am"} +{"size_bytes": 24858, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/base.h"} +{"size_bytes": 3914, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/index_hash.h"} +{"size_bytes": 8253, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/stream_flags.h"} +{"size_bytes": 6546, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/vli.h"} +{"size_bytes": 2604, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/hardware.h"} +{"size_bytes": 22107, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/block.h"} +{"size_bytes": 4255, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/check.h"} +{"size_bytes": 16520, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/filter.h"} +{"size_bytes": 23491, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/index.h"} +{"size_bytes": 2630, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/bcj.h"} +{"size_bytes": 1865, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/delta.h"} +{"size_bytes": 14744, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/lzma12.h"} +{"size_bytes": 24844, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/container.h"} +{"size_bytes": 3497, "category": "riker", "path": "scripts/xz/dev/src/liblzma/api/lzma/version.h"} +{"size_bytes": 4616, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/range_encoder.h"} +{"size_bytes": 827, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/price_table.c"} +{"size_bytes": 432, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/Makefile.inc"} +{"size_bytes": 5009, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/range_decoder.h"} +{"size_bytes": 2317, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/range_common.h"} +{"size_bytes": 2013, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/price.h"} +{"size_bytes": 1768, "category": "riker", "path": "scripts/xz/dev/src/liblzma/rangecoder/price_tablegen.c"} +{"size_bytes": 380, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/Makefile.inc"} +{"size_bytes": 10458, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_encoder.h"} +{"size_bytes": 3539, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_encoder_hash.h"} +{"size_bytes": 9130, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_decoder.c"} +{"size_bytes": 5841, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_decoder.h"} +{"size_bytes": 17392, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_encoder.c"} +{"size_bytes": 3252, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_encoder_hash_table.h"} +{"size_bytes": 17379, "category": "riker", "path": "scripts/xz/dev/src/liblzma/lz/lz_encoder_mf.c"} +{"size_bytes": 970, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/Makefile.inc"} +{"size_bytes": 2245, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_tablegen.c"} +{"size_bytes": 5405, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/sha256.c"} +{"size_bytes": 787, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc_macros.h"} +{"size_bytes": 4718, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/check.h"} +{"size_bytes": 25758, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_table_be.h"} +{"size_bytes": 1044, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_small.c"} +{"size_bytes": 31882, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_table_le.h"} +{"size_bytes": 31882, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_table_be.h"} +{"size_bytes": 2277, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_fast.c"} +{"size_bytes": 7228, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_x86.S"} +{"size_bytes": 2910, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/check.c"} +{"size_bytes": 641, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_table.c"} +{"size_bytes": 6761, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_x86.S"} +{"size_bytes": 1744, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_tablegen.c"} +{"size_bytes": 641, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_table.c"} +{"size_bytes": 966, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_small.c"} +{"size_bytes": 1640, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc64_fast.c"} +{"size_bytes": 25758, "category": "riker", "path": "scripts/xz/dev/src/liblzma/check/crc32_table_le.h"} +{"size_bytes": 12051, "category": "riker", "path": "scripts/xz/dev/src/common/mythread.h"} +{"size_bytes": 1136, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_progname.c"} +{"size_bytes": 2881, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_mbstr.h"} +{"size_bytes": 745, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_mbstr_fw.c"} +{"size_bytes": 17067, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_integer.h"} +{"size_bytes": 121, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_config.h"} +{"size_bytes": 1060, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_gettext.h"} +{"size_bytes": 1547, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_exit.c"} +{"size_bytes": 1518, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_mbstr_width.c"} +{"size_bytes": 1461, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_open_stdxxx.c"} +{"size_bytes": 1902, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_common.h"} +{"size_bytes": 706, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_exit.h"} +{"size_bytes": 5786, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_physmem.c"} +{"size_bytes": 4914, "category": "riker", "path": "scripts/xz/dev/src/common/sysdefs.h"} +{"size_bytes": 1311, "category": "riker", "path": "scripts/xz/dev/src/common/common_w32res.rc"} +{"size_bytes": 763, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_physmem.h"} +{"size_bytes": 817, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_progname.h"} +{"size_bytes": 2357, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_cpucores.c"} +{"size_bytes": 606, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_cpucores.h"} +{"size_bytes": 647, "category": "riker", "path": "scripts/xz/dev/src/common/tuklib_open_stdxxx.h"} +{"size_bytes": 1109, "category": "riker", "path": "scripts/xz/dev/src/xz/suffix.h"} +{"size_bytes": 26013, "category": "riker", "path": "scripts/xz/dev/src/xz/coder.c"} +{"size_bytes": 1945, "category": "riker", "path": "scripts/xz/dev/src/xz/mytime.c"} +{"size_bytes": 4450, "category": "riker", "path": "scripts/xz/dev/src/xz/util.h"} +{"size_bytes": 7709, "category": "riker", "path": "scripts/xz/dev/src/xz/options.c"} +{"size_bytes": 5531, "category": "riker", "path": "scripts/xz/dev/src/xz/file_io.h"} +{"size_bytes": 1481, "category": "riker", "path": "scripts/xz/dev/src/xz/hardware.h"} +{"size_bytes": 34010, "category": "riker", "path": "scripts/xz/dev/src/xz/list.c"} +{"size_bytes": 36623, "category": "riker", "path": "scripts/xz/dev/src/xz/message.c"} +{"size_bytes": 1135, "category": "riker", "path": "scripts/xz/dev/src/xz/args.h"} +{"size_bytes": 298, "category": "riker", "path": "scripts/xz/dev/src/xz/xz_w32res.rc"} +{"size_bytes": 972, "category": "riker", "path": "scripts/xz/dev/src/xz/main.h"} +{"size_bytes": 4945, "category": "riker", "path": "scripts/xz/dev/src/xz/signals.c"} +{"size_bytes": 575, "category": "riker", "path": "scripts/xz/dev/src/xz/list.h"} +{"size_bytes": 2119, "category": "riker", "path": "scripts/xz/dev/src/xz/coder.h"} +{"size_bytes": 36331, "category": "riker", "path": "scripts/xz/dev/src/xz/file_io.c"} +{"size_bytes": 5526, "category": "riker", "path": "scripts/xz/dev/src/xz/message.h"} +{"size_bytes": 10365, "category": "riker", "path": "scripts/xz/dev/src/xz/suffix.c"} +{"size_bytes": 9565, "category": "riker", "path": "scripts/xz/dev/src/xz/main.c"} +{"size_bytes": 7149, "category": "riker", "path": "scripts/xz/dev/src/xz/util.c"} +{"size_bytes": 5174, "category": "riker", "path": "scripts/xz/dev/src/xz/hardware.c"} +{"size_bytes": 17926, "category": "riker", "path": "scripts/xz/dev/src/xz/args.c"} +{"size_bytes": 65014, "category": "riker", "path": "scripts/xz/dev/src/xz/xz.1"} +{"size_bytes": 3100, "category": "riker", "path": "scripts/xz/dev/src/xz/Makefile.am"} +{"size_bytes": 1337, "category": "riker", "path": "scripts/xz/dev/src/xz/private.h"} +{"size_bytes": 1423, "category": "riker", "path": "scripts/xz/dev/src/xz/mytime.h"} +{"size_bytes": 977, "category": "riker", "path": "scripts/xz/dev/src/xz/options.h"} +{"size_bytes": 1473, "category": "riker", "path": "scripts/xz/dev/src/xz/signals.h"} +{"size_bytes": 5668, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzgrep.in"} +{"size_bytes": 6671, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzdiff.in"} +{"size_bytes": 1153, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzmore.1"} +{"size_bytes": 1360, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzless.1"} +{"size_bytes": 1489, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzgrep.1"} +{"size_bytes": 2200, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzmore.in"} +{"size_bytes": 2440, "category": "riker", "path": "scripts/xz/dev/src/scripts/Makefile.am"} +{"size_bytes": 1837, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzless.in"} +{"size_bytes": 1469, "category": "riker", "path": "scripts/xz/dev/src/scripts/xzdiff.1"} +{"size_bytes": 297, "category": "riker", "path": "scripts/xz/dev/src/xzdec/lzmadec_w32res.rc"} +{"size_bytes": 7616, "category": "riker", "path": "scripts/xz/dev/src/xzdec/xzdec.c"} +{"size_bytes": 2822, "category": "riker", "path": "scripts/xz/dev/src/xzdec/Makefile.am"} +{"size_bytes": 2838, "category": "riker", "path": "scripts/xz/dev/src/xzdec/xzdec.1"} +{"size_bytes": 291, "category": "riker", "path": "scripts/xz/dev/src/xzdec/xzdec_w32res.rc"} +{"size_bytes": 1250, "category": "riker", "path": "scripts/xz/dev/src/lzmainfo/lzmainfo.1"} +{"size_bytes": 300, "category": "riker", "path": "scripts/xz/dev/src/lzmainfo/lzmainfo_w32res.rc"} +{"size_bytes": 787, "category": "riker", "path": "scripts/xz/dev/src/lzmainfo/Makefile.am"} +{"size_bytes": 4853, "category": "riker", "path": "scripts/xz/dev/src/lzmainfo/lzmainfo.c"} +{"size_bytes": 4796, "category": "riker", "path": "scripts/xz/dev/lib/getopt_int.h"} +{"size_bytes": 8094, "category": "riker", "path": "scripts/xz/dev/lib/getopt.in.h"} +{"size_bytes": 32345, "category": "riker", "path": "scripts/xz/dev/lib/getopt.c"} +{"size_bytes": 4010, "category": "riker", "path": "scripts/xz/dev/lib/getopt1.c"} +{"size_bytes": 1069, "category": "riker", "path": "scripts/xz/dev/lib/Makefile.am"} +{"size_bytes": 1902, "category": "riker", "path": "scripts/xz/dev/tests/test_check.c"} +{"size_bytes": 5506, "category": "riker", "path": "scripts/xz/dev/tests/test_filter_flags.c"} +{"size_bytes": 3492, "category": "riker", "path": "scripts/xz/dev/tests/create_compress_files.c"} +{"size_bytes": 5897, "category": "riker", "path": "scripts/xz/dev/tests/test_block_header.c"} +{"size_bytes": 1280, "category": "riker", "path": "scripts/xz/dev/tests/bcj_test.c"} +{"size_bytes": 1873, "category": "riker", "path": "scripts/xz/dev/tests/test_scripts.sh"} +{"size_bytes": 2793, "category": "riker", "path": "scripts/xz/dev/tests/test_bcj_exact_size.c"} +{"size_bytes": 1388, "category": "riker", "path": "scripts/xz/dev/tests/compress_prepared_bcj_x86"} +{"size_bytes": 1240, "category": "riker", "path": "scripts/xz/dev/tests/compress_prepared_bcj_sparc"} +{"size_bytes": 2405, "category": "riker", "path": "scripts/xz/dev/tests/tests.h"} +{"size_bytes": 18661, "category": "riker", "path": "scripts/xz/dev/tests/test_index.c"} +{"size_bytes": 1022, "category": "riker", "path": "scripts/xz/dev/tests/Makefile.am"} +{"size_bytes": 1069, "category": "riker", "path": "scripts/xz/dev/tests/test_files.sh"} +{"size_bytes": 840, "category": "riker", "path": "scripts/xz/dev/tests/xzgrep_expected_output"} +{"size_bytes": 2992, "category": "riker", "path": "scripts/xz/dev/tests/test_compress.sh"} +{"size_bytes": 4333, "category": "riker", "path": "scripts/xz/dev/tests/test_stream_flags.c"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-3.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-block_header-5.xz"} +{"size_bytes": 716, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-x86-lzma2.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/unsupported-check.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-2-index-1.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/good-2-lzma2.xz"} +{"size_bytes": 69, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0catpad-empty.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0-nonempty_index.xz"} +{"size_bytes": 96, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-check-sha256.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-stream_flags-2.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-1.xz"} +{"size_bytes": 31, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0-empty-truncated.xz"} +{"size_bytes": 464, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-8.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0-backward_size.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-lzma2-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-check-crc32.xz"} +{"size_bytes": 55, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0cat-alone.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0cat-header_magic.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/unsupported-filter_flags-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/unsupported-filter_flags-2.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-4.xz"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-lzma2-2.xz"} +{"size_bytes": 464, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-lzma2-4.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0-header_magic.xz"} +{"size_bytes": 36, "category": "riker", "path": "scripts/xz/dev/tests/files/good-0pad-empty.xz"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-lzma2-1.xz"} +{"size_bytes": 51316, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-delta-lzma2.tiff.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-check-crc64.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-stream_flags-1.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-check-none.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-2-index-5.xz"} +{"size_bytes": 52, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-lzma2-5.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-block_header-3.xz"} +{"size_bytes": 76, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-block_header-4.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-block_header-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/unsupported-block_header.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-check-crc64.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-5.xz"} +{"size_bytes": 76, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-vli-2.xz"} +{"size_bytes": 96, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-check-sha256.xz"} +{"size_bytes": 424, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-2.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-block_header-2.xz"} +{"size_bytes": 408, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-7.xz"} +{"size_bytes": 9042, "category": "riker", "path": "scripts/xz/dev/tests/files/README"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-stream_flags-3.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-block_header-2.xz"} +{"size_bytes": 528, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-3delta-lzma2.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-block_header-6.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0-footer_magic.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-2-index-4.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-lzma2-6.xz"} +{"size_bytes": 612, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-sparc-lzma2.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-check-crc32.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-vli-1.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz/dev/tests/files/good-0cat-empty.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/unsupported-filter_flags-1.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-2-compressed_data_padding.xz"} +{"size_bytes": 72, "category": "riker", "path": "scripts/xz/dev/tests/files/good-1-block_header-1.xz"} +{"size_bytes": 32, "category": "riker", "path": "scripts/xz/dev/tests/files/good-0-empty.xz"} +{"size_bytes": 68, "category": "riker", "path": "scripts/xz/dev/tests/files/good-0catpad-empty.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-2-index-2.xz"} +{"size_bytes": 64, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-1-block_header-1.xz"} +{"size_bytes": 92, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-2-index-3.xz"} +{"size_bytes": 37, "category": "riker", "path": "scripts/xz/dev/tests/files/bad-0pad-empty.xz"} +{"size_bytes": 3450, "category": "riker", "path": "scripts/xz/dev/macosx/build.sh"} +{"size_bytes": 694, "category": "riker", "path": "scripts/xz/dev/po4a/po4a.conf"} +{"size_bytes": 1443, "category": "riker", "path": "scripts/xz/dev/po4a/update-po"} +{"size_bytes": 17, "category": "riker", "path": "scripts/xz/dev/po4a/.gitignore"} +{"size_bytes": 201921, "category": "riker", "path": "scripts/xz/dev/po4a/de.po"} +{"size_bytes": 783, "category": "riker", "path": "scripts/xz/dev/build-aux/version.sh"} +{"size_bytes": 1474, "category": "riker", "path": "scripts/xz/dev/build-aux/manconv.sh"} +{"size_bytes": 2490, "category": "riker", "path": "scripts/xz/dev/extra/scanlzma/scanlzma.c"} +{"size_bytes": 3311, "category": "riker", "path": "scripts/xz/dev/extra/7z2lzma/7z2lzma.bash"} +{"size_bytes": 4333, "category": "riker", "path": "scripts/xz/dev/dos/Makefile"} +{"size_bytes": 5281, "category": "riker", "path": "scripts/xz/dev/dos/README.txt"} +{"size_bytes": 3074, "category": "riker", "path": "scripts/xz/dev/dos/INSTALL.txt"} +{"size_bytes": 3943, "category": "riker", "path": "scripts/xz/dev/dos/config.h"} +{"size_bytes": 2252, "category": "riker", "path": "scripts/xz/dev/debug/full_flush.c"} +{"size_bytes": 2880, "category": "riker", "path": "scripts/xz/dev/debug/translation.bash"} +{"size_bytes": 1106, "category": "riker", "path": "scripts/xz/dev/debug/memusage.c"} +{"size_bytes": 2679, "category": "riker", "path": "scripts/xz/dev/debug/sync_flush.c"} +{"size_bytes": 3068, "category": "riker", "path": "scripts/xz/dev/debug/known_sizes.c"} +{"size_bytes": 971, "category": "riker", "path": "scripts/xz/dev/debug/hex2bin.c"} +{"size_bytes": 939, "category": "riker", "path": "scripts/xz/dev/debug/crc32.c"} +{"size_bytes": 647, "category": "riker", "path": "scripts/xz/dev/debug/README"} +{"size_bytes": 921, "category": "riker", "path": "scripts/xz/dev/debug/repeat.c"} +{"size_bytes": 480, "category": "riker", "path": "scripts/xz/dev/debug/Makefile.am"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~5~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~9~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~4~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~9~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~3~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~1~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~7~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~1~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~5~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~5~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~6~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~3~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~2~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~7~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~7~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~4~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~2~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~9~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~4~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~2~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~5~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~1~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~2~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~7~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~8~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~8~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~8~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~3~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~6~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~1~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~6~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~6~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_small/file_example_WAV_2MG.wav.~3~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav.~4~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_small/file_example_WAV_10MG.wav"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_small/file_example_WAV_5MG.wav.~8~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_small/file_example_WAV_1MG.wav.~9~"} +{"size_bytes": 4004172, "category": "media-conv", "path": "jpg_full/jpg/106600.jpg_copy.jpg"} +{"size_bytes": 4060342, "category": "media-conv", "path": "jpg_full/jpg/100301.jpg_copy.jpg"} +{"size_bytes": 2456257, "category": "media-conv", "path": "jpg_full/jpg/106800.jpg"} +{"size_bytes": 1076912, "category": "media-conv", "path": "jpg_full/jpg/110500.jpg_copy.jpg"} +{"size_bytes": 2877682, "category": "media-conv", "path": "jpg_full/jpg/122706.jpg"} +{"size_bytes": 713407, "category": "media-conv", "path": "jpg_full/jpg/124901.jpg_copy.jpg"} +{"size_bytes": 1119278, "category": "media-conv", "path": "jpg_full/jpg/114002.jpg_copy.jpg"} +{"size_bytes": 1058578, "category": "media-conv", "path": "jpg_full/jpg/124302.jpg_copy.jpg"} +{"size_bytes": 2150546, "category": "media-conv", "path": "jpg_full/jpg/104902.jpg"} +{"size_bytes": 3124820, "category": "media-conv", "path": "jpg_full/jpg/107702.jpg"} +{"size_bytes": 2383548, "category": "media-conv", "path": "jpg_full/jpg/126101.jpg_copy.jpg"} +{"size_bytes": 1008401, "category": "media-conv", "path": "jpg_full/jpg/112101.jpg"} +{"size_bytes": 1098577, "category": "media-conv", "path": "jpg_full/jpg/120300.jpg_copy.jpg"} +{"size_bytes": 858423, "category": "media-conv", "path": "jpg_full/jpg/125901.jpg_copy.jpg"} +{"size_bytes": 1448913, "category": "media-conv", "path": "jpg_full/jpg/125800.jpg_copy.jpg"} +{"size_bytes": 1996082, "category": "media-conv", "path": "jpg_full/jpg/103901.jpg"} +{"size_bytes": 1082980, "category": "media-conv", "path": "jpg_full/jpg/108104.jpg"} +{"size_bytes": 1069346, "category": "media-conv", "path": "jpg_full/jpg/118701.jpg_copy.jpg"} +{"size_bytes": 1079592, "category": "media-conv", "path": "jpg_full/jpg/112407.jpg"} +{"size_bytes": 1908382, "category": "media-conv", "path": "jpg_full/jpg/104005.jpg"} +{"size_bytes": 4060342, "category": "media-conv", "path": "jpg_full/jpg/100301.jpg"} +{"size_bytes": 641960, "category": "media-conv", "path": "jpg_full/jpg/128401.jpg"} +{"size_bytes": 2236569, "category": "media-conv", "path": "jpg_full/jpg/102600.jpg_copy.jpg"} +{"size_bytes": 1100735, "category": "media-conv", "path": "jpg_full/jpg/117301.jpg_copy.jpg"} +{"size_bytes": 1668893, "category": "media-conv", "path": "jpg_full/jpg/104400.jpg"} +{"size_bytes": 821938, "category": "media-conv", "path": "jpg_full/jpg/126400.jpg_copy.jpg"} +{"size_bytes": 3391932, "category": "media-conv", "path": "jpg_full/jpg/100902.jpg"} +{"size_bytes": 1079229, "category": "media-conv", "path": "jpg_full/jpg/115900.jpg_copy.jpg"} +{"size_bytes": 1087535, "category": "media-conv", "path": "jpg_full/jpg/119300.jpg"} +{"size_bytes": 1139260, "category": "media-conv", "path": "jpg_full/jpg/125301.jpg"} +{"size_bytes": 1114023, "category": "media-conv", "path": "jpg_full/jpg/101501.jpg"} +{"size_bytes": 1077196, "category": "media-conv", "path": "jpg_full/jpg/119603.jpg_copy.jpg"} +{"size_bytes": 956621, "category": "media-conv", "path": "jpg_full/jpg/106001.jpg_copy.jpg"} +{"size_bytes": 1089367, "category": "media-conv", "path": "jpg_full/jpg/122703.jpg_copy.jpg"} +{"size_bytes": 1092600, "category": "media-conv", "path": "jpg_full/jpg/118302.jpg"} +{"size_bytes": 1817659, "category": "media-conv", "path": "jpg_full/jpg/104700.jpg"} +{"size_bytes": 4007840, "category": "media-conv", "path": "jpg_full/jpg/106501.jpg_copy.jpg"} +{"size_bytes": 1121025, "category": "media-conv", "path": "jpg_full/jpg/121700.jpg_copy.jpg"} +{"size_bytes": 1266340, "category": "media-conv", "path": "jpg_full/jpg/101401.jpg_copy.jpg"} +{"size_bytes": 1792650, "category": "media-conv", "path": "jpg_full/jpg/104002.jpg"} +{"size_bytes": 902392, "category": "media-conv", "path": "jpg_full/jpg/126806.jpg"} +{"size_bytes": 1086651, "category": "media-conv", "path": "jpg_full/jpg/122203.jpg_copy.jpg"} +{"size_bytes": 3961883, "category": "media-conv", "path": "jpg_full/jpg/107500.jpg"} +{"size_bytes": 893665, "category": "media-conv", "path": "jpg_full/jpg/128201.jpg"} +{"size_bytes": 3983323, "category": "media-conv", "path": "jpg_full/jpg/100500.jpg_copy.jpg"} +{"size_bytes": 3930381, "category": "media-conv", "path": "jpg_full/jpg/100002.jpg"} +{"size_bytes": 736157, "category": "media-conv", "path": "jpg_full/jpg/123200.jpg_copy.jpg"} +{"size_bytes": 844511, "category": "media-conv", "path": "jpg_full/jpg/110400.jpg_copy.jpg"} +{"size_bytes": 994037, "category": "media-conv", "path": "jpg_full/jpg/118100.jpg_copy.jpg"} +{"size_bytes": 1090171, "category": "media-conv", "path": "jpg_full/jpg/120701.jpg"} +{"size_bytes": 1497861, "category": "media-conv", "path": "jpg_full/jpg/105002.jpg_copy.jpg"} +{"size_bytes": 2414174, "category": "media-conv", "path": "jpg_full/jpg/106901.jpg"} +{"size_bytes": 768378, "category": "media-conv", "path": "jpg_full/jpg/122301.jpg"} +{"size_bytes": 2024918, "category": "media-conv", "path": "jpg_full/jpg/107700.jpg_copy.jpg"} +{"size_bytes": 1650276, "category": "media-conv", "path": "jpg_full/jpg/102302.jpg"} +{"size_bytes": 1592465, "category": "media-conv", "path": "jpg_full/jpg/103304.jpg_copy.jpg"} +{"size_bytes": 1758164, "category": "media-conv", "path": "jpg_full/jpg/104004.jpg_copy.jpg"} +{"size_bytes": 1098728, "category": "media-conv", "path": "jpg_full/jpg/111800.jpg_copy.jpg"} +{"size_bytes": 2502397, "category": "media-conv", "path": "jpg_full/jpg/102601.jpg_copy.jpg"} +{"size_bytes": 1081060, "category": "media-conv", "path": "jpg_full/jpg/112602.jpg_copy.jpg"} +{"size_bytes": 1096458, "category": "media-conv", "path": "jpg_full/jpg/119000.jpg"} +{"size_bytes": 1095148, "category": "media-conv", "path": "jpg_full/jpg/120401.jpg"} +{"size_bytes": 731231, "category": "media-conv", "path": "jpg_full/jpg/110802.jpg_copy.jpg"} +{"size_bytes": 1081235, "category": "media-conv", "path": "jpg_full/jpg/117401.jpg"} +{"size_bytes": 743363, "category": "media-conv", "path": "jpg_full/jpg/110801.jpg"} +{"size_bytes": 901958, "category": "media-conv", "path": "jpg_full/jpg/126805.jpg"} +{"size_bytes": 1384925, "category": "media-conv", "path": "jpg_full/jpg/106100.jpg"} +{"size_bytes": 1083778, "category": "media-conv", "path": "jpg_full/jpg/119601.jpg_copy.jpg"} +{"size_bytes": 861098, "category": "media-conv", "path": "jpg_full/jpg/125100.jpg_copy.jpg"} +{"size_bytes": 876985, "category": "media-conv", "path": "jpg_full/jpg/128700.jpg"} +{"size_bytes": 1095255, "category": "media-conv", "path": "jpg_full/jpg/118000.jpg"} +{"size_bytes": 1336666, "category": "media-conv", "path": "jpg_full/jpg/127900.jpg"} +{"size_bytes": 1068211, "category": "media-conv", "path": "jpg_full/jpg/114001.jpg_copy.jpg"} +{"size_bytes": 1503923, "category": "media-conv", "path": "jpg_full/jpg/102701.jpg_copy.jpg"} +{"size_bytes": 1261484, "category": "media-conv", "path": "jpg_full/jpg/125401.jpg"} +{"size_bytes": 108022, "category": "media-conv", "path": "jpg_full/jpg/129301.jpg"} +{"size_bytes": 1271825, "category": "media-conv", "path": "jpg_full/jpg/126201.jpg"} +{"size_bytes": 1497861, "category": "media-conv", "path": "jpg_full/jpg/105002.jpg"} +{"size_bytes": 1093715, "category": "media-conv", "path": "jpg_full/jpg/111801.jpg"} +{"size_bytes": 1088957, "category": "media-conv", "path": "jpg_full/jpg/112700.jpg_copy.jpg"} +{"size_bytes": 1066700, "category": "media-conv", "path": "jpg_full/jpg/119702.jpg"} +{"size_bytes": 1099505, "category": "media-conv", "path": "jpg_full/jpg/117102.jpg_copy.jpg"} +{"size_bytes": 1083527, "category": "media-conv", "path": "jpg_full/jpg/123701.jpg"} +{"size_bytes": 1088758, "category": "media-conv", "path": "jpg_full/jpg/116401.jpg_copy.jpg"} +{"size_bytes": 1494122, "category": "media-conv", "path": "jpg_full/jpg/105101.jpg_copy.jpg"} +{"size_bytes": 1430821, "category": "media-conv", "path": "jpg_full/jpg/126802.jpg_copy.jpg"} +{"size_bytes": 2485776, "category": "media-conv", "path": "jpg_full/jpg/103200.jpg_copy.jpg"} +{"size_bytes": 1636131, "category": "media-conv", "path": "jpg_full/jpg/104203.jpg_copy.jpg"} +{"size_bytes": 752504, "category": "media-conv", "path": "jpg_full/jpg/123201.jpg_copy.jpg"} +{"size_bytes": 1066856, "category": "media-conv", "path": "jpg_full/jpg/108501.jpg_copy.jpg"} +{"size_bytes": 1227614, "category": "media-conv", "path": "jpg_full/jpg/102800.jpg"} +{"size_bytes": 1934802, "category": "media-conv", "path": "jpg_full/jpg/126100.jpg"} +{"size_bytes": 1096211, "category": "media-conv", "path": "jpg_full/jpg/116300.jpg_copy.jpg"} +{"size_bytes": 1080299, "category": "media-conv", "path": "jpg_full/jpg/119703.jpg"} +{"size_bytes": 1435377, "category": "media-conv", "path": "jpg_full/jpg/103601.jpg_copy.jpg"} +{"size_bytes": 2847436, "category": "media-conv", "path": "jpg_full/jpg/122707.jpg_copy.jpg"} +{"size_bytes": 1092165, "category": "media-conv", "path": "jpg_full/jpg/121900.jpg_copy.jpg"} +{"size_bytes": 1454608, "category": "media-conv", "path": "jpg_full/jpg/103502.jpg_copy.jpg"} +{"size_bytes": 1213302, "category": "media-conv", "path": "jpg_full/jpg/122901.jpg_copy.jpg"} +{"size_bytes": 1928859, "category": "media-conv", "path": "jpg_full/jpg/122402.jpg"} +{"size_bytes": 1064767, "category": "media-conv", "path": "jpg_full/jpg/108105.jpg_copy.jpg"} +{"size_bytes": 1068211, "category": "media-conv", "path": "jpg_full/jpg/114001.jpg"} +{"size_bytes": 1089367, "category": "media-conv", "path": "jpg_full/jpg/122703.jpg"} +{"size_bytes": 3855038, "category": "media-conv", "path": "jpg_full/jpg/105800.jpg"} +{"size_bytes": 1074293, "category": "media-conv", "path": "jpg_full/jpg/112400.jpg_copy.jpg"} +{"size_bytes": 1092487, "category": "media-conv", "path": "jpg_full/jpg/108300.jpg_copy.jpg"} +{"size_bytes": 3956420, "category": "media-conv", "path": "jpg_full/jpg/106601.jpg_copy.jpg"} +{"size_bytes": 902392, "category": "media-conv", "path": "jpg_full/jpg/126806.jpg_copy.jpg"} +{"size_bytes": 1165781, "category": "media-conv", "path": "jpg_full/jpg/110302.jpg_copy.jpg"} +{"size_bytes": 1073052, "category": "media-conv", "path": "jpg_full/jpg/117701.jpg_copy.jpg"} +{"size_bytes": 1076244, "category": "media-conv", "path": "jpg_full/jpg/117300.jpg"} +{"size_bytes": 1086190, "category": "media-conv", "path": "jpg_full/jpg/117200.jpg"} +{"size_bytes": 1319391, "category": "media-conv", "path": "jpg_full/jpg/128101.jpg_copy.jpg"} +{"size_bytes": 1983886, "category": "media-conv", "path": "jpg_full/jpg/103902.jpg_copy.jpg"} +{"size_bytes": 893174, "category": "media-conv", "path": "jpg_full/jpg/128701.jpg_copy.jpg"} +{"size_bytes": 1052166, "category": "media-conv", "path": "jpg_full/jpg/121001.jpg_copy.jpg"} +{"size_bytes": 1058578, "category": "media-conv", "path": "jpg_full/jpg/124302.jpg"} +{"size_bytes": 922377, "category": "media-conv", "path": "jpg_full/jpg/118401.jpg_copy.jpg"} +{"size_bytes": 654065, "category": "media-conv", "path": "jpg_full/jpg/110601.jpg"} +{"size_bytes": 4064788, "category": "media-conv", "path": "jpg_full/jpg/107501.jpg"} +{"size_bytes": 771699, "category": "media-conv", "path": "jpg_full/jpg/109400.jpg_copy.jpg"} +{"size_bytes": 1054544, "category": "media-conv", "path": "jpg_full/jpg/115100.jpg_copy.jpg"} +{"size_bytes": 3931657, "category": "media-conv", "path": "jpg_full/jpg/100001.jpg"} +{"size_bytes": 1098924, "category": "media-conv", "path": "jpg_full/jpg/121801.jpg"} +{"size_bytes": 1074007, "category": "media-conv", "path": "jpg_full/jpg/124001.jpg_copy.jpg"} +{"size_bytes": 1649054, "category": "media-conv", "path": "jpg_full/jpg/105501.jpg"} +{"size_bytes": 1099059, "category": "media-conv", "path": "jpg_full/jpg/118303.jpg_copy.jpg"} +{"size_bytes": 1102780, "category": "media-conv", "path": "jpg_full/jpg/121400.jpg_copy.jpg"} +{"size_bytes": 752560, "category": "media-conv", "path": "jpg_full/jpg/112000.jpg_copy.jpg"} +{"size_bytes": 1336666, "category": "media-conv", "path": "jpg_full/jpg/127900.jpg_copy.jpg"} +{"size_bytes": 1067263, "category": "media-conv", "path": "jpg_full/jpg/123601.jpg"} +{"size_bytes": 1079377, "category": "media-conv", "path": "jpg_full/jpg/114200.jpg_copy.jpg"} +{"size_bytes": 1327406, "category": "media-conv", "path": "jpg_full/jpg/122602.jpg_copy.jpg"} +{"size_bytes": 1197918, "category": "media-conv", "path": "jpg_full/jpg/106002.jpg_copy.jpg"} +{"size_bytes": 3647397, "category": "media-conv", "path": "jpg_full/jpg/105802.jpg"} +{"size_bytes": 1636314, "category": "media-conv", "path": "jpg_full/jpg/103701.jpg_copy.jpg"} +{"size_bytes": 1087535, "category": "media-conv", "path": "jpg_full/jpg/119300.jpg_copy.jpg"} +{"size_bytes": 765533, "category": "media-conv", "path": "jpg_full/jpg/110600.jpg"} +{"size_bytes": 1151558, "category": "media-conv", "path": "jpg_full/jpg/128500.jpg_copy.jpg"} +{"size_bytes": 1074105, "category": "media-conv", "path": "jpg_full/jpg/118802.jpg_copy.jpg"} +{"size_bytes": 1104607, "category": "media-conv", "path": "jpg_full/jpg/114402.jpg"} +{"size_bytes": 1077376, "category": "media-conv", "path": "jpg_full/jpg/119001.jpg"} +{"size_bytes": 1083332, "category": "media-conv", "path": "jpg_full/jpg/116702.jpg"} +{"size_bytes": 1314461, "category": "media-conv", "path": "jpg_full/jpg/105701.jpg_copy.jpg"} +{"size_bytes": 1054134, "category": "media-conv", "path": "jpg_full/jpg/129002.jpg"} +{"size_bytes": 1056164, "category": "media-conv", "path": "jpg_full/jpg/123901.jpg"} +{"size_bytes": 1096631, "category": "media-conv", "path": "jpg_full/jpg/114702.jpg_copy.jpg"} +{"size_bytes": 1066700, "category": "media-conv", "path": "jpg_full/jpg/119702.jpg_copy.jpg"} +{"size_bytes": 1067263, "category": "media-conv", "path": "jpg_full/jpg/123601.jpg_copy.jpg"} +{"size_bytes": 861098, "category": "media-conv", "path": "jpg_full/jpg/125100.jpg"} +{"size_bytes": 659535, "category": "media-conv", "path": "jpg_full/jpg/110800.jpg"} +{"size_bytes": 4083123, "category": "media-conv", "path": "jpg_full/jpg/107600.jpg"} +{"size_bytes": 1120739, "category": "media-conv", "path": "jpg_full/jpg/112200.jpg_copy.jpg"} +{"size_bytes": 933890, "category": "media-conv", "path": "jpg_full/jpg/129801.jpg_copy.jpg"} +{"size_bytes": 1079229, "category": "media-conv", "path": "jpg_full/jpg/115900.jpg"} +{"size_bytes": 1068159, "category": "media-conv", "path": "jpg_full/jpg/113101.jpg"} +{"size_bytes": 3895108, "category": "media-conv", "path": "jpg_full/jpg/100700.jpg"} +{"size_bytes": 1447314, "category": "media-conv", "path": "jpg_full/jpg/104502.jpg"} +{"size_bytes": 2275839, "category": "media-conv", "path": "jpg_full/jpg/105500.jpg_copy.jpg"} +{"size_bytes": 2176427, "category": "media-conv", "path": "jpg_full/jpg/101301.jpg_copy.jpg"} +{"size_bytes": 3821143, "category": "media-conv", "path": "jpg_full/jpg/107200.jpg"} +{"size_bytes": 891576, "category": "media-conv", "path": "jpg_full/jpg/126703.jpg_copy.jpg"} +{"size_bytes": 1071552, "category": "media-conv", "path": "jpg_full/jpg/110001.jpg"} +{"size_bytes": 628393, "category": "media-conv", "path": "jpg_full/jpg/127403.jpg"} +{"size_bytes": 1110005, "category": "media-conv", "path": "jpg_full/jpg/118201.jpg_copy.jpg"} +{"size_bytes": 1060493, "category": "media-conv", "path": "jpg_full/jpg/117700.jpg_copy.jpg"} +{"size_bytes": 1070954, "category": "media-conv", "path": "jpg_full/jpg/123900.jpg_copy.jpg"} +{"size_bytes": 1488111, "category": "media-conv", "path": "jpg_full/jpg/104500.jpg_copy.jpg"} +{"size_bytes": 1071312, "category": "media-conv", "path": "jpg_full/jpg/117400.jpg"} +{"size_bytes": 1073119, "category": "media-conv", "path": "jpg_full/jpg/116901.jpg_copy.jpg"} +{"size_bytes": 1081235, "category": "media-conv", "path": "jpg_full/jpg/117401.jpg_copy.jpg"} +{"size_bytes": 1312546, "category": "media-conv", "path": "jpg_full/jpg/103300.jpg"} +{"size_bytes": 3911518, "category": "media-conv", "path": "jpg_full/jpg/106402.jpg"} +{"size_bytes": 1312546, "category": "media-conv", "path": "jpg_full/jpg/103300.jpg_copy.jpg"} +{"size_bytes": 1091874, "category": "media-conv", "path": "jpg_full/jpg/120801.jpg"} +{"size_bytes": 873302, "category": "media-conv", "path": "jpg_full/jpg/129800.jpg"} +{"size_bytes": 1072394, "category": "media-conv", "path": "jpg_full/jpg/119200.jpg"} +{"size_bytes": 731949, "category": "media-conv", "path": "jpg_full/jpg/129500.jpg"} +{"size_bytes": 2159911, "category": "media-conv", "path": "jpg_full/jpg/101300.jpg_copy.jpg"} +{"size_bytes": 671929, "category": "media-conv", "path": "jpg_full/jpg/109200.jpg"} +{"size_bytes": 2418959, "category": "media-conv", "path": "jpg_full/jpg/106903.jpg"} +{"size_bytes": 1063691, "category": "media-conv", "path": "jpg_full/jpg/112901.jpg"} +{"size_bytes": 1244250, "category": "media-conv", "path": "jpg_full/jpg/104200.jpg_copy.jpg"} +{"size_bytes": 1089146, "category": "media-conv", "path": "jpg_full/jpg/122700.jpg"} +{"size_bytes": 1139509, "category": "media-conv", "path": "jpg_full/jpg/122200.jpg"} +{"size_bytes": 1106338, "category": "media-conv", "path": "jpg_full/jpg/111001.jpg_copy.jpg"} +{"size_bytes": 678003, "category": "media-conv", "path": "jpg_full/jpg/124900.jpg_copy.jpg"} +{"size_bytes": 1017323, "category": "media-conv", "path": "jpg_full/jpg/118402.jpg_copy.jpg"} +{"size_bytes": 1068934, "category": "media-conv", "path": "jpg_full/jpg/118700.jpg"} +{"size_bytes": 1108358, "category": "media-conv", "path": "jpg_full/jpg/116002.jpg"} +{"size_bytes": 3821143, "category": "media-conv", "path": "jpg_full/jpg/107200.jpg_copy.jpg"} +{"size_bytes": 1800614, "category": "media-conv", "path": "jpg_full/jpg/105001.jpg"} +{"size_bytes": 715525, "category": "media-conv", "path": "jpg_full/jpg/123402.jpg_copy.jpg"} +{"size_bytes": 2244197, "category": "media-conv", "path": "jpg_full/jpg/104900.jpg_copy.jpg"} +{"size_bytes": 1054544, "category": "media-conv", "path": "jpg_full/jpg/115100.jpg"} +{"size_bytes": 1115482, "category": "media-conv", "path": "jpg_full/jpg/115801.jpg"} +{"size_bytes": 1076244, "category": "media-conv", "path": "jpg_full/jpg/117300.jpg_copy.jpg"} +{"size_bytes": 2002529, "category": "media-conv", "path": "jpg_full/jpg/127100.jpg_copy.jpg"} +{"size_bytes": 1144065, "category": "media-conv", "path": "jpg_full/jpg/123000.jpg_copy.jpg"} +{"size_bytes": 2626717, "category": "media-conv", "path": "jpg_full/jpg/129701.jpg"} +{"size_bytes": 3836747, "category": "media-conv", "path": "jpg_full/jpg/107203.jpg"} +{"size_bytes": 1037932, "category": "media-conv", "path": "jpg_full/jpg/115001.jpg_copy.jpg"} +{"size_bytes": 1107366, "category": "media-conv", "path": "jpg_full/jpg/117601.jpg"} +{"size_bytes": 722523, "category": "media-conv", "path": "jpg_full/jpg/124601.jpg"} +{"size_bytes": 769951, "category": "media-conv", "path": "jpg_full/jpg/128400.jpg_copy.jpg"} +{"size_bytes": 3824533, "category": "media-conv", "path": "jpg_full/jpg/100302.jpg"} +{"size_bytes": 1048684, "category": "media-conv", "path": "jpg_full/jpg/119704.jpg"} +{"size_bytes": 942710, "category": "media-conv", "path": "jpg_full/jpg/129602.jpg"} +{"size_bytes": 1247716, "category": "media-conv", "path": "jpg_full/jpg/122504.jpg_copy.jpg"} +{"size_bytes": 655719, "category": "media-conv", "path": "jpg_full/jpg/110901.jpg_copy.jpg"} +{"size_bytes": 1071530, "category": "media-conv", "path": "jpg_full/jpg/114903.jpg_copy.jpg"} +{"size_bytes": 1047467, "category": "media-conv", "path": "jpg_full/jpg/118501.jpg_copy.jpg"} +{"size_bytes": 1094158, "category": "media-conv", "path": "jpg_full/jpg/114701.jpg_copy.jpg"} +{"size_bytes": 3347345, "category": "media-conv", "path": "jpg_full/jpg/105801.jpg_copy.jpg"} +{"size_bytes": 1040281, "category": "media-conv", "path": "jpg_full/jpg/124400.jpg_copy.jpg"} +{"size_bytes": 1072058, "category": "media-conv", "path": "jpg_full/jpg/112406.jpg"} +{"size_bytes": 638831, "category": "media-conv", "path": "jpg_full/jpg/124701.jpg_copy.jpg"} +{"size_bytes": 1083461, "category": "media-conv", "path": "jpg_full/jpg/116101.jpg"} +{"size_bytes": 1148087, "category": "media-conv", "path": "jpg_full/jpg/108106.jpg_copy.jpg"} +{"size_bytes": 1096405, "category": "media-conv", "path": "jpg_full/jpg/108101.jpg_copy.jpg"} +{"size_bytes": 884352, "category": "media-conv", "path": "jpg_full/jpg/126705.jpg_copy.jpg"} +{"size_bytes": 1811647, "category": "media-conv", "path": "jpg_full/jpg/104600.jpg"} +{"size_bytes": 1928859, "category": "media-conv", "path": "jpg_full/jpg/122402.jpg_copy.jpg"} +{"size_bytes": 1048824, "category": "media-conv", "path": "jpg_full/jpg/113801.jpg_copy.jpg"} +{"size_bytes": 760180, "category": "media-conv", "path": "jpg_full/jpg/109501.jpg"} +{"size_bytes": 1074788, "category": "media-conv", "path": "jpg_full/jpg/114901.jpg"} +{"size_bytes": 1081068, "category": "media-conv", "path": "jpg_full/jpg/122101.jpg"} +{"size_bytes": 835658, "category": "media-conv", "path": "jpg_full/jpg/125101.jpg_copy.jpg"} +{"size_bytes": 1952666, "category": "media-conv", "path": "jpg_full/jpg/101702.jpg"} +{"size_bytes": 1983886, "category": "media-conv", "path": "jpg_full/jpg/103102.jpg_copy.jpg"} +{"size_bytes": 3756516, "category": "media-conv", "path": "jpg_full/jpg/100701.jpg"} +{"size_bytes": 833610, "category": "media-conv", "path": "jpg_full/jpg/127502.jpg"} +{"size_bytes": 85743, "category": "media-conv", "path": "jpg_full/jpg/106700.jpg"} +{"size_bytes": 1100180, "category": "media-conv", "path": "jpg_full/jpg/122102.jpg_copy.jpg"} +{"size_bytes": 1318005, "category": "media-conv", "path": "jpg_full/jpg/105901.jpg_copy.jpg"} +{"size_bytes": 1499294, "category": "media-conv", "path": "jpg_full/jpg/125500.jpg_copy.jpg"} +{"size_bytes": 1435377, "category": "media-conv", "path": "jpg_full/jpg/103601.jpg"} +{"size_bytes": 2192432, "category": "media-conv", "path": "jpg_full/jpg/108601.jpg_copy.jpg"} +{"size_bytes": 1080299, "category": "media-conv", "path": "jpg_full/jpg/119703.jpg_copy.jpg"} +{"size_bytes": 3871568, "category": "media-conv", "path": "jpg_full/jpg/107201.jpg"} +{"size_bytes": 1078287, "category": "media-conv", "path": "jpg_full/jpg/116001.jpg"} +{"size_bytes": 1193102, "category": "media-conv", "path": "jpg_full/jpg/110301.jpg"} +{"size_bytes": 1277653, "category": "media-conv", "path": "jpg_full/jpg/127800.jpg_copy.jpg"} +{"size_bytes": 1082852, "category": "media-conv", "path": "jpg_full/jpg/112500.jpg"} +{"size_bytes": 901289, "category": "media-conv", "path": "jpg_full/jpg/125102.jpg"} +{"size_bytes": 1533413, "category": "media-conv", "path": "jpg_full/jpg/102700.jpg"} +{"size_bytes": 755866, "category": "media-conv", "path": "jpg_full/jpg/129201.jpg_copy.jpg"} +{"size_bytes": 544274, "category": "media-conv", "path": "jpg_full/jpg/124800.jpg_copy.jpg"} +{"size_bytes": 3913508, "category": "media-conv", "path": "jpg_full/jpg/106500.jpg"} +{"size_bytes": 3782178, "category": "media-conv", "path": "jpg_full/jpg/106603.jpg_copy.jpg"} +{"size_bytes": 1056164, "category": "media-conv", "path": "jpg_full/jpg/123901.jpg_copy.jpg"} +{"size_bytes": 2877682, "category": "media-conv", "path": "jpg_full/jpg/122706.jpg_copy.jpg"} +{"size_bytes": 2007795, "category": "media-conv", "path": "jpg_full/jpg/125601.jpg_copy.jpg"} +{"size_bytes": 1064553, "category": "media-conv", "path": "jpg_full/jpg/112902.jpg"} +{"size_bytes": 1296861, "category": "media-conv", "path": "jpg_full/jpg/101601.jpg_copy.jpg"} +{"size_bytes": 1073862, "category": "media-conv", "path": "jpg_full/jpg/118301.jpg"} +{"size_bytes": 1083899, "category": "media-conv", "path": "jpg_full/jpg/114201.jpg_copy.jpg"} +{"size_bytes": 680436, "category": "media-conv", "path": "jpg_full/jpg/128801.jpg"} +{"size_bytes": 789034, "category": "media-conv", "path": "jpg_full/jpg/129003.jpg"} +{"size_bytes": 1386706, "category": "media-conv", "path": "jpg_full/jpg/128502.jpg_copy.jpg"} +{"size_bytes": 1091874, "category": "media-conv", "path": "jpg_full/jpg/120801.jpg_copy.jpg"} +{"size_bytes": 1498964, "category": "media-conv", "path": "jpg_full/jpg/103600.jpg"} +{"size_bytes": 528915, "category": "media-conv", "path": "jpg_full/jpg/125203.jpg"} +{"size_bytes": 736428, "category": "media-conv", "path": "jpg_full/jpg/112003.jpg"} +{"size_bytes": 746620, "category": "media-conv", "path": "jpg_full/jpg/123205.jpg_copy.jpg"} +{"size_bytes": 1040281, "category": "media-conv", "path": "jpg_full/jpg/124400.jpg"} +{"size_bytes": 1106912, "category": "media-conv", "path": "jpg_full/jpg/118202.jpg"} +{"size_bytes": 1101327, "category": "media-conv", "path": "jpg_full/jpg/113100.jpg_copy.jpg"} +{"size_bytes": 915416, "category": "media-conv", "path": "jpg_full/jpg/111201.jpg_copy.jpg"} +{"size_bytes": 1384925, "category": "media-conv", "path": "jpg_full/jpg/106100.jpg_copy.jpg"} +{"size_bytes": 1040096, "category": "media-conv", "path": "jpg_full/jpg/108201.jpg"} +{"size_bytes": 754735, "category": "media-conv", "path": "jpg_full/jpg/109600.jpg_copy.jpg"} +{"size_bytes": 1223469, "category": "media-conv", "path": "jpg_full/jpg/104300.jpg"} +{"size_bytes": 3909458, "category": "media-conv", "path": "jpg_full/jpg/100100.jpg_copy.jpg"} +{"size_bytes": 1001543, "category": "media-conv", "path": "jpg_full/jpg/129802.jpg_copy.jpg"} +{"size_bytes": 1085729, "category": "media-conv", "path": "jpg_full/jpg/119400.jpg"} +{"size_bytes": 1071329, "category": "media-conv", "path": "jpg_full/jpg/116803.jpg"} +{"size_bytes": 1649054, "category": "media-conv", "path": "jpg_full/jpg/105501.jpg_copy.jpg"} +{"size_bytes": 1095818, "category": "media-conv", "path": "jpg_full/jpg/119600.jpg"} +{"size_bytes": 85743, "category": "media-conv", "path": "jpg_full/jpg/106700.jpg_copy.jpg"} +{"size_bytes": 1099806, "category": "media-conv", "path": "jpg_full/jpg/112300.jpg_copy.jpg"} +{"size_bytes": 558229, "category": "media-conv", "path": "jpg_full/jpg/124802.jpg_copy.jpg"} +{"size_bytes": 978806, "category": "media-conv", "path": "jpg_full/jpg/118101.jpg"} +{"size_bytes": 1073419, "category": "media-conv", "path": "jpg_full/jpg/114700.jpg"} +{"size_bytes": 1063730, "category": "media-conv", "path": "jpg_full/jpg/119202.jpg"} +{"size_bytes": 893679, "category": "media-conv", "path": "jpg_full/jpg/126601.jpg_copy.jpg"} +{"size_bytes": 1074350, "category": "media-conv", "path": "jpg_full/jpg/114401.jpg"} +{"size_bytes": 892779, "category": "media-conv", "path": "jpg_full/jpg/126502.jpg_copy.jpg"} +{"size_bytes": 746620, "category": "media-conv", "path": "jpg_full/jpg/123205.jpg"} +{"size_bytes": 1098924, "category": "media-conv", "path": "jpg_full/jpg/121801.jpg_copy.jpg"} +{"size_bytes": 709940, "category": "media-conv", "path": "jpg_full/jpg/109101.jpg"} +{"size_bytes": 1083958, "category": "media-conv", "path": "jpg_full/jpg/112404.jpg"} +{"size_bytes": 700403, "category": "media-conv", "path": "jpg_full/jpg/127401.jpg"} +{"size_bytes": 1260399, "category": "media-conv", "path": "jpg_full/jpg/122500.jpg_copy.jpg"} +{"size_bytes": 1077007, "category": "media-conv", "path": "jpg_full/jpg/114601.jpg"} +{"size_bytes": 1068330, "category": "media-conv", "path": "jpg_full/jpg/114504.jpg_copy.jpg"} +{"size_bytes": 1084548, "category": "media-conv", "path": "jpg_full/jpg/115702.jpg_copy.jpg"} +{"size_bytes": 2234895, "category": "media-conv", "path": "jpg_full/jpg/104901.jpg"} +{"size_bytes": 854138, "category": "media-conv", "path": "jpg_full/jpg/126700.jpg"} +{"size_bytes": 2390952, "category": "media-conv", "path": "jpg_full/jpg/106702.jpg_copy.jpg"} +{"size_bytes": 1088639, "category": "media-conv", "path": "jpg_full/jpg/116000.jpg_copy.jpg"} +{"size_bytes": 1082852, "category": "media-conv", "path": "jpg_full/jpg/112500.jpg_copy.jpg"} +{"size_bytes": 1077672, "category": "media-conv", "path": "jpg_full/jpg/111400.jpg_copy.jpg"} +{"size_bytes": 3824533, "category": "media-conv", "path": "jpg_full/jpg/100302.jpg_copy.jpg"} +{"size_bytes": 1494122, "category": "media-conv", "path": "jpg_full/jpg/105101.jpg"} +{"size_bytes": 1095511, "category": "media-conv", "path": "jpg_full/jpg/119602.jpg_copy.jpg"} +{"size_bytes": 1288695, "category": "media-conv", "path": "jpg_full/jpg/105900.jpg_copy.jpg"} +{"size_bytes": 2402733, "category": "media-conv", "path": "jpg_full/jpg/106900.jpg"} +{"size_bytes": 1085307, "category": "media-conv", "path": "jpg_full/jpg/120001.jpg_copy.jpg"} +{"size_bytes": 1054345, "category": "media-conv", "path": "jpg_full/jpg/112201.jpg"} +{"size_bytes": 1119035, "category": "media-conv", "path": "jpg_full/jpg/113800.jpg"} +{"size_bytes": 1096948, "category": "media-conv", "path": "jpg_full/jpg/118803.jpg"} +{"size_bytes": 757065, "category": "media-conv", "path": "jpg_full/jpg/123203.jpg_copy.jpg"} +{"size_bytes": 821882, "category": "media-conv", "path": "jpg_full/jpg/108900.jpg_copy.jpg"} +{"size_bytes": 1111357, "category": "media-conv", "path": "jpg_full/jpg/113500.jpg"} +{"size_bytes": 1096948, "category": "media-conv", "path": "jpg_full/jpg/118803.jpg_copy.jpg"} +{"size_bytes": 1086520, "category": "media-conv", "path": "jpg_full/jpg/118500.jpg"} +{"size_bytes": 1026716, "category": "media-conv", "path": "jpg_full/jpg/108401.jpg_copy.jpg"} +{"size_bytes": 1085729, "category": "media-conv", "path": "jpg_full/jpg/119400.jpg_copy.jpg"} +{"size_bytes": 3900027, "category": "media-conv", "path": "jpg_full/jpg/107401.jpg_copy.jpg"} +{"size_bytes": 1093885, "category": "media-conv", "path": "jpg_full/jpg/115902.jpg_copy.jpg"} +{"size_bytes": 1079592, "category": "media-conv", "path": "jpg_full/jpg/112407.jpg_copy.jpg"} +{"size_bytes": 1479110, "category": "media-conv", "path": "jpg_full/jpg/102900.jpg"} +{"size_bytes": 602786, "category": "media-conv", "path": "jpg_full/jpg/125202.jpg_copy.jpg"} +{"size_bytes": 1079757, "category": "media-conv", "path": "jpg_full/jpg/119701.jpg_copy.jpg"} +{"size_bytes": 4035977, "category": "media-conv", "path": "jpg_full/jpg/100000.jpg_copy.jpg"} +{"size_bytes": 1067308, "category": "media-conv", "path": "jpg_full/jpg/121100.jpg_copy.jpg"} +{"size_bytes": 1110275, "category": "media-conv", "path": "jpg_full/jpg/120201.jpg_copy.jpg"} +{"size_bytes": 1101214, "category": "media-conv", "path": "jpg_full/jpg/121402.jpg"} +{"size_bytes": 1084407, "category": "media-conv", "path": "jpg_full/jpg/121501.jpg"} +{"size_bytes": 1096907, "category": "media-conv", "path": "jpg_full/jpg/121901.jpg"} +{"size_bytes": 1077895, "category": "media-conv", "path": "jpg_full/jpg/118002.jpg"} +{"size_bytes": 2892681, "category": "media-conv", "path": "jpg_full/jpg/128601.jpg_copy.jpg"} +{"size_bytes": 992826, "category": "media-conv", "path": "jpg_full/jpg/110702.jpg"} +{"size_bytes": 1063245, "category": "media-conv", "path": "jpg_full/jpg/112408.jpg"} +{"size_bytes": 1270300, "category": "media-conv", "path": "jpg_full/jpg/101404.jpg"} +{"size_bytes": 1103345, "category": "media-conv", "path": "jpg_full/jpg/120100.jpg_copy.jpg"} +{"size_bytes": 1069343, "category": "media-conv", "path": "jpg_full/jpg/121101.jpg"} +{"size_bytes": 1059586, "category": "media-conv", "path": "jpg_full/jpg/113600.jpg"} +{"size_bytes": 1679221, "category": "media-conv", "path": "jpg_full/jpg/103801.jpg_copy.jpg"} +{"size_bytes": 1094321, "category": "media-conv", "path": "jpg_full/jpg/113402.jpg"} +{"size_bytes": 1124995, "category": "media-conv", "path": "jpg_full/jpg/117901.jpg"} +{"size_bytes": 1080375, "category": "media-conv", "path": "jpg_full/jpg/113000.jpg"} +{"size_bytes": 1072394, "category": "media-conv", "path": "jpg_full/jpg/119200.jpg_copy.jpg"} +{"size_bytes": 754991, "category": "media-conv", "path": "jpg_full/jpg/112001.jpg_copy.jpg"} +{"size_bytes": 1287513, "category": "media-conv", "path": "jpg_full/jpg/122705.jpg"} +{"size_bytes": 2597144, "category": "media-conv", "path": "jpg_full/jpg/129700.jpg"} +{"size_bytes": 1233506, "category": "media-conv", "path": "jpg_full/jpg/104301.jpg_copy.jpg"} +{"size_bytes": 1110821, "category": "media-conv", "path": "jpg_full/jpg/116501.jpg_copy.jpg"} +{"size_bytes": 3391932, "category": "media-conv", "path": "jpg_full/jpg/100902.jpg_copy.jpg"} +{"size_bytes": 1090875, "category": "media-conv", "path": "jpg_full/jpg/114501.jpg"} +{"size_bytes": 1080375, "category": "media-conv", "path": "jpg_full/jpg/113000.jpg_copy.jpg"} +{"size_bytes": 1072610, "category": "media-conv", "path": "jpg_full/jpg/117201.jpg_copy.jpg"} +{"size_bytes": 491938, "category": "media-conv", "path": "jpg_full/jpg/109001.jpg"} +{"size_bytes": 85243, "category": "media-conv", "path": "jpg_full/jpg/100401.jpg"} +{"size_bytes": 1261138, "category": "media-conv", "path": "jpg_full/jpg/110200.jpg_copy.jpg"} +{"size_bytes": 1296343, "category": "media-conv", "path": "jpg_full/jpg/123002.jpg"} +{"size_bytes": 3906386, "category": "media-conv", "path": "jpg_full/jpg/100801.jpg"} +{"size_bytes": 639513, "category": "media-conv", "path": "jpg_full/jpg/127201.jpg_copy.jpg"} +{"size_bytes": 1089034, "category": "media-conv", "path": "jpg_full/jpg/114902.jpg"} +{"size_bytes": 1619682, "category": "media-conv", "path": "jpg_full/jpg/103401.jpg"} +{"size_bytes": 1113406, "category": "media-conv", "path": "jpg_full/jpg/121401.jpg"} +{"size_bytes": 1092442, "category": "media-conv", "path": "jpg_full/jpg/113401.jpg_copy.jpg"} +{"size_bytes": 3903208, "category": "media-conv", "path": "jpg_full/jpg/107901.jpg_copy.jpg"} +{"size_bytes": 1552835, "category": "media-conv", "path": "jpg_full/jpg/103303.jpg"} +{"size_bytes": 4030655, "category": "media-conv", "path": "jpg_full/jpg/106300.jpg_copy.jpg"} +{"size_bytes": 671929, "category": "media-conv", "path": "jpg_full/jpg/109200.jpg_copy.jpg"} +{"size_bytes": 743305, "category": "media-conv", "path": "jpg_full/jpg/123400.jpg"} +{"size_bytes": 1261484, "category": "media-conv", "path": "jpg_full/jpg/125401.jpg_copy.jpg"} +{"size_bytes": 1075549, "category": "media-conv", "path": "jpg_full/jpg/108203.jpg_copy.jpg"} +{"size_bytes": 2502397, "category": "media-conv", "path": "jpg_full/jpg/102601.jpg"} +{"size_bytes": 812854, "category": "media-conv", "path": "jpg_full/jpg/128900.jpg_copy.jpg"} +{"size_bytes": 1085408, "category": "media-conv", "path": "jpg_full/jpg/115800.jpg"} +{"size_bytes": 1142921, "category": "media-conv", "path": "jpg_full/jpg/120500.jpg"} +{"size_bytes": 1088905, "category": "media-conv", "path": "jpg_full/jpg/120900.jpg_copy.jpg"} +{"size_bytes": 1353543, "category": "media-conv", "path": "jpg_full/jpg/128002.jpg_copy.jpg"} +{"size_bytes": 1837435, "category": "media-conv", "path": "jpg_full/jpg/103800.jpg"} +{"size_bytes": 1758164, "category": "media-conv", "path": "jpg_full/jpg/104004.jpg"} +{"size_bytes": 2126508, "category": "media-conv", "path": "jpg_full/jpg/125600.jpg"} +{"size_bytes": 1086531, "category": "media-conv", "path": "jpg_full/jpg/124200.jpg_copy.jpg"} +{"size_bytes": 1081597, "category": "media-conv", "path": "jpg_full/jpg/115901.jpg"} +{"size_bytes": 1106338, "category": "media-conv", "path": "jpg_full/jpg/111001.jpg"} +{"size_bytes": 713407, "category": "media-conv", "path": "jpg_full/jpg/124901.jpg"} +{"size_bytes": 879060, "category": "media-conv", "path": "jpg_full/jpg/126808.jpg_copy.jpg"} +{"size_bytes": 1079377, "category": "media-conv", "path": "jpg_full/jpg/117800.jpg_copy.jpg"} +{"size_bytes": 1096770, "category": "media-conv", "path": "jpg_full/jpg/120101.jpg_copy.jpg"} +{"size_bytes": 1097327, "category": "media-conv", "path": "jpg_full/jpg/120800.jpg"} +{"size_bytes": 1618818, "category": "media-conv", "path": "jpg_full/jpg/126801.jpg"} +{"size_bytes": 1594219, "category": "media-conv", "path": "jpg_full/jpg/101901.jpg"} +{"size_bytes": 1939907, "category": "media-conv", "path": "jpg_full/jpg/103100.jpg_copy.jpg"} +{"size_bytes": 755866, "category": "media-conv", "path": "jpg_full/jpg/129201.jpg"} +{"size_bytes": 901626, "category": "media-conv", "path": "jpg_full/jpg/125000.jpg"} +{"size_bytes": 1001543, "category": "media-conv", "path": "jpg_full/jpg/129802.jpg"} +{"size_bytes": 1156566, "category": "media-conv", "path": "jpg_full/jpg/113501.jpg_copy.jpg"} +{"size_bytes": 1114926, "category": "media-conv", "path": "jpg_full/jpg/108800.jpg"} +{"size_bytes": 750183, "category": "media-conv", "path": "jpg_full/jpg/123401.jpg"} +{"size_bytes": 862120, "category": "media-conv", "path": "jpg_full/jpg/127901.jpg"} +{"size_bytes": 1101863, "category": "media-conv", "path": "jpg_full/jpg/123500.jpg"} +{"size_bytes": 1117186, "category": "media-conv", "path": "jpg_full/jpg/119605.jpg"} +{"size_bytes": 1073259, "category": "media-conv", "path": "jpg_full/jpg/121000.jpg"} +{"size_bytes": 2064076, "category": "media-conv", "path": "jpg_full/jpg/102301.jpg_copy.jpg"} +{"size_bytes": 1088758, "category": "media-conv", "path": "jpg_full/jpg/116401.jpg"} +{"size_bytes": 1074350, "category": "media-conv", "path": "jpg_full/jpg/114401.jpg_copy.jpg"} +{"size_bytes": 2099831, "category": "media-conv", "path": "jpg_full/jpg/126001.jpg_copy.jpg"} +{"size_bytes": 383786, "category": "media-conv", "path": "jpg_full/jpg/110900.jpg"} +{"size_bytes": 1699036, "category": "media-conv", "path": "jpg_full/jpg/104801.jpg_copy.jpg"} +{"size_bytes": 3906386, "category": "media-conv", "path": "jpg_full/jpg/100801.jpg_copy.jpg"} +{"size_bytes": 1490297, "category": "media-conv", "path": "jpg_full/jpg/110100.jpg_copy.jpg"} +{"size_bytes": 1102563, "category": "media-conv", "path": "jpg_full/jpg/114300.jpg_copy.jpg"} +{"size_bytes": 812854, "category": "media-conv", "path": "jpg_full/jpg/128900.jpg"} +{"size_bytes": 925249, "category": "media-conv", "path": "jpg_full/jpg/100601.jpg_copy.jpg"} +{"size_bytes": 3211612, "category": "media-conv", "path": "jpg_full/jpg/103204.jpg"} +{"size_bytes": 4083123, "category": "media-conv", "path": "jpg_full/jpg/107600.jpg_copy.jpg"} +{"size_bytes": 1090171, "category": "media-conv", "path": "jpg_full/jpg/120701.jpg_copy.jpg"} +{"size_bytes": 1169676, "category": "media-conv", "path": "jpg_full/jpg/101504.jpg_copy.jpg"} +{"size_bytes": 1088957, "category": "media-conv", "path": "jpg_full/jpg/112700.jpg"} +{"size_bytes": 1114409, "category": "media-conv", "path": "jpg_full/jpg/101503.jpg_copy.jpg"} +{"size_bytes": 3341451, "category": "media-conv", "path": "jpg_full/jpg/106400.jpg"} +{"size_bytes": 843927, "category": "media-conv", "path": "jpg_full/jpg/127503.jpg_copy.jpg"} +{"size_bytes": 1096849, "category": "media-conv", "path": "jpg_full/jpg/114100.jpg_copy.jpg"} +{"size_bytes": 1090580, "category": "media-conv", "path": "jpg_full/jpg/117101.jpg"} +{"size_bytes": 1319391, "category": "media-conv", "path": "jpg_full/jpg/128101.jpg"} +{"size_bytes": 1071875, "category": "media-conv", "path": "jpg_full/jpg/114301.jpg_copy.jpg"} +{"size_bytes": 1356446, "category": "media-conv", "path": "jpg_full/jpg/110201.jpg"} +{"size_bytes": 1067630, "category": "media-conv", "path": "jpg_full/jpg/123602.jpg_copy.jpg"} +{"size_bytes": 1052166, "category": "media-conv", "path": "jpg_full/jpg/121001.jpg"} +{"size_bytes": 1102514, "category": "media-conv", "path": "jpg_full/jpg/117600.jpg_copy.jpg"} +{"size_bytes": 3975920, "category": "media-conv", "path": "jpg_full/jpg/107101.jpg_copy.jpg"} +{"size_bytes": 1473448, "category": "media-conv", "path": "jpg_full/jpg/106200.jpg_copy.jpg"} +{"size_bytes": 1088655, "category": "media-conv", "path": "jpg_full/jpg/129601.jpg"} +{"size_bytes": 1102994, "category": "media-conv", "path": "jpg_full/jpg/112501.jpg"} +{"size_bytes": 777486, "category": "media-conv", "path": "jpg_full/jpg/109402.jpg_copy.jpg"} +{"size_bytes": 747079, "category": "media-conv", "path": "jpg_full/jpg/118901.jpg_copy.jpg"} +{"size_bytes": 1098454, "category": "media-conv", "path": "jpg_full/jpg/113201.jpg_copy.jpg"} +{"size_bytes": 3850723, "category": "media-conv", "path": "jpg_full/jpg/107400.jpg_copy.jpg"} +{"size_bytes": 1055056, "category": "media-conv", "path": "jpg_full/jpg/117001.jpg_copy.jpg"} +{"size_bytes": 1095255, "category": "media-conv", "path": "jpg_full/jpg/118000.jpg_copy.jpg"} +{"size_bytes": 1069151, "category": "media-conv", "path": "jpg_full/jpg/117801.jpg"} +{"size_bytes": 2192432, "category": "media-conv", "path": "jpg_full/jpg/108601.jpg"} +{"size_bytes": 757065, "category": "media-conv", "path": "jpg_full/jpg/123203.jpg"} +{"size_bytes": 1072058, "category": "media-conv", "path": "jpg_full/jpg/112406.jpg_copy.jpg"} +{"size_bytes": 3773512, "category": "media-conv", "path": "jpg_full/jpg/100201.jpg"} +{"size_bytes": 1087331, "category": "media-conv", "path": "jpg_full/jpg/119201.jpg_copy.jpg"} +{"size_bytes": 1284708, "category": "media-conv", "path": "jpg_full/jpg/103000.jpg_copy.jpg"} +{"size_bytes": 1063553, "category": "media-conv", "path": "jpg_full/jpg/122702.jpg"} +{"size_bytes": 1140725, "category": "media-conv", "path": "jpg_full/jpg/129600.jpg"} +{"size_bytes": 1104401, "category": "media-conv", "path": "jpg_full/jpg/127300.jpg"} +{"size_bytes": 1069849, "category": "media-conv", "path": "jpg_full/jpg/116100.jpg_copy.jpg"} +{"size_bytes": 1006403, "category": "media-conv", "path": "jpg_full/jpg/124002.jpg_copy.jpg"} +{"size_bytes": 1087202, "category": "media-conv", "path": "jpg_full/jpg/113400.jpg_copy.jpg"} +{"size_bytes": 1059586, "category": "media-conv", "path": "jpg_full/jpg/113600.jpg_copy.jpg"} +{"size_bytes": 2090794, "category": "media-conv", "path": "jpg_full/jpg/102501.jpg_copy.jpg"} +{"size_bytes": 1073862, "category": "media-conv", "path": "jpg_full/jpg/118301.jpg_copy.jpg"} +{"size_bytes": 1078666, "category": "media-conv", "path": "jpg_full/jpg/119604.jpg"} +{"size_bytes": 1076912, "category": "media-conv", "path": "jpg_full/jpg/110500.jpg"} +{"size_bytes": 1326611, "category": "media-conv", "path": "jpg_full/jpg/105102.jpg"} +{"size_bytes": 1063594, "category": "media-conv", "path": "jpg_full/jpg/117403.jpg"} +{"size_bytes": 784367, "category": "media-conv", "path": "jpg_full/jpg/125200.jpg_copy.jpg"} +{"size_bytes": 1099219, "category": "media-conv", "path": "jpg_full/jpg/114400.jpg"} +{"size_bytes": 884352, "category": "media-conv", "path": "jpg_full/jpg/126705.jpg"} +{"size_bytes": 3773512, "category": "media-conv", "path": "jpg_full/jpg/100201.jpg_copy.jpg"} +{"size_bytes": 1008401, "category": "media-conv", "path": "jpg_full/jpg/112101.jpg_copy.jpg"} +{"size_bytes": 2136127, "category": "media-conv", "path": "jpg_full/jpg/102500.jpg"} +{"size_bytes": 1087202, "category": "media-conv", "path": "jpg_full/jpg/113400.jpg"} +{"size_bytes": 1096921, "category": "media-conv", "path": "jpg_full/jpg/122701.jpg"} +{"size_bytes": 1069350, "category": "media-conv", "path": "jpg_full/jpg/114801.jpg"} +{"size_bytes": 1503923, "category": "media-conv", "path": "jpg_full/jpg/102701.jpg"} +{"size_bytes": 1887050, "category": "media-conv", "path": "jpg_full/jpg/104006.jpg"} +{"size_bytes": 729022, "category": "media-conv", "path": "jpg_full/jpg/123300.jpg"} +{"size_bytes": 1069421, "category": "media-conv", "path": "jpg_full/jpg/108100.jpg"} +{"size_bytes": 1053634, "category": "media-conv", "path": "jpg_full/jpg/115301.jpg_copy.jpg"} +{"size_bytes": 1112237, "category": "media-conv", "path": "jpg_full/jpg/122201.jpg"} +{"size_bytes": 1057356, "category": "media-conv", "path": "jpg_full/jpg/114502.jpg"} +{"size_bytes": 1144065, "category": "media-conv", "path": "jpg_full/jpg/123000.jpg"} +{"size_bytes": 1088480, "category": "media-conv", "path": "jpg_full/jpg/118601.jpg_copy.jpg"} +{"size_bytes": 1083958, "category": "media-conv", "path": "jpg_full/jpg/112404.jpg_copy.jpg"} +{"size_bytes": 1796643, "category": "media-conv", "path": "jpg_full/jpg/104701.jpg"} +{"size_bytes": 770314, "category": "media-conv", "path": "jpg_full/jpg/109401.jpg_copy.jpg"} +{"size_bytes": 1096849, "category": "media-conv", "path": "jpg_full/jpg/114100.jpg"} +{"size_bytes": 1091284, "category": "media-conv", "path": "jpg_full/jpg/108500.jpg_copy.jpg"} +{"size_bytes": 1270300, "category": "media-conv", "path": "jpg_full/jpg/101404.jpg_copy.jpg"} +{"size_bytes": 1084395, "category": "media-conv", "path": "jpg_full/jpg/121404.jpg_copy.jpg"} +{"size_bytes": 1083332, "category": "media-conv", "path": "jpg_full/jpg/116702.jpg_copy.jpg"} +{"size_bytes": 1083351, "category": "media-conv", "path": "jpg_full/jpg/116400.jpg"} +{"size_bytes": 1077376, "category": "media-conv", "path": "jpg_full/jpg/119001.jpg_copy.jpg"} +{"size_bytes": 1096631, "category": "media-conv", "path": "jpg_full/jpg/114702.jpg"} +{"size_bytes": 888860, "category": "media-conv", "path": "jpg_full/jpg/126600.jpg"} +{"size_bytes": 1027057, "category": "media-conv", "path": "jpg_full/jpg/125300.jpg_copy.jpg"} +{"size_bytes": 3844067, "category": "media-conv", "path": "jpg_full/jpg/100200.jpg_copy.jpg"} +{"size_bytes": 1037932, "category": "media-conv", "path": "jpg_full/jpg/115001.jpg"} +{"size_bytes": 1494401, "category": "media-conv", "path": "jpg_full/jpg/125701.jpg_copy.jpg"} +{"size_bytes": 580608, "category": "media-conv", "path": "jpg_full/jpg/109000.jpg_copy.jpg"} +{"size_bytes": 1078474, "category": "media-conv", "path": "jpg_full/jpg/111901.jpg_copy.jpg"} +{"size_bytes": 1464955, "category": "media-conv", "path": "jpg_full/jpg/104401.jpg_copy.jpg"} +{"size_bytes": 986882, "category": "media-conv", "path": "jpg_full/jpg/126702.jpg"} +{"size_bytes": 1412057, "category": "media-conv", "path": "jpg_full/jpg/126202.jpg_copy.jpg"} +{"size_bytes": 1092387, "category": "media-conv", "path": "jpg_full/jpg/111600.jpg_copy.jpg"} +{"size_bytes": 726527, "category": "media-conv", "path": "jpg_full/jpg/123101.jpg_copy.jpg"} +{"size_bytes": 1294928, "category": "media-conv", "path": "jpg_full/jpg/101600.jpg"} +{"size_bytes": 3983323, "category": "media-conv", "path": "jpg_full/jpg/100500.jpg"} +{"size_bytes": 1102514, "category": "media-conv", "path": "jpg_full/jpg/117600.jpg"} +{"size_bytes": 1085679, "category": "media-conv", "path": "jpg_full/jpg/112402.jpg"} +{"size_bytes": 1119278, "category": "media-conv", "path": "jpg_full/jpg/114002.jpg"} +{"size_bytes": 3913508, "category": "media-conv", "path": "jpg_full/jpg/106500.jpg_copy.jpg"} +{"size_bytes": 1006403, "category": "media-conv", "path": "jpg_full/jpg/124002.jpg"} +{"size_bytes": 893679, "category": "media-conv", "path": "jpg_full/jpg/126601.jpg"} +{"size_bytes": 1070812, "category": "media-conv", "path": "jpg_full/jpg/119801.jpg"} +{"size_bytes": 3850723, "category": "media-conv", "path": "jpg_full/jpg/107400.jpg"} +{"size_bytes": 1086914, "category": "media-conv", "path": "jpg_full/jpg/113200.jpg"} +{"size_bytes": 1088905, "category": "media-conv", "path": "jpg_full/jpg/120900.jpg"} +{"size_bytes": 1075284, "category": "media-conv", "path": "jpg_full/jpg/110501.jpg_copy.jpg"} +{"size_bytes": 863100, "category": "media-conv", "path": "jpg_full/jpg/126501.jpg"} +{"size_bytes": 888860, "category": "media-conv", "path": "jpg_full/jpg/126600.jpg_copy.jpg"} +{"size_bytes": 824034, "category": "media-conv", "path": "jpg_full/jpg/127600.jpg_copy.jpg"} +{"size_bytes": 1106912, "category": "media-conv", "path": "jpg_full/jpg/118202.jpg_copy.jpg"} +{"size_bytes": 1095036, "category": "media-conv", "path": "jpg_full/jpg/113300.jpg_copy.jpg"} +{"size_bytes": 796761, "category": "media-conv", "path": "jpg_full/jpg/127501.jpg"} +{"size_bytes": 1101214, "category": "media-conv", "path": "jpg_full/jpg/121402.jpg_copy.jpg"} +{"size_bytes": 1045752, "category": "media-conv", "path": "jpg_full/jpg/110700.jpg"} +{"size_bytes": 1092657, "category": "media-conv", "path": "jpg_full/jpg/113901.jpg"} +{"size_bytes": 925555, "category": "media-conv", "path": "jpg_full/jpg/124700.jpg"} +{"size_bytes": 1065554, "category": "media-conv", "path": "jpg_full/jpg/123600.jpg_copy.jpg"} +{"size_bytes": 1255614, "category": "media-conv", "path": "jpg_full/jpg/127701.jpg_copy.jpg"} +{"size_bytes": 3901599, "category": "media-conv", "path": "jpg_full/jpg/107202.jpg"} +{"size_bytes": 901289, "category": "media-conv", "path": "jpg_full/jpg/125102.jpg_copy.jpg"} +{"size_bytes": 1060217, "category": "media-conv", "path": "jpg_full/jpg/112405.jpg"} +{"size_bytes": 4021687, "category": "media-conv", "path": "jpg_full/jpg/106604.jpg"} +{"size_bytes": 1517251, "category": "media-conv", "path": "jpg_full/jpg/104501.jpg"} +{"size_bytes": 1072134, "category": "media-conv", "path": "jpg_full/jpg/119101.jpg_copy.jpg"} +{"size_bytes": 1077702, "category": "media-conv", "path": "jpg_full/jpg/115600.jpg_copy.jpg"} +{"size_bytes": 1418215, "category": "media-conv", "path": "jpg_full/jpg/101800.jpg_copy.jpg"} +{"size_bytes": 1958309, "category": "media-conv", "path": "jpg_full/jpg/104101.jpg"} +{"size_bytes": 1078085, "category": "media-conv", "path": "jpg_full/jpg/118003.jpg_copy.jpg"} +{"size_bytes": 1103919, "category": "media-conv", "path": "jpg_full/jpg/108801.jpg_copy.jpg"} +{"size_bytes": 1071116, "category": "media-conv", "path": "jpg_full/jpg/116200.jpg_copy.jpg"} +{"size_bytes": 1934802, "category": "media-conv", "path": "jpg_full/jpg/126100.jpg_copy.jpg"} +{"size_bytes": 1103160, "category": "media-conv", "path": "jpg_full/jpg/121200.jpg"} +{"size_bytes": 1087343, "category": "media-conv", "path": "jpg_full/jpg/119401.jpg_copy.jpg"} +{"size_bytes": 1062099, "category": "media-conv", "path": "jpg_full/jpg/129001.jpg"} +{"size_bytes": 1117186, "category": "media-conv", "path": "jpg_full/jpg/119605.jpg_copy.jpg"} +{"size_bytes": 1473448, "category": "media-conv", "path": "jpg_full/jpg/106200.jpg"} +{"size_bytes": 1316734, "category": "media-conv", "path": "jpg_full/jpg/127801.jpg"} +{"size_bytes": 1096956, "category": "media-conv", "path": "jpg_full/jpg/111500.jpg_copy.jpg"} +{"size_bytes": 1067750, "category": "media-conv", "path": "jpg_full/jpg/112600.jpg_copy.jpg"} +{"size_bytes": 1260399, "category": "media-conv", "path": "jpg_full/jpg/122500.jpg"} +{"size_bytes": 775160, "category": "media-conv", "path": "jpg_full/jpg/122302.jpg"} +{"size_bytes": 1070812, "category": "media-conv", "path": "jpg_full/jpg/119801.jpg_copy.jpg"} +{"size_bytes": 1857411, "category": "media-conv", "path": "jpg_full/jpg/101900.jpg"} +{"size_bytes": 1412057, "category": "media-conv", "path": "jpg_full/jpg/126202.jpg"} +{"size_bytes": 1070465, "category": "media-conv", "path": "jpg_full/jpg/113700.jpg"} +{"size_bytes": 1914635, "category": "media-conv", "path": "jpg_full/jpg/122400.jpg"} +{"size_bytes": 1090343, "category": "media-conv", "path": "jpg_full/jpg/121403.jpg_copy.jpg"} +{"size_bytes": 774465, "category": "media-conv", "path": "jpg_full/jpg/129202.jpg_copy.jpg"} +{"size_bytes": 1884686, "category": "media-conv", "path": "jpg_full/jpg/101701.jpg"} +{"size_bytes": 1066417, "category": "media-conv", "path": "jpg_full/jpg/119301.jpg_copy.jpg"} +{"size_bytes": 752499, "category": "media-conv", "path": "jpg_full/jpg/124500.jpg"} +{"size_bytes": 85243, "category": "media-conv", "path": "jpg_full/jpg/100401.jpg_copy.jpg"} +{"size_bytes": 2444388, "category": "media-conv", "path": "jpg_full/jpg/106801.jpg_copy.jpg"} +{"size_bytes": 3932886, "category": "media-conv", "path": "jpg_full/jpg/107902.jpg_copy.jpg"} +{"size_bytes": 1087166, "category": "media-conv", "path": "jpg_full/jpg/112601.jpg_copy.jpg"} +{"size_bytes": 1081767, "category": "media-conv", "path": "jpg_full/jpg/120700.jpg_copy.jpg"} +{"size_bytes": 723469, "category": "media-conv", "path": "jpg_full/jpg/109701.jpg"} +{"size_bytes": 1014407, "category": "media-conv", "path": "jpg_full/jpg/121701.jpg_copy.jpg"} +{"size_bytes": 1236134, "category": "media-conv", "path": "jpg_full/jpg/126200.jpg"} +{"size_bytes": 996207, "category": "media-conv", "path": "jpg_full/jpg/126807.jpg_copy.jpg"} +{"size_bytes": 1079177, "category": "media-conv", "path": "jpg_full/jpg/119900.jpg"} +{"size_bytes": 2007795, "category": "media-conv", "path": "jpg_full/jpg/125601.jpg"} +{"size_bytes": 1517910, "category": "media-conv", "path": "jpg_full/jpg/127001.jpg"} +{"size_bytes": 1098564, "category": "media-conv", "path": "jpg_full/jpg/116601.jpg_copy.jpg"} +{"size_bytes": 1087331, "category": "media-conv", "path": "jpg_full/jpg/119201.jpg"} +{"size_bytes": 1530884, "category": "media-conv", "path": "jpg_full/jpg/128100.jpg"} +{"size_bytes": 1112237, "category": "media-conv", "path": "jpg_full/jpg/122201.jpg_copy.jpg"} +{"size_bytes": 1066856, "category": "media-conv", "path": "jpg_full/jpg/108501.jpg"} +{"size_bytes": 832288, "category": "media-conv", "path": "jpg_full/jpg/128901.jpg_copy.jpg"} +{"size_bytes": 1287513, "category": "media-conv", "path": "jpg_full/jpg/122705.jpg_copy.jpg"} +{"size_bytes": 3932886, "category": "media-conv", "path": "jpg_full/jpg/107902.jpg"} +{"size_bytes": 1095511, "category": "media-conv", "path": "jpg_full/jpg/119602.jpg"} +{"size_bytes": 1073052, "category": "media-conv", "path": "jpg_full/jpg/117701.jpg"} +{"size_bytes": 1099124, "category": "media-conv", "path": "jpg_full/jpg/113900.jpg_copy.jpg"} +{"size_bytes": 1983886, "category": "media-conv", "path": "jpg_full/jpg/103102.jpg"} +{"size_bytes": 892779, "category": "media-conv", "path": "jpg_full/jpg/126502.jpg"} +{"size_bytes": 1165781, "category": "media-conv", "path": "jpg_full/jpg/110302.jpg"} +{"size_bytes": 1033151, "category": "media-conv", "path": "jpg_full/jpg/108400.jpg_copy.jpg"} +{"size_bytes": 1296483, "category": "media-conv", "path": "jpg_full/jpg/122503.jpg"} +{"size_bytes": 1142921, "category": "media-conv", "path": "jpg_full/jpg/120500.jpg_copy.jpg"} +{"size_bytes": 1659541, "category": "media-conv", "path": "jpg_full/jpg/103301.jpg_copy.jpg"} +{"size_bytes": 1033151, "category": "media-conv", "path": "jpg_full/jpg/108400.jpg"} +{"size_bytes": 1817659, "category": "media-conv", "path": "jpg_full/jpg/104700.jpg_copy.jpg"} +{"size_bytes": 1455911, "category": "media-conv", "path": "jpg_full/jpg/125501.jpg"} +{"size_bytes": 3903208, "category": "media-conv", "path": "jpg_full/jpg/107901.jpg"} +{"size_bytes": 1081340, "category": "media-conv", "path": "jpg_full/jpg/111501.jpg"} +{"size_bytes": 1595352, "category": "media-conv", "path": "jpg_full/jpg/105100.jpg"} +{"size_bytes": 1060884, "category": "media-conv", "path": "jpg_full/jpg/108701.jpg_copy.jpg"} +{"size_bytes": 746539, "category": "media-conv", "path": "jpg_full/jpg/123404.jpg"} +{"size_bytes": 1296483, "category": "media-conv", "path": "jpg_full/jpg/122503.jpg_copy.jpg"} +{"size_bytes": 1071866, "category": "media-conv", "path": "jpg_full/jpg/123800.jpg"} +{"size_bytes": 1190917, "category": "media-conv", "path": "jpg_full/jpg/123003.jpg_copy.jpg"} +{"size_bytes": 663418, "category": "media-conv", "path": "jpg_full/jpg/108901.jpg"} +{"size_bytes": 822625, "category": "media-conv", "path": "jpg_full/jpg/126704.jpg_copy.jpg"} +{"size_bytes": 1278764, "category": "media-conv", "path": "jpg_full/jpg/122704.jpg"} +{"size_bytes": 1096411, "category": "media-conv", "path": "jpg_full/jpg/113404.jpg_copy.jpg"} +{"size_bytes": 3900469, "category": "media-conv", "path": "jpg_full/jpg/107000.jpg_copy.jpg"} +{"size_bytes": 1101863, "category": "media-conv", "path": "jpg_full/jpg/123500.jpg_copy.jpg"} +{"size_bytes": 1085264, "category": "media-conv", "path": "jpg_full/jpg/122100.jpg_copy.jpg"} +{"size_bytes": 641960, "category": "media-conv", "path": "jpg_full/jpg/128401.jpg_copy.jpg"} +{"size_bytes": 1098577, "category": "media-conv", "path": "jpg_full/jpg/120300.jpg"} +{"size_bytes": 1052414, "category": "media-conv", "path": "jpg_full/jpg/110000.jpg_copy.jpg"} +{"size_bytes": 3961883, "category": "media-conv", "path": "jpg_full/jpg/107500.jpg_copy.jpg"} +{"size_bytes": 1071530, "category": "media-conv", "path": "jpg_full/jpg/114903.jpg"} +{"size_bytes": 1786034, "category": "media-conv", "path": "jpg_full/jpg/104000.jpg"} +{"size_bytes": 2244197, "category": "media-conv", "path": "jpg_full/jpg/104900.jpg"} +{"size_bytes": 1423369, "category": "media-conv", "path": "jpg_full/jpg/103302.jpg_copy.jpg"} +{"size_bytes": 1075525, "category": "media-conv", "path": "jpg_full/jpg/118800.jpg"} +{"size_bytes": 771699, "category": "media-conv", "path": "jpg_full/jpg/109400.jpg"} +{"size_bytes": 1069892, "category": "media-conv", "path": "jpg_full/jpg/111401.jpg_copy.jpg"} +{"size_bytes": 1096956, "category": "media-conv", "path": "jpg_full/jpg/111500.jpg"} +{"size_bytes": 1403510, "category": "media-conv", "path": "jpg_full/jpg/105201.jpg"} +{"size_bytes": 734325, "category": "media-conv", "path": "jpg_full/jpg/128300.jpg"} +{"size_bytes": 1079757, "category": "media-conv", "path": "jpg_full/jpg/119701.jpg"} +{"size_bytes": 1062229, "category": "media-conv", "path": "jpg_full/jpg/112403.jpg"} +{"size_bytes": 1499294, "category": "media-conv", "path": "jpg_full/jpg/125500.jpg"} +{"size_bytes": 1679221, "category": "media-conv", "path": "jpg_full/jpg/103801.jpg"} +{"size_bytes": 3889539, "category": "media-conv", "path": "jpg_full/jpg/107900.jpg_copy.jpg"} +{"size_bytes": 3932280, "category": "media-conv", "path": "jpg_full/jpg/106602.jpg_copy.jpg"} +{"size_bytes": 1441579, "category": "media-conv", "path": "jpg_full/jpg/102100.jpg_copy.jpg"} +{"size_bytes": 3871568, "category": "media-conv", "path": "jpg_full/jpg/107201.jpg_copy.jpg"} +{"size_bytes": 1072134, "category": "media-conv", "path": "jpg_full/jpg/119101.jpg"} +{"size_bytes": 1095944, "category": "media-conv", "path": "jpg_full/jpg/112301.jpg_copy.jpg"} +{"size_bytes": 700403, "category": "media-conv", "path": "jpg_full/jpg/127401.jpg_copy.jpg"} +{"size_bytes": 751310, "category": "media-conv", "path": "jpg_full/jpg/109801.jpg_copy.jpg"} +{"size_bytes": 1072910, "category": "media-conv", "path": "jpg_full/jpg/120702.jpg_copy.jpg"} +{"size_bytes": 1095921, "category": "media-conv", "path": "jpg_full/jpg/120301.jpg_copy.jpg"} +{"size_bytes": 1011137, "category": "media-conv", "path": "jpg_full/jpg/112100.jpg_copy.jpg"} +{"size_bytes": 1040096, "category": "media-conv", "path": "jpg_full/jpg/108201.jpg_copy.jpg"} +{"size_bytes": 2161364, "category": "media-conv", "path": "jpg_full/jpg/126002.jpg"} +{"size_bytes": 717775, "category": "media-conv", "path": "jpg_full/jpg/109300.jpg_copy.jpg"} +{"size_bytes": 1636131, "category": "media-conv", "path": "jpg_full/jpg/104203.jpg"} +{"size_bytes": 1200459, "category": "media-conv", "path": "jpg_full/jpg/102801.jpg"} +{"size_bytes": 1239419, "category": "media-conv", "path": "jpg_full/jpg/104402.jpg_copy.jpg"} +{"size_bytes": 1085901, "category": "media-conv", "path": "jpg_full/jpg/116402.jpg_copy.jpg"} +{"size_bytes": 3859918, "category": "media-conv", "path": "jpg_full/jpg/107301.jpg"} +{"size_bytes": 757949, "category": "media-conv", "path": "jpg_full/jpg/109601.jpg_copy.jpg"} +{"size_bytes": 1441579, "category": "media-conv", "path": "jpg_full/jpg/102100.jpg"} +{"size_bytes": 1735428, "category": "media-conv", "path": "jpg_full/jpg/127000.jpg_copy.jpg"} +{"size_bytes": 1649326, "category": "media-conv", "path": "jpg_full/jpg/106101.jpg"} +{"size_bytes": 2182320, "category": "media-conv", "path": "jpg_full/jpg/115300.jpg"} +{"size_bytes": 1073259, "category": "media-conv", "path": "jpg_full/jpg/121000.jpg_copy.jpg"} +{"size_bytes": 4156695, "category": "media-conv", "path": "jpg_full/jpg/100502.jpg"} +{"size_bytes": 1063086, "category": "media-conv", "path": "jpg_full/jpg/114503.jpg"} +{"size_bytes": 1440859, "category": "media-conv", "path": "jpg_full/jpg/128001.jpg"} +{"size_bytes": 1086022, "category": "media-conv", "path": "jpg_full/jpg/108200.jpg_copy.jpg"} +{"size_bytes": 1101862, "category": "media-conv", "path": "jpg_full/jpg/118001.jpg_copy.jpg"} +{"size_bytes": 1837435, "category": "media-conv", "path": "jpg_full/jpg/103800.jpg_copy.jpg"} +{"size_bytes": 1536560, "category": "media-conv", "path": "jpg_full/jpg/102901.jpg"} +{"size_bytes": 680436, "category": "media-conv", "path": "jpg_full/jpg/128801.jpg_copy.jpg"} +{"size_bytes": 839665, "category": "media-conv", "path": "jpg_full/jpg/126500.jpg"} +{"size_bytes": 1857411, "category": "media-conv", "path": "jpg_full/jpg/101900.jpg_copy.jpg"} +{"size_bytes": 1110821, "category": "media-conv", "path": "jpg_full/jpg/116501.jpg"} +{"size_bytes": 986882, "category": "media-conv", "path": "jpg_full/jpg/126702.jpg_copy.jpg"} +{"size_bytes": 1649326, "category": "media-conv", "path": "jpg_full/jpg/106101.jpg_copy.jpg"} +{"size_bytes": 1620995, "category": "media-conv", "path": "jpg_full/jpg/105301.jpg"} +{"size_bytes": 1099505, "category": "media-conv", "path": "jpg_full/jpg/117102.jpg"} +{"size_bytes": 1278764, "category": "media-conv", "path": "jpg_full/jpg/122704.jpg_copy.jpg"} +{"size_bytes": 671413, "category": "media-conv", "path": "jpg_full/jpg/111301.jpg"} +{"size_bytes": 1086914, "category": "media-conv", "path": "jpg_full/jpg/113200.jpg_copy.jpg"} +{"size_bytes": 1066383, "category": "media-conv", "path": "jpg_full/jpg/112701.jpg"} +{"size_bytes": 1288695, "category": "media-conv", "path": "jpg_full/jpg/105900.jpg"} +{"size_bytes": 1096146, "category": "media-conv", "path": "jpg_full/jpg/108103.jpg"} +{"size_bytes": 1088104, "category": "media-conv", "path": "jpg_full/jpg/126901.jpg_copy.jpg"} +{"size_bytes": 2846316, "category": "media-conv", "path": "jpg_full/jpg/100800.jpg_copy.jpg"} +{"size_bytes": 1092484, "category": "media-conv", "path": "jpg_full/jpg/121301.jpg"} +{"size_bytes": 942710, "category": "media-conv", "path": "jpg_full/jpg/129602.jpg_copy.jpg"} +{"size_bytes": 3900027, "category": "media-conv", "path": "jpg_full/jpg/107401.jpg"} +{"size_bytes": 1083310, "category": "media-conv", "path": "jpg_full/jpg/113001.jpg"} +{"size_bytes": 1386706, "category": "media-conv", "path": "jpg_full/jpg/128502.jpg"} +{"size_bytes": 528915, "category": "media-conv", "path": "jpg_full/jpg/125203.jpg_copy.jpg"} +{"size_bytes": 1085264, "category": "media-conv", "path": "jpg_full/jpg/122100.jpg"} +{"size_bytes": 1071057, "category": "media-conv", "path": "jpg_full/jpg/113701.jpg"} +{"size_bytes": 2090794, "category": "media-conv", "path": "jpg_full/jpg/102501.jpg"} +{"size_bytes": 709940, "category": "media-conv", "path": "jpg_full/jpg/109101.jpg_copy.jpg"} +{"size_bytes": 891576, "category": "media-conv", "path": "jpg_full/jpg/126703.jpg"} +{"size_bytes": 3829227, "category": "media-conv", "path": "jpg_full/jpg/107100.jpg"} +{"size_bytes": 817112, "category": "media-conv", "path": "jpg_full/jpg/127601.jpg_copy.jpg"} +{"size_bytes": 1562098, "category": "media-conv", "path": "jpg_full/jpg/125400.jpg_copy.jpg"} +{"size_bytes": 1095539, "category": "media-conv", "path": "jpg_full/jpg/116600.jpg_copy.jpg"} +{"size_bytes": 1735428, "category": "media-conv", "path": "jpg_full/jpg/127000.jpg"} +{"size_bytes": 1552835, "category": "media-conv", "path": "jpg_full/jpg/103303.jpg_copy.jpg"} +{"size_bytes": 1069346, "category": "media-conv", "path": "jpg_full/jpg/118701.jpg"} +{"size_bytes": 1077349, "category": "media-conv", "path": "jpg_full/jpg/101500.jpg_copy.jpg"} +{"size_bytes": 833610, "category": "media-conv", "path": "jpg_full/jpg/127502.jpg_copy.jpg"} +{"size_bytes": 558229, "category": "media-conv", "path": "jpg_full/jpg/124802.jpg"} +{"size_bytes": 1087049, "category": "media-conv", "path": "jpg_full/jpg/116801.jpg_copy.jpg"} +{"size_bytes": 1065275, "category": "media-conv", "path": "jpg_full/jpg/116201.jpg"} +{"size_bytes": 775160, "category": "media-conv", "path": "jpg_full/jpg/122302.jpg_copy.jpg"} +{"size_bytes": 1247716, "category": "media-conv", "path": "jpg_full/jpg/122504.jpg"} +{"size_bytes": 3889539, "category": "media-conv", "path": "jpg_full/jpg/107900.jpg"} +{"size_bytes": 1798832, "category": "media-conv", "path": "jpg_full/jpg/103400.jpg_copy.jpg"} +{"size_bytes": 1089146, "category": "media-conv", "path": "jpg_full/jpg/122700.jpg_copy.jpg"} +{"size_bytes": 1065554, "category": "media-conv", "path": "jpg_full/jpg/123600.jpg"} +{"size_bytes": 1277653, "category": "media-conv", "path": "jpg_full/jpg/127800.jpg"} +{"size_bytes": 1800614, "category": "media-conv", "path": "jpg_full/jpg/105001.jpg_copy.jpg"} +{"size_bytes": 1108358, "category": "media-conv", "path": "jpg_full/jpg/116002.jpg_copy.jpg"} +{"size_bytes": 1650276, "category": "media-conv", "path": "jpg_full/jpg/102302.jpg_copy.jpg"} +{"size_bytes": 1299411, "category": "media-conv", "path": "jpg_full/jpg/103002.jpg_copy.jpg"} +{"size_bytes": 1907941, "category": "media-conv", "path": "jpg_full/jpg/122401.jpg"} +{"size_bytes": 734154, "category": "media-conv", "path": "jpg_full/jpg/109301.jpg_copy.jpg"} +{"size_bytes": 602786, "category": "media-conv", "path": "jpg_full/jpg/125202.jpg"} +{"size_bytes": 1244250, "category": "media-conv", "path": "jpg_full/jpg/104200.jpg"} +{"size_bytes": 1423369, "category": "media-conv", "path": "jpg_full/jpg/103302.jpg"} +{"size_bytes": 2083508, "category": "media-conv", "path": "jpg_full/jpg/102400.jpg_copy.jpg"} +{"size_bytes": 1220491, "category": "media-conv", "path": "jpg_full/jpg/122900.jpg"} +{"size_bytes": 4035977, "category": "media-conv", "path": "jpg_full/jpg/100000.jpg"} +{"size_bytes": 1092781, "category": "media-conv", "path": "jpg_full/jpg/111601.jpg"} +{"size_bytes": 1079356, "category": "media-conv", "path": "jpg_full/jpg/114800.jpg"} +{"size_bytes": 1639973, "category": "media-conv", "path": "jpg_full/jpg/103702.jpg_copy.jpg"} +{"size_bytes": 723469, "category": "media-conv", "path": "jpg_full/jpg/109701.jpg_copy.jpg"} +{"size_bytes": 1074877, "category": "media-conv", "path": "jpg_full/jpg/116301.jpg_copy.jpg"} +{"size_bytes": 1081340, "category": "media-conv", "path": "jpg_full/jpg/111501.jpg_copy.jpg"} +{"size_bytes": 4032210, "category": "media-conv", "path": "jpg_full/jpg/101101.jpg"} +{"size_bytes": 663418, "category": "media-conv", "path": "jpg_full/jpg/108901.jpg_copy.jpg"} +{"size_bytes": 1094158, "category": "media-conv", "path": "jpg_full/jpg/114701.jpg"} +{"size_bytes": 1084766, "category": "media-conv", "path": "jpg_full/jpg/116900.jpg"} +{"size_bytes": 945396, "category": "media-conv", "path": "jpg_full/jpg/118400.jpg"} +{"size_bytes": 2444388, "category": "media-conv", "path": "jpg_full/jpg/106801.jpg"} +{"size_bytes": 1920622, "category": "media-conv", "path": "jpg_full/jpg/104100.jpg_copy.jpg"} +{"size_bytes": 784843, "category": "media-conv", "path": "jpg_full/jpg/128301.jpg_copy.jpg"} +{"size_bytes": 1096921, "category": "media-conv", "path": "jpg_full/jpg/122701.jpg_copy.jpg"} +{"size_bytes": 3863079, "category": "media-conv", "path": "jpg_full/jpg/107300.jpg_copy.jpg"} +{"size_bytes": 1055899, "category": "media-conv", "path": "jpg_full/jpg/122001.jpg_copy.jpg"} +{"size_bytes": 786236, "category": "media-conv", "path": "jpg_full/jpg/125201.jpg"} +{"size_bytes": 1089675, "category": "media-conv", "path": "jpg_full/jpg/120400.jpg"} +{"size_bytes": 1374025, "category": "media-conv", "path": "jpg_full/jpg/127802.jpg"} +{"size_bytes": 1119035, "category": "media-conv", "path": "jpg_full/jpg/113800.jpg_copy.jpg"} +{"size_bytes": 3856744, "category": "media-conv", "path": "jpg_full/jpg/107801.jpg_copy.jpg"} +{"size_bytes": 859270, "category": "media-conv", "path": "jpg_full/jpg/129200.jpg_copy.jpg"} +{"size_bytes": 4165323, "category": "media-conv", "path": "jpg_full/jpg/107601.jpg"} +{"size_bytes": 3895679, "category": "media-conv", "path": "jpg_full/jpg/101001.jpg"} +{"size_bytes": 774282, "category": "media-conv", "path": "jpg_full/jpg/109800.jpg"} +{"size_bytes": 925555, "category": "media-conv", "path": "jpg_full/jpg/124700.jpg_copy.jpg"} +{"size_bytes": 527520, "category": "media-conv", "path": "jpg_full/jpg/129901.jpg"} +{"size_bytes": 1096907, "category": "media-conv", "path": "jpg_full/jpg/121901.jpg_copy.jpg"} +{"size_bytes": 754991, "category": "media-conv", "path": "jpg_full/jpg/112001.jpg"} +{"size_bytes": 3930381, "category": "media-conv", "path": "jpg_full/jpg/100002.jpg_copy.jpg"} +{"size_bytes": 1101373, "category": "media-conv", "path": "jpg_full/jpg/116802.jpg_copy.jpg"} +{"size_bytes": 1113831, "category": "media-conv", "path": "jpg_full/jpg/118600.jpg_copy.jpg"} +{"size_bytes": 1102780, "category": "media-conv", "path": "jpg_full/jpg/121400.jpg"} +{"size_bytes": 1116375, "category": "media-conv", "path": "jpg_full/jpg/112801.jpg"} +{"size_bytes": 1036063, "category": "media-conv", "path": "jpg_full/jpg/110701.jpg_copy.jpg"} +{"size_bytes": 1087166, "category": "media-conv", "path": "jpg_full/jpg/112601.jpg"} +{"size_bytes": 1070954, "category": "media-conv", "path": "jpg_full/jpg/123900.jpg"} +{"size_bytes": 1061227, "category": "media-conv", "path": "jpg_full/jpg/108202.jpg"} +{"size_bytes": 1113406, "category": "media-conv", "path": "jpg_full/jpg/121401.jpg_copy.jpg"} +{"size_bytes": 975750, "category": "media-conv", "path": "jpg_full/jpg/126902.jpg_copy.jpg"} +{"size_bytes": 2597144, "category": "media-conv", "path": "jpg_full/jpg/129700.jpg_copy.jpg"} +{"size_bytes": 1043421, "category": "media-conv", "path": "jpg_full/jpg/124401.jpg_copy.jpg"} +{"size_bytes": 1121386, "category": "media-conv", "path": "jpg_full/jpg/115601.jpg_copy.jpg"} +{"size_bytes": 1071116, "category": "media-conv", "path": "jpg_full/jpg/116200.jpg"} +{"size_bytes": 1085446, "category": "media-conv", "path": "jpg_full/jpg/116700.jpg_copy.jpg"} +{"size_bytes": 1075835, "category": "media-conv", "path": "jpg_full/jpg/124100.jpg"} +{"size_bytes": 1095921, "category": "media-conv", "path": "jpg_full/jpg/120301.jpg"} +{"size_bytes": 3751620, "category": "media-conv", "path": "jpg_full/jpg/107800.jpg"} +{"size_bytes": 1190917, "category": "media-conv", "path": "jpg_full/jpg/123003.jpg"} +{"size_bytes": 1154328, "category": "media-conv", "path": "jpg_full/jpg/106000.jpg"} +{"size_bytes": 1400765, "category": "media-conv", "path": "jpg_full/jpg/103500.jpg"} +{"size_bytes": 1069892, "category": "media-conv", "path": "jpg_full/jpg/111401.jpg"} +{"size_bytes": 1087184, "category": "media-conv", "path": "jpg_full/jpg/124201.jpg"} +{"size_bytes": 1110275, "category": "media-conv", "path": "jpg_full/jpg/120201.jpg"} +{"size_bytes": 1039432, "category": "media-conv", "path": "jpg_full/jpg/114600.jpg"} +{"size_bytes": 612778, "category": "media-conv", "path": "jpg_full/jpg/127402.jpg"} +{"size_bytes": 1086238, "category": "media-conv", "path": "jpg_full/jpg/126800.jpg"} +{"size_bytes": 2779367, "category": "media-conv", "path": "jpg_full/jpg/102202.jpg_copy.jpg"} +{"size_bytes": 3874600, "category": "media-conv", "path": "jpg_full/jpg/106403.jpg"} +{"size_bytes": 1067183, "category": "media-conv", "path": "jpg_full/jpg/124003.jpg"} +{"size_bytes": 1099535, "category": "media-conv", "path": "jpg_full/jpg/119100.jpg"} +{"size_bytes": 1296861, "category": "media-conv", "path": "jpg_full/jpg/101601.jpg"} +{"size_bytes": 1701607, "category": "media-conv", "path": "jpg_full/jpg/105300.jpg"} +{"size_bytes": 1294928, "category": "media-conv", "path": "jpg_full/jpg/101600.jpg_copy.jpg"} +{"size_bytes": 1063822, "category": "media-conv", "path": "jpg_full/jpg/126900.jpg"} +{"size_bytes": 2153270, "category": "media-conv", "path": "jpg_full/jpg/102300.jpg"} +{"size_bytes": 1079608, "category": "media-conv", "path": "jpg_full/jpg/123700.jpg_copy.jpg"} +{"size_bytes": 1318005, "category": "media-conv", "path": "jpg_full/jpg/105901.jpg"} +{"size_bytes": 4233706, "category": "media-conv", "path": "jpg_full/jpg/100503.jpg"} +{"size_bytes": 2390952, "category": "media-conv", "path": "jpg_full/jpg/106702.jpg"} +{"size_bytes": 1071312, "category": "media-conv", "path": "jpg_full/jpg/117400.jpg_copy.jpg"} +{"size_bytes": 1081060, "category": "media-conv", "path": "jpg_full/jpg/112602.jpg"} +{"size_bytes": 1098454, "category": "media-conv", "path": "jpg_full/jpg/113201.jpg"} +{"size_bytes": 1075157, "category": "media-conv", "path": "jpg_full/jpg/115501.jpg"} +{"size_bytes": 726527, "category": "media-conv", "path": "jpg_full/jpg/123101.jpg"} +{"size_bytes": 1291529, "category": "media-conv", "path": "jpg_full/jpg/128501.jpg_copy.jpg"} +{"size_bytes": 1078731, "category": "media-conv", "path": "jpg_full/jpg/115200.jpg_copy.jpg"} +{"size_bytes": 1417205, "category": "media-conv", "path": "jpg_full/jpg/103001.jpg_copy.jpg"} +{"size_bytes": 1079377, "category": "media-conv", "path": "jpg_full/jpg/117800.jpg"} +{"size_bytes": 4218387, "category": "media-conv", "path": "jpg_full/jpg/100501.jpg"} +{"size_bytes": 1096211, "category": "media-conv", "path": "jpg_full/jpg/116300.jpg"} +{"size_bytes": 1699036, "category": "media-conv", "path": "jpg_full/jpg/104801.jpg"} +{"size_bytes": 1114926, "category": "media-conv", "path": "jpg_full/jpg/108800.jpg_copy.jpg"} +{"size_bytes": 1072910, "category": "media-conv", "path": "jpg_full/jpg/120702.jpg"} +{"size_bytes": 922377, "category": "media-conv", "path": "jpg_full/jpg/118401.jpg"} +{"size_bytes": 2098172, "category": "media-conv", "path": "jpg_full/jpg/102402.jpg"} +{"size_bytes": 1077007, "category": "media-conv", "path": "jpg_full/jpg/114601.jpg_copy.jpg"} +{"size_bytes": 1470601, "category": "media-conv", "path": "jpg_full/jpg/103503.jpg"} +{"size_bytes": 1099059, "category": "media-conv", "path": "jpg_full/jpg/118303.jpg"} +{"size_bytes": 1403510, "category": "media-conv", "path": "jpg_full/jpg/105201.jpg_copy.jpg"} +{"size_bytes": 2098172, "category": "media-conv", "path": "jpg_full/jpg/102402.jpg_copy.jpg"} +{"size_bytes": 1510864, "category": "media-conv", "path": "jpg_full/jpg/125801.jpg_copy.jpg"} +{"size_bytes": 1396458, "category": "media-conv", "path": "jpg_full/jpg/102201.jpg_copy.jpg"} +{"size_bytes": 566341, "category": "media-conv", "path": "jpg_full/jpg/111100.jpg_copy.jpg"} +{"size_bytes": 1071875, "category": "media-conv", "path": "jpg_full/jpg/114301.jpg"} +{"size_bytes": 1447314, "category": "media-conv", "path": "jpg_full/jpg/104502.jpg_copy.jpg"} +{"size_bytes": 1074007, "category": "media-conv", "path": "jpg_full/jpg/124001.jpg"} +{"size_bytes": 1081290, "category": "media-conv", "path": "jpg_full/jpg/120600.jpg"} +{"size_bytes": 1396458, "category": "media-conv", "path": "jpg_full/jpg/102201.jpg"} +{"size_bytes": 1060493, "category": "media-conv", "path": "jpg_full/jpg/117700.jpg"} +{"size_bytes": 1233506, "category": "media-conv", "path": "jpg_full/jpg/104301.jpg"} +{"size_bytes": 2506896, "category": "media-conv", "path": "jpg_full/jpg/102200.jpg"} +{"size_bytes": 1092838, "category": "media-conv", "path": "jpg_full/jpg/117000.jpg_copy.jpg"} +{"size_bytes": 1051185, "category": "media-conv", "path": "jpg_full/jpg/108700.jpg"} +{"size_bytes": 566341, "category": "media-conv", "path": "jpg_full/jpg/111100.jpg"} +{"size_bytes": 1086022, "category": "media-conv", "path": "jpg_full/jpg/108200.jpg"} +{"size_bytes": 1020332, "category": "media-conv", "path": "jpg_full/jpg/124000.jpg_copy.jpg"} +{"size_bytes": 1208109, "category": "media-conv", "path": "jpg_full/jpg/104201.jpg_copy.jpg"} +{"size_bytes": 1115902, "category": "media-conv", "path": "jpg_full/jpg/122801.jpg"} +{"size_bytes": 1090521, "category": "media-conv", "path": "jpg_full/jpg/120703.jpg_copy.jpg"} +{"size_bytes": 1077196, "category": "media-conv", "path": "jpg_full/jpg/119603.jpg"} +{"size_bytes": 1104946, "category": "media-conv", "path": "jpg_full/jpg/120901.jpg"} +{"size_bytes": 725024, "category": "media-conv", "path": "jpg_full/jpg/108001.jpg"} +{"size_bytes": 1274197, "category": "media-conv", "path": "jpg_full/jpg/104802.jpg_copy.jpg"} +{"size_bytes": 1586322, "category": "media-conv", "path": "jpg_full/jpg/105104.jpg"} +{"size_bytes": 1078731, "category": "media-conv", "path": "jpg_full/jpg/115200.jpg"} +{"size_bytes": 2141366, "category": "media-conv", "path": "jpg_full/jpg/108600.jpg_copy.jpg"} +{"size_bytes": 1113257, "category": "media-conv", "path": "jpg_full/jpg/124101.jpg"} +{"size_bytes": 1054345, "category": "media-conv", "path": "jpg_full/jpg/112201.jpg_copy.jpg"} +{"size_bytes": 1586322, "category": "media-conv", "path": "jpg_full/jpg/105104.jpg_copy.jpg"} +{"size_bytes": 750786, "category": "media-conv", "path": "jpg_full/jpg/123204.jpg_copy.jpg"} +{"size_bytes": 1093953, "category": "media-conv", "path": "jpg_full/jpg/120200.jpg"} +{"size_bytes": 1069003, "category": "media-conv", "path": "jpg_full/jpg/115201.jpg_copy.jpg"} +{"size_bytes": 1148087, "category": "media-conv", "path": "jpg_full/jpg/108106.jpg"} +{"size_bytes": 1086965, "category": "media-conv", "path": "jpg_full/jpg/114500.jpg"} +{"size_bytes": 1536560, "category": "media-conv", "path": "jpg_full/jpg/102901.jpg_copy.jpg"} +{"size_bytes": 1088480, "category": "media-conv", "path": "jpg_full/jpg/118601.jpg"} +{"size_bytes": 1157462, "category": "media-conv", "path": "jpg_full/jpg/101403.jpg"} +{"size_bytes": 3689507, "category": "media-conv", "path": "jpg_full/jpg/106701.jpg_copy.jpg"} +{"size_bytes": 1261138, "category": "media-conv", "path": "jpg_full/jpg/110200.jpg"} +{"size_bytes": 1051185, "category": "media-conv", "path": "jpg_full/jpg/108700.jpg_copy.jpg"} +{"size_bytes": 1081664, "category": "media-conv", "path": "jpg_full/jpg/119901.jpg"} +{"size_bytes": 1026716, "category": "media-conv", "path": "jpg_full/jpg/108401.jpg"} +{"size_bytes": 1078638, "category": "media-conv", "path": "jpg_full/jpg/115701.jpg_copy.jpg"} +{"size_bytes": 4004172, "category": "media-conv", "path": "jpg_full/jpg/106600.jpg"} +{"size_bytes": 1727348, "category": "media-conv", "path": "jpg_full/jpg/104800.jpg"} +{"size_bytes": 1082508, "category": "media-conv", "path": "jpg_full/jpg/123801.jpg_copy.jpg"} +{"size_bytes": 1096146, "category": "media-conv", "path": "jpg_full/jpg/108103.jpg_copy.jpg"} +{"size_bytes": 821938, "category": "media-conv", "path": "jpg_full/jpg/126400.jpg"} +{"size_bytes": 1113257, "category": "media-conv", "path": "jpg_full/jpg/124101.jpg_copy.jpg"} +{"size_bytes": 1095944, "category": "media-conv", "path": "jpg_full/jpg/112301.jpg"} +{"size_bytes": 1128010, "category": "media-conv", "path": "jpg_full/jpg/120501.jpg_copy.jpg"} +{"size_bytes": 1448913, "category": "media-conv", "path": "jpg_full/jpg/125800.jpg"} +{"size_bytes": 729022, "category": "media-conv", "path": "jpg_full/jpg/123300.jpg_copy.jpg"} +{"size_bytes": 1084602, "category": "media-conv", "path": "jpg_full/jpg/119203.jpg_copy.jpg"} +{"size_bytes": 1092442, "category": "media-conv", "path": "jpg_full/jpg/113401.jpg"} +{"size_bytes": 1143784, "category": "media-conv", "path": "jpg_full/jpg/111702.jpg_copy.jpg"} +{"size_bytes": 3394688, "category": "media-conv", "path": "jpg_full/jpg/107701.jpg"} +{"size_bytes": 1106116, "category": "media-conv", "path": "jpg_full/jpg/117500.jpg_copy.jpg"} +{"size_bytes": 819764, "category": "media-conv", "path": "jpg_full/jpg/127602.jpg_copy.jpg"} +{"size_bytes": 1115482, "category": "media-conv", "path": "jpg_full/jpg/115801.jpg_copy.jpg"} +{"size_bytes": 2275839, "category": "media-conv", "path": "jpg_full/jpg/105500.jpg"} +{"size_bytes": 1102563, "category": "media-conv", "path": "jpg_full/jpg/114300.jpg"} +{"size_bytes": 1088690, "category": "media-conv", "path": "jpg_full/jpg/113403.jpg"} +{"size_bytes": 915416, "category": "media-conv", "path": "jpg_full/jpg/111201.jpg"} +{"size_bytes": 4050024, "category": "media-conv", "path": "jpg_full/jpg/106301.jpg"} +{"size_bytes": 597979, "category": "media-conv", "path": "jpg_full/jpg/111300.jpg_copy.jpg"} +{"size_bytes": 1115556, "category": "media-conv", "path": "jpg_full/jpg/113502.jpg"} +{"size_bytes": 1067782, "category": "media-conv", "path": "jpg_full/jpg/109900.jpg_copy.jpg"} +{"size_bytes": 850278, "category": "media-conv", "path": "jpg_full/jpg/126803.jpg"} +{"size_bytes": 1323408, "category": "media-conv", "path": "jpg_full/jpg/122601.jpg_copy.jpg"} +{"size_bytes": 2414174, "category": "media-conv", "path": "jpg_full/jpg/106901.jpg_copy.jpg"} +{"size_bytes": 1093715, "category": "media-conv", "path": "jpg_full/jpg/111801.jpg_copy.jpg"} +{"size_bytes": 1749969, "category": "media-conv", "path": "jpg_full/jpg/104003.jpg"} +{"size_bytes": 1257890, "category": "media-conv", "path": "jpg_full/jpg/101801.jpg"} +{"size_bytes": 992826, "category": "media-conv", "path": "jpg_full/jpg/110702.jpg_copy.jpg"} +{"size_bytes": 1798832, "category": "media-conv", "path": "jpg_full/jpg/103400.jpg"} +{"size_bytes": 2441911, "category": "media-conv", "path": "jpg_full/jpg/126102.jpg"} +{"size_bytes": 756110, "category": "media-conv", "path": "jpg_full/jpg/123202.jpg_copy.jpg"} +{"size_bytes": 1100814, "category": "media-conv", "path": "jpg_full/jpg/117302.jpg_copy.jpg"} +{"size_bytes": 1116375, "category": "media-conv", "path": "jpg_full/jpg/112801.jpg_copy.jpg"} +{"size_bytes": 4165323, "category": "media-conv", "path": "jpg_full/jpg/107601.jpg_copy.jpg"} +{"size_bytes": 1781285, "category": "media-conv", "path": "jpg_full/jpg/104001.jpg_copy.jpg"} +{"size_bytes": 1079356, "category": "media-conv", "path": "jpg_full/jpg/114800.jpg_copy.jpg"} +{"size_bytes": 1056296, "category": "media-conv", "path": "jpg_full/jpg/121600.jpg_copy.jpg"} +{"size_bytes": 1068036, "category": "media-conv", "path": "jpg_full/jpg/124300.jpg_copy.jpg"} +{"size_bytes": 1125435, "category": "media-conv", "path": "jpg_full/jpg/122000.jpg_copy.jpg"} +{"size_bytes": 925249, "category": "media-conv", "path": "jpg_full/jpg/100601.jpg"} +{"size_bytes": 1099219, "category": "media-conv", "path": "jpg_full/jpg/114400.jpg_copy.jpg"} +{"size_bytes": 1106077, "category": "media-conv", "path": "jpg_full/jpg/116701.jpg_copy.jpg"} +{"size_bytes": 730901, "category": "media-conv", "path": "jpg_full/jpg/109802.jpg_copy.jpg"} +{"size_bytes": 1121386, "category": "media-conv", "path": "jpg_full/jpg/115601.jpg"} +{"size_bytes": 1027057, "category": "media-conv", "path": "jpg_full/jpg/125300.jpg"} +{"size_bytes": 2114534, "category": "media-conv", "path": "jpg_full/jpg/105600.jpg_copy.jpg"} +{"size_bytes": 826433, "category": "media-conv", "path": "jpg_full/jpg/111101.jpg_copy.jpg"} +{"size_bytes": 1070465, "category": "media-conv", "path": "jpg_full/jpg/113700.jpg_copy.jpg"} +{"size_bytes": 1140740, "category": "media-conv", "path": "jpg_full/jpg/129000.jpg_copy.jpg"} +{"size_bytes": 1039432, "category": "media-conv", "path": "jpg_full/jpg/114600.jpg_copy.jpg"} +{"size_bytes": 3734959, "category": "media-conv", "path": "jpg_full/jpg/106401.jpg"} +{"size_bytes": 1271825, "category": "media-conv", "path": "jpg_full/jpg/126201.jpg_copy.jpg"} +{"size_bytes": 863100, "category": "media-conv", "path": "jpg_full/jpg/126501.jpg_copy.jpg"} +{"size_bytes": 3962542, "category": "media-conv", "path": "jpg_full/jpg/100101.jpg_copy.jpg"} +{"size_bytes": 2002529, "category": "media-conv", "path": "jpg_full/jpg/127100.jpg"} +{"size_bytes": 654065, "category": "media-conv", "path": "jpg_full/jpg/110601.jpg_copy.jpg"} +{"size_bytes": 1111357, "category": "media-conv", "path": "jpg_full/jpg/113500.jpg_copy.jpg"} +{"size_bytes": 1223469, "category": "media-conv", "path": "jpg_full/jpg/104300.jpg_copy.jpg"} +{"size_bytes": 2846316, "category": "media-conv", "path": "jpg_full/jpg/100800.jpg"} +{"size_bytes": 2161364, "category": "media-conv", "path": "jpg_full/jpg/126002.jpg_copy.jpg"} +{"size_bytes": 1092781, "category": "media-conv", "path": "jpg_full/jpg/111601.jpg_copy.jpg"} +{"size_bytes": 764709, "category": "media-conv", "path": "jpg_full/jpg/127202.jpg_copy.jpg"} +{"size_bytes": 1410092, "category": "media-conv", "path": "jpg_full/jpg/102000.jpg_copy.jpg"} +{"size_bytes": 1047467, "category": "media-conv", "path": "jpg_full/jpg/118501.jpg"} +{"size_bytes": 1061227, "category": "media-conv", "path": "jpg_full/jpg/108202.jpg_copy.jpg"} +{"size_bytes": 1076618, "category": "media-conv", "path": "jpg_full/jpg/118300.jpg_copy.jpg"} +{"size_bytes": 736157, "category": "media-conv", "path": "jpg_full/jpg/123200.jpg"} +{"size_bytes": 1530884, "category": "media-conv", "path": "jpg_full/jpg/128100.jpg_copy.jpg"} +{"size_bytes": 733649, "category": "media-conv", "path": "jpg_full/jpg/112002.jpg_copy.jpg"} +{"size_bytes": 1267013, "category": "media-conv", "path": "jpg_full/jpg/127700.jpg"} +{"size_bytes": 757839, "category": "media-conv", "path": "jpg_full/jpg/108000.jpg"} +{"size_bytes": 1291529, "category": "media-conv", "path": "jpg_full/jpg/128501.jpg"} +{"size_bytes": 2847436, "category": "media-conv", "path": "jpg_full/jpg/122707.jpg"} +{"size_bytes": 1508054, "category": "media-conv", "path": "jpg_full/jpg/125702.jpg_copy.jpg"} +{"size_bytes": 1093517, "category": "media-conv", "path": "jpg_full/jpg/116703.jpg"} +{"size_bytes": 3844067, "category": "media-conv", "path": "jpg_full/jpg/100200.jpg"} +{"size_bytes": 147824, "category": "media-conv", "path": "jpg_full/jpg/129401.jpg"} +{"size_bytes": 1075357, "category": "media-conv", "path": "jpg_full/jpg/121500.jpg"} +{"size_bytes": 108022, "category": "media-conv", "path": "jpg_full/jpg/129301.jpg_copy.jpg"} +{"size_bytes": 1127657, "category": "media-conv", "path": "jpg_full/jpg/102802.jpg"} +{"size_bytes": 1073419, "category": "media-conv", "path": "jpg_full/jpg/114700.jpg_copy.jpg"} +{"size_bytes": 1099124, "category": "media-conv", "path": "jpg_full/jpg/113900.jpg"} +{"size_bytes": 1066263, "category": "media-conv", "path": "jpg_full/jpg/128200.jpg"} +{"size_bytes": 933890, "category": "media-conv", "path": "jpg_full/jpg/129801.jpg"} +{"size_bytes": 1162863, "category": "media-conv", "path": "jpg_full/jpg/127301.jpg_copy.jpg"} +{"size_bytes": 3855038, "category": "media-conv", "path": "jpg_full/jpg/105800.jpg_copy.jpg"} +{"size_bytes": 1508054, "category": "media-conv", "path": "jpg_full/jpg/125702.jpg"} +{"size_bytes": 1078176, "category": "media-conv", "path": "jpg_full/jpg/112302.jpg"} +{"size_bytes": 549324, "category": "media-conv", "path": "jpg_full/jpg/129900.jpg"} +{"size_bytes": 1067630, "category": "media-conv", "path": "jpg_full/jpg/123602.jpg"} +{"size_bytes": 1425574, "category": "media-conv", "path": "jpg_full/jpg/125802.jpg"} +{"size_bytes": 1996082, "category": "media-conv", "path": "jpg_full/jpg/103901.jpg_copy.jpg"} +{"size_bytes": 1151588, "category": "media-conv", "path": "jpg_full/jpg/101400.jpg"} +{"size_bytes": 2064076, "category": "media-conv", "path": "jpg_full/jpg/102301.jpg"} +{"size_bytes": 4007840, "category": "media-conv", "path": "jpg_full/jpg/106501.jpg"} +{"size_bytes": 1089675, "category": "media-conv", "path": "jpg_full/jpg/120400.jpg_copy.jpg"} +{"size_bytes": 1060884, "category": "media-conv", "path": "jpg_full/jpg/108701.jpg"} +{"size_bytes": 1939907, "category": "media-conv", "path": "jpg_full/jpg/103900.jpg"} +{"size_bytes": 1346859, "category": "media-conv", "path": "jpg_full/jpg/122800.jpg"} +{"size_bytes": 795908, "category": "media-conv", "path": "jpg_full/jpg/127500.jpg_copy.jpg"} +{"size_bytes": 1296111, "category": "media-conv", "path": "jpg_full/jpg/122708.jpg"} +{"size_bytes": 3932280, "category": "media-conv", "path": "jpg_full/jpg/106602.jpg"} +{"size_bytes": 1115156, "category": "media-conv", "path": "jpg_full/jpg/117900.jpg_copy.jpg"} +{"size_bytes": 4030655, "category": "media-conv", "path": "jpg_full/jpg/106300.jpg"} +{"size_bytes": 3511977, "category": "media-conv", "path": "jpg_full/jpg/101000.jpg_copy.jpg"} +{"size_bytes": 994037, "category": "media-conv", "path": "jpg_full/jpg/118100.jpg"} +{"size_bytes": 1231006, "category": "media-conv", "path": "jpg_full/jpg/105700.jpg_copy.jpg"} +{"size_bytes": 4156695, "category": "media-conv", "path": "jpg_full/jpg/100502.jpg_copy.jpg"} +{"size_bytes": 826433, "category": "media-conv", "path": "jpg_full/jpg/111101.jpg"} +{"size_bytes": 2383548, "category": "media-conv", "path": "jpg_full/jpg/126101.jpg"} +{"size_bytes": 544274, "category": "media-conv", "path": "jpg_full/jpg/124800.jpg"} +{"size_bytes": 3829227, "category": "media-conv", "path": "jpg_full/jpg/107100.jpg_copy.jpg"} +{"size_bytes": 2392809, "category": "media-conv", "path": "jpg_full/jpg/103202.jpg"} +{"size_bytes": 2934959, "category": "media-conv", "path": "jpg_full/jpg/100900.jpg"} +{"size_bytes": 1077023, "category": "media-conv", "path": "jpg_full/jpg/108301.jpg_copy.jpg"} +{"size_bytes": 1053634, "category": "media-conv", "path": "jpg_full/jpg/115301.jpg"} +{"size_bytes": 843927, "category": "media-conv", "path": "jpg_full/jpg/127503.jpg"} +{"size_bytes": 1140725, "category": "media-conv", "path": "jpg_full/jpg/129600.jpg_copy.jpg"} +{"size_bytes": 1103345, "category": "media-conv", "path": "jpg_full/jpg/120100.jpg"} +{"size_bytes": 1077023, "category": "media-conv", "path": "jpg_full/jpg/108301.jpg"} +{"size_bytes": 2897169, "category": "media-conv", "path": "jpg_full/jpg/122502.jpg_copy.jpg"} +{"size_bytes": 1151588, "category": "media-conv", "path": "jpg_full/jpg/101400.jpg_copy.jpg"} +{"size_bytes": 3859918, "category": "media-conv", "path": "jpg_full/jpg/107301.jpg_copy.jpg"} +{"size_bytes": 1562098, "category": "media-conv", "path": "jpg_full/jpg/125400.jpg"} +{"size_bytes": 1668893, "category": "media-conv", "path": "jpg_full/jpg/104400.jpg_copy.jpg"} +{"size_bytes": 832438, "category": "media-conv", "path": "jpg_full/jpg/124501.jpg"} +{"size_bytes": 901958, "category": "media-conv", "path": "jpg_full/jpg/126805.jpg_copy.jpg"} +{"size_bytes": 893665, "category": "media-conv", "path": "jpg_full/jpg/128201.jpg_copy.jpg"} +{"size_bytes": 1106116, "category": "media-conv", "path": "jpg_full/jpg/117500.jpg"} +{"size_bytes": 3751620, "category": "media-conv", "path": "jpg_full/jpg/107800.jpg_copy.jpg"} +{"size_bytes": 1086238, "category": "media-conv", "path": "jpg_full/jpg/126800.jpg_copy.jpg"} +{"size_bytes": 1067782, "category": "media-conv", "path": "jpg_full/jpg/109900.jpg"} +{"size_bytes": 1595549, "category": "media-conv", "path": "jpg_full/jpg/105000.jpg"} +{"size_bytes": 1095148, "category": "media-conv", "path": "jpg_full/jpg/120401.jpg_copy.jpg"} +{"size_bytes": 2434689, "category": "media-conv", "path": "jpg_full/jpg/106902.jpg"} +{"size_bytes": 1639327, "category": "media-conv", "path": "jpg_full/jpg/125703.jpg_copy.jpg"} +{"size_bytes": 1061432, "category": "media-conv", "path": "jpg_full/jpg/108802.jpg_copy.jpg"} +{"size_bytes": 4233706, "category": "media-conv", "path": "jpg_full/jpg/100503.jpg_copy.jpg"} +{"size_bytes": 1089034, "category": "media-conv", "path": "jpg_full/jpg/114902.jpg_copy.jpg"} +{"size_bytes": 1115156, "category": "media-conv", "path": "jpg_full/jpg/117900.jpg"} +{"size_bytes": 115980, "category": "media-conv", "path": "jpg_full/jpg/129300.jpg"} +{"size_bytes": 1418215, "category": "media-conv", "path": "jpg_full/jpg/101800.jpg"} +{"size_bytes": 1257890, "category": "media-conv", "path": "jpg_full/jpg/101801.jpg_copy.jpg"} +{"size_bytes": 2553505, "category": "media-conv", "path": "jpg_full/jpg/103201.jpg_copy.jpg"} +{"size_bytes": 1437061, "category": "media-conv", "path": "jpg_full/jpg/103501.jpg_copy.jpg"} +{"size_bytes": 1266340, "category": "media-conv", "path": "jpg_full/jpg/101401.jpg"} +{"size_bytes": 1110005, "category": "media-conv", "path": "jpg_full/jpg/118201.jpg"} +{"size_bytes": 1169676, "category": "media-conv", "path": "jpg_full/jpg/101504.jpg"} +{"size_bytes": 1939907, "category": "media-conv", "path": "jpg_full/jpg/103900.jpg_copy.jpg"} +{"size_bytes": 1914635, "category": "media-conv", "path": "jpg_full/jpg/122400.jpg_copy.jpg"} +{"size_bytes": 1111814, "category": "media-conv", "path": "jpg_full/jpg/122202.jpg"} +{"size_bytes": 1101862, "category": "media-conv", "path": "jpg_full/jpg/118001.jpg"} +{"size_bytes": 1092657, "category": "media-conv", "path": "jpg_full/jpg/113901.jpg_copy.jpg"} +{"size_bytes": 1481053, "category": "media-conv", "path": "jpg_full/jpg/106201.jpg_copy.jpg"} +{"size_bytes": 2907496, "category": "media-conv", "path": "jpg_full/jpg/128600.jpg_copy.jpg"} +{"size_bytes": 1069947, "category": "media-conv", "path": "jpg_full/jpg/119500.jpg_copy.jpg"} +{"size_bytes": 1097269, "category": "media-conv", "path": "jpg_full/jpg/122002.jpg_copy.jpg"} +{"size_bytes": 1086190, "category": "media-conv", "path": "jpg_full/jpg/117200.jpg_copy.jpg"} +{"size_bytes": 765533, "category": "media-conv", "path": "jpg_full/jpg/110600.jpg_copy.jpg"} +{"size_bytes": 1093953, "category": "media-conv", "path": "jpg_full/jpg/120200.jpg_copy.jpg"} +{"size_bytes": 1114023, "category": "media-conv", "path": "jpg_full/jpg/101501.jpg_copy.jpg"} +{"size_bytes": 1213302, "category": "media-conv", "path": "jpg_full/jpg/122901.jpg"} +{"size_bytes": 754735, "category": "media-conv", "path": "jpg_full/jpg/109600.jpg"} +{"size_bytes": 1121025, "category": "media-conv", "path": "jpg_full/jpg/121700.jpg"} +{"size_bytes": 1157462, "category": "media-conv", "path": "jpg_full/jpg/101403.jpg_copy.jpg"} +{"size_bytes": 974805, "category": "media-conv", "path": "jpg_full/jpg/109901.jpg_copy.jpg"} +{"size_bytes": 1096161, "category": "media-conv", "path": "jpg_full/jpg/113301.jpg"} +{"size_bytes": 1996082, "category": "media-conv", "path": "jpg_full/jpg/103101.jpg_copy.jpg"} +{"size_bytes": 1099806, "category": "media-conv", "path": "jpg_full/jpg/112300.jpg"} +{"size_bytes": 1096458, "category": "media-conv", "path": "jpg_full/jpg/119000.jpg_copy.jpg"} +{"size_bytes": 2141366, "category": "media-conv", "path": "jpg_full/jpg/108600.jpg"} +{"size_bytes": 832288, "category": "media-conv", "path": "jpg_full/jpg/128901.jpg"} +{"size_bytes": 1072610, "category": "media-conv", "path": "jpg_full/jpg/117201.jpg"} +{"size_bytes": 4032210, "category": "media-conv", "path": "jpg_full/jpg/101101.jpg_copy.jpg"} +{"size_bytes": 858423, "category": "media-conv", "path": "jpg_full/jpg/125901.jpg"} +{"size_bytes": 1079377, "category": "media-conv", "path": "jpg_full/jpg/114200.jpg"} +{"size_bytes": 539978, "category": "media-conv", "path": "jpg_full/jpg/124801.jpg_copy.jpg"} +{"size_bytes": 1082482, "category": "media-conv", "path": "jpg_full/jpg/112401.jpg"} +{"size_bytes": 1092838, "category": "media-conv", "path": "jpg_full/jpg/117000.jpg"} +{"size_bytes": 4021687, "category": "media-conv", "path": "jpg_full/jpg/106604.jpg_copy.jpg"} +{"size_bytes": 705320, "category": "media-conv", "path": "jpg_full/jpg/108902.jpg"} +{"size_bytes": 784367, "category": "media-conv", "path": "jpg_full/jpg/125200.jpg"} +{"size_bytes": 1092387, "category": "media-conv", "path": "jpg_full/jpg/111600.jpg"} +{"size_bytes": 539978, "category": "media-conv", "path": "jpg_full/jpg/124801.jpg"} +{"size_bytes": 1139260, "category": "media-conv", "path": "jpg_full/jpg/125301.jpg_copy.jpg"} +{"size_bytes": 1074105, "category": "media-conv", "path": "jpg_full/jpg/118802.jpg"} +{"size_bytes": 801060, "category": "media-conv", "path": "jpg_full/jpg/101201.jpg_copy.jpg"} +{"size_bytes": 1085307, "category": "media-conv", "path": "jpg_full/jpg/120001.jpg"} +{"size_bytes": 3511977, "category": "media-conv", "path": "jpg_full/jpg/101000.jpg"} +{"size_bytes": 3870574, "category": "media-conv", "path": "jpg_full/jpg/106703.jpg"} +{"size_bytes": 1048824, "category": "media-conv", "path": "jpg_full/jpg/113801.jpg"} +{"size_bytes": 2434689, "category": "media-conv", "path": "jpg_full/jpg/106902.jpg_copy.jpg"} +{"size_bytes": 774465, "category": "media-conv", "path": "jpg_full/jpg/129202.jpg"} +{"size_bytes": 742139, "category": "media-conv", "path": "jpg_full/jpg/123403.jpg_copy.jpg"} +{"size_bytes": 1098757, "category": "media-conv", "path": "jpg_full/jpg/115602.jpg"} +{"size_bytes": 1430821, "category": "media-conv", "path": "jpg_full/jpg/126802.jpg"} +{"size_bytes": 1639327, "category": "media-conv", "path": "jpg_full/jpg/125703.jpg"} +{"size_bytes": 1659541, "category": "media-conv", "path": "jpg_full/jpg/103301.jpg"} +{"size_bytes": 2042908, "category": "media-conv", "path": "jpg_full/jpg/102401.jpg_copy.jpg"} +{"size_bytes": 628393, "category": "media-conv", "path": "jpg_full/jpg/127403.jpg_copy.jpg"} +{"size_bytes": 1092487, "category": "media-conv", "path": "jpg_full/jpg/108300.jpg"} +{"size_bytes": 2236569, "category": "media-conv", "path": "jpg_full/jpg/102600.jpg"} +{"size_bytes": 1360370, "category": "media-conv", "path": "jpg_full/jpg/122600.jpg"} +{"size_bytes": 4039212, "category": "media-conv", "path": "jpg_full/jpg/100600.jpg_copy.jpg"} +{"size_bytes": 1300702, "category": "media-conv", "path": "jpg_full/jpg/102001.jpg_copy.jpg"} +{"size_bytes": 1767791, "category": "media-conv", "path": "jpg_full/jpg/103700.jpg"} +{"size_bytes": 2114534, "category": "media-conv", "path": "jpg_full/jpg/105600.jpg"} +{"size_bytes": 1085408, "category": "media-conv", "path": "jpg_full/jpg/115800.jpg_copy.jpg"} +{"size_bytes": 3734959, "category": "media-conv", "path": "jpg_full/jpg/106401.jpg_copy.jpg"} +{"size_bytes": 1101373, "category": "media-conv", "path": "jpg_full/jpg/116802.jpg"} +{"size_bytes": 974805, "category": "media-conv", "path": "jpg_full/jpg/109901.jpg"} +{"size_bytes": 3836747, "category": "media-conv", "path": "jpg_full/jpg/107203.jpg_copy.jpg"} +{"size_bytes": 1517910, "category": "media-conv", "path": "jpg_full/jpg/127001.jpg_copy.jpg"} +{"size_bytes": 1079608, "category": "media-conv", "path": "jpg_full/jpg/123700.jpg"} +{"size_bytes": 1084602, "category": "media-conv", "path": "jpg_full/jpg/119203.jpg"} +{"size_bytes": 1095818, "category": "media-conv", "path": "jpg_full/jpg/119600.jpg_copy.jpg"} +{"size_bytes": 1063245, "category": "media-conv", "path": "jpg_full/jpg/112408.jpg_copy.jpg"} +{"size_bytes": 1075284, "category": "media-conv", "path": "jpg_full/jpg/110501.jpg"} +{"size_bytes": 1920622, "category": "media-conv", "path": "jpg_full/jpg/104100.jpg"} +{"size_bytes": 1069849, "category": "media-conv", "path": "jpg_full/jpg/116100.jpg"} +{"size_bytes": 1255614, "category": "media-conv", "path": "jpg_full/jpg/127701.jpg"} +{"size_bytes": 1083310, "category": "media-conv", "path": "jpg_full/jpg/113001.jpg_copy.jpg"} +{"size_bytes": 1464955, "category": "media-conv", "path": "jpg_full/jpg/104401.jpg"} +{"size_bytes": 1077307, "category": "media-conv", "path": "jpg_full/jpg/112800.jpg"} +{"size_bytes": 1062099, "category": "media-conv", "path": "jpg_full/jpg/129001.jpg_copy.jpg"} +{"size_bytes": 1060668, "category": "media-conv", "path": "jpg_full/jpg/117802.jpg"} +{"size_bytes": 829485, "category": "media-conv", "path": "jpg_full/jpg/126402.jpg"} +{"size_bytes": 2176427, "category": "media-conv", "path": "jpg_full/jpg/101301.jpg"} +{"size_bytes": 752499, "category": "media-conv", "path": "jpg_full/jpg/124500.jpg_copy.jpg"} +{"size_bytes": 951023, "category": "media-conv", "path": "jpg_full/jpg/126804.jpg_copy.jpg"} +{"size_bytes": 684141, "category": "media-conv", "path": "jpg_full/jpg/127400.jpg_copy.jpg"} +{"size_bytes": 1108823, "category": "media-conv", "path": "jpg_full/jpg/121800.jpg"} +{"size_bytes": 1084407, "category": "media-conv", "path": "jpg_full/jpg/121501.jpg_copy.jpg"} +{"size_bytes": 610207, "category": "media-conv", "path": "jpg_full/jpg/129501.jpg_copy.jpg"} +{"size_bytes": 1048684, "category": "media-conv", "path": "jpg_full/jpg/119704.jpg_copy.jpg"} +{"size_bytes": 1063730, "category": "media-conv", "path": "jpg_full/jpg/119202.jpg_copy.jpg"} +{"size_bytes": 1090073, "category": "media-conv", "path": "jpg_full/jpg/123501.jpg_copy.jpg"} +{"size_bytes": 3418754, "category": "media-conv", "path": "jpg_full/jpg/100901.jpg"} +{"size_bytes": 678003, "category": "media-conv", "path": "jpg_full/jpg/124900.jpg"} +{"size_bytes": 876985, "category": "media-conv", "path": "jpg_full/jpg/128700.jpg_copy.jpg"} +{"size_bytes": 1120739, "category": "media-conv", "path": "jpg_full/jpg/112200.jpg"} +{"size_bytes": 795908, "category": "media-conv", "path": "jpg_full/jpg/127500.jpg"} +{"size_bytes": 4129919, "category": "media-conv", "path": "jpg_full/jpg/100400.jpg"} +{"size_bytes": 1128010, "category": "media-conv", "path": "jpg_full/jpg/120501.jpg"} +{"size_bytes": 1092484, "category": "media-conv", "path": "jpg_full/jpg/121301.jpg_copy.jpg"} +{"size_bytes": 1064666, "category": "media-conv", "path": "jpg_full/jpg/115401.jpg_copy.jpg"} +{"size_bytes": 797163, "category": "media-conv", "path": "jpg_full/jpg/129101.jpg"} +{"size_bytes": 829485, "category": "media-conv", "path": "jpg_full/jpg/126402.jpg_copy.jpg"} +{"size_bytes": 893174, "category": "media-conv", "path": "jpg_full/jpg/128701.jpg"} +{"size_bytes": 3895108, "category": "media-conv", "path": "jpg_full/jpg/100700.jpg_copy.jpg"} +{"size_bytes": 1151558, "category": "media-conv", "path": "jpg_full/jpg/128500.jpg"} +{"size_bytes": 756110, "category": "media-conv", "path": "jpg_full/jpg/123202.jpg"} +{"size_bytes": 1384635, "category": "media-conv", "path": "jpg_full/jpg/102101.jpg_copy.jpg"} +{"size_bytes": 1620995, "category": "media-conv", "path": "jpg_full/jpg/105301.jpg_copy.jpg"} +{"size_bytes": 844511, "category": "media-conv", "path": "jpg_full/jpg/110400.jpg"} +{"size_bytes": 659535, "category": "media-conv", "path": "jpg_full/jpg/110800.jpg_copy.jpg"} +{"size_bytes": 1952666, "category": "media-conv", "path": "jpg_full/jpg/101702.jpg_copy.jpg"} +{"size_bytes": 1073119, "category": "media-conv", "path": "jpg_full/jpg/116901.jpg"} +{"size_bytes": 750183, "category": "media-conv", "path": "jpg_full/jpg/123401.jpg_copy.jpg"} +{"size_bytes": 3896127, "category": "media-conv", "path": "jpg_full/jpg/106704.jpg"} +{"size_bytes": 1076712, "category": "media-conv", "path": "jpg_full/jpg/128000.jpg"} +{"size_bytes": 1156566, "category": "media-conv", "path": "jpg_full/jpg/113501.jpg"} +{"size_bytes": 1063594, "category": "media-conv", "path": "jpg_full/jpg/117403.jpg_copy.jpg"} +{"size_bytes": 1077672, "category": "media-conv", "path": "jpg_full/jpg/111400.jpg"} +{"size_bytes": 1107366, "category": "media-conv", "path": "jpg_full/jpg/117601.jpg_copy.jpg"} +{"size_bytes": 1035166, "category": "media-conv", "path": "jpg_full/jpg/123001.jpg_copy.jpg"} +{"size_bytes": 1366652, "category": "media-conv", "path": "jpg_full/jpg/126300.jpg"} +{"size_bytes": 1090521, "category": "media-conv", "path": "jpg_full/jpg/120703.jpg"} +{"size_bytes": 755560, "category": "media-conv", "path": "jpg_full/jpg/109500.jpg"} +{"size_bytes": 799752, "category": "media-conv", "path": "jpg_full/jpg/125001.jpg"} +{"size_bytes": 671413, "category": "media-conv", "path": "jpg_full/jpg/111301.jpg_copy.jpg"} +{"size_bytes": 2042908, "category": "media-conv", "path": "jpg_full/jpg/102401.jpg"} +{"size_bytes": 769951, "category": "media-conv", "path": "jpg_full/jpg/128400.jpg"} +{"size_bytes": 747008, "category": "media-conv", "path": "jpg_full/jpg/123100.jpg_copy.jpg"} +{"size_bytes": 743791, "category": "media-conv", "path": "jpg_full/jpg/109700.jpg_copy.jpg"} +{"size_bytes": 1887050, "category": "media-conv", "path": "jpg_full/jpg/104006.jpg_copy.jpg"} +{"size_bytes": 1068159, "category": "media-conv", "path": "jpg_full/jpg/113101.jpg_copy.jpg"} +{"size_bytes": 1353543, "category": "media-conv", "path": "jpg_full/jpg/128002.jpg"} +{"size_bytes": 1360370, "category": "media-conv", "path": "jpg_full/jpg/122600.jpg_copy.jpg"} +{"size_bytes": 1020111, "category": "media-conv", "path": "jpg_full/jpg/111000.jpg"} +{"size_bytes": 1113831, "category": "media-conv", "path": "jpg_full/jpg/118600.jpg"} +{"size_bytes": 1115556, "category": "media-conv", "path": "jpg_full/jpg/113502.jpg_copy.jpg"} +{"size_bytes": 4036048, "category": "media-conv", "path": "jpg_full/jpg/100300.jpg"} +{"size_bytes": 1093561, "category": "media-conv", "path": "jpg_full/jpg/124202.jpg_copy.jpg"} +{"size_bytes": 1086651, "category": "media-conv", "path": "jpg_full/jpg/122203.jpg"} +{"size_bytes": 773723, "category": "media-conv", "path": "jpg_full/jpg/109201.jpg"} +{"size_bytes": 1384635, "category": "media-conv", "path": "jpg_full/jpg/102101.jpg"} +{"size_bytes": 1479110, "category": "media-conv", "path": "jpg_full/jpg/102900.jpg_copy.jpg"} +{"size_bytes": 762278, "category": "media-conv", "path": "jpg_full/jpg/118900.jpg"} +{"size_bytes": 2629979, "category": "media-conv", "path": "jpg_full/jpg/106606.jpg_copy.jpg"} +{"size_bytes": 734325, "category": "media-conv", "path": "jpg_full/jpg/128300.jpg_copy.jpg"} +{"size_bytes": 1105032, "category": "media-conv", "path": "jpg_full/jpg/111900.jpg"} +{"size_bytes": 770314, "category": "media-conv", "path": "jpg_full/jpg/109401.jpg"} +{"size_bytes": 864068, "category": "media-conv", "path": "jpg_full/jpg/111200.jpg"} +{"size_bytes": 813936, "category": "media-conv", "path": "jpg_full/jpg/110401.jpg_copy.jpg"} +{"size_bytes": 1063623, "category": "media-conv", "path": "jpg_full/jpg/119800.jpg_copy.jpg"} +{"size_bytes": 730901, "category": "media-conv", "path": "jpg_full/jpg/109802.jpg"} +{"size_bytes": 2553505, "category": "media-conv", "path": "jpg_full/jpg/103201.jpg"} +{"size_bytes": 2024413, "category": "media-conv", "path": "jpg_full/jpg/103203.jpg"} +{"size_bytes": 1639973, "category": "media-conv", "path": "jpg_full/jpg/103702.jpg"} +{"size_bytes": 1083778, "category": "media-conv", "path": "jpg_full/jpg/119601.jpg"} +{"size_bytes": 1088104, "category": "media-conv", "path": "jpg_full/jpg/126901.jpg"} +{"size_bytes": 1400765, "category": "media-conv", "path": "jpg_full/jpg/103500.jpg_copy.jpg"} +{"size_bytes": 1082482, "category": "media-conv", "path": "jpg_full/jpg/112401.jpg_copy.jpg"} +{"size_bytes": 1078638, "category": "media-conv", "path": "jpg_full/jpg/115701.jpg"} +{"size_bytes": 1093535, "category": "media-conv", "path": "jpg_full/jpg/116500.jpg_copy.jpg"} +{"size_bytes": 1595549, "category": "media-conv", "path": "jpg_full/jpg/105000.jpg_copy.jpg"} +{"size_bytes": 734154, "category": "media-conv", "path": "jpg_full/jpg/109301.jpg"} +{"size_bytes": 1063691, "category": "media-conv", "path": "jpg_full/jpg/112901.jpg_copy.jpg"} +{"size_bytes": 1093561, "category": "media-conv", "path": "jpg_full/jpg/124202.jpg"} +{"size_bytes": 743363, "category": "media-conv", "path": "jpg_full/jpg/110801.jpg_copy.jpg"} +{"size_bytes": 1326611, "category": "media-conv", "path": "jpg_full/jpg/105102.jpg_copy.jpg"} +{"size_bytes": 1231006, "category": "media-conv", "path": "jpg_full/jpg/105700.jpg"} +{"size_bytes": 722523, "category": "media-conv", "path": "jpg_full/jpg/124601.jpg_copy.jpg"} +{"size_bytes": 1064553, "category": "media-conv", "path": "jpg_full/jpg/112902.jpg_copy.jpg"} +{"size_bytes": 746539, "category": "media-conv", "path": "jpg_full/jpg/123404.jpg_copy.jpg"} +{"size_bytes": 1280381, "category": "media-conv", "path": "jpg_full/jpg/122709.jpg_copy.jpg"} +{"size_bytes": 612778, "category": "media-conv", "path": "jpg_full/jpg/127402.jpg_copy.jpg"} +{"size_bytes": 1595352, "category": "media-conv", "path": "jpg_full/jpg/105100.jpg_copy.jpg"} +{"size_bytes": 1517976, "category": "media-conv", "path": "jpg_full/jpg/106202.jpg_copy.jpg"} +{"size_bytes": 797163, "category": "media-conv", "path": "jpg_full/jpg/129101.jpg_copy.jpg"} +{"size_bytes": 1075157, "category": "media-conv", "path": "jpg_full/jpg/115501.jpg_copy.jpg"} +{"size_bytes": 1200459, "category": "media-conv", "path": "jpg_full/jpg/102801.jpg_copy.jpg"} +{"size_bytes": 3347345, "category": "media-conv", "path": "jpg_full/jpg/105801.jpg"} +{"size_bytes": 1085333, "category": "media-conv", "path": "jpg_full/jpg/111703.jpg_copy.jpg"} +{"size_bytes": 597979, "category": "media-conv", "path": "jpg_full/jpg/111300.jpg"} +{"size_bytes": 671183, "category": "media-conv", "path": "jpg_full/jpg/109100.jpg_copy.jpg"} +{"size_bytes": 753340, "category": "media-conv", "path": "jpg_full/jpg/122300.jpg_copy.jpg"} +{"size_bytes": 1090629, "category": "media-conv", "path": "jpg_full/jpg/120601.jpg"} +{"size_bytes": 1131839, "category": "media-conv", "path": "jpg_full/jpg/121300.jpg_copy.jpg"} +{"size_bytes": 1749969, "category": "media-conv", "path": "jpg_full/jpg/104003.jpg_copy.jpg"} +{"size_bytes": 1092600, "category": "media-conv", "path": "jpg_full/jpg/118302.jpg_copy.jpg"} +{"size_bytes": 1098564, "category": "media-conv", "path": "jpg_full/jpg/116601.jpg"} +{"size_bytes": 645142, "category": "media-conv", "path": "jpg_full/jpg/110300.jpg"} +{"size_bytes": 491938, "category": "media-conv", "path": "jpg_full/jpg/109001.jpg_copy.jpg"} +{"size_bytes": 1014407, "category": "media-conv", "path": "jpg_full/jpg/121701.jpg"} +{"size_bytes": 1064810, "category": "media-conv", "path": "jpg_full/jpg/115101.jpg"} +{"size_bytes": 1088639, "category": "media-conv", "path": "jpg_full/jpg/116000.jpg"} +{"size_bytes": 1374025, "category": "media-conv", "path": "jpg_full/jpg/127802.jpg_copy.jpg"} +{"size_bytes": 1095150, "category": "media-conv", "path": "jpg_full/jpg/120000.jpg_copy.jpg"} +{"size_bytes": 1455911, "category": "media-conv", "path": "jpg_full/jpg/125501.jpg_copy.jpg"} +{"size_bytes": 1061639, "category": "media-conv", "path": "jpg_full/jpg/115400.jpg_copy.jpg"} +{"size_bytes": 982983, "category": "media-conv", "path": "jpg_full/jpg/126701.jpg"} +{"size_bytes": 1124995, "category": "media-conv", "path": "jpg_full/jpg/117901.jpg_copy.jpg"} +{"size_bytes": 864068, "category": "media-conv", "path": "jpg_full/jpg/111200.jpg_copy.jpg"} +{"size_bytes": 1236134, "category": "media-conv", "path": "jpg_full/jpg/126200.jpg_copy.jpg"} +{"size_bytes": 978806, "category": "media-conv", "path": "jpg_full/jpg/118101.jpg_copy.jpg"} +{"size_bytes": 655719, "category": "media-conv", "path": "jpg_full/jpg/110901.jpg"} +{"size_bytes": 1066154, "category": "media-conv", "path": "jpg_full/jpg/119700.jpg"} +{"size_bytes": 786236, "category": "media-conv", "path": "jpg_full/jpg/125201.jpg_copy.jpg"} +{"size_bytes": 2234895, "category": "media-conv", "path": "jpg_full/jpg/104901.jpg_copy.jpg"} +{"size_bytes": 1108168, "category": "media-conv", "path": "jpg_full/jpg/118200.jpg"} +{"size_bytes": 3756516, "category": "media-conv", "path": "jpg_full/jpg/100701.jpg_copy.jpg"} +{"size_bytes": 1063623, "category": "media-conv", "path": "jpg_full/jpg/119800.jpg"} +{"size_bytes": 1071670, "category": "media-conv", "path": "jpg_full/jpg/116800.jpg"} +{"size_bytes": 1197918, "category": "media-conv", "path": "jpg_full/jpg/106002.jpg"} +{"size_bytes": 1035166, "category": "media-conv", "path": "jpg_full/jpg/123001.jpg"} +{"size_bytes": 1192410, "category": "media-conv", "path": "jpg_full/jpg/101402.jpg"} +{"size_bytes": 2135824, "category": "media-conv", "path": "jpg_full/jpg/105601.jpg_copy.jpg"} +{"size_bytes": 1096405, "category": "media-conv", "path": "jpg_full/jpg/108101.jpg"} +{"size_bytes": 2897169, "category": "media-conv", "path": "jpg_full/jpg/122502.jpg"} +{"size_bytes": 1079510, "category": "media-conv", "path": "jpg_full/jpg/113601.jpg_copy.jpg"} +{"size_bytes": 639513, "category": "media-conv", "path": "jpg_full/jpg/127201.jpg"} +{"size_bytes": 1105941, "category": "media-conv", "path": "jpg_full/jpg/121201.jpg_copy.jpg"} +{"size_bytes": 1045752, "category": "media-conv", "path": "jpg_full/jpg/110700.jpg_copy.jpg"} +{"size_bytes": 1099769, "category": "media-conv", "path": "jpg_full/jpg/114101.jpg"} +{"size_bytes": 1908382, "category": "media-conv", "path": "jpg_full/jpg/104005.jpg_copy.jpg"} +{"size_bytes": 1103160, "category": "media-conv", "path": "jpg_full/jpg/121200.jpg_copy.jpg"} +{"size_bytes": 752560, "category": "media-conv", "path": "jpg_full/jpg/112000.jpg"} +{"size_bytes": 1786034, "category": "media-conv", "path": "jpg_full/jpg/104000.jpg_copy.jpg"} +{"size_bytes": 771729, "category": "media-conv", "path": "jpg_full/jpg/123301.jpg_copy.jpg"} +{"size_bytes": 1618818, "category": "media-conv", "path": "jpg_full/jpg/126801.jpg_copy.jpg"} +{"size_bytes": 1104946, "category": "media-conv", "path": "jpg_full/jpg/120901.jpg_copy.jpg"} +{"size_bytes": 1102128, "category": "media-conv", "path": "jpg_full/jpg/108102.jpg"} +{"size_bytes": 1085446, "category": "media-conv", "path": "jpg_full/jpg/116700.jpg"} +{"size_bytes": 1314461, "category": "media-conv", "path": "jpg_full/jpg/105701.jpg"} +{"size_bytes": 794997, "category": "media-conv", "path": "jpg_full/jpg/129100.jpg"} +{"size_bytes": 1020111, "category": "media-conv", "path": "jpg_full/jpg/111000.jpg_copy.jpg"} +{"size_bytes": 3647397, "category": "media-conv", "path": "jpg_full/jpg/105802.jpg_copy.jpg"} +{"size_bytes": 1327406, "category": "media-conv", "path": "jpg_full/jpg/122602.jpg"} +{"size_bytes": 1083461, "category": "media-conv", "path": "jpg_full/jpg/116101.jpg_copy.jpg"} +{"size_bytes": 84131, "category": "media-conv", "path": "jpg_full/jpg/107001.jpg_copy.jpg"} +{"size_bytes": 757949, "category": "media-conv", "path": "jpg_full/jpg/109601.jpg"} +{"size_bytes": 3418754, "category": "media-conv", "path": "jpg_full/jpg/100901.jpg_copy.jpg"} +{"size_bytes": 1075549, "category": "media-conv", "path": "jpg_full/jpg/108203.jpg"} +{"size_bytes": 2135824, "category": "media-conv", "path": "jpg_full/jpg/105601.jpg"} +{"size_bytes": 743791, "category": "media-conv", "path": "jpg_full/jpg/109700.jpg"} +{"size_bytes": 1274197, "category": "media-conv", "path": "jpg_full/jpg/104802.jpg"} +{"size_bytes": 1090580, "category": "media-conv", "path": "jpg_full/jpg/117101.jpg_copy.jpg"} +{"size_bytes": 982983, "category": "media-conv", "path": "jpg_full/jpg/126701.jpg_copy.jpg"} +{"size_bytes": 1323408, "category": "media-conv", "path": "jpg_full/jpg/122601.jpg"} +{"size_bytes": 1454608, "category": "media-conv", "path": "jpg_full/jpg/103502.jpg"} +{"size_bytes": 737970, "category": "media-conv", "path": "jpg_full/jpg/101200.jpg_copy.jpg"} +{"size_bytes": 1061432, "category": "media-conv", "path": "jpg_full/jpg/108802.jpg"} +{"size_bytes": 3341451, "category": "media-conv", "path": "jpg_full/jpg/106400.jpg_copy.jpg"} +{"size_bytes": 1100180, "category": "media-conv", "path": "jpg_full/jpg/122102.jpg"} +{"size_bytes": 2907496, "category": "media-conv", "path": "jpg_full/jpg/128600.jpg"} +{"size_bytes": 1767791, "category": "media-conv", "path": "jpg_full/jpg/103700.jpg_copy.jpg"} +{"size_bytes": 1063086, "category": "media-conv", "path": "jpg_full/jpg/114503.jpg_copy.jpg"} +{"size_bytes": 3931657, "category": "media-conv", "path": "jpg_full/jpg/100001.jpg_copy.jpg"} +{"size_bytes": 527520, "category": "media-conv", "path": "jpg_full/jpg/129901.jpg_copy.jpg"} +{"size_bytes": 1108823, "category": "media-conv", "path": "jpg_full/jpg/121800.jpg_copy.jpg"} +{"size_bytes": 1128919, "category": "media-conv", "path": "jpg_full/jpg/111700.jpg_copy.jpg"} +{"size_bytes": 1090629, "category": "media-conv", "path": "jpg_full/jpg/120601.jpg_copy.jpg"} +{"size_bytes": 1103308, "category": "media-conv", "path": "jpg_full/jpg/117501.jpg_copy.jpg"} +{"size_bytes": 2892681, "category": "media-conv", "path": "jpg_full/jpg/128601.jpg"} +{"size_bytes": 753340, "category": "media-conv", "path": "jpg_full/jpg/122300.jpg"} +{"size_bytes": 549324, "category": "media-conv", "path": "jpg_full/jpg/129900.jpg_copy.jpg"} +{"size_bytes": 3863079, "category": "media-conv", "path": "jpg_full/jpg/107300.jpg"} +{"size_bytes": 2779367, "category": "media-conv", "path": "jpg_full/jpg/102202.jpg"} +{"size_bytes": 1594219, "category": "media-conv", "path": "jpg_full/jpg/101901.jpg_copy.jpg"} +{"size_bytes": 1076712, "category": "media-conv", "path": "jpg_full/jpg/128000.jpg_copy.jpg"} +{"size_bytes": 956621, "category": "media-conv", "path": "jpg_full/jpg/106001.jpg"} +{"size_bytes": 1069421, "category": "media-conv", "path": "jpg_full/jpg/108100.jpg_copy.jpg"} +{"size_bytes": 1015135, "category": "media-conv", "path": "jpg_full/jpg/115000.jpg"} +{"size_bytes": 794997, "category": "media-conv", "path": "jpg_full/jpg/129100.jpg_copy.jpg"} +{"size_bytes": 2159911, "category": "media-conv", "path": "jpg_full/jpg/101300.jpg"} +{"size_bytes": 1567973, "category": "media-conv", "path": "jpg_full/jpg/105200.jpg_copy.jpg"} +{"size_bytes": 1104401, "category": "media-conv", "path": "jpg_full/jpg/127300.jpg_copy.jpg"} +{"size_bytes": 1104607, "category": "media-conv", "path": "jpg_full/jpg/114402.jpg_copy.jpg"} +{"size_bytes": 822129, "category": "media-conv", "path": "jpg_full/jpg/128800.jpg"} +{"size_bytes": 1127657, "category": "media-conv", "path": "jpg_full/jpg/102802.jpg_copy.jpg"} +{"size_bytes": 742139, "category": "media-conv", "path": "jpg_full/jpg/123403.jpg"} +{"size_bytes": 866741, "category": "media-conv", "path": "jpg_full/jpg/125900.jpg"} +{"size_bytes": 1331341, "category": "media-conv", "path": "jpg_full/jpg/122501.jpg_copy.jpg"} +{"size_bytes": 1091179, "category": "media-conv", "path": "jpg_full/jpg/117100.jpg"} +{"size_bytes": 1085333, "category": "media-conv", "path": "jpg_full/jpg/111703.jpg"} +{"size_bytes": 945396, "category": "media-conv", "path": "jpg_full/jpg/118400.jpg_copy.jpg"} +{"size_bytes": 1060668, "category": "media-conv", "path": "jpg_full/jpg/117802.jpg_copy.jpg"} +{"size_bytes": 645142, "category": "media-conv", "path": "jpg_full/jpg/110300.jpg_copy.jpg"} +{"size_bytes": 2626717, "category": "media-conv", "path": "jpg_full/jpg/129701.jpg_copy.jpg"} +{"size_bytes": 1093984, "category": "media-conv", "path": "jpg_full/jpg/114000.jpg"} +{"size_bytes": 1099535, "category": "media-conv", "path": "jpg_full/jpg/119100.jpg_copy.jpg"} +{"size_bytes": 147824, "category": "media-conv", "path": "jpg_full/jpg/129401.jpg_copy.jpg"} +{"size_bytes": 1353421, "category": "media-conv", "path": "jpg_full/jpg/104601.jpg_copy.jpg"} +{"size_bytes": 1069350, "category": "media-conv", "path": "jpg_full/jpg/114801.jpg_copy.jpg"} +{"size_bytes": 677701, "category": "media-conv", "path": "jpg_full/jpg/127200.jpg"} +{"size_bytes": 1584699, "category": "media-conv", "path": "jpg_full/jpg/125700.jpg"} +{"size_bytes": 1076555, "category": "media-conv", "path": "jpg_full/jpg/115700.jpg_copy.jpg"} +{"size_bytes": 2441911, "category": "media-conv", "path": "jpg_full/jpg/126102.jpg_copy.jpg"} +{"size_bytes": 1093535, "category": "media-conv", "path": "jpg_full/jpg/116500.jpg"} +{"size_bytes": 1490297, "category": "media-conv", "path": "jpg_full/jpg/110100.jpg"} +{"size_bytes": 1092023, "category": "media-conv", "path": "jpg_full/jpg/114703.jpg_copy.jpg"} +{"size_bytes": 580608, "category": "media-conv", "path": "jpg_full/jpg/109000.jpg"} +{"size_bytes": 1811647, "category": "media-conv", "path": "jpg_full/jpg/104600.jpg_copy.jpg"} +{"size_bytes": 835658, "category": "media-conv", "path": "jpg_full/jpg/125101.jpg"} +{"size_bytes": 859270, "category": "media-conv", "path": "jpg_full/jpg/129200.jpg"} +{"size_bytes": 1081290, "category": "media-conv", "path": "jpg_full/jpg/120600.jpg_copy.jpg"} +{"size_bytes": 2485776, "category": "media-conv", "path": "jpg_full/jpg/103200.jpg"} +{"size_bytes": 2126508, "category": "media-conv", "path": "jpg_full/jpg/125600.jpg_copy.jpg"} +{"size_bytes": 4129919, "category": "media-conv", "path": "jpg_full/jpg/100400.jpg_copy.jpg"} +{"size_bytes": 1098082, "category": "media-conv", "path": "jpg_full/jpg/114900.jpg"} +{"size_bytes": 1400056, "category": "media-conv", "path": "jpg_full/jpg/110101.jpg"} +{"size_bytes": 1056296, "category": "media-conv", "path": "jpg_full/jpg/121600.jpg"} +{"size_bytes": 2392809, "category": "media-conv", "path": "jpg_full/jpg/103202.jpg_copy.jpg"} +{"size_bytes": 817112, "category": "media-conv", "path": "jpg_full/jpg/127601.jpg"} +{"size_bytes": 705320, "category": "media-conv", "path": "jpg_full/jpg/108902.jpg_copy.jpg"} +{"size_bytes": 4064788, "category": "media-conv", "path": "jpg_full/jpg/107501.jpg_copy.jpg"} +{"size_bytes": 1517251, "category": "media-conv", "path": "jpg_full/jpg/104501.jpg_copy.jpg"} +{"size_bytes": 1592465, "category": "media-conv", "path": "jpg_full/jpg/103304.jpg"} +{"size_bytes": 4218387, "category": "media-conv", "path": "jpg_full/jpg/100501.jpg_copy.jpg"} +{"size_bytes": 1105032, "category": "media-conv", "path": "jpg_full/jpg/111900.jpg_copy.jpg"} +{"size_bytes": 1078085, "category": "media-conv", "path": "jpg_full/jpg/118003.jpg"} +{"size_bytes": 1064666, "category": "media-conv", "path": "jpg_full/jpg/115401.jpg"} +{"size_bytes": 1098728, "category": "media-conv", "path": "jpg_full/jpg/111800.jpg"} +{"size_bytes": 1510864, "category": "media-conv", "path": "jpg_full/jpg/125801.jpg"} +{"size_bytes": 1897027, "category": "media-conv", "path": "jpg_full/jpg/127101.jpg_copy.jpg"} +{"size_bytes": 1078287, "category": "media-conv", "path": "jpg_full/jpg/116001.jpg_copy.jpg"} +{"size_bytes": 1054134, "category": "media-conv", "path": "jpg_full/jpg/129002.jpg_copy.jpg"} +{"size_bytes": 747008, "category": "media-conv", "path": "jpg_full/jpg/123100.jpg"} +{"size_bytes": 752504, "category": "media-conv", "path": "jpg_full/jpg/123201.jpg"} +{"size_bytes": 1069343, "category": "media-conv", "path": "jpg_full/jpg/121101.jpg_copy.jpg"} +{"size_bytes": 1075835, "category": "media-conv", "path": "jpg_full/jpg/124100.jpg_copy.jpg"} +{"size_bytes": 1792650, "category": "media-conv", "path": "jpg_full/jpg/104002.jpg_copy.jpg"} +{"size_bytes": 1090875, "category": "media-conv", "path": "jpg_full/jpg/114501.jpg_copy.jpg"} +{"size_bytes": 1057356, "category": "media-conv", "path": "jpg_full/jpg/114502.jpg_copy.jpg"} +{"size_bytes": 771729, "category": "media-conv", "path": "jpg_full/jpg/123301.jpg"} +{"size_bytes": 1280381, "category": "media-conv", "path": "jpg_full/jpg/122709.jpg"} +{"size_bytes": 784843, "category": "media-conv", "path": "jpg_full/jpg/128301.jpg"} +{"size_bytes": 1078176, "category": "media-conv", "path": "jpg_full/jpg/112302.jpg_copy.jpg"} +{"size_bytes": 1080657, "category": "media-conv", "path": "jpg_full/jpg/112900.jpg_copy.jpg"} +{"size_bytes": 1090073, "category": "media-conv", "path": "jpg_full/jpg/123501.jpg"} +{"size_bytes": 822129, "category": "media-conv", "path": "jpg_full/jpg/128800.jpg_copy.jpg"} +{"size_bytes": 1063822, "category": "media-conv", "path": "jpg_full/jpg/126900.jpg_copy.jpg"} +{"size_bytes": 1154328, "category": "media-conv", "path": "jpg_full/jpg/106000.jpg_copy.jpg"} +{"size_bytes": 801060, "category": "media-conv", "path": "jpg_full/jpg/101201.jpg"} +{"size_bytes": 1897027, "category": "media-conv", "path": "jpg_full/jpg/127101.jpg"} +{"size_bytes": 3124820, "category": "media-conv", "path": "jpg_full/jpg/107702.jpg_copy.jpg"} +{"size_bytes": 1048590, "category": "media-conv", "path": "jpg_full/jpg/119501.jpg_copy.jpg"} +{"size_bytes": 1092023, "category": "media-conv", "path": "jpg_full/jpg/114703.jpg"} +{"size_bytes": 1140740, "category": "media-conv", "path": "jpg_full/jpg/129000.jpg"} +{"size_bytes": 1083351, "category": "media-conv", "path": "jpg_full/jpg/116400.jpg_copy.jpg"} +{"size_bytes": 1192410, "category": "media-conv", "path": "jpg_full/jpg/101402.jpg_copy.jpg"} +{"size_bytes": 1106077, "category": "media-conv", "path": "jpg_full/jpg/116701.jpg"} +{"size_bytes": 1139509, "category": "media-conv", "path": "jpg_full/jpg/122200.jpg_copy.jpg"} +{"size_bytes": 1074293, "category": "media-conv", "path": "jpg_full/jpg/112400.jpg"} +{"size_bytes": 4039212, "category": "media-conv", "path": "jpg_full/jpg/100600.jpg"} +{"size_bytes": 1494401, "category": "media-conv", "path": "jpg_full/jpg/125701.jpg"} +{"size_bytes": 127547, "category": "media-conv", "path": "jpg_full/jpg/129400.jpg"} +{"size_bytes": 1584471, "category": "media-conv", "path": "jpg_full/jpg/126000.jpg"} +{"size_bytes": 1127783, "category": "media-conv", "path": "jpg_full/jpg/111002.jpg_copy.jpg"} +{"size_bytes": 1077702, "category": "media-conv", "path": "jpg_full/jpg/115600.jpg"} +{"size_bytes": 1081767, "category": "media-conv", "path": "jpg_full/jpg/120700.jpg"} +{"size_bytes": 1882254, "category": "media-conv", "path": "jpg_full/jpg/101700.jpg"} +{"size_bytes": 975750, "category": "media-conv", "path": "jpg_full/jpg/126902.jpg"} +{"size_bytes": 3805995, "category": "media-conv", "path": "jpg_full/jpg/101100.jpg"} +{"size_bytes": 1102994, "category": "media-conv", "path": "jpg_full/jpg/112501.jpg_copy.jpg"} +{"size_bytes": 1087184, "category": "media-conv", "path": "jpg_full/jpg/124201.jpg_copy.jpg"} +{"size_bytes": 1074877, "category": "media-conv", "path": "jpg_full/jpg/116301.jpg"} +{"size_bytes": 1799457, "category": "media-conv", "path": "jpg_full/jpg/105103.jpg"} +{"size_bytes": 3394688, "category": "media-conv", "path": "jpg_full/jpg/107701.jpg_copy.jpg"} +{"size_bytes": 750786, "category": "media-conv", "path": "jpg_full/jpg/123204.jpg"} +{"size_bytes": 1417205, "category": "media-conv", "path": "jpg_full/jpg/103001.jpg"} +{"size_bytes": 1078666, "category": "media-conv", "path": "jpg_full/jpg/119604.jpg_copy.jpg"} +{"size_bytes": 1068934, "category": "media-conv", "path": "jpg_full/jpg/118700.jpg_copy.jpg"} +{"size_bytes": 1425574, "category": "media-conv", "path": "jpg_full/jpg/125802.jpg_copy.jpg"} +{"size_bytes": 1679771, "category": "media-conv", "path": "jpg_full/jpg/105401.jpg_copy.jpg"} +{"size_bytes": 822625, "category": "media-conv", "path": "jpg_full/jpg/126704.jpg"} +{"size_bytes": 2150546, "category": "media-conv", "path": "jpg_full/jpg/104902.jpg_copy.jpg"} +{"size_bytes": 4050024, "category": "media-conv", "path": "jpg_full/jpg/106301.jpg_copy.jpg"} +{"size_bytes": 1068330, "category": "media-conv", "path": "jpg_full/jpg/114504.jpg"} +{"size_bytes": 1064767, "category": "media-conv", "path": "jpg_full/jpg/108105.jpg"} +{"size_bytes": 3962542, "category": "media-conv", "path": "jpg_full/jpg/100101.jpg"} +{"size_bytes": 725024, "category": "media-conv", "path": "jpg_full/jpg/108001.jpg_copy.jpg"} +{"size_bytes": 1078474, "category": "media-conv", "path": "jpg_full/jpg/111901.jpg"} +{"size_bytes": 2083508, "category": "media-conv", "path": "jpg_full/jpg/102400.jpg"} +{"size_bytes": 843245, "category": "media-conv", "path": "jpg_full/jpg/126401.jpg"} +{"size_bytes": 1071057, "category": "media-conv", "path": "jpg_full/jpg/113701.jpg_copy.jpg"} +{"size_bytes": 774282, "category": "media-conv", "path": "jpg_full/jpg/109800.jpg_copy.jpg"} +{"size_bytes": 2099831, "category": "media-conv", "path": "jpg_full/jpg/126001.jpg"} +{"size_bytes": 736428, "category": "media-conv", "path": "jpg_full/jpg/112003.jpg_copy.jpg"} +{"size_bytes": 2136127, "category": "media-conv", "path": "jpg_full/jpg/102500.jpg_copy.jpg"} +{"size_bytes": 743305, "category": "media-conv", "path": "jpg_full/jpg/123400.jpg_copy.jpg"} +{"size_bytes": 677701, "category": "media-conv", "path": "jpg_full/jpg/127200.jpg_copy.jpg"} +{"size_bytes": 4036048, "category": "media-conv", "path": "jpg_full/jpg/100300.jpg_copy.jpg"} +{"size_bytes": 1296111, "category": "media-conv", "path": "jpg_full/jpg/122708.jpg_copy.jpg"} +{"size_bytes": 1048590, "category": "media-conv", "path": "jpg_full/jpg/119501.jpg"} +{"size_bytes": 1567973, "category": "media-conv", "path": "jpg_full/jpg/105200.jpg"} +{"size_bytes": 1121490, "category": "media-conv", "path": "jpg_full/jpg/124600.jpg_copy.jpg"} +{"size_bytes": 3870739, "category": "media-conv", "path": "jpg_full/jpg/106605.jpg"} +{"size_bytes": 127547, "category": "media-conv", "path": "jpg_full/jpg/129400.jpg_copy.jpg"} +{"size_bytes": 2182320, "category": "media-conv", "path": "jpg_full/jpg/115300.jpg_copy.jpg"} +{"size_bytes": 3782178, "category": "media-conv", "path": "jpg_full/jpg/106603.jpg"} +{"size_bytes": 1086965, "category": "media-conv", "path": "jpg_full/jpg/114500.jpg_copy.jpg"} +{"size_bytes": 1066154, "category": "media-conv", "path": "jpg_full/jpg/119700.jpg_copy.jpg"} +{"size_bytes": 1043421, "category": "media-conv", "path": "jpg_full/jpg/124401.jpg"} +{"size_bytes": 1400056, "category": "media-conv", "path": "jpg_full/jpg/110101.jpg_copy.jpg"} +{"size_bytes": 2629979, "category": "media-conv", "path": "jpg_full/jpg/106606.jpg"} +{"size_bytes": 1086520, "category": "media-conv", "path": "jpg_full/jpg/118500.jpg_copy.jpg"} +{"size_bytes": 1074788, "category": "media-conv", "path": "jpg_full/jpg/114901.jpg_copy.jpg"} +{"size_bytes": 1296343, "category": "media-conv", "path": "jpg_full/jpg/123002.jpg_copy.jpg"} +{"size_bytes": 1128919, "category": "media-conv", "path": "jpg_full/jpg/111700.jpg"} +{"size_bytes": 1102128, "category": "media-conv", "path": "jpg_full/jpg/108102.jpg_copy.jpg"} +{"size_bytes": 1085901, "category": "media-conv", "path": "jpg_full/jpg/116402.jpg"} +{"size_bytes": 1100814, "category": "media-conv", "path": "jpg_full/jpg/117302.jpg"} +{"size_bytes": 1440067, "category": "media-conv", "path": "jpg_full/jpg/104202.jpg_copy.jpg"} +{"size_bytes": 1091284, "category": "media-conv", "path": "jpg_full/jpg/108500.jpg"} +{"size_bytes": 1227614, "category": "media-conv", "path": "jpg_full/jpg/102800.jpg_copy.jpg"} +{"size_bytes": 3805995, "category": "media-conv", "path": "jpg_full/jpg/101100.jpg_copy.jpg"} +{"size_bytes": 1105941, "category": "media-conv", "path": "jpg_full/jpg/121201.jpg"} +{"size_bytes": 789034, "category": "media-conv", "path": "jpg_full/jpg/129003.jpg_copy.jpg"} +{"size_bytes": 1069193, "category": "media-conv", "path": "jpg_full/jpg/115500.jpg_copy.jpg"} +{"size_bytes": 1085679, "category": "media-conv", "path": "jpg_full/jpg/112402.jpg_copy.jpg"} +{"size_bytes": 1121490, "category": "media-conv", "path": "jpg_full/jpg/124600.jpg"} +{"size_bytes": 1481053, "category": "media-conv", "path": "jpg_full/jpg/106201.jpg"} +{"size_bytes": 3975920, "category": "media-conv", "path": "jpg_full/jpg/107101.jpg"} +{"size_bytes": 1300702, "category": "media-conv", "path": "jpg_full/jpg/102001.jpg"} +{"size_bytes": 1066383, "category": "media-conv", "path": "jpg_full/jpg/112701.jpg_copy.jpg"} +{"size_bytes": 854138, "category": "media-conv", "path": "jpg_full/jpg/126700.jpg_copy.jpg"} +{"size_bytes": 1080657, "category": "media-conv", "path": "jpg_full/jpg/112900.jpg"} +{"size_bytes": 1103308, "category": "media-conv", "path": "jpg_full/jpg/117501.jpg"} +{"size_bytes": 1114409, "category": "media-conv", "path": "jpg_full/jpg/101503.jpg"} +{"size_bytes": 1062094, "category": "media-conv", "path": "jpg_full/jpg/117402.jpg_copy.jpg"} +{"size_bytes": 1958309, "category": "media-conv", "path": "jpg_full/jpg/104101.jpg_copy.jpg"} +{"size_bytes": 1084766, "category": "media-conv", "path": "jpg_full/jpg/116900.jpg_copy.jpg"} +{"size_bytes": 813936, "category": "media-conv", "path": "jpg_full/jpg/110401.jpg"} +{"size_bytes": 1091179, "category": "media-conv", "path": "jpg_full/jpg/117100.jpg_copy.jpg"} +{"size_bytes": 1498964, "category": "media-conv", "path": "jpg_full/jpg/103600.jpg_copy.jpg"} +{"size_bytes": 731949, "category": "media-conv", "path": "jpg_full/jpg/129500.jpg_copy.jpg"} +{"size_bytes": 1533413, "category": "media-conv", "path": "jpg_full/jpg/102700.jpg_copy.jpg"} +{"size_bytes": 1098757, "category": "media-conv", "path": "jpg_full/jpg/115602.jpg_copy.jpg"} +{"size_bytes": 1098991, "category": "media-conv", "path": "jpg_full/jpg/124402.jpg_copy.jpg"} +{"size_bytes": 1086531, "category": "media-conv", "path": "jpg_full/jpg/124200.jpg"} +{"size_bytes": 843245, "category": "media-conv", "path": "jpg_full/jpg/126401.jpg_copy.jpg"} +{"size_bytes": 717775, "category": "media-conv", "path": "jpg_full/jpg/109300.jpg"} +{"size_bytes": 1101327, "category": "media-conv", "path": "jpg_full/jpg/113100.jpg"} +{"size_bytes": 1346859, "category": "media-conv", "path": "jpg_full/jpg/122800.jpg_copy.jpg"} +{"size_bytes": 3956420, "category": "media-conv", "path": "jpg_full/jpg/106601.jpg"} +{"size_bytes": 1354107, "category": "media-conv", "path": "jpg_full/jpg/105400.jpg_copy.jpg"} +{"size_bytes": 796761, "category": "media-conv", "path": "jpg_full/jpg/127501.jpg_copy.jpg"} +{"size_bytes": 1086335, "category": "media-conv", "path": "jpg_full/jpg/124301.jpg"} +{"size_bytes": 1083899, "category": "media-conv", "path": "jpg_full/jpg/114201.jpg"} +{"size_bytes": 1093517, "category": "media-conv", "path": "jpg_full/jpg/116703.jpg_copy.jpg"} +{"size_bytes": 1701607, "category": "media-conv", "path": "jpg_full/jpg/105300.jpg_copy.jpg"} +{"size_bytes": 1781285, "category": "media-conv", "path": "jpg_full/jpg/104001.jpg"} +{"size_bytes": 1440067, "category": "media-conv", "path": "jpg_full/jpg/104202.jpg"} +{"size_bytes": 1517976, "category": "media-conv", "path": "jpg_full/jpg/106202.jpg"} +{"size_bytes": 1060217, "category": "media-conv", "path": "jpg_full/jpg/112405.jpg_copy.jpg"} +{"size_bytes": 1437061, "category": "media-conv", "path": "jpg_full/jpg/103501.jpg"} +{"size_bytes": 821882, "category": "media-conv", "path": "jpg_full/jpg/108900.jpg"} +{"size_bytes": 1055899, "category": "media-conv", "path": "jpg_full/jpg/122001.jpg"} +{"size_bytes": 1067308, "category": "media-conv", "path": "jpg_full/jpg/121100.jpg"} +{"size_bytes": 1061639, "category": "media-conv", "path": "jpg_full/jpg/115400.jpg"} +{"size_bytes": 879060, "category": "media-conv", "path": "jpg_full/jpg/126808.jpg"} +{"size_bytes": 1015135, "category": "media-conv", "path": "jpg_full/jpg/115000.jpg_copy.jpg"} +{"size_bytes": 1077349, "category": "media-conv", "path": "jpg_full/jpg/101500.jpg"} +{"size_bytes": 1064810, "category": "media-conv", "path": "jpg_full/jpg/115101.jpg_copy.jpg"} +{"size_bytes": 1036063, "category": "media-conv", "path": "jpg_full/jpg/110701.jpg"} +{"size_bytes": 1799457, "category": "media-conv", "path": "jpg_full/jpg/105103.jpg_copy.jpg"} +{"size_bytes": 1488111, "category": "media-conv", "path": "jpg_full/jpg/104500.jpg"} +{"size_bytes": 996207, "category": "media-conv", "path": "jpg_full/jpg/126807.jpg"} +{"size_bytes": 1356446, "category": "media-conv", "path": "jpg_full/jpg/110201.jpg_copy.jpg"} +{"size_bytes": 2174313, "category": "media-conv", "path": "jpg_full/jpg/102303.jpg_copy.jpg"} +{"size_bytes": 1093885, "category": "media-conv", "path": "jpg_full/jpg/115902.jpg"} +{"size_bytes": 1071552, "category": "media-conv", "path": "jpg_full/jpg/110001.jpg_copy.jpg"} +{"size_bytes": 1090343, "category": "media-conv", "path": "jpg_full/jpg/121403.jpg"} +{"size_bytes": 2024413, "category": "media-conv", "path": "jpg_full/jpg/103203.jpg_copy.jpg"} +{"size_bytes": 2506896, "category": "media-conv", "path": "jpg_full/jpg/102200.jpg_copy.jpg"} +{"size_bytes": 1011137, "category": "media-conv", "path": "jpg_full/jpg/112100.jpg"} +{"size_bytes": 737970, "category": "media-conv", "path": "jpg_full/jpg/101200.jpg"} +{"size_bytes": 1020332, "category": "media-conv", "path": "jpg_full/jpg/124000.jpg"} +{"size_bytes": 1096770, "category": "media-conv", "path": "jpg_full/jpg/120101.jpg"} +{"size_bytes": 1619682, "category": "media-conv", "path": "jpg_full/jpg/103401.jpg_copy.jpg"} +{"size_bytes": 684141, "category": "media-conv", "path": "jpg_full/jpg/127400.jpg"} +{"size_bytes": 1066417, "category": "media-conv", "path": "jpg_full/jpg/119301.jpg"} +{"size_bytes": 1410092, "category": "media-conv", "path": "jpg_full/jpg/102000.jpg"} +{"size_bytes": 1088690, "category": "media-conv", "path": "jpg_full/jpg/113403.jpg_copy.jpg"} +{"size_bytes": 1079177, "category": "media-conv", "path": "jpg_full/jpg/119900.jpg_copy.jpg"} +{"size_bytes": 731231, "category": "media-conv", "path": "jpg_full/jpg/110802.jpg"} +{"size_bytes": 873302, "category": "media-conv", "path": "jpg_full/jpg/129800.jpg_copy.jpg"} +{"size_bytes": 3689507, "category": "media-conv", "path": "jpg_full/jpg/106701.jpg"} +{"size_bytes": 1127783, "category": "media-conv", "path": "jpg_full/jpg/111002.jpg"} +{"size_bytes": 1094080, "category": "media-conv", "path": "jpg_full/jpg/121601.jpg"} +{"size_bytes": 1099746, "category": "media-conv", "path": "jpg_full/jpg/118801.jpg_copy.jpg"} +{"size_bytes": 1996082, "category": "media-conv", "path": "jpg_full/jpg/103101.jpg"} +{"size_bytes": 824034, "category": "media-conv", "path": "jpg_full/jpg/127600.jpg"} +{"size_bytes": 1584471, "category": "media-conv", "path": "jpg_full/jpg/126000.jpg_copy.jpg"} +{"size_bytes": 751310, "category": "media-conv", "path": "jpg_full/jpg/109801.jpg"} +{"size_bytes": 1143784, "category": "media-conv", "path": "jpg_full/jpg/111702.jpg"} +{"size_bytes": 1097327, "category": "media-conv", "path": "jpg_full/jpg/120800.jpg_copy.jpg"} +{"size_bytes": 777486, "category": "media-conv", "path": "jpg_full/jpg/109402.jpg"} +{"size_bytes": 1470601, "category": "media-conv", "path": "jpg_full/jpg/103503.jpg_copy.jpg"} +{"size_bytes": 2418959, "category": "media-conv", "path": "jpg_full/jpg/106903.jpg_copy.jpg"} +{"size_bytes": 1125435, "category": "media-conv", "path": "jpg_full/jpg/122000.jpg"} +{"size_bytes": 3909458, "category": "media-conv", "path": "jpg_full/jpg/100100.jpg"} +{"size_bytes": 1882254, "category": "media-conv", "path": "jpg_full/jpg/101700.jpg_copy.jpg"} +{"size_bytes": 1884686, "category": "media-conv", "path": "jpg_full/jpg/101701.jpg_copy.jpg"} +{"size_bytes": 1088655, "category": "media-conv", "path": "jpg_full/jpg/129601.jpg_copy.jpg"} +{"size_bytes": 1067183, "category": "media-conv", "path": "jpg_full/jpg/124003.jpg_copy.jpg"} +{"size_bytes": 1077895, "category": "media-conv", "path": "jpg_full/jpg/118002.jpg_copy.jpg"} +{"size_bytes": 1062094, "category": "media-conv", "path": "jpg_full/jpg/117402.jpg"} +{"size_bytes": 799752, "category": "media-conv", "path": "jpg_full/jpg/125001.jpg_copy.jpg"} +{"size_bytes": 1099746, "category": "media-conv", "path": "jpg_full/jpg/118801.jpg"} +{"size_bytes": 1092165, "category": "media-conv", "path": "jpg_full/jpg/121900.jpg"} +{"size_bytes": 866741, "category": "media-conv", "path": "jpg_full/jpg/125900.jpg_copy.jpg"} +{"size_bytes": 1084548, "category": "media-conv", "path": "jpg_full/jpg/115702.jpg"} +{"size_bytes": 1098991, "category": "media-conv", "path": "jpg_full/jpg/124402.jpg"} +{"size_bytes": 1354107, "category": "media-conv", "path": "jpg_full/jpg/105400.jpg"} +{"size_bytes": 832438, "category": "media-conv", "path": "jpg_full/jpg/124501.jpg_copy.jpg"} +{"size_bytes": 1079510, "category": "media-conv", "path": "jpg_full/jpg/113601.jpg"} +{"size_bytes": 1069151, "category": "media-conv", "path": "jpg_full/jpg/117801.jpg_copy.jpg"} +{"size_bytes": 2153270, "category": "media-conv", "path": "jpg_full/jpg/102300.jpg_copy.jpg"} +{"size_bytes": 1081597, "category": "media-conv", "path": "jpg_full/jpg/115901.jpg_copy.jpg"} +{"size_bytes": 1081664, "category": "media-conv", "path": "jpg_full/jpg/119901.jpg_copy.jpg"} +{"size_bytes": 1075357, "category": "media-conv", "path": "jpg_full/jpg/121500.jpg_copy.jpg"} +{"size_bytes": 901626, "category": "media-conv", "path": "jpg_full/jpg/125000.jpg_copy.jpg"} +{"size_bytes": 1062229, "category": "media-conv", "path": "jpg_full/jpg/112403.jpg_copy.jpg"} +{"size_bytes": 1100735, "category": "media-conv", "path": "jpg_full/jpg/117301.jpg"} +{"size_bytes": 1239419, "category": "media-conv", "path": "jpg_full/jpg/104402.jpg"} +{"size_bytes": 1440859, "category": "media-conv", "path": "jpg_full/jpg/128001.jpg_copy.jpg"} +{"size_bytes": 1316734, "category": "media-conv", "path": "jpg_full/jpg/127801.jpg_copy.jpg"} +{"size_bytes": 839665, "category": "media-conv", "path": "jpg_full/jpg/126500.jpg_copy.jpg"} +{"size_bytes": 1055075, "category": "media-conv", "path": "jpg_full/jpg/101502.jpg"} +{"size_bytes": 2024918, "category": "media-conv", "path": "jpg_full/jpg/107700.jpg"} +{"size_bytes": 3870739, "category": "media-conv", "path": "jpg_full/jpg/106605.jpg_copy.jpg"} +{"size_bytes": 850278, "category": "media-conv", "path": "jpg_full/jpg/126803.jpg_copy.jpg"} +{"size_bytes": 2402733, "category": "media-conv", "path": "jpg_full/jpg/106900.jpg_copy.jpg"} +{"size_bytes": 764709, "category": "media-conv", "path": "jpg_full/jpg/127202.jpg"} +{"size_bytes": 1281372, "category": "media-conv", "path": "jpg_full/jpg/126301.jpg"} +{"size_bytes": 1086335, "category": "media-conv", "path": "jpg_full/jpg/124301.jpg_copy.jpg"} +{"size_bytes": 747079, "category": "media-conv", "path": "jpg_full/jpg/118901.jpg"} +{"size_bytes": 1081068, "category": "media-conv", "path": "jpg_full/jpg/122101.jpg_copy.jpg"} +{"size_bytes": 1331341, "category": "media-conv", "path": "jpg_full/jpg/122501.jpg"} +{"size_bytes": 1679771, "category": "media-conv", "path": "jpg_full/jpg/105401.jpg"} +{"size_bytes": 1083527, "category": "media-conv", "path": "jpg_full/jpg/123701.jpg_copy.jpg"} +{"size_bytes": 1132911, "category": "media-conv", "path": "jpg_full/jpg/111701.jpg_copy.jpg"} +{"size_bytes": 1069947, "category": "media-conv", "path": "jpg_full/jpg/119500.jpg"} +{"size_bytes": 1094080, "category": "media-conv", "path": "jpg_full/jpg/121601.jpg_copy.jpg"} +{"size_bytes": 3900469, "category": "media-conv", "path": "jpg_full/jpg/107000.jpg"} +{"size_bytes": 1939907, "category": "media-conv", "path": "jpg_full/jpg/103100.jpg"} +{"size_bytes": 1069193, "category": "media-conv", "path": "jpg_full/jpg/115500.jpg"} +{"size_bytes": 1796643, "category": "media-conv", "path": "jpg_full/jpg/104701.jpg_copy.jpg"} +{"size_bytes": 1097269, "category": "media-conv", "path": "jpg_full/jpg/122002.jpg"} +{"size_bytes": 755560, "category": "media-conv", "path": "jpg_full/jpg/109500.jpg_copy.jpg"} +{"size_bytes": 1066263, "category": "media-conv", "path": "jpg_full/jpg/128200.jpg_copy.jpg"} +{"size_bytes": 733649, "category": "media-conv", "path": "jpg_full/jpg/112002.jpg"} +{"size_bytes": 1077307, "category": "media-conv", "path": "jpg_full/jpg/112800.jpg_copy.jpg"} +{"size_bytes": 1281372, "category": "media-conv", "path": "jpg_full/jpg/126301.jpg_copy.jpg"} +{"size_bytes": 1052414, "category": "media-conv", "path": "jpg_full/jpg/110000.jpg"} +{"size_bytes": 1065275, "category": "media-conv", "path": "jpg_full/jpg/116201.jpg_copy.jpg"} +{"size_bytes": 1068036, "category": "media-conv", "path": "jpg_full/jpg/124300.jpg"} +{"size_bytes": 3856744, "category": "media-conv", "path": "jpg_full/jpg/107801.jpg"} +{"size_bytes": 1095539, "category": "media-conv", "path": "jpg_full/jpg/116600.jpg"} +{"size_bytes": 1299411, "category": "media-conv", "path": "jpg_full/jpg/103002.jpg"} +{"size_bytes": 1108168, "category": "media-conv", "path": "jpg_full/jpg/118200.jpg_copy.jpg"} +{"size_bytes": 1131839, "category": "media-conv", "path": "jpg_full/jpg/121300.jpg"} +{"size_bytes": 1076618, "category": "media-conv", "path": "jpg_full/jpg/118300.jpg"} +{"size_bytes": 2934959, "category": "media-conv", "path": "jpg_full/jpg/100900.jpg_copy.jpg"} +{"size_bytes": 3870574, "category": "media-conv", "path": "jpg_full/jpg/106703.jpg_copy.jpg"} +{"size_bytes": 3911518, "category": "media-conv", "path": "jpg_full/jpg/106402.jpg_copy.jpg"} +{"size_bytes": 1096161, "category": "media-conv", "path": "jpg_full/jpg/113301.jpg_copy.jpg"} +{"size_bytes": 1208109, "category": "media-conv", "path": "jpg_full/jpg/104201.jpg"} +{"size_bytes": 1099769, "category": "media-conv", "path": "jpg_full/jpg/114101.jpg_copy.jpg"} +{"size_bytes": 2174313, "category": "media-conv", "path": "jpg_full/jpg/102303.jpg"} +{"size_bytes": 1082508, "category": "media-conv", "path": "jpg_full/jpg/123801.jpg"} +{"size_bytes": 762278, "category": "media-conv", "path": "jpg_full/jpg/118900.jpg_copy.jpg"} +{"size_bytes": 3874600, "category": "media-conv", "path": "jpg_full/jpg/106403.jpg_copy.jpg"} +{"size_bytes": 2456257, "category": "media-conv", "path": "jpg_full/jpg/106800.jpg_copy.jpg"} +{"size_bytes": 1353421, "category": "media-conv", "path": "jpg_full/jpg/104601.jpg"} +{"size_bytes": 1267013, "category": "media-conv", "path": "jpg_full/jpg/127700.jpg_copy.jpg"} +{"size_bytes": 1017323, "category": "media-conv", "path": "jpg_full/jpg/118402.jpg"} +{"size_bytes": 638831, "category": "media-conv", "path": "jpg_full/jpg/124701.jpg"} +{"size_bytes": 671183, "category": "media-conv", "path": "jpg_full/jpg/109100.jpg"} +{"size_bytes": 1093984, "category": "media-conv", "path": "jpg_full/jpg/114000.jpg_copy.jpg"} +{"size_bytes": 1055075, "category": "media-conv", "path": "jpg_full/jpg/101502.jpg_copy.jpg"} +{"size_bytes": 1087049, "category": "media-conv", "path": "jpg_full/jpg/116801.jpg"} +{"size_bytes": 1284708, "category": "media-conv", "path": "jpg_full/jpg/103000.jpg"} +{"size_bytes": 610207, "category": "media-conv", "path": "jpg_full/jpg/129501.jpg"} +{"size_bytes": 1111814, "category": "media-conv", "path": "jpg_full/jpg/122202.jpg_copy.jpg"} +{"size_bytes": 1132911, "category": "media-conv", "path": "jpg_full/jpg/111701.jpg"} +{"size_bytes": 757839, "category": "media-conv", "path": "jpg_full/jpg/108000.jpg_copy.jpg"} +{"size_bytes": 715525, "category": "media-conv", "path": "jpg_full/jpg/123402.jpg"} +{"size_bytes": 1193102, "category": "media-conv", "path": "jpg_full/jpg/110301.jpg_copy.jpg"} +{"size_bytes": 1907941, "category": "media-conv", "path": "jpg_full/jpg/122401.jpg_copy.jpg"} +{"size_bytes": 1076555, "category": "media-conv", "path": "jpg_full/jpg/115700.jpg"} +{"size_bytes": 3901599, "category": "media-conv", "path": "jpg_full/jpg/107202.jpg_copy.jpg"} +{"size_bytes": 1055056, "category": "media-conv", "path": "jpg_full/jpg/117001.jpg"} +{"size_bytes": 3211612, "category": "media-conv", "path": "jpg_full/jpg/103204.jpg_copy.jpg"} +{"size_bytes": 760180, "category": "media-conv", "path": "jpg_full/jpg/109501.jpg_copy.jpg"} +{"size_bytes": 1983886, "category": "media-conv", "path": "jpg_full/jpg/103902.jpg"} +{"size_bytes": 1087343, "category": "media-conv", "path": "jpg_full/jpg/119401.jpg"} +{"size_bytes": 1162863, "category": "media-conv", "path": "jpg_full/jpg/127301.jpg"} +{"size_bytes": 1069003, "category": "media-conv", "path": "jpg_full/jpg/115201.jpg"} +{"size_bytes": 951023, "category": "media-conv", "path": "jpg_full/jpg/126804.jpg"} +{"size_bytes": 3896127, "category": "media-conv", "path": "jpg_full/jpg/106704.jpg_copy.jpg"} +{"size_bytes": 84131, "category": "media-conv", "path": "jpg_full/jpg/107001.jpg"} +{"size_bytes": 1075525, "category": "media-conv", "path": "jpg_full/jpg/118800.jpg_copy.jpg"} +{"size_bytes": 1098082, "category": "media-conv", "path": "jpg_full/jpg/114900.jpg_copy.jpg"} +{"size_bytes": 3895679, "category": "media-conv", "path": "jpg_full/jpg/101001.jpg_copy.jpg"} +{"size_bytes": 1095036, "category": "media-conv", "path": "jpg_full/jpg/113300.jpg"} +{"size_bytes": 862120, "category": "media-conv", "path": "jpg_full/jpg/127901.jpg_copy.jpg"} +{"size_bytes": 1727348, "category": "media-conv", "path": "jpg_full/jpg/104800.jpg_copy.jpg"} +{"size_bytes": 115980, "category": "media-conv", "path": "jpg_full/jpg/129300.jpg_copy.jpg"} +{"size_bytes": 383786, "category": "media-conv", "path": "jpg_full/jpg/110900.jpg_copy.jpg"} +{"size_bytes": 1071866, "category": "media-conv", "path": "jpg_full/jpg/123800.jpg_copy.jpg"} +{"size_bytes": 1071670, "category": "media-conv", "path": "jpg_full/jpg/116800.jpg_copy.jpg"} +{"size_bytes": 819764, "category": "media-conv", "path": "jpg_full/jpg/127602.jpg"} +{"size_bytes": 1636314, "category": "media-conv", "path": "jpg_full/jpg/103701.jpg"} +{"size_bytes": 1115902, "category": "media-conv", "path": "jpg_full/jpg/122801.jpg_copy.jpg"} +{"size_bytes": 1095150, "category": "media-conv", "path": "jpg_full/jpg/120000.jpg"} +{"size_bytes": 1067750, "category": "media-conv", "path": "jpg_full/jpg/112600.jpg"} +{"size_bytes": 1096411, "category": "media-conv", "path": "jpg_full/jpg/113404.jpg"} +{"size_bytes": 1063553, "category": "media-conv", "path": "jpg_full/jpg/122702.jpg_copy.jpg"} +{"size_bytes": 773723, "category": "media-conv", "path": "jpg_full/jpg/109201.jpg_copy.jpg"} +{"size_bytes": 1220491, "category": "media-conv", "path": "jpg_full/jpg/122900.jpg_copy.jpg"} +{"size_bytes": 1584699, "category": "media-conv", "path": "jpg_full/jpg/125700.jpg_copy.jpg"} +{"size_bytes": 768378, "category": "media-conv", "path": "jpg_full/jpg/122301.jpg_copy.jpg"} +{"size_bytes": 1084395, "category": "media-conv", "path": "jpg_full/jpg/121404.jpg"} +{"size_bytes": 1366652, "category": "media-conv", "path": "jpg_full/jpg/126300.jpg_copy.jpg"} +{"size_bytes": 1082980, "category": "media-conv", "path": "jpg_full/jpg/108104.jpg_copy.jpg"} +{"size_bytes": 1094321, "category": "media-conv", "path": "jpg_full/jpg/113402.jpg_copy.jpg"} +{"size_bytes": 1103919, "category": "media-conv", "path": "jpg_full/jpg/108801.jpg"} +{"size_bytes": 1071329, "category": "media-conv", "path": "jpg_full/jpg/116803.jpg_copy.jpg"} +{"size_bytes": 2456257, "category": "media-conv", "path": "jpg_small/jpg/106800.jpg"} +{"size_bytes": 2150546, "category": "media-conv", "path": "jpg_small/jpg/104902.jpg"} +{"size_bytes": 3124820, "category": "media-conv", "path": "jpg_small/jpg/107702.jpg"} +{"size_bytes": 1008401, "category": "media-conv", "path": "jpg_small/jpg/112101.jpg"} +{"size_bytes": 1996082, "category": "media-conv", "path": "jpg_small/jpg/103901.jpg"} +{"size_bytes": 1082980, "category": "media-conv", "path": "jpg_small/jpg/108104.jpg"} +{"size_bytes": 1079592, "category": "media-conv", "path": "jpg_small/jpg/112407.jpg"} +{"size_bytes": 1908382, "category": "media-conv", "path": "jpg_small/jpg/104005.jpg"} +{"size_bytes": 4060342, "category": "media-conv", "path": "jpg_small/jpg/100301.jpg"} +{"size_bytes": 1668893, "category": "media-conv", "path": "jpg_small/jpg/104400.jpg"} +{"size_bytes": 3391932, "category": "media-conv", "path": "jpg_small/jpg/100902.jpg"} +{"size_bytes": 1087535, "category": "media-conv", "path": "jpg_small/jpg/119300.jpg"} +{"size_bytes": 1114023, "category": "media-conv", "path": "jpg_small/jpg/101501.jpg"} +{"size_bytes": 1817659, "category": "media-conv", "path": "jpg_small/jpg/104700.jpg"} +{"size_bytes": 1792650, "category": "media-conv", "path": "jpg_small/jpg/104002.jpg"} +{"size_bytes": 3961883, "category": "media-conv", "path": "jpg_small/jpg/107500.jpg"} +{"size_bytes": 3930381, "category": "media-conv", "path": "jpg_small/jpg/100002.jpg"} +{"size_bytes": 2414174, "category": "media-conv", "path": "jpg_small/jpg/106901.jpg"} +{"size_bytes": 1650276, "category": "media-conv", "path": "jpg_small/jpg/102302.jpg"} +{"size_bytes": 1096458, "category": "media-conv", "path": "jpg_small/jpg/119000.jpg"} +{"size_bytes": 1081235, "category": "media-conv", "path": "jpg_small/jpg/117401.jpg"} +{"size_bytes": 743363, "category": "media-conv", "path": "jpg_small/jpg/110801.jpg"} +{"size_bytes": 1384925, "category": "media-conv", "path": "jpg_small/jpg/106100.jpg"} +{"size_bytes": 1497861, "category": "media-conv", "path": "jpg_small/jpg/105002.jpg"} +{"size_bytes": 1093715, "category": "media-conv", "path": "jpg_small/jpg/111801.jpg"} +{"size_bytes": 1066700, "category": "media-conv", "path": "jpg_small/jpg/119702.jpg"} +{"size_bytes": 1227614, "category": "media-conv", "path": "jpg_small/jpg/102800.jpg"} +{"size_bytes": 1080299, "category": "media-conv", "path": "jpg_small/jpg/119703.jpg"} +{"size_bytes": 1068211, "category": "media-conv", "path": "jpg_small/jpg/114001.jpg"} +{"size_bytes": 3855038, "category": "media-conv", "path": "jpg_small/jpg/105800.jpg"} +{"size_bytes": 1076244, "category": "media-conv", "path": "jpg_small/jpg/117300.jpg"} +{"size_bytes": 1086190, "category": "media-conv", "path": "jpg_small/jpg/117200.jpg"} +{"size_bytes": 654065, "category": "media-conv", "path": "jpg_small/jpg/110601.jpg"} +{"size_bytes": 4064788, "category": "media-conv", "path": "jpg_small/jpg/107501.jpg"} +{"size_bytes": 3931657, "category": "media-conv", "path": "jpg_small/jpg/100001.jpg"} +{"size_bytes": 1649054, "category": "media-conv", "path": "jpg_small/jpg/105501.jpg"} +{"size_bytes": 3647397, "category": "media-conv", "path": "jpg_small/jpg/105802.jpg"} +{"size_bytes": 765533, "category": "media-conv", "path": "jpg_small/jpg/110600.jpg"} +{"size_bytes": 1104607, "category": "media-conv", "path": "jpg_small/jpg/114402.jpg"} +{"size_bytes": 1077376, "category": "media-conv", "path": "jpg_small/jpg/119001.jpg"} +{"size_bytes": 1083332, "category": "media-conv", "path": "jpg_small/jpg/116702.jpg"} +{"size_bytes": 659535, "category": "media-conv", "path": "jpg_small/jpg/110800.jpg"} +{"size_bytes": 4083123, "category": "media-conv", "path": "jpg_small/jpg/107600.jpg"} +{"size_bytes": 1079229, "category": "media-conv", "path": "jpg_small/jpg/115900.jpg"} +{"size_bytes": 1068159, "category": "media-conv", "path": "jpg_small/jpg/113101.jpg"} +{"size_bytes": 3895108, "category": "media-conv", "path": "jpg_small/jpg/100700.jpg"} +{"size_bytes": 1447314, "category": "media-conv", "path": "jpg_small/jpg/104502.jpg"} +{"size_bytes": 3821143, "category": "media-conv", "path": "jpg_small/jpg/107200.jpg"} +{"size_bytes": 1071552, "category": "media-conv", "path": "jpg_small/jpg/110001.jpg"} +{"size_bytes": 1071312, "category": "media-conv", "path": "jpg_small/jpg/117400.jpg"} +{"size_bytes": 1312546, "category": "media-conv", "path": "jpg_small/jpg/103300.jpg"} +{"size_bytes": 3911518, "category": "media-conv", "path": "jpg_small/jpg/106402.jpg"} +{"size_bytes": 1072394, "category": "media-conv", "path": "jpg_small/jpg/119200.jpg"} +{"size_bytes": 671929, "category": "media-conv", "path": "jpg_small/jpg/109200.jpg"} +{"size_bytes": 2418959, "category": "media-conv", "path": "jpg_small/jpg/106903.jpg"} +{"size_bytes": 1063691, "category": "media-conv", "path": "jpg_small/jpg/112901.jpg"} +{"size_bytes": 1108358, "category": "media-conv", "path": "jpg_small/jpg/116002.jpg"} +{"size_bytes": 1800614, "category": "media-conv", "path": "jpg_small/jpg/105001.jpg"} +{"size_bytes": 1054544, "category": "media-conv", "path": "jpg_small/jpg/115100.jpg"} +{"size_bytes": 1115482, "category": "media-conv", "path": "jpg_small/jpg/115801.jpg"} +{"size_bytes": 3836747, "category": "media-conv", "path": "jpg_small/jpg/107203.jpg"} +{"size_bytes": 1107366, "category": "media-conv", "path": "jpg_small/jpg/117601.jpg"} +{"size_bytes": 3824533, "category": "media-conv", "path": "jpg_small/jpg/100302.jpg"} +{"size_bytes": 1048684, "category": "media-conv", "path": "jpg_small/jpg/119704.jpg"} +{"size_bytes": 1072058, "category": "media-conv", "path": "jpg_small/jpg/112406.jpg"} +{"size_bytes": 1083461, "category": "media-conv", "path": "jpg_small/jpg/116101.jpg"} +{"size_bytes": 1811647, "category": "media-conv", "path": "jpg_small/jpg/104600.jpg"} +{"size_bytes": 760180, "category": "media-conv", "path": "jpg_small/jpg/109501.jpg"} +{"size_bytes": 1074788, "category": "media-conv", "path": "jpg_small/jpg/114901.jpg"} +{"size_bytes": 1952666, "category": "media-conv", "path": "jpg_small/jpg/101702.jpg"} +{"size_bytes": 3756516, "category": "media-conv", "path": "jpg_small/jpg/100701.jpg"} +{"size_bytes": 85743, "category": "media-conv", "path": "jpg_small/jpg/106700.jpg"} +{"size_bytes": 1435377, "category": "media-conv", "path": "jpg_small/jpg/103601.jpg"} +{"size_bytes": 3871568, "category": "media-conv", "path": "jpg_small/jpg/107201.jpg"} +{"size_bytes": 1078287, "category": "media-conv", "path": "jpg_small/jpg/116001.jpg"} +{"size_bytes": 1193102, "category": "media-conv", "path": "jpg_small/jpg/110301.jpg"} +{"size_bytes": 1082852, "category": "media-conv", "path": "jpg_small/jpg/112500.jpg"} +{"size_bytes": 1533413, "category": "media-conv", "path": "jpg_small/jpg/102700.jpg"} +{"size_bytes": 3913508, "category": "media-conv", "path": "jpg_small/jpg/106500.jpg"} +{"size_bytes": 1064553, "category": "media-conv", "path": "jpg_small/jpg/112902.jpg"} +{"size_bytes": 1498964, "category": "media-conv", "path": "jpg_small/jpg/103600.jpg"} +{"size_bytes": 736428, "category": "media-conv", "path": "jpg_small/jpg/112003.jpg"} +{"size_bytes": 1040096, "category": "media-conv", "path": "jpg_small/jpg/108201.jpg"} +{"size_bytes": 1223469, "category": "media-conv", "path": "jpg_small/jpg/104300.jpg"} +{"size_bytes": 1085729, "category": "media-conv", "path": "jpg_small/jpg/119400.jpg"} +{"size_bytes": 1071329, "category": "media-conv", "path": "jpg_small/jpg/116803.jpg"} +{"size_bytes": 1095818, "category": "media-conv", "path": "jpg_small/jpg/119600.jpg"} +{"size_bytes": 1073419, "category": "media-conv", "path": "jpg_small/jpg/114700.jpg"} +{"size_bytes": 1063730, "category": "media-conv", "path": "jpg_small/jpg/119202.jpg"} +{"size_bytes": 1074350, "category": "media-conv", "path": "jpg_small/jpg/114401.jpg"} +{"size_bytes": 709940, "category": "media-conv", "path": "jpg_small/jpg/109101.jpg"} +{"size_bytes": 1083958, "category": "media-conv", "path": "jpg_small/jpg/112404.jpg"} +{"size_bytes": 1077007, "category": "media-conv", "path": "jpg_small/jpg/114601.jpg"} +{"size_bytes": 2234895, "category": "media-conv", "path": "jpg_small/jpg/104901.jpg"} +{"size_bytes": 1494122, "category": "media-conv", "path": "jpg_small/jpg/105101.jpg"} +{"size_bytes": 2402733, "category": "media-conv", "path": "jpg_small/jpg/106900.jpg"} +{"size_bytes": 1054345, "category": "media-conv", "path": "jpg_small/jpg/112201.jpg"} +{"size_bytes": 1119035, "category": "media-conv", "path": "jpg_small/jpg/113800.jpg"} +{"size_bytes": 1111357, "category": "media-conv", "path": "jpg_small/jpg/113500.jpg"} +{"size_bytes": 1479110, "category": "media-conv", "path": "jpg_small/jpg/102900.jpg"} +{"size_bytes": 992826, "category": "media-conv", "path": "jpg_small/jpg/110702.jpg"} +{"size_bytes": 1063245, "category": "media-conv", "path": "jpg_small/jpg/112408.jpg"} +{"size_bytes": 1270300, "category": "media-conv", "path": "jpg_small/jpg/101404.jpg"} +{"size_bytes": 1059586, "category": "media-conv", "path": "jpg_small/jpg/113600.jpg"} +{"size_bytes": 1094321, "category": "media-conv", "path": "jpg_small/jpg/113402.jpg"} +{"size_bytes": 1124995, "category": "media-conv", "path": "jpg_small/jpg/117901.jpg"} +{"size_bytes": 1080375, "category": "media-conv", "path": "jpg_small/jpg/113000.jpg"} +{"size_bytes": 1090875, "category": "media-conv", "path": "jpg_small/jpg/114501.jpg"} +{"size_bytes": 491938, "category": "media-conv", "path": "jpg_small/jpg/109001.jpg"} +{"size_bytes": 85243, "category": "media-conv", "path": "jpg_small/jpg/100401.jpg"} +{"size_bytes": 3906386, "category": "media-conv", "path": "jpg_small/jpg/100801.jpg"} +{"size_bytes": 1089034, "category": "media-conv", "path": "jpg_small/jpg/114902.jpg"} +{"size_bytes": 1619682, "category": "media-conv", "path": "jpg_small/jpg/103401.jpg"} +{"size_bytes": 1552835, "category": "media-conv", "path": "jpg_small/jpg/103303.jpg"} +{"size_bytes": 2502397, "category": "media-conv", "path": "jpg_small/jpg/102601.jpg"} +{"size_bytes": 1085408, "category": "media-conv", "path": "jpg_small/jpg/115800.jpg"} +{"size_bytes": 1837435, "category": "media-conv", "path": "jpg_small/jpg/103800.jpg"} +{"size_bytes": 1758164, "category": "media-conv", "path": "jpg_small/jpg/104004.jpg"} +{"size_bytes": 1081597, "category": "media-conv", "path": "jpg_small/jpg/115901.jpg"} +{"size_bytes": 1106338, "category": "media-conv", "path": "jpg_small/jpg/111001.jpg"} +{"size_bytes": 1594219, "category": "media-conv", "path": "jpg_small/jpg/101901.jpg"} +{"size_bytes": 1114926, "category": "media-conv", "path": "jpg_small/jpg/108800.jpg"} +{"size_bytes": 1117186, "category": "media-conv", "path": "jpg_small/jpg/119605.jpg"} +{"size_bytes": 1088758, "category": "media-conv", "path": "jpg_small/jpg/116401.jpg"} +{"size_bytes": 383786, "category": "media-conv", "path": "jpg_small/jpg/110900.jpg"} +{"size_bytes": 3211612, "category": "media-conv", "path": "jpg_small/jpg/103204.jpg"} +{"size_bytes": 1088957, "category": "media-conv", "path": "jpg_small/jpg/112700.jpg"} +{"size_bytes": 3341451, "category": "media-conv", "path": "jpg_small/jpg/106400.jpg"} +{"size_bytes": 1090580, "category": "media-conv", "path": "jpg_small/jpg/117101.jpg"} +{"size_bytes": 1356446, "category": "media-conv", "path": "jpg_small/jpg/110201.jpg"} +{"size_bytes": 1102994, "category": "media-conv", "path": "jpg_small/jpg/112501.jpg"} +{"size_bytes": 1069151, "category": "media-conv", "path": "jpg_small/jpg/117801.jpg"} +{"size_bytes": 2192432, "category": "media-conv", "path": "jpg_small/jpg/108601.jpg"} +{"size_bytes": 3773512, "category": "media-conv", "path": "jpg_small/jpg/100201.jpg"} +{"size_bytes": 1078666, "category": "media-conv", "path": "jpg_small/jpg/119604.jpg"} +{"size_bytes": 1076912, "category": "media-conv", "path": "jpg_small/jpg/110500.jpg"} +{"size_bytes": 1326611, "category": "media-conv", "path": "jpg_small/jpg/105102.jpg"} +{"size_bytes": 1063594, "category": "media-conv", "path": "jpg_small/jpg/117403.jpg"} +{"size_bytes": 1099219, "category": "media-conv", "path": "jpg_small/jpg/114400.jpg"} +{"size_bytes": 2136127, "category": "media-conv", "path": "jpg_small/jpg/102500.jpg"} +{"size_bytes": 1087202, "category": "media-conv", "path": "jpg_small/jpg/113400.jpg"} +{"size_bytes": 1069350, "category": "media-conv", "path": "jpg_small/jpg/114801.jpg"} +{"size_bytes": 1503923, "category": "media-conv", "path": "jpg_small/jpg/102701.jpg"} +{"size_bytes": 1887050, "category": "media-conv", "path": "jpg_small/jpg/104006.jpg"} +{"size_bytes": 1069421, "category": "media-conv", "path": "jpg_small/jpg/108100.jpg"} +{"size_bytes": 1057356, "category": "media-conv", "path": "jpg_small/jpg/114502.jpg"} +{"size_bytes": 1796643, "category": "media-conv", "path": "jpg_small/jpg/104701.jpg"} +{"size_bytes": 1096849, "category": "media-conv", "path": "jpg_small/jpg/114100.jpg"} +{"size_bytes": 1083351, "category": "media-conv", "path": "jpg_small/jpg/116400.jpg"} +{"size_bytes": 1096631, "category": "media-conv", "path": "jpg_small/jpg/114702.jpg"} +{"size_bytes": 1037932, "category": "media-conv", "path": "jpg_small/jpg/115001.jpg"} +{"size_bytes": 1294928, "category": "media-conv", "path": "jpg_small/jpg/101600.jpg"} +{"size_bytes": 3983323, "category": "media-conv", "path": "jpg_small/jpg/100500.jpg"} +{"size_bytes": 1102514, "category": "media-conv", "path": "jpg_small/jpg/117600.jpg"} +{"size_bytes": 1085679, "category": "media-conv", "path": "jpg_small/jpg/112402.jpg"} +{"size_bytes": 1119278, "category": "media-conv", "path": "jpg_small/jpg/114002.jpg"} +{"size_bytes": 1070812, "category": "media-conv", "path": "jpg_small/jpg/119801.jpg"} +{"size_bytes": 3850723, "category": "media-conv", "path": "jpg_small/jpg/107400.jpg"} +{"size_bytes": 1086914, "category": "media-conv", "path": "jpg_small/jpg/113200.jpg"} +{"size_bytes": 1045752, "category": "media-conv", "path": "jpg_small/jpg/110700.jpg"} +{"size_bytes": 1092657, "category": "media-conv", "path": "jpg_small/jpg/113901.jpg"} +{"size_bytes": 3901599, "category": "media-conv", "path": "jpg_small/jpg/107202.jpg"} +{"size_bytes": 1060217, "category": "media-conv", "path": "jpg_small/jpg/112405.jpg"} +{"size_bytes": 4021687, "category": "media-conv", "path": "jpg_small/jpg/106604.jpg"} +{"size_bytes": 1517251, "category": "media-conv", "path": "jpg_small/jpg/104501.jpg"} +{"size_bytes": 1958309, "category": "media-conv", "path": "jpg_small/jpg/104101.jpg"} +{"size_bytes": 1473448, "category": "media-conv", "path": "jpg_small/jpg/106200.jpg"} +{"size_bytes": 1857411, "category": "media-conv", "path": "jpg_small/jpg/101900.jpg"} +{"size_bytes": 1070465, "category": "media-conv", "path": "jpg_small/jpg/113700.jpg"} +{"size_bytes": 1884686, "category": "media-conv", "path": "jpg_small/jpg/101701.jpg"} +{"size_bytes": 723469, "category": "media-conv", "path": "jpg_small/jpg/109701.jpg"} +{"size_bytes": 1079177, "category": "media-conv", "path": "jpg_small/jpg/119900.jpg"} +{"size_bytes": 1087331, "category": "media-conv", "path": "jpg_small/jpg/119201.jpg"} +{"size_bytes": 1066856, "category": "media-conv", "path": "jpg_small/jpg/108501.jpg"} +{"size_bytes": 3932886, "category": "media-conv", "path": "jpg_small/jpg/107902.jpg"} +{"size_bytes": 1095511, "category": "media-conv", "path": "jpg_small/jpg/119602.jpg"} +{"size_bytes": 1073052, "category": "media-conv", "path": "jpg_small/jpg/117701.jpg"} +{"size_bytes": 1983886, "category": "media-conv", "path": "jpg_small/jpg/103102.jpg"} +{"size_bytes": 1165781, "category": "media-conv", "path": "jpg_small/jpg/110302.jpg"} +{"size_bytes": 1033151, "category": "media-conv", "path": "jpg_small/jpg/108400.jpg"} +{"size_bytes": 3903208, "category": "media-conv", "path": "jpg_small/jpg/107901.jpg"} +{"size_bytes": 1081340, "category": "media-conv", "path": "jpg_small/jpg/111501.jpg"} +{"size_bytes": 1595352, "category": "media-conv", "path": "jpg_small/jpg/105100.jpg"} +{"size_bytes": 663418, "category": "media-conv", "path": "jpg_small/jpg/108901.jpg"} +{"size_bytes": 1071530, "category": "media-conv", "path": "jpg_small/jpg/114903.jpg"} +{"size_bytes": 1786034, "category": "media-conv", "path": "jpg_small/jpg/104000.jpg"} +{"size_bytes": 2244197, "category": "media-conv", "path": "jpg_small/jpg/104900.jpg"} +{"size_bytes": 771699, "category": "media-conv", "path": "jpg_small/jpg/109400.jpg"} +{"size_bytes": 1096956, "category": "media-conv", "path": "jpg_small/jpg/111500.jpg"} +{"size_bytes": 1403510, "category": "media-conv", "path": "jpg_small/jpg/105201.jpg"} +{"size_bytes": 1079757, "category": "media-conv", "path": "jpg_small/jpg/119701.jpg"} +{"size_bytes": 1062229, "category": "media-conv", "path": "jpg_small/jpg/112403.jpg"} +{"size_bytes": 1679221, "category": "media-conv", "path": "jpg_small/jpg/103801.jpg"} +{"size_bytes": 1072134, "category": "media-conv", "path": "jpg_small/jpg/119101.jpg"} +{"size_bytes": 1636131, "category": "media-conv", "path": "jpg_small/jpg/104203.jpg"} +{"size_bytes": 1200459, "category": "media-conv", "path": "jpg_small/jpg/102801.jpg"} +{"size_bytes": 3859918, "category": "media-conv", "path": "jpg_small/jpg/107301.jpg"} +{"size_bytes": 1441579, "category": "media-conv", "path": "jpg_small/jpg/102100.jpg"} +{"size_bytes": 1649326, "category": "media-conv", "path": "jpg_small/jpg/106101.jpg"} +{"size_bytes": 2182320, "category": "media-conv", "path": "jpg_small/jpg/115300.jpg"} +{"size_bytes": 4156695, "category": "media-conv", "path": "jpg_small/jpg/100502.jpg"} +{"size_bytes": 1063086, "category": "media-conv", "path": "jpg_small/jpg/114503.jpg"} +{"size_bytes": 1536560, "category": "media-conv", "path": "jpg_small/jpg/102901.jpg"} +{"size_bytes": 1110821, "category": "media-conv", "path": "jpg_small/jpg/116501.jpg"} +{"size_bytes": 1620995, "category": "media-conv", "path": "jpg_small/jpg/105301.jpg"} +{"size_bytes": 1099505, "category": "media-conv", "path": "jpg_small/jpg/117102.jpg"} +{"size_bytes": 671413, "category": "media-conv", "path": "jpg_small/jpg/111301.jpg"} +{"size_bytes": 1066383, "category": "media-conv", "path": "jpg_small/jpg/112701.jpg"} +{"size_bytes": 1288695, "category": "media-conv", "path": "jpg_small/jpg/105900.jpg"} +{"size_bytes": 1096146, "category": "media-conv", "path": "jpg_small/jpg/108103.jpg"} +{"size_bytes": 3900027, "category": "media-conv", "path": "jpg_small/jpg/107401.jpg"} +{"size_bytes": 1083310, "category": "media-conv", "path": "jpg_small/jpg/113001.jpg"} +{"size_bytes": 1071057, "category": "media-conv", "path": "jpg_small/jpg/113701.jpg"} +{"size_bytes": 2090794, "category": "media-conv", "path": "jpg_small/jpg/102501.jpg"} +{"size_bytes": 3829227, "category": "media-conv", "path": "jpg_small/jpg/107100.jpg"} +{"size_bytes": 1065275, "category": "media-conv", "path": "jpg_small/jpg/116201.jpg"} +{"size_bytes": 3889539, "category": "media-conv", "path": "jpg_small/jpg/107900.jpg"} +{"size_bytes": 1244250, "category": "media-conv", "path": "jpg_small/jpg/104200.jpg"} +{"size_bytes": 1423369, "category": "media-conv", "path": "jpg_small/jpg/103302.jpg"} +{"size_bytes": 4035977, "category": "media-conv", "path": "jpg_small/jpg/100000.jpg"} +{"size_bytes": 1092781, "category": "media-conv", "path": "jpg_small/jpg/111601.jpg"} +{"size_bytes": 1079356, "category": "media-conv", "path": "jpg_small/jpg/114800.jpg"} +{"size_bytes": 4032210, "category": "media-conv", "path": "jpg_small/jpg/101101.jpg"} +{"size_bytes": 1094158, "category": "media-conv", "path": "jpg_small/jpg/114701.jpg"} +{"size_bytes": 1084766, "category": "media-conv", "path": "jpg_small/jpg/116900.jpg"} +{"size_bytes": 2444388, "category": "media-conv", "path": "jpg_small/jpg/106801.jpg"} +{"size_bytes": 4165323, "category": "media-conv", "path": "jpg_small/jpg/107601.jpg"} +{"size_bytes": 3895679, "category": "media-conv", "path": "jpg_small/jpg/101001.jpg"} +{"size_bytes": 774282, "category": "media-conv", "path": "jpg_small/jpg/109800.jpg"} +{"size_bytes": 754991, "category": "media-conv", "path": "jpg_small/jpg/112001.jpg"} +{"size_bytes": 1116375, "category": "media-conv", "path": "jpg_small/jpg/112801.jpg"} +{"size_bytes": 1087166, "category": "media-conv", "path": "jpg_small/jpg/112601.jpg"} +{"size_bytes": 1061227, "category": "media-conv", "path": "jpg_small/jpg/108202.jpg"} +{"size_bytes": 1071116, "category": "media-conv", "path": "jpg_small/jpg/116200.jpg"} +{"size_bytes": 3751620, "category": "media-conv", "path": "jpg_small/jpg/107800.jpg"} +{"size_bytes": 1154328, "category": "media-conv", "path": "jpg_small/jpg/106000.jpg"} +{"size_bytes": 1400765, "category": "media-conv", "path": "jpg_small/jpg/103500.jpg"} +{"size_bytes": 1069892, "category": "media-conv", "path": "jpg_small/jpg/111401.jpg"} +{"size_bytes": 1039432, "category": "media-conv", "path": "jpg_small/jpg/114600.jpg"} +{"size_bytes": 3874600, "category": "media-conv", "path": "jpg_small/jpg/106403.jpg"} +{"size_bytes": 1099535, "category": "media-conv", "path": "jpg_small/jpg/119100.jpg"} +{"size_bytes": 1296861, "category": "media-conv", "path": "jpg_small/jpg/101601.jpg"} +{"size_bytes": 1701607, "category": "media-conv", "path": "jpg_small/jpg/105300.jpg"} +{"size_bytes": 2153270, "category": "media-conv", "path": "jpg_small/jpg/102300.jpg"} +{"size_bytes": 1318005, "category": "media-conv", "path": "jpg_small/jpg/105901.jpg"} +{"size_bytes": 4233706, "category": "media-conv", "path": "jpg_small/jpg/100503.jpg"} +{"size_bytes": 2390952, "category": "media-conv", "path": "jpg_small/jpg/106702.jpg"} +{"size_bytes": 1081060, "category": "media-conv", "path": "jpg_small/jpg/112602.jpg"} +{"size_bytes": 1098454, "category": "media-conv", "path": "jpg_small/jpg/113201.jpg"} +{"size_bytes": 1075157, "category": "media-conv", "path": "jpg_small/jpg/115501.jpg"} +{"size_bytes": 1079377, "category": "media-conv", "path": "jpg_small/jpg/117800.jpg"} +{"size_bytes": 4218387, "category": "media-conv", "path": "jpg_small/jpg/100501.jpg"} +{"size_bytes": 1096211, "category": "media-conv", "path": "jpg_small/jpg/116300.jpg"} +{"size_bytes": 1699036, "category": "media-conv", "path": "jpg_small/jpg/104801.jpg"} +{"size_bytes": 2098172, "category": "media-conv", "path": "jpg_small/jpg/102402.jpg"} +{"size_bytes": 1470601, "category": "media-conv", "path": "jpg_small/jpg/103503.jpg"} +{"size_bytes": 1071875, "category": "media-conv", "path": "jpg_small/jpg/114301.jpg"} +{"size_bytes": 1396458, "category": "media-conv", "path": "jpg_small/jpg/102201.jpg"} +{"size_bytes": 1060493, "category": "media-conv", "path": "jpg_small/jpg/117700.jpg"} +{"size_bytes": 1233506, "category": "media-conv", "path": "jpg_small/jpg/104301.jpg"} +{"size_bytes": 2506896, "category": "media-conv", "path": "jpg_small/jpg/102200.jpg"} +{"size_bytes": 1051185, "category": "media-conv", "path": "jpg_small/jpg/108700.jpg"} +{"size_bytes": 566341, "category": "media-conv", "path": "jpg_small/jpg/111100.jpg"} +{"size_bytes": 1086022, "category": "media-conv", "path": "jpg_small/jpg/108200.jpg"} +{"size_bytes": 1077196, "category": "media-conv", "path": "jpg_small/jpg/119603.jpg"} +{"size_bytes": 725024, "category": "media-conv", "path": "jpg_small/jpg/108001.jpg"} +{"size_bytes": 1586322, "category": "media-conv", "path": "jpg_small/jpg/105104.jpg"} +{"size_bytes": 1078731, "category": "media-conv", "path": "jpg_small/jpg/115200.jpg"} +{"size_bytes": 1148087, "category": "media-conv", "path": "jpg_small/jpg/108106.jpg"} +{"size_bytes": 1086965, "category": "media-conv", "path": "jpg_small/jpg/114500.jpg"} +{"size_bytes": 1157462, "category": "media-conv", "path": "jpg_small/jpg/101403.jpg"} +{"size_bytes": 1261138, "category": "media-conv", "path": "jpg_small/jpg/110200.jpg"} +{"size_bytes": 1081664, "category": "media-conv", "path": "jpg_small/jpg/119901.jpg"} +{"size_bytes": 1026716, "category": "media-conv", "path": "jpg_small/jpg/108401.jpg"} +{"size_bytes": 4004172, "category": "media-conv", "path": "jpg_small/jpg/106600.jpg"} +{"size_bytes": 1727348, "category": "media-conv", "path": "jpg_small/jpg/104800.jpg"} +{"size_bytes": 1095944, "category": "media-conv", "path": "jpg_small/jpg/112301.jpg"} +{"size_bytes": 1092442, "category": "media-conv", "path": "jpg_small/jpg/113401.jpg"} +{"size_bytes": 3394688, "category": "media-conv", "path": "jpg_small/jpg/107701.jpg"} +{"size_bytes": 2275839, "category": "media-conv", "path": "jpg_small/jpg/105500.jpg"} +{"size_bytes": 1102563, "category": "media-conv", "path": "jpg_small/jpg/114300.jpg"} +{"size_bytes": 1088690, "category": "media-conv", "path": "jpg_small/jpg/113403.jpg"} +{"size_bytes": 915416, "category": "media-conv", "path": "jpg_small/jpg/111201.jpg"} +{"size_bytes": 4050024, "category": "media-conv", "path": "jpg_small/jpg/106301.jpg"} +{"size_bytes": 1115556, "category": "media-conv", "path": "jpg_small/jpg/113502.jpg"} +{"size_bytes": 1749969, "category": "media-conv", "path": "jpg_small/jpg/104003.jpg"} +{"size_bytes": 1257890, "category": "media-conv", "path": "jpg_small/jpg/101801.jpg"} +{"size_bytes": 1798832, "category": "media-conv", "path": "jpg_small/jpg/103400.jpg"} +{"size_bytes": 925249, "category": "media-conv", "path": "jpg_small/jpg/100601.jpg"} +{"size_bytes": 1121386, "category": "media-conv", "path": "jpg_small/jpg/115601.jpg"} +{"size_bytes": 3734959, "category": "media-conv", "path": "jpg_small/jpg/106401.jpg"} +{"size_bytes": 2846316, "category": "media-conv", "path": "jpg_small/jpg/100800.jpg"} +{"size_bytes": 757839, "category": "media-conv", "path": "jpg_small/jpg/108000.jpg"} +{"size_bytes": 1093517, "category": "media-conv", "path": "jpg_small/jpg/116703.jpg"} +{"size_bytes": 3844067, "category": "media-conv", "path": "jpg_small/jpg/100200.jpg"} +{"size_bytes": 1127657, "category": "media-conv", "path": "jpg_small/jpg/102802.jpg"} +{"size_bytes": 1099124, "category": "media-conv", "path": "jpg_small/jpg/113900.jpg"} +{"size_bytes": 1078176, "category": "media-conv", "path": "jpg_small/jpg/112302.jpg"} +{"size_bytes": 1151588, "category": "media-conv", "path": "jpg_small/jpg/101400.jpg"} +{"size_bytes": 2064076, "category": "media-conv", "path": "jpg_small/jpg/102301.jpg"} +{"size_bytes": 4007840, "category": "media-conv", "path": "jpg_small/jpg/106501.jpg"} +{"size_bytes": 1060884, "category": "media-conv", "path": "jpg_small/jpg/108701.jpg"} +{"size_bytes": 1939907, "category": "media-conv", "path": "jpg_small/jpg/103900.jpg"} +{"size_bytes": 3932280, "category": "media-conv", "path": "jpg_small/jpg/106602.jpg"} +{"size_bytes": 4030655, "category": "media-conv", "path": "jpg_small/jpg/106300.jpg"} +{"size_bytes": 826433, "category": "media-conv", "path": "jpg_small/jpg/111101.jpg"} +{"size_bytes": 2392809, "category": "media-conv", "path": "jpg_small/jpg/103202.jpg"} +{"size_bytes": 2934959, "category": "media-conv", "path": "jpg_small/jpg/100900.jpg"} +{"size_bytes": 1053634, "category": "media-conv", "path": "jpg_small/jpg/115301.jpg"} +{"size_bytes": 1077023, "category": "media-conv", "path": "jpg_small/jpg/108301.jpg"} +{"size_bytes": 1106116, "category": "media-conv", "path": "jpg_small/jpg/117500.jpg"} +{"size_bytes": 1067782, "category": "media-conv", "path": "jpg_small/jpg/109900.jpg"} +{"size_bytes": 1595549, "category": "media-conv", "path": "jpg_small/jpg/105000.jpg"} +{"size_bytes": 2434689, "category": "media-conv", "path": "jpg_small/jpg/106902.jpg"} +{"size_bytes": 1115156, "category": "media-conv", "path": "jpg_small/jpg/117900.jpg"} +{"size_bytes": 1418215, "category": "media-conv", "path": "jpg_small/jpg/101800.jpg"} +{"size_bytes": 1266340, "category": "media-conv", "path": "jpg_small/jpg/101401.jpg"} +{"size_bytes": 1169676, "category": "media-conv", "path": "jpg_small/jpg/101504.jpg"} +{"size_bytes": 754735, "category": "media-conv", "path": "jpg_small/jpg/109600.jpg"} +{"size_bytes": 1096161, "category": "media-conv", "path": "jpg_small/jpg/113301.jpg"} +{"size_bytes": 1099806, "category": "media-conv", "path": "jpg_small/jpg/112300.jpg"} +{"size_bytes": 2141366, "category": "media-conv", "path": "jpg_small/jpg/108600.jpg"} +{"size_bytes": 1072610, "category": "media-conv", "path": "jpg_small/jpg/117201.jpg"} +{"size_bytes": 1079377, "category": "media-conv", "path": "jpg_small/jpg/114200.jpg"} +{"size_bytes": 1082482, "category": "media-conv", "path": "jpg_small/jpg/112401.jpg"} +{"size_bytes": 1092838, "category": "media-conv", "path": "jpg_small/jpg/117000.jpg"} +{"size_bytes": 705320, "category": "media-conv", "path": "jpg_small/jpg/108902.jpg"} +{"size_bytes": 1092387, "category": "media-conv", "path": "jpg_small/jpg/111600.jpg"} +{"size_bytes": 3511977, "category": "media-conv", "path": "jpg_small/jpg/101000.jpg"} +{"size_bytes": 3870574, "category": "media-conv", "path": "jpg_small/jpg/106703.jpg"} +{"size_bytes": 1048824, "category": "media-conv", "path": "jpg_small/jpg/113801.jpg"} +{"size_bytes": 1098757, "category": "media-conv", "path": "jpg_small/jpg/115602.jpg"} +{"size_bytes": 1659541, "category": "media-conv", "path": "jpg_small/jpg/103301.jpg"} +{"size_bytes": 1092487, "category": "media-conv", "path": "jpg_small/jpg/108300.jpg"} +{"size_bytes": 2236569, "category": "media-conv", "path": "jpg_small/jpg/102600.jpg"} +{"size_bytes": 1767791, "category": "media-conv", "path": "jpg_small/jpg/103700.jpg"} +{"size_bytes": 2114534, "category": "media-conv", "path": "jpg_small/jpg/105600.jpg"} +{"size_bytes": 1101373, "category": "media-conv", "path": "jpg_small/jpg/116802.jpg"} +{"size_bytes": 974805, "category": "media-conv", "path": "jpg_small/jpg/109901.jpg"} +{"size_bytes": 1084602, "category": "media-conv", "path": "jpg_small/jpg/119203.jpg"} +{"size_bytes": 1075284, "category": "media-conv", "path": "jpg_small/jpg/110501.jpg"} +{"size_bytes": 1920622, "category": "media-conv", "path": "jpg_small/jpg/104100.jpg"} +{"size_bytes": 1069849, "category": "media-conv", "path": "jpg_small/jpg/116100.jpg"} +{"size_bytes": 1464955, "category": "media-conv", "path": "jpg_small/jpg/104401.jpg"} +{"size_bytes": 1077307, "category": "media-conv", "path": "jpg_small/jpg/112800.jpg"} +{"size_bytes": 1060668, "category": "media-conv", "path": "jpg_small/jpg/117802.jpg"} +{"size_bytes": 2176427, "category": "media-conv", "path": "jpg_small/jpg/101301.jpg"} +{"size_bytes": 3418754, "category": "media-conv", "path": "jpg_small/jpg/100901.jpg"} +{"size_bytes": 1120739, "category": "media-conv", "path": "jpg_small/jpg/112200.jpg"} +{"size_bytes": 4129919, "category": "media-conv", "path": "jpg_small/jpg/100400.jpg"} +{"size_bytes": 844511, "category": "media-conv", "path": "jpg_small/jpg/110400.jpg"} +{"size_bytes": 1073119, "category": "media-conv", "path": "jpg_small/jpg/116901.jpg"} +{"size_bytes": 3896127, "category": "media-conv", "path": "jpg_small/jpg/106704.jpg"} +{"size_bytes": 1156566, "category": "media-conv", "path": "jpg_small/jpg/113501.jpg"} +{"size_bytes": 1077672, "category": "media-conv", "path": "jpg_small/jpg/111400.jpg"} +{"size_bytes": 755560, "category": "media-conv", "path": "jpg_small/jpg/109500.jpg"} +{"size_bytes": 2042908, "category": "media-conv", "path": "jpg_small/jpg/102401.jpg"} +{"size_bytes": 1020111, "category": "media-conv", "path": "jpg_small/jpg/111000.jpg"} +{"size_bytes": 4036048, "category": "media-conv", "path": "jpg_small/jpg/100300.jpg"} +{"size_bytes": 773723, "category": "media-conv", "path": "jpg_small/jpg/109201.jpg"} +{"size_bytes": 1384635, "category": "media-conv", "path": "jpg_small/jpg/102101.jpg"} +{"size_bytes": 1105032, "category": "media-conv", "path": "jpg_small/jpg/111900.jpg"} +{"size_bytes": 770314, "category": "media-conv", "path": "jpg_small/jpg/109401.jpg"} +{"size_bytes": 864068, "category": "media-conv", "path": "jpg_small/jpg/111200.jpg"} +{"size_bytes": 730901, "category": "media-conv", "path": "jpg_small/jpg/109802.jpg"} +{"size_bytes": 2553505, "category": "media-conv", "path": "jpg_small/jpg/103201.jpg"} +{"size_bytes": 2024413, "category": "media-conv", "path": "jpg_small/jpg/103203.jpg"} +{"size_bytes": 1639973, "category": "media-conv", "path": "jpg_small/jpg/103702.jpg"} +{"size_bytes": 1083778, "category": "media-conv", "path": "jpg_small/jpg/119601.jpg"} +{"size_bytes": 1078638, "category": "media-conv", "path": "jpg_small/jpg/115701.jpg"} +{"size_bytes": 734154, "category": "media-conv", "path": "jpg_small/jpg/109301.jpg"} +{"size_bytes": 1231006, "category": "media-conv", "path": "jpg_small/jpg/105700.jpg"} +{"size_bytes": 3347345, "category": "media-conv", "path": "jpg_small/jpg/105801.jpg"} +{"size_bytes": 597979, "category": "media-conv", "path": "jpg_small/jpg/111300.jpg"} +{"size_bytes": 1098564, "category": "media-conv", "path": "jpg_small/jpg/116601.jpg"} +{"size_bytes": 645142, "category": "media-conv", "path": "jpg_small/jpg/110300.jpg"} +{"size_bytes": 1064810, "category": "media-conv", "path": "jpg_small/jpg/115101.jpg"} +{"size_bytes": 1088639, "category": "media-conv", "path": "jpg_small/jpg/116000.jpg"} +{"size_bytes": 655719, "category": "media-conv", "path": "jpg_small/jpg/110901.jpg"} +{"size_bytes": 1066154, "category": "media-conv", "path": "jpg_small/jpg/119700.jpg"} +{"size_bytes": 1063623, "category": "media-conv", "path": "jpg_small/jpg/119800.jpg"} +{"size_bytes": 1071670, "category": "media-conv", "path": "jpg_small/jpg/116800.jpg"} +{"size_bytes": 1197918, "category": "media-conv", "path": "jpg_small/jpg/106002.jpg"} +{"size_bytes": 1192410, "category": "media-conv", "path": "jpg_small/jpg/101402.jpg"} +{"size_bytes": 1096405, "category": "media-conv", "path": "jpg_small/jpg/108101.jpg"} +{"size_bytes": 1099769, "category": "media-conv", "path": "jpg_small/jpg/114101.jpg"} +{"size_bytes": 752560, "category": "media-conv", "path": "jpg_small/jpg/112000.jpg"} +{"size_bytes": 1102128, "category": "media-conv", "path": "jpg_small/jpg/108102.jpg"} +{"size_bytes": 1085446, "category": "media-conv", "path": "jpg_small/jpg/116700.jpg"} +{"size_bytes": 1314461, "category": "media-conv", "path": "jpg_small/jpg/105701.jpg"} +{"size_bytes": 757949, "category": "media-conv", "path": "jpg_small/jpg/109601.jpg"} +{"size_bytes": 1075549, "category": "media-conv", "path": "jpg_small/jpg/108203.jpg"} +{"size_bytes": 2135824, "category": "media-conv", "path": "jpg_small/jpg/105601.jpg"} +{"size_bytes": 743791, "category": "media-conv", "path": "jpg_small/jpg/109700.jpg"} +{"size_bytes": 1274197, "category": "media-conv", "path": "jpg_small/jpg/104802.jpg"} +{"size_bytes": 1454608, "category": "media-conv", "path": "jpg_small/jpg/103502.jpg"} +{"size_bytes": 1061432, "category": "media-conv", "path": "jpg_small/jpg/108802.jpg"} +{"size_bytes": 3863079, "category": "media-conv", "path": "jpg_small/jpg/107300.jpg"} +{"size_bytes": 2779367, "category": "media-conv", "path": "jpg_small/jpg/102202.jpg"} +{"size_bytes": 956621, "category": "media-conv", "path": "jpg_small/jpg/106001.jpg"} +{"size_bytes": 1015135, "category": "media-conv", "path": "jpg_small/jpg/115000.jpg"} +{"size_bytes": 2159911, "category": "media-conv", "path": "jpg_small/jpg/101300.jpg"} +{"size_bytes": 1091179, "category": "media-conv", "path": "jpg_small/jpg/117100.jpg"} +{"size_bytes": 1085333, "category": "media-conv", "path": "jpg_small/jpg/111703.jpg"} +{"size_bytes": 1093984, "category": "media-conv", "path": "jpg_small/jpg/114000.jpg"} +{"size_bytes": 1093535, "category": "media-conv", "path": "jpg_small/jpg/116500.jpg"} +{"size_bytes": 1490297, "category": "media-conv", "path": "jpg_small/jpg/110100.jpg"} +{"size_bytes": 580608, "category": "media-conv", "path": "jpg_small/jpg/109000.jpg"} +{"size_bytes": 2485776, "category": "media-conv", "path": "jpg_small/jpg/103200.jpg"} +{"size_bytes": 1098082, "category": "media-conv", "path": "jpg_small/jpg/114900.jpg"} +{"size_bytes": 1400056, "category": "media-conv", "path": "jpg_small/jpg/110101.jpg"} +{"size_bytes": 1592465, "category": "media-conv", "path": "jpg_small/jpg/103304.jpg"} +{"size_bytes": 1064666, "category": "media-conv", "path": "jpg_small/jpg/115401.jpg"} +{"size_bytes": 1098728, "category": "media-conv", "path": "jpg_small/jpg/111800.jpg"} +{"size_bytes": 801060, "category": "media-conv", "path": "jpg_small/jpg/101201.jpg"} +{"size_bytes": 1092023, "category": "media-conv", "path": "jpg_small/jpg/114703.jpg"} +{"size_bytes": 1106077, "category": "media-conv", "path": "jpg_small/jpg/116701.jpg"} +{"size_bytes": 1074293, "category": "media-conv", "path": "jpg_small/jpg/112400.jpg"} +{"size_bytes": 4039212, "category": "media-conv", "path": "jpg_small/jpg/100600.jpg"} +{"size_bytes": 1077702, "category": "media-conv", "path": "jpg_small/jpg/115600.jpg"} +{"size_bytes": 1882254, "category": "media-conv", "path": "jpg_small/jpg/101700.jpg"} +{"size_bytes": 3805995, "category": "media-conv", "path": "jpg_small/jpg/101100.jpg"} +{"size_bytes": 1074877, "category": "media-conv", "path": "jpg_small/jpg/116301.jpg"} +{"size_bytes": 1799457, "category": "media-conv", "path": "jpg_small/jpg/105103.jpg"} +{"size_bytes": 1417205, "category": "media-conv", "path": "jpg_small/jpg/103001.jpg"} +{"size_bytes": 1068330, "category": "media-conv", "path": "jpg_small/jpg/114504.jpg"} +{"size_bytes": 1064767, "category": "media-conv", "path": "jpg_small/jpg/108105.jpg"} +{"size_bytes": 3962542, "category": "media-conv", "path": "jpg_small/jpg/100101.jpg"} +{"size_bytes": 1078474, "category": "media-conv", "path": "jpg_small/jpg/111901.jpg"} +{"size_bytes": 2083508, "category": "media-conv", "path": "jpg_small/jpg/102400.jpg"} +{"size_bytes": 1048590, "category": "media-conv", "path": "jpg_small/jpg/119501.jpg"} +{"size_bytes": 1567973, "category": "media-conv", "path": "jpg_small/jpg/105200.jpg"} +{"size_bytes": 3870739, "category": "media-conv", "path": "jpg_small/jpg/106605.jpg"} +{"size_bytes": 3782178, "category": "media-conv", "path": "jpg_small/jpg/106603.jpg"} +{"size_bytes": 2629979, "category": "media-conv", "path": "jpg_small/jpg/106606.jpg"} +{"size_bytes": 1128919, "category": "media-conv", "path": "jpg_small/jpg/111700.jpg"} +{"size_bytes": 1085901, "category": "media-conv", "path": "jpg_small/jpg/116402.jpg"} +{"size_bytes": 1100814, "category": "media-conv", "path": "jpg_small/jpg/117302.jpg"} +{"size_bytes": 1091284, "category": "media-conv", "path": "jpg_small/jpg/108500.jpg"} +{"size_bytes": 1481053, "category": "media-conv", "path": "jpg_small/jpg/106201.jpg"} +{"size_bytes": 3975920, "category": "media-conv", "path": "jpg_small/jpg/107101.jpg"} +{"size_bytes": 1300702, "category": "media-conv", "path": "jpg_small/jpg/102001.jpg"} +{"size_bytes": 1080657, "category": "media-conv", "path": "jpg_small/jpg/112900.jpg"} +{"size_bytes": 1103308, "category": "media-conv", "path": "jpg_small/jpg/117501.jpg"} +{"size_bytes": 1114409, "category": "media-conv", "path": "jpg_small/jpg/101503.jpg"} +{"size_bytes": 813936, "category": "media-conv", "path": "jpg_small/jpg/110401.jpg"} +{"size_bytes": 717775, "category": "media-conv", "path": "jpg_small/jpg/109300.jpg"} +{"size_bytes": 1101327, "category": "media-conv", "path": "jpg_small/jpg/113100.jpg"} +{"size_bytes": 3956420, "category": "media-conv", "path": "jpg_small/jpg/106601.jpg"} +{"size_bytes": 1083899, "category": "media-conv", "path": "jpg_small/jpg/114201.jpg"} +{"size_bytes": 1781285, "category": "media-conv", "path": "jpg_small/jpg/104001.jpg"} +{"size_bytes": 1440067, "category": "media-conv", "path": "jpg_small/jpg/104202.jpg"} +{"size_bytes": 1517976, "category": "media-conv", "path": "jpg_small/jpg/106202.jpg"} +{"size_bytes": 1437061, "category": "media-conv", "path": "jpg_small/jpg/103501.jpg"} +{"size_bytes": 821882, "category": "media-conv", "path": "jpg_small/jpg/108900.jpg"} +{"size_bytes": 1061639, "category": "media-conv", "path": "jpg_small/jpg/115400.jpg"} +{"size_bytes": 1077349, "category": "media-conv", "path": "jpg_small/jpg/101500.jpg"} +{"size_bytes": 1036063, "category": "media-conv", "path": "jpg_small/jpg/110701.jpg"} +{"size_bytes": 1488111, "category": "media-conv", "path": "jpg_small/jpg/104500.jpg"} +{"size_bytes": 1093885, "category": "media-conv", "path": "jpg_small/jpg/115902.jpg"} +{"size_bytes": 1011137, "category": "media-conv", "path": "jpg_small/jpg/112100.jpg"} +{"size_bytes": 737970, "category": "media-conv", "path": "jpg_small/jpg/101200.jpg"} +{"size_bytes": 1066417, "category": "media-conv", "path": "jpg_small/jpg/119301.jpg"} +{"size_bytes": 1410092, "category": "media-conv", "path": "jpg_small/jpg/102000.jpg"} +{"size_bytes": 731231, "category": "media-conv", "path": "jpg_small/jpg/110802.jpg"} +{"size_bytes": 3689507, "category": "media-conv", "path": "jpg_small/jpg/106701.jpg"} +{"size_bytes": 1127783, "category": "media-conv", "path": "jpg_small/jpg/111002.jpg"} +{"size_bytes": 1996082, "category": "media-conv", "path": "jpg_small/jpg/103101.jpg"} +{"size_bytes": 751310, "category": "media-conv", "path": "jpg_small/jpg/109801.jpg"} +{"size_bytes": 1143784, "category": "media-conv", "path": "jpg_small/jpg/111702.jpg"} +{"size_bytes": 777486, "category": "media-conv", "path": "jpg_small/jpg/109402.jpg"} +{"size_bytes": 3909458, "category": "media-conv", "path": "jpg_small/jpg/100100.jpg"} +{"size_bytes": 1062094, "category": "media-conv", "path": "jpg_small/jpg/117402.jpg"} +{"size_bytes": 1084548, "category": "media-conv", "path": "jpg_small/jpg/115702.jpg"} +{"size_bytes": 1354107, "category": "media-conv", "path": "jpg_small/jpg/105400.jpg"} +{"size_bytes": 1079510, "category": "media-conv", "path": "jpg_small/jpg/113601.jpg"} +{"size_bytes": 1100735, "category": "media-conv", "path": "jpg_small/jpg/117301.jpg"} +{"size_bytes": 1239419, "category": "media-conv", "path": "jpg_small/jpg/104402.jpg"} +{"size_bytes": 1055075, "category": "media-conv", "path": "jpg_small/jpg/101502.jpg"} +{"size_bytes": 2024918, "category": "media-conv", "path": "jpg_small/jpg/107700.jpg"} +{"size_bytes": 1679771, "category": "media-conv", "path": "jpg_small/jpg/105401.jpg"} +{"size_bytes": 1069947, "category": "media-conv", "path": "jpg_small/jpg/119500.jpg"} +{"size_bytes": 3900469, "category": "media-conv", "path": "jpg_small/jpg/107000.jpg"} +{"size_bytes": 1939907, "category": "media-conv", "path": "jpg_small/jpg/103100.jpg"} +{"size_bytes": 1069193, "category": "media-conv", "path": "jpg_small/jpg/115500.jpg"} +{"size_bytes": 733649, "category": "media-conv", "path": "jpg_small/jpg/112002.jpg"} +{"size_bytes": 1052414, "category": "media-conv", "path": "jpg_small/jpg/110000.jpg"} +{"size_bytes": 3856744, "category": "media-conv", "path": "jpg_small/jpg/107801.jpg"} +{"size_bytes": 1095539, "category": "media-conv", "path": "jpg_small/jpg/116600.jpg"} +{"size_bytes": 1299411, "category": "media-conv", "path": "jpg_small/jpg/103002.jpg"} +{"size_bytes": 1208109, "category": "media-conv", "path": "jpg_small/jpg/104201.jpg"} +{"size_bytes": 2174313, "category": "media-conv", "path": "jpg_small/jpg/102303.jpg"} +{"size_bytes": 1353421, "category": "media-conv", "path": "jpg_small/jpg/104601.jpg"} +{"size_bytes": 671183, "category": "media-conv", "path": "jpg_small/jpg/109100.jpg"} +{"size_bytes": 1087049, "category": "media-conv", "path": "jpg_small/jpg/116801.jpg"} +{"size_bytes": 1284708, "category": "media-conv", "path": "jpg_small/jpg/103000.jpg"} +{"size_bytes": 1132911, "category": "media-conv", "path": "jpg_small/jpg/111701.jpg"} +{"size_bytes": 1076555, "category": "media-conv", "path": "jpg_small/jpg/115700.jpg"} +{"size_bytes": 1055056, "category": "media-conv", "path": "jpg_small/jpg/117001.jpg"} +{"size_bytes": 1983886, "category": "media-conv", "path": "jpg_small/jpg/103902.jpg"} +{"size_bytes": 1087343, "category": "media-conv", "path": "jpg_small/jpg/119401.jpg"} +{"size_bytes": 1069003, "category": "media-conv", "path": "jpg_small/jpg/115201.jpg"} +{"size_bytes": 84131, "category": "media-conv", "path": "jpg_small/jpg/107001.jpg"} +{"size_bytes": 1095036, "category": "media-conv", "path": "jpg_small/jpg/113300.jpg"} +{"size_bytes": 1636314, "category": "media-conv", "path": "jpg_small/jpg/103701.jpg"} +{"size_bytes": 1067750, "category": "media-conv", "path": "jpg_small/jpg/112600.jpg"} +{"size_bytes": 1096411, "category": "media-conv", "path": "jpg_small/jpg/113404.jpg"} +{"size_bytes": 1103919, "category": "media-conv", "path": "jpg_small/jpg/108801.jpg"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~92~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~18~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~51~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~62~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~119~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~82~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~117~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~48~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~17~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~44~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~91~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~46~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~83~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~115~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~81~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~78~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~20~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~65~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~75~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~39~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~56~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~46~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~103~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~5~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~40~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~18~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~57~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~85~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~92~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~117~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~95~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~31~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~115~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~112~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~11~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~107~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~63~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~21~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~13~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~24~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~101~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~34~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~44~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~110~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~76~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~84~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~60~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~76~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~78~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~13~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~113~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~52~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~63~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~58~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~86~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~82~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~61~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~70~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~102~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~92~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~13~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~84~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~73~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~106~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~43~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~91~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~32~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~9~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~4~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~11~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~62~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~30~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~74~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~17~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~38~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~39~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~104~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~39~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~107~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~34~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~89~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~113~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~56~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~102~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~48~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~20~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~22~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~81~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~22~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~9~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~66~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~87~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~90~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~79~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~80~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~94~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~83~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~10~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~87~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~42~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~91~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~14~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~96~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~108~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~69~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~93~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~107~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~81~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~37~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~3~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~104~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~31~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~26~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~90~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~105~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~1~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~86~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~33~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~101~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~73~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~107~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~18~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~69~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~13~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~40~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~61~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~68~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~33~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~108~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~96~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~77~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~116~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~22~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~63~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~97~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~50~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~112~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~62~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~35~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~40~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~41~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~38~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~79~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~14~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~19~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~64~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~19~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~118~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~34~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~108~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~35~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~33~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~7~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~36~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~59~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~10~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~1~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~94~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~40~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~99~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~74~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~68~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~49~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~87~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~64~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~5~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~101~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~5~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~37~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~109~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~34~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~27~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~72~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~57~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~6~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~48~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~85~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~80~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~116~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~10~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~100~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~114~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~54~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~23~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~3~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~2~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~7~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~32~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~99~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~29~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~25~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~70~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~94~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~51~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~89~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~75~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~110~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~80~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~23~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~12~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~47~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~88~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~24~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~55~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~7~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~45~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~97~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~21~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~105~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~35~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~45~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~31~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~61~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~45~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~44~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~76~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~77~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~4~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~32~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~104~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~30~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~30~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~118~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~112~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~116~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~111~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~82~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~2~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~47~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~55~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~67~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~88~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~28~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~118~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~27~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~42~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~28~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~106~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~41~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~112~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~36~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~35~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~9~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~86~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~68~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~36~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~116~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~98~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~12~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~70~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~55~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~119~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~4~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~2~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~50~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~93~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~111~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~49~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~105~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~91~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~66~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~103~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~33~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~30~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~26~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~48~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~98~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~66~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~37~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~97~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~50~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~51~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~103~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~95~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~18~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~53~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~92~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~23~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~67~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~95~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~79~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~11~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~113~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~16~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~54~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~69~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~15~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~90~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~26~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~114~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~105~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~29~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~109~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~5~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~41~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~55~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~21~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~62~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~88~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~87~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~42~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~104~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~15~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~52~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~79~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~83~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~1~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~89~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~2~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~89~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~7~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~8~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~81~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~114~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~106~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~24~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~8~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~37~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~102~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~101~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~28~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~31~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~74~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~58~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~8~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~106~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~111~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~29~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~110~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~43~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~54~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~71~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~25~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~84~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~57~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~24~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~113~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~41~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~65~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~83~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~44~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~96~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~53~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~119~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~36~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~21~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~78~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~63~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~100~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~72~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~16~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~59~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~77~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~54~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~111~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~57~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~26~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~99~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~53~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~19~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~59~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~72~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~45~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~3~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~94~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~117~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~20~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~14~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~58~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~95~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~10~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~47~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~49~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~108~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~6~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~76~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~56~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~49~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~1~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~60~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~29~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~64~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~114~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~27~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~6~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~98~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~59~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~86~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~38~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~27~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~20~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~80~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~12~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~38~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~109~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~117~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~6~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~3~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~52~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~93~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~12~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~119~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~82~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~17~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~115~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~88~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~4~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~103~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~78~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~25~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~52~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~61~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~28~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~39~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~75~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~65~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~74~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~118~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~99~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~100~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~69~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~73~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~73~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~25~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~66~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~16~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~93~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~90~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~77~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~50~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~67~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~110~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~68~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~53~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~71~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~70~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~100~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~15~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~32~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~64~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~8~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~96~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~85~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~43~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~115~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~109~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~23~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~65~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~60~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~102~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~19~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~75~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~9~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~72~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~56~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~84~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~98~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~16~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~46~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~15~"} +{"size_bytes": 2146166, "category": "media-conv", "path": "wav_full/file_example_WAV_2MG.wav.~97~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~67~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~60~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~46~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~17~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~51~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~85~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~71~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~71~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~11~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~42~"} +{"size_bytes": 1073218, "category": "media-conv", "path": "wav_full/file_example_WAV_1MG.wav.~22~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~14~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~43~"} +{"size_bytes": 10406738, "category": "media-conv", "path": "wav_full/file_example_WAV_10MG.wav.~47~"} +{"size_bytes": 5226766, "category": "media-conv", "path": "wav_full/file_example_WAV_5MG.wav.~58~"} +{"size_bytes": 14250327, "category": "sklearn", "path": "covertype/samples_py3"} +{"size_bytes": 35847, "category": "sklearn", "path": "covertype/targets_py3"} diff --git a/infrastructure/dynamic_analysis.py b/infrastructure/dynamic_analysis.py new file mode 100755 index 000000000..3a0c272da --- /dev/null +++ b/infrastructure/dynamic_analysis.py @@ -0,0 +1,206 @@ +#!/usr/bin/env python3 + +from typing import Optional +import lzma +from collections import defaultdict +from pathlib import Path +import json +import math +import sys +from dataclasses import dataclass + +from project_root import get_project_root + +def correct_base(path): + return Path(path).is_relative_to('/benchmarks') + +def rebase(path): + return Path(path).relative_to('/benchmarks') + +def is_shell(pid, processes): + a = next(iter(processes[pid].values())) + return len(a.cmdline) > 0 and a.cmdline[0].endswith('sh') + +def get_input_files(record): + s = set() + for file_path, _, _, mode, _ in record.open_files: + known_modes = {'r', 'r+', 'w', 'a'} + assert mode in known_modes, f"unknown mode {mode}" + is_a_script = '.sh' in Path(file_path).suffixes + if mode != 'w' and not is_a_script and correct_base(file_path): + s.add(file_path) + return s + +@dataclass(slots=True) +class MortemEntry: + io_zombie: str + stat_zombie: str + elapsed_secs: str + stat_before: str + stat_after: str + script: str + pid: int + benchmark_experiment_start: str + category: str + input_file: Optional[str] + sc_clk_tck: int + +@dataclass(slots=True) +class LogEntry: + pid: int + parent: int + times: list + log_current_time: str + benchmark_experiment_start: str + cmdline: list[str] + cwd: str + create_time: float + uss: int + num_fds: int + open_files: list + +def read_log_file(path): + parents = defaultdict(lambda: None) + children = defaultdict(set) + processes = defaultdict(list) + with lzma.open(path, 'r') as lines: + for entries in lines: + for data in json.loads(entries): + data = LogEntry(**data) + processes[data.pid].append(data) + children[data.parent].add(data.pid) + parents[data.pid] = data.parent + processes = defaultdict(lambda: None, {pid: {r.log_current_time: r for r in rs} for pid, rs in processes.items()}) + return processes, parents, children + +def get_descendents(pid: int, children: dict[int, set[int]]) -> set[int]: + descendents = set() + stack = [pid] + while len(stack) > 0: + pid = stack.pop() + descendents.add(pid) + stack += children[pid] + return descendents + +@dataclass +class Stat: + utime: int + stime: int + cutime: int + cstime: int + +@dataclass +class PsutilTimes: + user: float + system: float + children_user: float + children_system: float + iowait: float + +def get_stat(stat_file_contents: str, sc_clk_tck: int): + # https://linux.die.net/man/5/proc + stat = stat_file_contents.split() + return Stat( + utime=float(stat[13]) / sc_clk_tck, + stime=float(stat[14]) / sc_clk_tck, + cutime=float(stat[15]) / sc_clk_tck, + cstime=float(stat[16]) / sc_clk_tck, + ) + +@dataclass +class Io: + rchar: int + wchar: int + +def get_io(io_file_contents: str): + io_file_contents = io_file_contents.splitlines() + _, rchar = next(l for l in io_file_contents if l.startswith('rchar')).split() + _, wchar = next(l for l in io_file_contents if l.startswith('wchar')).split() + return Io( + rchar=int(rchar), + wchar=int(wchar), + ) + +def get_desc(pid, processes): + return next(p for p in processes[pid].values()) + +def find_shell_process(pid, processes): + target = next(p for p in processes if get_desc(p, processes).cmdline[1].endswith('io_shell.py')) + all_children = [p for p in processes if get_desc(p, processes).parent == target] + assert len(all_children) == 1, "one bash process" + pid = all_children[0] + assert get_desc(pid, processes).cmdline[0].endswith('sh') + return pid + +def print_statistics(pid, processes, parents, children, mortem): + pid = find_shell_process(pid, processes) + assert is_shell(pid, processes) + descendents = get_descendents(pid, children) + + all_readings = list(processes[pid].keys()) + + stat_zombie = get_stat(mortem.stat_zombie, mortem.sc_clk_tck) + stat_before = get_stat(mortem.stat_before, mortem.sc_clk_tck) + stat_after = get_stat(mortem.stat_after, mortem.sc_clk_tck) + io_zombie = get_io(mortem.io_zombie) + + script = str(rebase(mortem.script)) + user = stat_after.cutime - stat_before.cutime + system = stat_after.cstime - stat_before.cstime + uss = max( + sum(processes[d][r].uss for d in descendents if r in processes[d]) + for r in all_readings + ) + read_chars = io_zombie.rchar + write_chars = io_zombie.wchar + + tis_user = sum(max(PsutilTimes(*r.times).user for r in processes[d].values()) for d in descendents - {pid} if is_shell(d, processes)) + tis_system = sum(max(PsutilTimes(*r.times).system for r in processes[d].values()) for d in descendents - {pid} if is_shell(d, processes)) + tis_user += stat_zombie.utime # we have a more accurate measurement of the first process + tis_system += stat_zombie.stime # we have a more accurate measurement of the first process + + input_files = set(p for d in descendents for r in processes[d].values() for p in get_input_files(r)) + if mortem.input_file is not None: + input_files |= {mortem.input_file} + input_files = list(str(rebase(p)) for p in input_files) + + duration = float(mortem.elapsed_secs) + + start = mortem.benchmark_experiment_start + + category = mortem.category + + data = dict( + script=script, + user_time=user, + system_time=system, + max_unique_set_size=uss, + read_chars=read_chars, + write_chars=write_chars, + user_time_in_shell=tis_user, + system_time_in_shell=tis_system, + all_input_files=input_files, + wall_time=duration, + start_time=start, + category=category, + ) + print(json.dumps(data)) + +if __name__ == '__main__': + root = get_project_root() + process_logs = root / 'infrastructure' / 'target' / 'process-logs' + for mortem_path in process_logs.glob('*.mortem'): + print('processing log', mortem_path.relative_to(root), file=sys.stderr) + mortems = [ + MortemEntry(**json.loads(line)) + for line in mortem_path.read_text().splitlines() + ] + mortems = { + mortem.pid: mortem + for mortem in mortems + } + path = mortem_path.with_suffix('.jsonl.xz') + processes, parents, children = read_log_file(path) + top_level = [pid for pid in processes if parents[parents[pid]] is None] + for pid in top_level: + print_statistics(pid, processes, parents, children, mortem=mortems[pid]) diff --git a/infrastructure/get_cyclomatic.py b/infrastructure/get_cyclomatic.py index 0b5e292b3..7b61722f4 100644 --- a/infrastructure/get_cyclomatic.py +++ b/infrastructure/get_cyclomatic.py @@ -23,7 +23,7 @@ file, _func, _lineno, _lloc, ccn, _lines, _comment, _blank = line.split(',') file = json.loads(file) file = Path(file).relative_to(root) - datas[file].append((ccn)) + datas[file].append((ccn,)) for file, datas in datas.items(): ccn = sum(float(ccn) for ccn, in datas) diff --git a/infrastructure/io_shell.py b/infrastructure/io_shell.py new file mode 100755 index 000000000..0aad85439 --- /dev/null +++ b/infrastructure/io_shell.py @@ -0,0 +1,44 @@ +#!/usr/bin/env python3 + +from pathlib import Path +from subprocess import Popen +from time import perf_counter, sleep +from os import getpid, environ +from sys import argv + +# need zombie io from procfs +# why? because it will include exactly the io the process rchar and wchar + +# need zombie stat from procfs +# why? because it will include user time and system time (exactly time in shell) + +# need stat from procfs before and after process exits, +# why? because it will include cutime and cstime (subtract to get total user and system time) + +stat_path = Path('/proc', str(getpid()), 'stat') + +before_stat = stat_path.read_bytes() +before_seconds = perf_counter() + +# must execute actual benchmark script here because we use its procfs utime and stime for the time in shell +with Popen(argv[1:]) as proc: + pid = str(proc.pid) + io_zombie_path = Path('/proc', pid, 'io') + stat_zombie_path = Path('/proc', pid, 'stat') + while True: + # the last time these are set, they are collected from a zombie (probably?) + # we need admin privilages to collect the data from a zombie + io_zombie = io_zombie_path.read_bytes() + stat_zombie = stat_zombie_path.read_bytes() + if proc.poll() is not None: + break + sleep(1e-1) # assume process exits during this call +after_seconds = perf_counter() # may miss up to 0.1 seconds +after_stat = stat_path.read_bytes() + +elapsed = after_seconds - before_seconds +Path(environ['BENCHMARK_ELAPSED_SECS']).write_text(str(elapsed)) +Path(environ['BENCHMARK_IO_ZOMBIE']).write_bytes(io_zombie) +Path(environ['BENCHMARK_STAT_ZOMBIE']).write_bytes(stat_zombie) +Path(environ['BENCHMARK_STAT_BEFORE']).write_bytes(before_stat) +Path(environ['BENCHMARK_STAT_AFTER']).write_bytes(after_stat) diff --git a/infrastructure/run_dynamic.py b/infrastructure/run_dynamic.py new file mode 100755 index 000000000..1c76a3de7 --- /dev/null +++ b/infrastructure/run_dynamic.py @@ -0,0 +1,57 @@ +#!/usr/bin/env python3 + +import lzma +import tempfile +import argparse +from pathlib import Path +from typing import Optional +import json +from subprocess import check_output, run +from collections import Counter +import os +from datetime import datetime, timezone + +from all_scripts import get_all_scripts +from syntax_analysis import parse_shell_script, count_nodes +from project_root import get_project_root + +def get_parser(): + parser = argparse.ArgumentParser( + prog='run_dynamic', + description='runs the dynamic analysis', + ) + parser.add_argument('bench', type=str) + parser.add_argument('forward', nargs=argparse.REMAINDER, help='pass these arguments to run.sh') + return parser + +def get_environment(root: Path, start_time: str, bench: str, data_log: str, mortem_log: str): + env = os.environ.copy() + dynamic_shell = root / 'infrastructure' / 'run_dynamic_shell.py' + io_shell = root / 'infrastructure' / 'io_shell.py' + env['BENCHMARK_IO_SHELL'] = str(io_shell) + env['BENCHMARK_SHELL'] = str(dynamic_shell) + env['BENCHMARK_EXPERIMENT_START'] = start_time + env['BENCHMARK_PROCESS_LOG'] = data_log + env['BENCHMARK_MORTEM_LOG'] = mortem_log + return env + +if __name__ == '__main__': + parser = get_parser() + args = parser.parse_args() + root = get_project_root() + bench = args.bench + start_time = datetime.now(timezone.utc).isoformat() + bench_id = ( + f'{start_time}' + f'-' + f'{str(bench).replace("/", "%")}' + ) + with tempfile.NamedTemporaryFile() as data_log: + data_log = data_log.name + mortem_log = root / 'infrastructure' / 'target' / 'process-logs' / f'{bench_id}.mortem' + env = get_environment(root=root, start_time=start_time, bench=bench, data_log=data_log, mortem_log=mortem_log) + # write to an uncompressed file because it is faster + run([root / bench / 'run.sh', *args.forward], env=env, cwd=root / bench) + compressed_data_log = root / 'infrastructure' / 'target' / 'process-logs' / f'{bench_id}.jsonl.xz' + with compressed_data_log.open('w') as stdout: + run(['xz', '-7e', '-T0', '-c', data_log], stdout=stdout) diff --git a/infrastructure/run_dynamic_shell.py b/infrastructure/run_dynamic_shell.py new file mode 100755 index 000000000..a7c04d811 --- /dev/null +++ b/infrastructure/run_dynamic_shell.py @@ -0,0 +1,125 @@ +#!/usr/bin/env python3 + +from tempfile import TemporaryDirectory +import os +from datetime import datetime, timezone +from itertools import chain +import time +import psutil +import signal +from pathlib import Path +from typing import Optional +import json +from subprocess import run +import sys +import asyncio + +from all_scripts import get_all_scripts +from syntax_analysis import parse_shell_script, count_nodes +from project_root import get_project_root + +def get_data_json( + p: psutil.Process, + log_current_time: str, + benchmark_experiment_start: str, +) -> str: + parent_pid = p.ppid() + mem = p.memory_full_info() # slow, we need uss + return dict( + pid=p.pid, + parent=parent_pid, + benchmark_experiment_start=benchmark_experiment_start, # identifies top level script run + log_current_time= log_current_time, # identifies log + cwd= p.cwd(), + times=list(p.cpu_times()), + cmdline= p.cmdline(), + create_time= p.create_time(), + uss= mem.uss, + num_fds= p.num_fds(), + open_files= p.open_files(), + ) + +def write_process_data(parent: int, data_log, benchmark_experiment_start): + parent = psutil.Process(parent) + log_current_time = datetime.now(timezone.utc).isoformat() + procs = [parent, *parent.children(recursive=True)] + logs = [] + for p in procs: + try: # exception most likely that we can't read procfs because process doesn't exist. collect what we can. + data = get_data_json(p, log_current_time, benchmark_experiment_start) + logs.append(data) + except psutil.NoSuchProcess: # most likely + pass + except Exception as e: + print(e, type(e), file=sys.stderr) + continue + data_log.append(logs) + +async def collect_process_data(parent, data_log, benchmark_experiment_start: str): + write_process_data(parent, data_log, benchmark_experiment_start) + while True: + await asyncio.sleep(1e-2) + try: + write_process_data(parent, data_log, benchmark_experiment_start) + except psutil.NoSuchProcess: # most likely + pass + except Exception as e: + print(e, type(e), file=sys.stderr) + +io_shell_data_items = ['io_zombie', 'stat_zombie', 'elapsed_secs', 'stat_before', 'stat_after'] +def get_environment(io_shell_data_dir: Path): + env = os.environ.copy() + for item in io_shell_data_items: + env[f'BENCHMARK_{item.upper()}'] = str(io_shell_data_dir / item) + return env + +def get_io_shell_data(io_shell_data_dir: Path): + return {item: (io_shell_data_dir / item).read_text() for item in io_shell_data_items} + +async def main(): + root = Path(get_project_root()) + program = sys.argv[1:] + io_shell = Path(os.environ['BENCHMARK_IO_SHELL']) + category = os.environ['BENCHMARK_CATEGORY'] + # BENCHMARK_INPUT_FILE is optional: it is not trivial to get it for all benchmarks + input_file = os.environ.get('BENCHMARK_INPUT_FILE') + script = os.environ['BENCHMARK_SCRIPT'] + benchmark_experiment_start = os.environ['BENCHMARK_EXPERIMENT_START'] + data_log = Path(os.environ['BENCHMARK_PROCESS_LOG']) + mortem_log = Path(os.environ['BENCHMARK_MORTEM_LOG']) + benchmark_script = Path(os.environ['BENCHMARK_SCRIPT']) + data_log_list = [] + with TemporaryDirectory() as io_shell_data_dir: + io_shell_data_dir = Path(io_shell_data_dir) + env = get_environment(io_shell_data_dir) + process = await asyncio.create_subprocess_exec(io_shell, *program, env=env) + pid = process.pid + process_data_task = asyncio.create_task(collect_process_data( + pid, + data_log_list, + benchmark_experiment_start, + )) + await process.wait() + process_data_task.cancel() + try: + await process_data_task + except asyncio.exceptions.CancelledError: + pass + log_entry = get_io_shell_data(io_shell_data_dir) + log_entry |= dict( + script=script, + pid=pid, + benchmark_experiment_start=benchmark_experiment_start, + category=category, + input_file=input_file, + sc_clk_tck=os.sysconf('SC_CLK_TCK'), + ) + with mortem_log.open('a') as mortem_log: + json.dump(log_entry, mortem_log) + print(file=mortem_log) + with data_log.open('a') as data_log: + for log_entry in data_log_list: + json.dump(log_entry, data_log) + print(file=data_log) + +asyncio.run(main()) diff --git a/infrastructure/scripts_to_benchmark.py b/infrastructure/scripts_to_benchmark.py deleted file mode 100755 index 81e3d4e7c..000000000 --- a/infrastructure/scripts_to_benchmark.py +++ /dev/null @@ -1,15 +0,0 @@ -#!/usr/bin/env python3 - -from pathlib import Path -from typing import Optional -import json -from subprocess import check_output - -from all_scripts import get_all_scripts -from syntax_analysis import parse_shell_script, count_nodes -from project_root import get_project_root - -root = get_project_root() -for benchmark_name, scripts in get_all_scripts().items(): - for script in scripts: - print(script.relative_to(root), benchmark_name, sep=',') diff --git a/infrastructure/standards/100-files/README.md b/infrastructure/standards/100-files/README.md new file mode 100644 index 000000000..953f050b7 --- /dev/null +++ b/infrastructure/standards/100-files/README.md @@ -0,0 +1,3 @@ +# 100-files + +Opens 100 `.txt` files, and keeps them open for 0.1 seconds each. diff --git a/infrastructure/standards/100-files/cleanup.sh b/infrastructure/standards/100-files/cleanup.sh new file mode 100755 index 000000000..36c40dbb2 --- /dev/null +++ b/infrastructure/standards/100-files/cleanup.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +inputs_dir="$(dirname "$0")/inputs" + +rm -r "$inputs_dir" diff --git a/infrastructure/standards/100-files/deps.sh b/infrastructure/standards/100-files/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/100-files/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/100-files/input.sh b/infrastructure/standards/100-files/input.sh new file mode 100755 index 000000000..518524c85 --- /dev/null +++ b/infrastructure/standards/100-files/input.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +inputs_dir="$(dirname "$0")/inputs" + +mkdir -p "$inputs_dir" + +for i in {0..99}; do + echo $i > "$inputs_dir/$(printf "%03d" $i).txt" +done diff --git a/infrastructure/standards/100-files/inputs/000.txt b/infrastructure/standards/100-files/inputs/000.txt new file mode 100644 index 000000000..573541ac9 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/000.txt @@ -0,0 +1 @@ +0 diff --git a/infrastructure/standards/100-files/inputs/001.txt b/infrastructure/standards/100-files/inputs/001.txt new file mode 100644 index 000000000..d00491fd7 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/001.txt @@ -0,0 +1 @@ +1 diff --git a/infrastructure/standards/100-files/inputs/002.txt b/infrastructure/standards/100-files/inputs/002.txt new file mode 100644 index 000000000..0cfbf0888 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/002.txt @@ -0,0 +1 @@ +2 diff --git a/infrastructure/standards/100-files/inputs/003.txt b/infrastructure/standards/100-files/inputs/003.txt new file mode 100644 index 000000000..00750edc0 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/003.txt @@ -0,0 +1 @@ +3 diff --git a/infrastructure/standards/100-files/inputs/004.txt b/infrastructure/standards/100-files/inputs/004.txt new file mode 100644 index 000000000..b8626c4cf --- /dev/null +++ b/infrastructure/standards/100-files/inputs/004.txt @@ -0,0 +1 @@ +4 diff --git a/infrastructure/standards/100-files/inputs/005.txt b/infrastructure/standards/100-files/inputs/005.txt new file mode 100644 index 000000000..7ed6ff82d --- /dev/null +++ b/infrastructure/standards/100-files/inputs/005.txt @@ -0,0 +1 @@ +5 diff --git a/infrastructure/standards/100-files/inputs/006.txt b/infrastructure/standards/100-files/inputs/006.txt new file mode 100644 index 000000000..1e8b31496 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/006.txt @@ -0,0 +1 @@ +6 diff --git a/infrastructure/standards/100-files/inputs/007.txt b/infrastructure/standards/100-files/inputs/007.txt new file mode 100644 index 000000000..7f8f011eb --- /dev/null +++ b/infrastructure/standards/100-files/inputs/007.txt @@ -0,0 +1 @@ +7 diff --git a/infrastructure/standards/100-files/inputs/008.txt b/infrastructure/standards/100-files/inputs/008.txt new file mode 100644 index 000000000..45a4fb75d --- /dev/null +++ b/infrastructure/standards/100-files/inputs/008.txt @@ -0,0 +1 @@ +8 diff --git a/infrastructure/standards/100-files/inputs/009.txt b/infrastructure/standards/100-files/inputs/009.txt new file mode 100644 index 000000000..ec635144f --- /dev/null +++ b/infrastructure/standards/100-files/inputs/009.txt @@ -0,0 +1 @@ +9 diff --git a/infrastructure/standards/100-files/inputs/010.txt b/infrastructure/standards/100-files/inputs/010.txt new file mode 100644 index 000000000..f599e28b8 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/010.txt @@ -0,0 +1 @@ +10 diff --git a/infrastructure/standards/100-files/inputs/011.txt b/infrastructure/standards/100-files/inputs/011.txt new file mode 100644 index 000000000..b4de39476 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/011.txt @@ -0,0 +1 @@ +11 diff --git a/infrastructure/standards/100-files/inputs/012.txt b/infrastructure/standards/100-files/inputs/012.txt new file mode 100644 index 000000000..48082f72f --- /dev/null +++ b/infrastructure/standards/100-files/inputs/012.txt @@ -0,0 +1 @@ +12 diff --git a/infrastructure/standards/100-files/inputs/013.txt b/infrastructure/standards/100-files/inputs/013.txt new file mode 100644 index 000000000..b1bd38b62 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/013.txt @@ -0,0 +1 @@ +13 diff --git a/infrastructure/standards/100-files/inputs/014.txt b/infrastructure/standards/100-files/inputs/014.txt new file mode 100644 index 000000000..8351c1939 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/014.txt @@ -0,0 +1 @@ +14 diff --git a/infrastructure/standards/100-files/inputs/015.txt b/infrastructure/standards/100-files/inputs/015.txt new file mode 100644 index 000000000..60d3b2f4a --- /dev/null +++ b/infrastructure/standards/100-files/inputs/015.txt @@ -0,0 +1 @@ +15 diff --git a/infrastructure/standards/100-files/inputs/016.txt b/infrastructure/standards/100-files/inputs/016.txt new file mode 100644 index 000000000..b6a7d89c6 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/016.txt @@ -0,0 +1 @@ +16 diff --git a/infrastructure/standards/100-files/inputs/017.txt b/infrastructure/standards/100-files/inputs/017.txt new file mode 100644 index 000000000..98d9bcb75 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/017.txt @@ -0,0 +1 @@ +17 diff --git a/infrastructure/standards/100-files/inputs/018.txt b/infrastructure/standards/100-files/inputs/018.txt new file mode 100644 index 000000000..3c032078a --- /dev/null +++ b/infrastructure/standards/100-files/inputs/018.txt @@ -0,0 +1 @@ +18 diff --git a/infrastructure/standards/100-files/inputs/019.txt b/infrastructure/standards/100-files/inputs/019.txt new file mode 100644 index 000000000..d6b24041c --- /dev/null +++ b/infrastructure/standards/100-files/inputs/019.txt @@ -0,0 +1 @@ +19 diff --git a/infrastructure/standards/100-files/inputs/020.txt b/infrastructure/standards/100-files/inputs/020.txt new file mode 100644 index 000000000..209e3ef4b --- /dev/null +++ b/infrastructure/standards/100-files/inputs/020.txt @@ -0,0 +1 @@ +20 diff --git a/infrastructure/standards/100-files/inputs/021.txt b/infrastructure/standards/100-files/inputs/021.txt new file mode 100644 index 000000000..aabe6ec39 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/021.txt @@ -0,0 +1 @@ +21 diff --git a/infrastructure/standards/100-files/inputs/022.txt b/infrastructure/standards/100-files/inputs/022.txt new file mode 100644 index 000000000..2bd5a0a98 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/022.txt @@ -0,0 +1 @@ +22 diff --git a/infrastructure/standards/100-files/inputs/023.txt b/infrastructure/standards/100-files/inputs/023.txt new file mode 100644 index 000000000..409940768 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/023.txt @@ -0,0 +1 @@ +23 diff --git a/infrastructure/standards/100-files/inputs/024.txt b/infrastructure/standards/100-files/inputs/024.txt new file mode 100644 index 000000000..a45fd52cc --- /dev/null +++ b/infrastructure/standards/100-files/inputs/024.txt @@ -0,0 +1 @@ +24 diff --git a/infrastructure/standards/100-files/inputs/025.txt b/infrastructure/standards/100-files/inputs/025.txt new file mode 100644 index 000000000..7273c0fa8 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/025.txt @@ -0,0 +1 @@ +25 diff --git a/infrastructure/standards/100-files/inputs/026.txt b/infrastructure/standards/100-files/inputs/026.txt new file mode 100644 index 000000000..6f4247a62 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/026.txt @@ -0,0 +1 @@ +26 diff --git a/infrastructure/standards/100-files/inputs/027.txt b/infrastructure/standards/100-files/inputs/027.txt new file mode 100644 index 000000000..f64f5d8d8 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/027.txt @@ -0,0 +1 @@ +27 diff --git a/infrastructure/standards/100-files/inputs/028.txt b/infrastructure/standards/100-files/inputs/028.txt new file mode 100644 index 000000000..9902f1784 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/028.txt @@ -0,0 +1 @@ +28 diff --git a/infrastructure/standards/100-files/inputs/029.txt b/infrastructure/standards/100-files/inputs/029.txt new file mode 100644 index 000000000..f04c001f3 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/029.txt @@ -0,0 +1 @@ +29 diff --git a/infrastructure/standards/100-files/inputs/030.txt b/infrastructure/standards/100-files/inputs/030.txt new file mode 100644 index 000000000..64bb6b746 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/030.txt @@ -0,0 +1 @@ +30 diff --git a/infrastructure/standards/100-files/inputs/031.txt b/infrastructure/standards/100-files/inputs/031.txt new file mode 100644 index 000000000..e85087aff --- /dev/null +++ b/infrastructure/standards/100-files/inputs/031.txt @@ -0,0 +1 @@ +31 diff --git a/infrastructure/standards/100-files/inputs/032.txt b/infrastructure/standards/100-files/inputs/032.txt new file mode 100644 index 000000000..f5c89552b --- /dev/null +++ b/infrastructure/standards/100-files/inputs/032.txt @@ -0,0 +1 @@ +32 diff --git a/infrastructure/standards/100-files/inputs/033.txt b/infrastructure/standards/100-files/inputs/033.txt new file mode 100644 index 000000000..bb95160cb --- /dev/null +++ b/infrastructure/standards/100-files/inputs/033.txt @@ -0,0 +1 @@ +33 diff --git a/infrastructure/standards/100-files/inputs/034.txt b/infrastructure/standards/100-files/inputs/034.txt new file mode 100644 index 000000000..a78736459 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/034.txt @@ -0,0 +1 @@ +34 diff --git a/infrastructure/standards/100-files/inputs/035.txt b/infrastructure/standards/100-files/inputs/035.txt new file mode 100644 index 000000000..8f92bfdd4 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/035.txt @@ -0,0 +1 @@ +35 diff --git a/infrastructure/standards/100-files/inputs/036.txt b/infrastructure/standards/100-files/inputs/036.txt new file mode 100644 index 000000000..7facc8993 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/036.txt @@ -0,0 +1 @@ +36 diff --git a/infrastructure/standards/100-files/inputs/037.txt b/infrastructure/standards/100-files/inputs/037.txt new file mode 100644 index 000000000..81b5c5d06 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/037.txt @@ -0,0 +1 @@ +37 diff --git a/infrastructure/standards/100-files/inputs/038.txt b/infrastructure/standards/100-files/inputs/038.txt new file mode 100644 index 000000000..e522732c7 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/038.txt @@ -0,0 +1 @@ +38 diff --git a/infrastructure/standards/100-files/inputs/039.txt b/infrastructure/standards/100-files/inputs/039.txt new file mode 100644 index 000000000..a2720097d --- /dev/null +++ b/infrastructure/standards/100-files/inputs/039.txt @@ -0,0 +1 @@ +39 diff --git a/infrastructure/standards/100-files/inputs/040.txt b/infrastructure/standards/100-files/inputs/040.txt new file mode 100644 index 000000000..425151f3a --- /dev/null +++ b/infrastructure/standards/100-files/inputs/040.txt @@ -0,0 +1 @@ +40 diff --git a/infrastructure/standards/100-files/inputs/041.txt b/infrastructure/standards/100-files/inputs/041.txt new file mode 100644 index 000000000..87523dd7a --- /dev/null +++ b/infrastructure/standards/100-files/inputs/041.txt @@ -0,0 +1 @@ +41 diff --git a/infrastructure/standards/100-files/inputs/042.txt b/infrastructure/standards/100-files/inputs/042.txt new file mode 100644 index 000000000..d81cc0710 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/042.txt @@ -0,0 +1 @@ +42 diff --git a/infrastructure/standards/100-files/inputs/043.txt b/infrastructure/standards/100-files/inputs/043.txt new file mode 100644 index 000000000..920a13966 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/043.txt @@ -0,0 +1 @@ +43 diff --git a/infrastructure/standards/100-files/inputs/044.txt b/infrastructure/standards/100-files/inputs/044.txt new file mode 100644 index 000000000..c739b42c4 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/044.txt @@ -0,0 +1 @@ +44 diff --git a/infrastructure/standards/100-files/inputs/045.txt b/infrastructure/standards/100-files/inputs/045.txt new file mode 100644 index 000000000..ea90ee319 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/045.txt @@ -0,0 +1 @@ +45 diff --git a/infrastructure/standards/100-files/inputs/046.txt b/infrastructure/standards/100-files/inputs/046.txt new file mode 100644 index 000000000..9e5feb525 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/046.txt @@ -0,0 +1 @@ +46 diff --git a/infrastructure/standards/100-files/inputs/047.txt b/infrastructure/standards/100-files/inputs/047.txt new file mode 100644 index 000000000..abac1ea7b --- /dev/null +++ b/infrastructure/standards/100-files/inputs/047.txt @@ -0,0 +1 @@ +47 diff --git a/infrastructure/standards/100-files/inputs/048.txt b/infrastructure/standards/100-files/inputs/048.txt new file mode 100644 index 000000000..21e72e8ac --- /dev/null +++ b/infrastructure/standards/100-files/inputs/048.txt @@ -0,0 +1 @@ +48 diff --git a/infrastructure/standards/100-files/inputs/049.txt b/infrastructure/standards/100-files/inputs/049.txt new file mode 100644 index 000000000..95f9650f0 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/049.txt @@ -0,0 +1 @@ +49 diff --git a/infrastructure/standards/100-files/inputs/050.txt b/infrastructure/standards/100-files/inputs/050.txt new file mode 100644 index 000000000..e373ee695 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/050.txt @@ -0,0 +1 @@ +50 diff --git a/infrastructure/standards/100-files/inputs/051.txt b/infrastructure/standards/100-files/inputs/051.txt new file mode 100644 index 000000000..82cced27d --- /dev/null +++ b/infrastructure/standards/100-files/inputs/051.txt @@ -0,0 +1 @@ +51 diff --git a/infrastructure/standards/100-files/inputs/052.txt b/infrastructure/standards/100-files/inputs/052.txt new file mode 100644 index 000000000..0691f67b2 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/052.txt @@ -0,0 +1 @@ +52 diff --git a/infrastructure/standards/100-files/inputs/053.txt b/infrastructure/standards/100-files/inputs/053.txt new file mode 100644 index 000000000..59343b09e --- /dev/null +++ b/infrastructure/standards/100-files/inputs/053.txt @@ -0,0 +1 @@ +53 diff --git a/infrastructure/standards/100-files/inputs/054.txt b/infrastructure/standards/100-files/inputs/054.txt new file mode 100644 index 000000000..fb1e7bc86 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/054.txt @@ -0,0 +1 @@ +54 diff --git a/infrastructure/standards/100-files/inputs/055.txt b/infrastructure/standards/100-files/inputs/055.txt new file mode 100644 index 000000000..c3f407c09 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/055.txt @@ -0,0 +1 @@ +55 diff --git a/infrastructure/standards/100-files/inputs/056.txt b/infrastructure/standards/100-files/inputs/056.txt new file mode 100644 index 000000000..f6b91e0e1 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/056.txt @@ -0,0 +1 @@ +56 diff --git a/infrastructure/standards/100-files/inputs/057.txt b/infrastructure/standards/100-files/inputs/057.txt new file mode 100644 index 000000000..e1617e842 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/057.txt @@ -0,0 +1 @@ +57 diff --git a/infrastructure/standards/100-files/inputs/058.txt b/infrastructure/standards/100-files/inputs/058.txt new file mode 100644 index 000000000..8c61d23e1 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/058.txt @@ -0,0 +1 @@ +58 diff --git a/infrastructure/standards/100-files/inputs/059.txt b/infrastructure/standards/100-files/inputs/059.txt new file mode 100644 index 000000000..04f9fe460 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/059.txt @@ -0,0 +1 @@ +59 diff --git a/infrastructure/standards/100-files/inputs/060.txt b/infrastructure/standards/100-files/inputs/060.txt new file mode 100644 index 000000000..abdfb053e --- /dev/null +++ b/infrastructure/standards/100-files/inputs/060.txt @@ -0,0 +1 @@ +60 diff --git a/infrastructure/standards/100-files/inputs/061.txt b/infrastructure/standards/100-files/inputs/061.txt new file mode 100644 index 000000000..b1e7d265f --- /dev/null +++ b/infrastructure/standards/100-files/inputs/061.txt @@ -0,0 +1 @@ +61 diff --git a/infrastructure/standards/100-files/inputs/062.txt b/infrastructure/standards/100-files/inputs/062.txt new file mode 100644 index 000000000..a8fa06e1b --- /dev/null +++ b/infrastructure/standards/100-files/inputs/062.txt @@ -0,0 +1 @@ +62 diff --git a/infrastructure/standards/100-files/inputs/063.txt b/infrastructure/standards/100-files/inputs/063.txt new file mode 100644 index 000000000..4b9026d8e --- /dev/null +++ b/infrastructure/standards/100-files/inputs/063.txt @@ -0,0 +1 @@ +63 diff --git a/infrastructure/standards/100-files/inputs/064.txt b/infrastructure/standards/100-files/inputs/064.txt new file mode 100644 index 000000000..900731ffd --- /dev/null +++ b/infrastructure/standards/100-files/inputs/064.txt @@ -0,0 +1 @@ +64 diff --git a/infrastructure/standards/100-files/inputs/065.txt b/infrastructure/standards/100-files/inputs/065.txt new file mode 100644 index 000000000..1479e19b5 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/065.txt @@ -0,0 +1 @@ +65 diff --git a/infrastructure/standards/100-files/inputs/066.txt b/infrastructure/standards/100-files/inputs/066.txt new file mode 100644 index 000000000..69a893aa3 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/066.txt @@ -0,0 +1 @@ +66 diff --git a/infrastructure/standards/100-files/inputs/067.txt b/infrastructure/standards/100-files/inputs/067.txt new file mode 100644 index 000000000..3fdcd7c44 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/067.txt @@ -0,0 +1 @@ +67 diff --git a/infrastructure/standards/100-files/inputs/068.txt b/infrastructure/standards/100-files/inputs/068.txt new file mode 100644 index 000000000..38b10c1b2 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/068.txt @@ -0,0 +1 @@ +68 diff --git a/infrastructure/standards/100-files/inputs/069.txt b/infrastructure/standards/100-files/inputs/069.txt new file mode 100644 index 000000000..b5489e5e5 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/069.txt @@ -0,0 +1 @@ +69 diff --git a/infrastructure/standards/100-files/inputs/070.txt b/infrastructure/standards/100-files/inputs/070.txt new file mode 100644 index 000000000..2bbd69c2e --- /dev/null +++ b/infrastructure/standards/100-files/inputs/070.txt @@ -0,0 +1 @@ +70 diff --git a/infrastructure/standards/100-files/inputs/071.txt b/infrastructure/standards/100-files/inputs/071.txt new file mode 100644 index 000000000..39f5b6931 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/071.txt @@ -0,0 +1 @@ +71 diff --git a/infrastructure/standards/100-files/inputs/072.txt b/infrastructure/standards/100-files/inputs/072.txt new file mode 100644 index 000000000..ea70ce013 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/072.txt @@ -0,0 +1 @@ +72 diff --git a/infrastructure/standards/100-files/inputs/073.txt b/infrastructure/standards/100-files/inputs/073.txt new file mode 100644 index 000000000..d69c74c8b --- /dev/null +++ b/infrastructure/standards/100-files/inputs/073.txt @@ -0,0 +1 @@ +73 diff --git a/infrastructure/standards/100-files/inputs/074.txt b/infrastructure/standards/100-files/inputs/074.txt new file mode 100644 index 000000000..fff0a2476 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/074.txt @@ -0,0 +1 @@ +74 diff --git a/infrastructure/standards/100-files/inputs/075.txt b/infrastructure/standards/100-files/inputs/075.txt new file mode 100644 index 000000000..78eb67cee --- /dev/null +++ b/infrastructure/standards/100-files/inputs/075.txt @@ -0,0 +1 @@ +75 diff --git a/infrastructure/standards/100-files/inputs/076.txt b/infrastructure/standards/100-files/inputs/076.txt new file mode 100644 index 000000000..dd475631b --- /dev/null +++ b/infrastructure/standards/100-files/inputs/076.txt @@ -0,0 +1 @@ +76 diff --git a/infrastructure/standards/100-files/inputs/077.txt b/infrastructure/standards/100-files/inputs/077.txt new file mode 100644 index 000000000..987e7ca9a --- /dev/null +++ b/infrastructure/standards/100-files/inputs/077.txt @@ -0,0 +1 @@ +77 diff --git a/infrastructure/standards/100-files/inputs/078.txt b/infrastructure/standards/100-files/inputs/078.txt new file mode 100644 index 000000000..8e14edce9 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/078.txt @@ -0,0 +1 @@ +78 diff --git a/infrastructure/standards/100-files/inputs/079.txt b/infrastructure/standards/100-files/inputs/079.txt new file mode 100644 index 000000000..85322d0b5 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/079.txt @@ -0,0 +1 @@ +79 diff --git a/infrastructure/standards/100-files/inputs/080.txt b/infrastructure/standards/100-files/inputs/080.txt new file mode 100644 index 000000000..d15a2cc44 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/080.txt @@ -0,0 +1 @@ +80 diff --git a/infrastructure/standards/100-files/inputs/081.txt b/infrastructure/standards/100-files/inputs/081.txt new file mode 100644 index 000000000..d88e31369 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/081.txt @@ -0,0 +1 @@ +81 diff --git a/infrastructure/standards/100-files/inputs/082.txt b/infrastructure/standards/100-files/inputs/082.txt new file mode 100644 index 000000000..dde92ddc1 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/082.txt @@ -0,0 +1 @@ +82 diff --git a/infrastructure/standards/100-files/inputs/083.txt b/infrastructure/standards/100-files/inputs/083.txt new file mode 100644 index 000000000..76a8b2b70 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/083.txt @@ -0,0 +1 @@ +83 diff --git a/infrastructure/standards/100-files/inputs/084.txt b/infrastructure/standards/100-files/inputs/084.txt new file mode 100644 index 000000000..871727de1 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/084.txt @@ -0,0 +1 @@ +84 diff --git a/infrastructure/standards/100-files/inputs/085.txt b/infrastructure/standards/100-files/inputs/085.txt new file mode 100644 index 000000000..a862eb844 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/085.txt @@ -0,0 +1 @@ +85 diff --git a/infrastructure/standards/100-files/inputs/086.txt b/infrastructure/standards/100-files/inputs/086.txt new file mode 100644 index 000000000..8cf5c1a22 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/086.txt @@ -0,0 +1 @@ +86 diff --git a/infrastructure/standards/100-files/inputs/087.txt b/infrastructure/standards/100-files/inputs/087.txt new file mode 100644 index 000000000..84df3526d --- /dev/null +++ b/infrastructure/standards/100-files/inputs/087.txt @@ -0,0 +1 @@ +87 diff --git a/infrastructure/standards/100-files/inputs/088.txt b/infrastructure/standards/100-files/inputs/088.txt new file mode 100644 index 000000000..d22307c42 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/088.txt @@ -0,0 +1 @@ +88 diff --git a/infrastructure/standards/100-files/inputs/089.txt b/infrastructure/standards/100-files/inputs/089.txt new file mode 100644 index 000000000..8643cf6de --- /dev/null +++ b/infrastructure/standards/100-files/inputs/089.txt @@ -0,0 +1 @@ +89 diff --git a/infrastructure/standards/100-files/inputs/090.txt b/infrastructure/standards/100-files/inputs/090.txt new file mode 100644 index 000000000..d61f00d8c --- /dev/null +++ b/infrastructure/standards/100-files/inputs/090.txt @@ -0,0 +1 @@ +90 diff --git a/infrastructure/standards/100-files/inputs/091.txt b/infrastructure/standards/100-files/inputs/091.txt new file mode 100644 index 000000000..7fe4e495f --- /dev/null +++ b/infrastructure/standards/100-files/inputs/091.txt @@ -0,0 +1 @@ +91 diff --git a/infrastructure/standards/100-files/inputs/092.txt b/infrastructure/standards/100-files/inputs/092.txt new file mode 100644 index 000000000..cd5b02527 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/092.txt @@ -0,0 +1 @@ +92 diff --git a/infrastructure/standards/100-files/inputs/093.txt b/infrastructure/standards/100-files/inputs/093.txt new file mode 100644 index 000000000..c67f579c9 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/093.txt @@ -0,0 +1 @@ +93 diff --git a/infrastructure/standards/100-files/inputs/094.txt b/infrastructure/standards/100-files/inputs/094.txt new file mode 100644 index 000000000..49541f721 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/094.txt @@ -0,0 +1 @@ +94 diff --git a/infrastructure/standards/100-files/inputs/095.txt b/infrastructure/standards/100-files/inputs/095.txt new file mode 100644 index 000000000..5595fa46c --- /dev/null +++ b/infrastructure/standards/100-files/inputs/095.txt @@ -0,0 +1 @@ +95 diff --git a/infrastructure/standards/100-files/inputs/096.txt b/infrastructure/standards/100-files/inputs/096.txt new file mode 100644 index 000000000..f906e1845 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/096.txt @@ -0,0 +1 @@ +96 diff --git a/infrastructure/standards/100-files/inputs/097.txt b/infrastructure/standards/100-files/inputs/097.txt new file mode 100644 index 000000000..c17e934b5 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/097.txt @@ -0,0 +1 @@ +97 diff --git a/infrastructure/standards/100-files/inputs/098.txt b/infrastructure/standards/100-files/inputs/098.txt new file mode 100644 index 000000000..6529ff889 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/098.txt @@ -0,0 +1 @@ +98 diff --git a/infrastructure/standards/100-files/inputs/099.txt b/infrastructure/standards/100-files/inputs/099.txt new file mode 100644 index 000000000..3ad5abd03 --- /dev/null +++ b/infrastructure/standards/100-files/inputs/099.txt @@ -0,0 +1 @@ +99 diff --git a/infrastructure/standards/100-files/run.sh b/infrastructure/standards/100-files/run.sh new file mode 100755 index 000000000..e5af92891 --- /dev/null +++ b/infrastructure/standards/100-files/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/100-files" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/100-files/scripts/main.sh b/infrastructure/standards/100-files/scripts/main.sh new file mode 100755 index 000000000..cc0cf38fd --- /dev/null +++ b/infrastructure/standards/100-files/scripts/main.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +run() { + for f in "$(dirname "$0")/../inputs"/*; do + # keep the file open for 0.1 seconds + exec {fd}<> "$f" + sleep 0.1 + exec {fd}>&- + done +} + +run diff --git a/infrastructure/standards/100-files/verify.sh b/infrastructure/standards/100-files/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/100-files/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/read-write/README.md b/infrastructure/standards/read-write/README.md new file mode 100644 index 000000000..bc1a0a36c --- /dev/null +++ b/infrastructure/standards/read-write/README.md @@ -0,0 +1,5 @@ +# read-write + +Reads 1G from /dev/zero and dumps it into /dev/null, across two processes. + +The read and write operations themselves are very fast, and may not show up. diff --git a/infrastructure/standards/read-write/cleanup.sh b/infrastructure/standards/read-write/cleanup.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/read-write/cleanup.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/read-write/deps.sh b/infrastructure/standards/read-write/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/read-write/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/read-write/input.sh b/infrastructure/standards/read-write/input.sh new file mode 100755 index 000000000..7a693aac0 --- /dev/null +++ b/infrastructure/standards/read-write/input.sh @@ -0,0 +1,3 @@ +#!/bin/bash + + diff --git a/infrastructure/standards/read-write/run.sh b/infrastructure/standards/read-write/run.sh new file mode 100755 index 000000000..83376e21c --- /dev/null +++ b/infrastructure/standards/read-write/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/read-write" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/read-write/scripts/main.sh b/infrastructure/standards/read-write/scripts/main.sh new file mode 100755 index 000000000..f3e8ab1ce --- /dev/null +++ b/infrastructure/standards/read-write/scripts/main.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# tests that we're counting read_chars and write_chars in child processes + +do_copy() { + dd if=/dev/zero of=/dev/null bs=1M count=250 +} + +do_copy + +"$(dirname "$0")/sub.sh" 750 + +sleep 1 diff --git a/infrastructure/standards/read-write/scripts/sub.sh b/infrastructure/standards/read-write/scripts/sub.sh new file mode 100755 index 000000000..3046d6eda --- /dev/null +++ b/infrastructure/standards/read-write/scripts/sub.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +dd if=/dev/zero of=/dev/null bs=1M count=$1 + +sleep 1 diff --git a/infrastructure/standards/read-write/verify.sh b/infrastructure/standards/read-write/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/read-write/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/shell-memory/README.md b/infrastructure/standards/shell-memory/README.md new file mode 100644 index 000000000..d5de69189 --- /dev/null +++ b/infrastructure/standards/shell-memory/README.md @@ -0,0 +1,3 @@ +# shell-memory + +Reads exactly 1G, and keeps that 1G in memory for one second. diff --git a/infrastructure/standards/shell-memory/cleanup.sh b/infrastructure/standards/shell-memory/cleanup.sh new file mode 100755 index 000000000..21f4fd73d --- /dev/null +++ b/infrastructure/standards/shell-memory/cleanup.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +inputs_dir="$(dirname "$0")/inputs" + +rm -f "$inputs_dir/1G.zeros" diff --git a/infrastructure/standards/shell-memory/deps.sh b/infrastructure/standards/shell-memory/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/shell-memory/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/shell-memory/input.sh b/infrastructure/standards/shell-memory/input.sh new file mode 100755 index 000000000..dfc9794ad --- /dev/null +++ b/infrastructure/standards/shell-memory/input.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +inputs_dir="$(dirname "$0")/inputs" + +mkdir -p "$inputs_dir" + +fallocate -l 1G "$inputs_dir/1G.zeros" diff --git a/infrastructure/standards/shell-memory/run.sh b/infrastructure/standards/shell-memory/run.sh new file mode 100755 index 000000000..1c0235004 --- /dev/null +++ b/infrastructure/standards/shell-memory/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/shell-memory" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/shell-memory/scripts/main.sh b/infrastructure/standards/shell-memory/scripts/main.sh new file mode 100755 index 000000000..8f52983d4 --- /dev/null +++ b/infrastructure/standards/shell-memory/scripts/main.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +"$(dirname "$0")/mem.py" + diff --git a/infrastructure/standards/shell-memory/scripts/mem.py b/infrastructure/standards/shell-memory/scripts/mem.py new file mode 100755 index 000000000..e145f8687 --- /dev/null +++ b/infrastructure/standards/shell-memory/scripts/mem.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +from pathlib import Path +from time import sleep + +# we use python here because python bytes does not have asymptotic overhead (almost exactly 1G) + +path = Path(__file__).resolve().parent.parent / 'inputs' / '1G.zeros' +one_gig = path.read_bytes() +sleep(1) diff --git a/infrastructure/standards/shell-memory/verify.sh b/infrastructure/standards/shell-memory/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/shell-memory/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/sleep/README.md b/infrastructure/standards/sleep/README.md new file mode 100644 index 000000000..2e06e146d --- /dev/null +++ b/infrastructure/standards/sleep/README.md @@ -0,0 +1 @@ +# sleep diff --git a/infrastructure/standards/sleep/cleanup.sh b/infrastructure/standards/sleep/cleanup.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/sleep/cleanup.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/sleep/deps.sh b/infrastructure/standards/sleep/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/sleep/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/sleep/input.sh b/infrastructure/standards/sleep/input.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/sleep/input.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/sleep/run.sh b/infrastructure/standards/sleep/run.sh new file mode 100755 index 000000000..69ea3b107 --- /dev/null +++ b/infrastructure/standards/sleep/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/sleep" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/sleep/scripts/main.sh b/infrastructure/standards/sleep/scripts/main.sh new file mode 100755 index 000000000..563f807d4 --- /dev/null +++ b/infrastructure/standards/sleep/scripts/main.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +do_sleep() { + sleep 3 +} + +do_sleep diff --git a/infrastructure/standards/sleep/verify.sh b/infrastructure/standards/sleep/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/sleep/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/time-in-shell-subprocess/README.md b/infrastructure/standards/time-in-shell-subprocess/README.md new file mode 100644 index 000000000..4c864a1a6 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/README.md @@ -0,0 +1 @@ +# time-in-shell-subprocess diff --git a/infrastructure/standards/time-in-shell-subprocess/cleanup.sh b/infrastructure/standards/time-in-shell-subprocess/cleanup.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/cleanup.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/time-in-shell-subprocess/deps.sh b/infrastructure/standards/time-in-shell-subprocess/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/time-in-shell-subprocess/input.sh b/infrastructure/standards/time-in-shell-subprocess/input.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/input.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/time-in-shell-subprocess/run.sh b/infrastructure/standards/time-in-shell-subprocess/run.sh new file mode 100755 index 000000000..4bfb0af96 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/time-in-shell-subprocess" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/time-in-shell-subprocess/scripts/main.sh b/infrastructure/standards/time-in-shell-subprocess/scripts/main.sh new file mode 100755 index 000000000..33a31b425 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/scripts/main.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +"$(dirname "$0")/sub.sh" diff --git a/infrastructure/standards/time-in-shell-subprocess/scripts/sub.sh b/infrastructure/standards/time-in-shell-subprocess/scripts/sub.sh new file mode 100755 index 000000000..4199b0316 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/scripts/sub.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +start=$(date +%s%3N) +i=0 +while [ "$i" -lt 1000000 ]; do + i=$((i + 1)) +done +end=$(date +%s%3N) +# want 10% of the time to be in the shell, so sleep the remaining time +duration=$(awk "BEGIN {print 9 * ($end - $start) / 1000}") +sleep $duration + diff --git a/infrastructure/standards/time-in-shell-subprocess/verify.sh b/infrastructure/standards/time-in-shell-subprocess/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/time-in-shell-subprocess/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time-in-shell/README.md b/infrastructure/standards/user-time-in-shell/README.md new file mode 100644 index 000000000..235515057 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/README.md @@ -0,0 +1 @@ +# user-time-in-shell diff --git a/infrastructure/standards/user-time-in-shell/cleanup.sh b/infrastructure/standards/user-time-in-shell/cleanup.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/cleanup.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time-in-shell/deps.sh b/infrastructure/standards/user-time-in-shell/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time-in-shell/input.sh b/infrastructure/standards/user-time-in-shell/input.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/input.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time-in-shell/run.sh b/infrastructure/standards/user-time-in-shell/run.sh new file mode 100755 index 000000000..802bf6b38 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/user-time-in-shell" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/user-time-in-shell/scripts/main.sh b/infrastructure/standards/user-time-in-shell/scripts/main.sh new file mode 100755 index 000000000..4199b0316 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/scripts/main.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +start=$(date +%s%3N) +i=0 +while [ "$i" -lt 1000000 ]; do + i=$((i + 1)) +done +end=$(date +%s%3N) +# want 10% of the time to be in the shell, so sleep the remaining time +duration=$(awk "BEGIN {print 9 * ($end - $start) / 1000}") +sleep $duration + diff --git a/infrastructure/standards/user-time-in-shell/verify.sh b/infrastructure/standards/user-time-in-shell/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time-in-shell/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time/README.md b/infrastructure/standards/user-time/README.md new file mode 100644 index 000000000..9445f28e4 --- /dev/null +++ b/infrastructure/standards/user-time/README.md @@ -0,0 +1 @@ +# user-time diff --git a/infrastructure/standards/user-time/cleanup.sh b/infrastructure/standards/user-time/cleanup.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time/cleanup.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time/deps.sh b/infrastructure/standards/user-time/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time/input.sh b/infrastructure/standards/user-time/input.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time/input.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/user-time/run.sh b/infrastructure/standards/user-time/run.sh new file mode 100755 index 000000000..518263ccc --- /dev/null +++ b/infrastructure/standards/user-time/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/user-time" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/user-time/scripts/main.sh b/infrastructure/standards/user-time/scripts/main.sh new file mode 100755 index 000000000..36d1de836 --- /dev/null +++ b/infrastructure/standards/user-time/scripts/main.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +# spin for 2 seconds, sleep for 1 +"$(dirname "$0")/spin.py" 1 +"$(dirname "$0")/spin.py" 1 +sleep 1 diff --git a/infrastructure/standards/user-time/scripts/spin.py b/infrastructure/standards/user-time/scripts/spin.py new file mode 100755 index 000000000..b14aaa930 --- /dev/null +++ b/infrastructure/standards/user-time/scripts/spin.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +from time import perf_counter +from sys import argv + +duration = float(argv[1]) +start = perf_counter() +while perf_counter() - start < duration: + for _ in range(int(1e6)): + pass diff --git a/infrastructure/standards/user-time/verify.sh b/infrastructure/standards/user-time/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/user-time/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/write-only/README.md b/infrastructure/standards/write-only/README.md new file mode 100644 index 000000000..199f780a7 --- /dev/null +++ b/infrastructure/standards/write-only/README.md @@ -0,0 +1 @@ +# write-only diff --git a/infrastructure/standards/write-only/cleanup.sh b/infrastructure/standards/write-only/cleanup.sh new file mode 100755 index 000000000..155f8bc77 --- /dev/null +++ b/infrastructure/standards/write-only/cleanup.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +base="$(dirname "$0")" + +rm -f "$base/1M.ones" diff --git a/infrastructure/standards/write-only/deps.sh b/infrastructure/standards/write-only/deps.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/write-only/deps.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/standards/write-only/input.sh b/infrastructure/standards/write-only/input.sh new file mode 100755 index 000000000..f7ec5ca85 --- /dev/null +++ b/infrastructure/standards/write-only/input.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +base="$(dirname "$0")" + +head -c 1000000 /dev/zero | tr '\0' '1' > "$base/1M.ones" diff --git a/infrastructure/standards/write-only/run.sh b/infrastructure/standards/write-only/run.sh new file mode 100755 index 000000000..7e58eb280 --- /dev/null +++ b/infrastructure/standards/write-only/run.sh @@ -0,0 +1,6 @@ +#!/bin/bash +BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +base="$(dirname "$0")" +export BENCHMARK_SCRIPT="$base/scripts/main.sh" +export BENCHMARK_CATEGORY="infrastructure/standards/write-only" +$BENCHMARK_SHELL $BENCHMARK_SCRIPT diff --git a/infrastructure/standards/write-only/scripts/main.sh b/infrastructure/standards/write-only/scripts/main.sh new file mode 100755 index 000000000..8a101b5a4 --- /dev/null +++ b/infrastructure/standards/write-only/scripts/main.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +do_write_only() { + # read one megabyte, write a whole gigabyte + + base="$(dirname "$0")/../1M.ones" + ones="$(cat "$base")" + + i=0 + while [ "$i" -lt 1000 ]; do + i=$((i + 1)) + printf "$ones" >> /dev/null + done + +} + +do_write_only + +sleep 1 diff --git a/infrastructure/standards/write-only/verify.sh b/infrastructure/standards/write-only/verify.sh new file mode 100755 index 000000000..a9bf588e2 --- /dev/null +++ b/infrastructure/standards/write-only/verify.sh @@ -0,0 +1 @@ +#!/bin/bash diff --git a/infrastructure/target/collect_dynamic_logs.touch b/infrastructure/target/collect_dynamic_logs.touch new file mode 100644 index 000000000..e69de29bb diff --git a/infrastructure/target/collect_standard_dynamic_logs.touch b/infrastructure/target/collect_standard_dynamic_logs.touch new file mode 100644 index 000000000..e69de29bb diff --git a/infrastructure/target/cyclomatic.csv b/infrastructure/target/cyclomatic.csv index d3f6b5c75..93c571e7e 100644 --- a/infrastructure/target/cyclomatic.csv +++ b/infrastructure/target/cyclomatic.csv @@ -1,88 +1,122 @@ +aurpkg/scripts/pacaur.sh,4.0 +bio/scripts/bio.sh,3.0 covid-mts/scripts/1.sh,1.0 +covid-mts/scripts/2.sh,1.0 covid-mts/scripts/3.sh,1.0 covid-mts/scripts/4.sh,1.0 -covid-mts/scripts/2.sh,1.0 covid-mts/scripts/5.sh,1.0 -file-enc/scripts/encrypt_files.sh,3.0 file-enc/scripts/compress_files.sh,2.0 +file-enc/scripts/encrypt_files.sh,3.0 +infrastructure/standards/100-files/scripts/main.sh,3.0 +infrastructure/standards/read-write/scripts/main.sh,2.0 +infrastructure/standards/read-write/scripts/sub.sh,1.0 +infrastructure/standards/shell-memory/scripts/main.sh,1.0 +infrastructure/standards/sleep/scripts/main.sh,2.0 +infrastructure/standards/time-in-shell-subprocess/scripts/main.sh,1.0 +infrastructure/standards/time-in-shell-subprocess/scripts/sub.sh,2.0 +infrastructure/standards/user-time-in-shell/scripts/main.sh,2.0 +infrastructure/standards/user-time/scripts/main.sh,1.0 +infrastructure/standards/write-only/scripts/main.sh,3.0 log-analysis/scripts/nginx.sh,3.0 log-analysis/scripts/pcaps.sh,3.0 +makeself/makeself/test/appendtest/appendtest.sh,24.0 +makeself/makeself/test/corrupttest/corrupttest.sh,12.0 +makeself/makeself/test/datetest/datetest.sh,12.0 +makeself/makeself/test/extracttest/extracttest.sh,12.0 +makeself/makeself/test/infotest/infotest.sh,12.0 +makeself/makeself/test/lsmtest/lsmtest.sh,11.0 +makeself/makeself/test/nochecktest/nochecktest.sh,7.0 +makeself/makeself/test/preextracttest/preextracttest.sh,17.0 +makeself/makeself/test/signtest/signtest.sh,19.0 +makeself/makeself/test/tarextratest/tarextratest.sh,7.0 +makeself/makeself/test/variabletest/variabletest.sh,9.0 max-temp/scripts/temp-analytics.sh,1.0 -media-conv/scripts/to_mp3.sh,3.0 media-conv/scripts/img_convert.sh,3.0 -nlp/scripts/verses_2om_3om_2instances.sh,2.0 -nlp/scripts/trigram_rec.sh,3.0 -nlp/scripts/uppercase_by_token.sh,2.0 -nlp/scripts/words_no_vowels.sh,2.0 -nlp/scripts/sort_words_by_folding.sh,2.0 -nlp/scripts/syllable_words_2.sh,2.0 -nlp/scripts/count_morphs.sh,2.0 -nlp/scripts/sort_words_by_num_of_syllables.sh,3.0 -nlp/scripts/merge_upper.sh,2.0 -nlp/scripts/syllable_words_1.sh,2.0 -nlp/scripts/sort_words_by_rhyming.sh,2.0 -nlp/scripts/letter_words.sh,2.0 -nlp/scripts/sort.sh,2.0 +media-conv/scripts/to_mp3.sh,3.0 +nlp/scripts/bigrams_appear_twice.sh,3.0 +nlp/scripts/bigrams.sh,3.0 +nlp/scripts/compare_exodus_genesis.sh,3.0 nlp/scripts/count_consonant_seq.sh,2.0 +nlp/scripts/count_morphs.sh,2.0 nlp/scripts/count_trigrams.sh,3.0 -nlp/scripts/bigrams.sh,3.0 +nlp/scripts/count_vowel_seq.sh,2.0 nlp/scripts/count_words.sh,2.0 -nlp/scripts/vowel_sequencies_gr_1K.sh,2.0 -nlp/scripts/bigrams_appear_twice.sh,3.0 -nlp/scripts/compare_exodus_genesis.sh,3.0 -nlp/scripts/uppercase_by_type.sh,2.0 nlp/scripts/find_anagrams.sh,3.0 -nlp/scripts/count_vowel_seq.sh,2.0 -oneliners/scripts/spell.sh,1.0 -oneliners/scripts/wf.sh,1.0 +nlp/scripts/letter_words.sh,2.0 +nlp/scripts/merge_upper.sh,2.0 +nlp/scripts/sort.sh,2.0 +nlp/scripts/sort_words_by_folding.sh,2.0 +nlp/scripts/sort_words_by_num_of_syllables.sh,3.0 +nlp/scripts/sort_words_by_rhyming.sh,2.0 +nlp/scripts/syllable_words_1.sh,2.0 +nlp/scripts/syllable_words_2.sh,2.0 +nlp/scripts/trigram_rec.sh,3.0 +nlp/scripts/uppercase_by_token.sh,2.0 +nlp/scripts/uppercase_by_type.sh,2.0 +nlp/scripts/verses_2om_3om_2instances.sh,2.0 +nlp/scripts/vowel_sequencies_gr_1K.sh,2.0 +nlp/scripts/words_no_vowels.sh,2.0 oneliners/scripts/bi-gram.aux.sh,4.0 -oneliners/scripts/top-n.sh,1.0 -oneliners/scripts/sort-sort.sh,1.0 -oneliners/scripts/diff.sh,1.0 -oneliners/scripts/sort.sh,1.0 oneliners/scripts/bi-grams.sh,1.0 -oneliners/scripts/set-diff.sh,1.0 +oneliners/scripts/diff.sh,1.0 oneliners/scripts/nfa-regex.sh,1.0 -sklearn/scripts/run.sh,1.0 +oneliners/scripts/run.sh,1.0 +oneliners/scripts/set-diff.sh,1.0 +oneliners/scripts/sort.sh,1.0 +oneliners/scripts/sort-sort.sh,1.0 +oneliners/scripts/spell.sh,1.0 +oneliners/scripts/top-n.sh,1.0 +oneliners/scripts/uniq-ips.sh,1.0 +oneliners/scripts/wf.sh,1.0 riker/scripts/lua/build.sh,1.0 -riker/scripts/xz-clang/build.sh,1.0 -riker/scripts/vim/build.sh,1.0 -riker/scripts/xz/build.sh,1.0 +riker/scripts/memcached/build.sh,2.0 riker/scripts/redis/build.sh,1.0 riker/scripts/sqlite/build.sh,1.0 -riker/scripts/memcached/build.sh,2.0 -uniq-ips/scripts/run.sh,1.0 -unix50/scripts/1.sh,2.0 -unix50/scripts/10.sh,2.0 -unix50/scripts/16.sh,2.0 -unix50/scripts/21.sh,2.0 -unix50/scripts/19.sh,2.0 -unix50/scripts/6.sh,2.0 -unix50/scripts/36.sh,2.0 -unix50/scripts/28.sh,2.0 -unix50/scripts/12.sh,2.0 -unix50/scripts/13.sh,2.0 -unix50/scripts/26.sh,2.0 -unix50/scripts/31.sh,2.0 -unix50/scripts/24.sh,2.0 -unix50/scripts/11.sh,2.0 -unix50/scripts/23.sh,2.0 -unix50/scripts/14.sh,2.0 -unix50/scripts/25.sh,2.0 -unix50/scripts/7.sh,2.0 -unix50/scripts/29.sh,2.0 -unix50/scripts/30.sh,2.0 -unix50/scripts/3.sh,2.0 -unix50/scripts/20.sh,2.0 -unix50/scripts/4.sh,2.0 -unix50/scripts/34.sh,2.0 -unix50/scripts/2.sh,2.0 -unix50/scripts/18.sh,2.0 -unix50/scripts/33.sh,2.0 -unix50/scripts/35.sh,2.0 -unix50/scripts/32.sh,2.0 -unix50/scripts/15.sh,2.0 -unix50/scripts/17.sh,2.0 -unix50/scripts/9.sh,2.0 -unix50/scripts/8.sh,2.0 -unix50/scripts/5.sh,2.0 +riker/scripts/vim/build.sh,1.0 +riker/scripts/xz/build.sh,1.0 +riker/scripts/xz-clang/build.sh,1.0 +sklearn/scripts/run.sh,1.0 +unix50/scripts/10.sh,1.0 +unix50/scripts/11.sh,1.0 +unix50/scripts/12.sh,1.0 +unix50/scripts/13.sh,1.0 +unix50/scripts/14.sh,1.0 +unix50/scripts/15.sh,1.0 +unix50/scripts/16.sh,1.0 +unix50/scripts/17.sh,1.0 +unix50/scripts/18.sh,1.0 +unix50/scripts/19.sh,1.0 +unix50/scripts/1.sh,1.0 +unix50/scripts/20.sh,1.0 +unix50/scripts/21.sh,1.0 +unix50/scripts/23.sh,1.0 +unix50/scripts/24.sh,1.0 +unix50/scripts/25.sh,1.0 +unix50/scripts/26.sh,1.0 +unix50/scripts/28.sh,1.0 +unix50/scripts/29.sh,1.0 +unix50/scripts/2.sh,1.0 +unix50/scripts/30.sh,1.0 +unix50/scripts/31.sh,1.0 +unix50/scripts/32.sh,1.0 +unix50/scripts/33.sh,1.0 +unix50/scripts/34.sh,1.0 +unix50/scripts/35.sh,1.0 +unix50/scripts/36.sh,1.0 +unix50/scripts/3.sh,1.0 +unix50/scripts/4.sh,1.0 +unix50/scripts/5.sh,1.0 +unix50/scripts/6.sh,1.0 +unix50/scripts/7.sh,1.0 +unix50/scripts/8.sh,1.0 +unix50/scripts/9.sh,1.0 +vps-audit-negate/scripts/vps-audit-negate.sh,48.0 +vps-audit/scripts/vps-audit.sh,51.0 +web-index/scripts/bigrams_aux.sh,1.0 +web-index/scripts/extract_text.sh,2.0 +web-index/scripts/ngrams.sh,1.0 +web-index/scripts/p1.sh,2.0 +web-index/scripts/p2.sh,1.0 +web-index/scripts/trigrams_aux.sh,1.0 +web-index/scripts/web-index-aux.sh,7.0 +web-index/scripts/web-index.sh,7.0 diff --git a/infrastructure/target/dynamic_analysis.jsonl b/infrastructure/target/dynamic_analysis.jsonl new file mode 100644 index 000000000..039a453d2 --- /dev/null +++ b/infrastructure/target/dynamic_analysis.jsonl @@ -0,0 +1,110 @@ +{"script": "aurpkg/scripts/pacaur.sh", "user_time": 4.53, "system_time": 1.13, "max_unique_set_size": 8245248, "read_chars": 138703146, "write_chars": 335264, "user_time_in_shell": 0.7700000000000005, "system_time_in_shell": 0.07, "all_input_files": ["aurpkg/outputs/python2-libevtx.txt", "aurpkg/outputs/shinysdr-git.txt", "aurpkg/outputs/eclipse-dltk-javascript.txt", "aurpkg/outputs/dunelegacy.txt", "aurpkg/outputs/ggmud-svn.txt", "aurpkg/outputs/python2-libewf.txt", "aurpkg/outputs/roundcubemail-plugin-keyboard-shortcuts-ng.txt", "aurpkg/outputs/gr-dsd-git.txt", "aurpkg/outputs/cytadela.txt", "aurpkg/outputs/globs-benchmarks-svn.txt", "aurpkg/outputs/kodi-addon-vfs-rar.txt", "aurpkg/outputs/cant.txt", "aurpkg/outputs/python-reparser.txt", "aurpkg/outputs/python2-pysword.txt", "aurpkg/outputs/eduke32-git.txt", "aurpkg/outputs/kodi-addon-vfs-rar-git.txt", "aurpkg/outputs/eclipse-antlr4-runtime.txt", "aurpkg/outputs/eclipse-subclipse.txt", "aurpkg/outputs/libvhdi.txt", "aurpkg/outputs/python2-artifacts.txt", "aurpkg/outputs/eclipse-dltk-python.txt", "aurpkg/outputs/gtk-gnutella.txt", "aurpkg/outputs/pacstats.txt", "aurpkg/outputs/python2-libmsiecf.txt", "aurpkg/outputs/ft232r_prog.txt", "aurpkg/outputs/refind-theme-tux-git.txt", "aurpkg/outputs/nesasm-git.txt", "aurpkg/outputs/spookyghost-git.txt", "aurpkg/outputs/scourge.txt", "aurpkg/outputs/eternallands-sound.txt", "aurpkg/outputs/rtl_power_fftw-git.txt", "aurpkg/outputs/eclipse-goclipse.txt", "aurpkg/outputs/squirrelmail.txt", "aurpkg/outputs/nctiledviewer-git.txt", "aurpkg/outputs/python2-pyrtlsdr-git.txt", "aurpkg/outputs/bpm-git.txt", "aurpkg/outputs/python2-binplist.txt", "aurpkg/outputs/papu-vst-git.txt", "aurpkg/outputs/python2-libscca.txt", "aurpkg/outputs/gno3dtet.txt", "aurpkg/outputs/netpanzer.txt", "aurpkg/outputs/getlive.txt", "aurpkg/outputs/bubblemon.txt", "aurpkg/outputs/shadermaker.txt", "aurpkg/outputs/yumbootstrap-git.txt", "aurpkg/outputs/cal3d-svn.txt", "aurpkg/input/packages", "aurpkg/outputs/python2-acora.txt", "aurpkg/outputs/eclipse-dltk-shelled.txt", "aurpkg/outputs/luniistore.txt", "aurpkg/outputs/pacstats-hg.txt", "aurpkg/outputs/ncparticleeditor-git.txt", "aurpkg/outputs/bitefusion.txt", "aurpkg/outputs/libiriverdb.txt", "aurpkg/outputs/eclipse-svnkit.txt", "aurpkg/outputs/python2-libevt.txt", "aurpkg/outputs/python2-dfwinreg.txt", "aurpkg/outputs/eclipse-antlr-runtime.txt", "aurpkg/outputs/roundcubemail-plugin-chbox.txt", "aurpkg/outputs/eclipse-linuxtools.txt", "aurpkg/outputs/plc.txt", "aurpkg/outputs/python2-pytsk3.txt", "aurpkg/outputs/ncpong-git.txt", "aurpkg/outputs/zork3.txt", "aurpkg/outputs/sn76489-vst-git.txt", "aurpkg/outputs/cdm-git.txt", "aurpkg/outputs/pwgen-passphrase.txt", "aurpkg/outputs/rtlsdr-scanner-git.txt", "aurpkg/outputs/roundcubemail-plugin-jquery-mobile.txt", "aurpkg/outputs/ri-li.txt", "aurpkg/outputs/libretro-fmsx-git.txt", "aurpkg/outputs/python-pyrtlsdr-git.txt", "aurpkg/outputs/atari-breakout.txt", "aurpkg/outputs/python2-libvmdk.txt", "aurpkg/outputs/gogglesmm-git.txt", "aurpkg/outputs/lib32-gtk.txt", "aurpkg/outputs/python2-bencode.txt", "aurpkg/outputs/tracy.txt", "aurpkg/outputs/ncline-git.txt", "aurpkg/outputs/unscd.txt", "aurpkg/outputs/python2-libsigscan.txt", "aurpkg/outputs/bitcoinxt.txt", "aurpkg/outputs/python2-libsmraw.txt", "aurpkg/outputs/python-quamash-git.txt", "aurpkg/outputs/python2-libqcow.txt", "aurpkg/outputs/refind-theme-metro-git.txt", "aurpkg/outputs/python2-libbde.txt", "aurpkg/outputs/atari-combat.txt", "aurpkg/outputs/ncine-git.txt", "aurpkg/outputs/eternallands.txt", "aurpkg/outputs/python-pysword.txt", "aurpkg/outputs/prysm.txt", "aurpkg/outputs/python2-libfwsi.txt", "aurpkg/outputs/python2-libvhdi.txt", "aurpkg/outputs/python2-liblnk.txt", "aurpkg/outputs/lib32-glib.txt", "aurpkg/outputs/nctracer-git.txt", "aurpkg/outputs/jzip.txt", "aurpkg/outputs/ncinvaders-git.txt", "aurpkg/outputs/vecx-git.txt", "aurpkg/outputs/rp2a03-vst-git.txt", "aurpkg/outputs/eclipse-dltk-core.txt", "aurpkg/outputs/qjoypad.txt", "aurpkg/outputs/python2-libesedb.txt", "aurpkg/outputs/python2-libfsntfs.txt", "aurpkg/outputs/python3-sensors-git.txt", "aurpkg/outputs/ncine.txt", "aurpkg/outputs/python2-libregf.txt", "aurpkg/outputs/rottexpr-shareware-git.txt", "aurpkg/outputs/lives.txt", "aurpkg/outputs/atari-adventure.txt", "aurpkg/outputs/csdr-git.txt", "aurpkg/outputs/w3watch.txt", "aurpkg/outputs/zork2.txt", "aurpkg/outputs/eternallands-music.txt", "aurpkg/outputs/python2-libsmdev.txt", "aurpkg/outputs/voidsw-git.txt", "aurpkg/outputs/eclipse-jsonedit.txt", "aurpkg/outputs/audioconvert.txt", "aurpkg/outputs/adwaita-dark-darose.txt", "aurpkg/outputs/graylog.txt", "aurpkg/outputs/python2-libvshadow.txt", "aurpkg/outputs/tutka.txt", "aurpkg/outputs/csl.txt", "aurpkg/outputs/globs-svn.txt", "aurpkg/outputs/python2-dfdatetime.txt", "aurpkg/outputs/scamper.txt", "aurpkg/outputs/python2-libolecf.txt", "aurpkg/outputs/yum-metadata-parser.txt", "aurpkg/outputs/wallpaper-lightning.txt", "aurpkg/outputs/stratagus.txt", "aurpkg/outputs/mp3rename.txt", "aurpkg/outputs/projectm-git.txt", "aurpkg/outputs/atari-space-invaders.txt", "aurpkg/outputs/zork1.txt", "aurpkg/outputs/drqueue.txt", "aurpkg/outputs/ggmud.txt", "aurpkg/outputs/roundcubemail-plugin-mobile.txt", "aurpkg/outputs/gogglesmm-develop-git.txt", "aurpkg/outputs/brother-dcp350c.txt", "aurpkg/outputs/griver.txt", "aurpkg/outputs/python2-efilter.txt", "aurpkg/outputs/macchiato-git.txt", "aurpkg/outputs/netatop.txt", "aurpkg/outputs/gr-dab-git.txt", "aurpkg/outputs/tracy-git.txt", "aurpkg/outputs/fsv2.txt", "aurpkg/outputs/python2-dfvfs.txt", "aurpkg/outputs/postgresqltuner.txt", "aurpkg/outputs/atari-bowling.txt", "aurpkg/outputs/hangupsbot.txt"], "wall_time": 124.93513706000522, "start_time": "2025-01-10T12:13:43.085656+00:00", "category": "aurpkg"} +{"script": "bio/scripts/bio.sh", "user_time": 15.12, "system_time": 0.56, "max_unique_set_size": 21127168, "read_chars": 753173126, "write_chars": 359827800, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["bio/outputs/HG00614_corrected.bam.bai", "bio/input_small.txt", "bio/inputs/HG00614.bam", "bio/outputs/CHS_HG00614_2.bam", "bio/outputs/CHS_HG00614_X.bam", "bio/outputs/CHS_HG00614_17.bam", "bio/outputs/CHS_HG00614_7.bam", "bio/outputs/CHS_HG00614_19.bam", "bio/outputs/CHS_HG00614_10.bam", "bio/outputs/CHS_HG00614_4.bam", "bio/outputs/CHS_HG00614_1.bam", "bio/outputs/HG00614_corrected.bam", "bio/outputs/CHS_HG00614_11.bam"], "wall_time": 16.030522984001436, "start_time": "2025-01-10T11:10:56.670991+00:00", "category": "bio"} +{"script": "covid-mts/scripts/1.sh", "user_time": 23.4, "system_time": 3.77, "max_unique_set_size": 14581760, "read_chars": 11164655857, "write_chars": 7575058868, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["covid-mts/input/in.csv"], "wall_time": 18.027897869003937, "start_time": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts"} +{"script": "covid-mts/scripts/2.sh", "user_time": 23.24, "system_time": 3.89, "max_unique_set_size": 14581760, "read_chars": 11159692476, "write_chars": 7570100508, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["covid-mts/input/in.csv"], "wall_time": 17.826995085997623, "start_time": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts"} +{"script": "covid-mts/scripts/3.sh", "user_time": 29.96, "system_time": 4.07, "max_unique_set_size": 14581760, "read_chars": 11862174649, "write_chars": 8272584241, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["covid-mts/input/in.csv"], "wall_time": 24.132860534999054, "start_time": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts"} +{"script": "covid-mts/scripts/4.sh", "user_time": 26.51, "system_time": 3.75, "max_unique_set_size": 14581760, "read_chars": 11128284988, "write_chars": 7538687441, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["covid-mts/input/in.csv"], "wall_time": 20.62781354598701, "start_time": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts"} +{"script": "file-enc/scripts/compress_files.sh", "user_time": 11.41, "system_time": 0.68, "max_unique_set_size": 1327104, "read_chars": 939652643, "write_chars": 876849667, "user_time_in_shell": 0.0, "system_time_in_shell": 0.01, "all_input_files": ["file-enc/input/pcaps/challenge101-5.pcapng", "file-enc/input/pcaps/ftp-passwords101.pcapng", "file-enc/input/pcaps/gen-startupchatty101.pcapng", "file-enc/input/pcaps/http-openoffice101b.pcapng", "file-enc/input/pcaps/http-download-a.pcapng", "file-enc/input/pcaps/challenge101-4.pcapng", "file-enc/input/pcaps/http-disney101.pcapng", "file-enc/input/pcaps", "file-enc/input/pcaps/http-college101.pcapng", "file-enc/input/pcaps/tr-winsize.pcapng", "file-enc/input/pcaps/http-chappellu101b.pcapng", "file-enc/input/pcaps/http-chappellu101.pcapng", "file-enc/input/pcaps/http-browse101c.pcapng", "file-enc/input/pcaps/http-wiresharkdownload101.pcapng", "file-enc/input/pcaps/tcp-decodeas.pcapng", "file-enc/input/pcaps/ftp-clientside101.pcapng", "file-enc/input/pcaps/challenge101-8.pcapng", "file-enc/input/pcaps/split250_00001_20160704110759.pcapng", "file-enc/input/pcaps/http-pcaprnet101.pcapng", "file-enc/input/pcaps/http-download101c.pcapng", "file-enc/input/pcaps/http-espn101.pcapng", "file-enc/input/pcaps/general101d.pcapng", "file-enc/input/pcaps/challenge101-1.pcapng", "file-enc/input/pcaps/http-slow101.pcapng", "file-enc/input/pcaps/http-cheez101.pcapng", "file-enc/input/pcaps/http-sfgate101.pcapng", "file-enc/input/pcaps/ftp-download101.pcapng", "file-enc/input/pcaps/http-browse101d.pcapng", "file-enc/input/pcaps/http-browse101.pcapng", "file-enc/input/pcaps/ftp-crack101.pcapng", "file-enc/input/pcaps/tr-twohosts.pcapng", "file-enc/input/pcaps/http-pictures101.pcapng", "file-enc/input/pcaps/http-download101.pcapng", "file-enc/input/pcaps/challenge101-6.pcapng", "file-enc/input/pcaps/challenge101-3.pcapng", "file-enc/input/pcaps/http-download101d.pcapng", "file-enc/input/pcaps/http-misctraffic101.pcapng", "file-enc/input/pcaps/split250_00004_20160704110759.pcapng", "file-enc/input/pcaps/http-jezebel101.pcapng", "file-enc/input/pcaps/challenge101-7.pcapng", "file-enc/input/pcaps/general101c.pcapng", "file-enc/input/pcaps/http-nonstandard101.pcapng", "file-enc/input/pcaps/http-au101b.pcapng"], "wall_time": 11.720280769004603, "start_time": "2025-01-10T11:08:23.231284+00:00", "category": "file-enc"} +{"script": "file-enc/scripts/encrypt_files.sh", "user_time": 1.15, "system_time": 0.36, "max_unique_set_size": 1327104, "read_chars": 940534234, "write_chars": 938866413, "user_time_in_shell": 0.0, "system_time_in_shell": 0.01, "all_input_files": ["file-enc/input/pcaps/challenge101-5.pcapng", "file-enc/input/pcaps/ftp-passwords101.pcapng", "file-enc/input/pcaps/gen-startupchatty101.pcapng", "file-enc/input/pcaps/http-openoffice101b.pcapng", "file-enc/input/pcaps/http-download-a.pcapng", "file-enc/input/pcaps/challenge101-4.pcapng", "file-enc/input/pcaps/http-disney101.pcapng", "file-enc/input/pcaps", "file-enc/input/pcaps/http-college101.pcapng", "file-enc/input/pcaps/tr-winsize.pcapng", "file-enc/input/pcaps/http-chappellu101b.pcapng", "file-enc/input/pcaps/http-chappellu101.pcapng", "file-enc/input/pcaps/http-browse101c.pcapng", "file-enc/input/pcaps/http-wiresharkdownload101.pcapng", "file-enc/input/pcaps/tcp-decodeas.pcapng", "file-enc/input/pcaps/ftp-clientside101.pcapng", "file-enc/input/pcaps/challenge101-8.pcapng", "file-enc/input/pcaps/split250_00001_20160704110759.pcapng", "file-enc/input/pcaps/http-pcaprnet101.pcapng", "file-enc/input/pcaps/http-download101c.pcapng", "file-enc/input/pcaps/http-espn101.pcapng", "file-enc/input/pcaps/general101d.pcapng", "file-enc/input/pcaps/challenge101-1.pcapng", "file-enc/input/pcaps/http-slow101.pcapng", "file-enc/input/pcaps/http-cheez101.pcapng", "file-enc/input/pcaps/http-sfgate101.pcapng", "file-enc/input/pcaps/ftp-download101.pcapng", "file-enc/input/pcaps/http-browse101d.pcapng", "file-enc/input/pcaps/http-browse101.pcapng", "file-enc/input/pcaps/ftp-crack101.pcapng", "file-enc/input/pcaps/tr-twohosts.pcapng", "file-enc/input/pcaps/http-pictures101.pcapng", "file-enc/input/pcaps/http-download101.pcapng", "file-enc/input/pcaps/challenge101-6.pcapng", "file-enc/input/pcaps/challenge101-3.pcapng", "file-enc/input/pcaps/http-download101d.pcapng", "file-enc/input/pcaps/http-misctraffic101.pcapng", "file-enc/input/pcaps/split250_00004_20160704110759.pcapng", "file-enc/input/pcaps/http-jezebel101.pcapng", "file-enc/input/pcaps/challenge101-7.pcapng", "file-enc/input/pcaps/general101c.pcapng", "file-enc/input/pcaps/http-nonstandard101.pcapng", "file-enc/input/pcaps/http-au101b.pcapng"], "wall_time": 1.4028149770019809, "start_time": "2025-01-10T11:08:23.231284+00:00", "category": "file-enc"} +{"script": "infrastructure/standards/100-files/scripts/main.sh", "user_time": 0.05, "system_time": 0.02, "max_unique_set_size": 475136, "read_chars": 420468, "write_chars": 55, "user_time_in_shell": 0.0, "system_time_in_shell": 0.01, "all_input_files": ["infrastructure/standards/100-files/inputs/087.txt", "infrastructure/standards/100-files/inputs/047.txt", "infrastructure/standards/100-files/inputs/076.txt", "infrastructure/standards/100-files/inputs/095.txt", "infrastructure/standards/100-files/inputs/070.txt", "infrastructure/standards/100-files/inputs/011.txt", "infrastructure/standards/100-files/inputs/065.txt", "infrastructure/standards/100-files/inputs/099.txt", "infrastructure/standards/100-files/inputs/054.txt", "infrastructure/standards/100-files/inputs/083.txt", "infrastructure/standards/100-files/inputs/014.txt", "infrastructure/standards/100-files/inputs/044.txt", "infrastructure/standards/100-files/inputs/030.txt", "infrastructure/standards/100-files/inputs/007.txt", "infrastructure/standards/100-files/inputs/056.txt", "infrastructure/standards/100-files/inputs/072.txt", "infrastructure/standards/100-files/inputs/010.txt", "infrastructure/standards/100-files/inputs/034.txt", "infrastructure/standards/100-files/inputs/067.txt", "infrastructure/standards/100-files/inputs/021.txt", "infrastructure/standards/100-files/inputs/015.txt", "infrastructure/standards/100-files/inputs/092.txt", "infrastructure/standards/100-files/inputs/001.txt", "infrastructure/standards/100-files/inputs/094.txt", "infrastructure/standards/100-files/inputs/071.txt", "infrastructure/standards/100-files/inputs/086.txt", "infrastructure/standards/100-files/inputs/059.txt", "infrastructure/standards/100-files/inputs/017.txt", "infrastructure/standards/100-files/inputs/090.txt", "infrastructure/standards/100-files/inputs/084.txt", "infrastructure/standards/100-files/inputs/006.txt", "infrastructure/standards/100-files/inputs/081.txt", "infrastructure/standards/100-files/inputs/003.txt", "infrastructure/standards/100-files/inputs/049.txt", "infrastructure/standards/100-files/inputs/096.txt", "infrastructure/standards/100-files/inputs/009.txt", "infrastructure/standards/100-files/inputs/012.txt", "infrastructure/standards/100-files/inputs/019.txt", "infrastructure/standards/100-files/inputs/060.txt", "infrastructure/standards/100-files/inputs/026.txt", "infrastructure/standards/100-files/inputs/074.txt", "infrastructure/standards/100-files/inputs/022.txt", "infrastructure/standards/100-files/inputs/005.txt", "infrastructure/standards/100-files/inputs/041.txt", "infrastructure/standards/100-files/inputs/055.txt", "infrastructure/standards/100-files/inputs/097.txt", "infrastructure/standards/100-files/inputs/024.txt", "infrastructure/standards/100-files/inputs/062.txt", "infrastructure/standards/100-files/inputs/073.txt", "infrastructure/standards/100-files/inputs/033.txt", "infrastructure/standards/100-files/inputs/082.txt", "infrastructure/standards/100-files/inputs/061.txt", "infrastructure/standards/100-files/inputs/038.txt", "infrastructure/standards/100-files/inputs/000.txt", "infrastructure/standards/100-files/inputs/093.txt", "infrastructure/standards/100-files/inputs/008.txt", "infrastructure/standards/100-files/inputs/052.txt", "infrastructure/standards/100-files/inputs/069.txt", "infrastructure/standards/100-files/inputs/036.txt", "infrastructure/standards/100-files/inputs/032.txt", "infrastructure/standards/100-files/inputs/064.txt", "infrastructure/standards/100-files/inputs/028.txt", "infrastructure/standards/100-files/inputs/013.txt", "infrastructure/standards/100-files/inputs/079.txt", "infrastructure/standards/100-files/inputs/088.txt", "infrastructure/standards/100-files/inputs/018.txt", "infrastructure/standards/100-files/inputs/063.txt", "infrastructure/standards/100-files/inputs/004.txt", "infrastructure/standards/100-files/inputs/077.txt", "infrastructure/standards/100-files/inputs/035.txt", "infrastructure/standards/100-files/inputs/027.txt", "infrastructure/standards/100-files/inputs/016.txt", "infrastructure/standards/100-files/inputs/089.txt", "infrastructure/standards/100-files/inputs/098.txt", "infrastructure/standards/100-files/inputs/046.txt", "infrastructure/standards/100-files/inputs/066.txt", "infrastructure/standards/100-files/inputs/042.txt", "infrastructure/standards/100-files/inputs/020.txt", "infrastructure/standards/100-files/inputs/053.txt", "infrastructure/standards/100-files/inputs/051.txt", "infrastructure/standards/100-files/inputs/080.txt", "infrastructure/standards/100-files/inputs/050.txt", "infrastructure/standards/100-files/inputs/037.txt", "infrastructure/standards/100-files/inputs/023.txt", "infrastructure/standards/100-files/inputs/039.txt", "infrastructure/standards/100-files/inputs/085.txt", "infrastructure/standards/100-files/inputs/078.txt", "infrastructure/standards/100-files/inputs/031.txt", "infrastructure/standards/100-files/inputs/058.txt", "infrastructure/standards/100-files/inputs/040.txt", "infrastructure/standards/100-files/inputs/025.txt", "infrastructure/standards/100-files/inputs/068.txt", "infrastructure/standards/100-files/inputs/091.txt", "infrastructure/standards/100-files/inputs/057.txt", "infrastructure/standards/100-files/inputs/043.txt", "infrastructure/standards/100-files/inputs/029.txt", "infrastructure/standards/100-files/inputs/075.txt", "infrastructure/standards/100-files/inputs/002.txt", "infrastructure/standards/100-files/inputs/045.txt", "infrastructure/standards/100-files/inputs/048.txt"], "wall_time": 10.128033633009181, "start_time": "2025-01-10T12:10:47.975902+00:00", "category": "infrastructure/standards/100-files"} +{"script": "infrastructure/standards/read-write/scripts/main.sh", "user_time": 0.0, "system_time": 0.01, "max_unique_set_size": 1777664, "read_chars": 1048610555, "write_chars": 1048576256, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 2.1066313219926087, "start_time": "2025-01-10T12:07:11.198419+00:00", "category": "infrastructure/standards/read-write"} +{"script": "infrastructure/standards/shell-memory/scripts/main.sh", "user_time": 0.01, "system_time": 0.46, "max_unique_set_size": 1078845440, "read_chars": 1074367477, "write_chars": 58, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["infrastructure/standards/shell-memory/inputs/1G.zeros"], "wall_time": 1.5042628590017557, "start_time": "2025-01-10T11:08:21.562009+00:00", "category": "infrastructure/standards/shell-memory"} +{"script": "infrastructure/standards/sleep/scripts/main.sh", "user_time": 0.0, "system_time": 0.0, "max_unique_set_size": 397312, "read_chars": 10895, "write_chars": 0, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 3.0090637279936345, "start_time": "2025-01-10T11:10:53.412126+00:00", "category": "infrastructure/standards/sleep"} +{"script": "infrastructure/standards/time-in-shell-subprocess/scripts/main.sh", "user_time": 1.27, "system_time": 0.0, "max_unique_set_size": 692224, "read_chars": 50194, "write_chars": 105, "user_time_in_shell": 1.26, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 12.735326857990003, "start_time": "2025-01-10T11:07:47.319694+00:00", "category": "infrastructure/standards/time-in-shell-subprocess"} +{"script": "infrastructure/standards/user-time-in-shell/scripts/main.sh", "user_time": 1.29, "system_time": 0.0, "max_unique_set_size": 442368, "read_chars": 39263, "write_chars": 33, "user_time_in_shell": 1.29, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 13.034679463002249, "start_time": "2025-01-10T11:10:36.962132+00:00", "category": "infrastructure/standards/user-time-in-shell"} +{"script": "infrastructure/standards/user-time/scripts/main.sh", "user_time": 2.04, "system_time": 0.0, "max_unique_set_size": 3325952, "read_chars": 104509, "write_chars": 110, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 3.106943783001043, "start_time": "2025-01-10T12:05:49.305291+00:00", "category": "infrastructure/standards/user-time"} +{"script": "infrastructure/standards/write-only/scripts/main.sh", "user_time": 17.67, "system_time": 0.02, "max_unique_set_size": 8368128, "read_chars": 2019568, "write_chars": 1001000056, "user_time_in_shell": 17.67, "system_time_in_shell": 0.02, "all_input_files": [], "wall_time": 18.73310981200484, "start_time": "2025-01-10T11:08:01.465606+00:00", "category": "infrastructure/standards/write-only"} +{"script": "log-analysis/scripts/nginx.sh", "user_time": 3.6, "system_time": 0.56, "max_unique_set_size": 12890112, "read_chars": 1407954171, "write_chars": 512300654, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["log-analysis/input/nginx-logs/log0", "log-analysis/input/nginx-logs/log4", "log-analysis/input/nginx-logs/log6", "log-analysis/input/nginx-logs/log7", "log-analysis/input/nginx-logs/log5", "log-analysis/input/nginx-logs"], "wall_time": 3.5066292240080656, "start_time": "2025-01-10T12:11:16.954569+00:00", "category": "log-analysis"} +{"script": "log-analysis/scripts/pcaps.sh", "user_time": 95.3, "system_time": 69.72, "max_unique_set_size": 12890112, "read_chars": 10231310721, "write_chars": 6144779605, "user_time_in_shell": 0.0, "system_time_in_shell": 0.01, "all_input_files": ["log-analysis/input/nginx-logs/log0", "log-analysis/input/nginx-logs/log4", "log-analysis/input/nginx-logs/log6", "log-analysis/input/nginx-logs/log7", "log-analysis/input/pcaps", "log-analysis/input/nginx-logs/log5"], "wall_time": 124.81457920899265, "start_time": "2025-01-10T12:11:16.954569+00:00", "category": "log-analysis"} +{"script": "makeself/makeself/test/appendtest/appendtest.sh", "user_time": 2.58, "system_time": 0.29, "max_unique_set_size": 7348224, "read_chars": 39501786, "write_chars": 4642795, "user_time_in_shell": 0.01, "system_time_in_shell": 0.01, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 2.2036481060204096, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/corrupttest/corrupttest.sh", "user_time": 0.18, "system_time": 0.03, "max_unique_set_size": 7348224, "read_chars": 4017172, "write_chars": 1421525, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.20080455800052732, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/datetest/datetest.sh", "user_time": 0.06, "system_time": 0.0, "max_unique_set_size": 7348224, "read_chars": 1208682, "write_chars": 301425, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.10071892698761076, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/extracttest/extracttest.sh", "user_time": 0.19, "system_time": 0.03, "max_unique_set_size": 7348224, "read_chars": 6128212, "write_chars": 2967926, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.20081199999549426, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/infotest/infotest.sh", "user_time": 0.08, "system_time": 0.01, "max_unique_set_size": 7348224, "read_chars": 1494657, "write_chars": 314140, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.10065633099293336, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/lsmtest/lsmtest.sh", "user_time": 0.07, "system_time": 0.01, "max_unique_set_size": 7348224, "read_chars": 1393413, "write_chars": 303155, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.10046923399204388, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/nochecktest/nochecktest.sh", "user_time": 0.09, "system_time": 0.01, "max_unique_set_size": 7348224, "read_chars": 1421012, "write_chars": 187077, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.10069203699822538, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/preextracttest/preextracttest.sh", "user_time": 0.24, "system_time": 0.03, "max_unique_set_size": 7348224, "read_chars": 4254105, "write_chars": 860183, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.30089568201219663, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/signtest/signtest.sh", "user_time": 0.29, "system_time": 0.04, "max_unique_set_size": 7348224, "read_chars": 4716338, "write_chars": 1003425, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 7.713798152981326, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/tarextratest/tarextratest.sh", "user_time": 0.02, "system_time": 0.0, "max_unique_set_size": 7348224, "read_chars": 420021, "write_chars": 101817, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.10067750999587588, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "makeself/makeself/test/variabletest/variabletest.sh", "user_time": 0.13, "system_time": 0.01, "max_unique_set_size": 7348224, "read_chars": 2326977, "write_chars": 610615, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["makeself/makeself/test/appendtest/test_results.log"], "wall_time": 0.20078112301416695, "start_time": "2025-01-11T05:05:33.666909+00:00", "category": "makeself"} +{"script": "max-temp/scripts/temp-analytics.sh", "user_time": 5.36, "system_time": 1.45, "max_unique_set_size": 10170368, "read_chars": 5202128054, "write_chars": 2687204677, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["max-temp/input/temperatures.full.txt"], "wall_time": 4.507814807991963, "start_time": "2025-01-10T12:37:40.373479+00:00", "category": "max-temp"} +{"script": "media-conv/scripts/img_convert.sh", "user_time": 707.97, "system_time": 96.42, "max_unique_set_size": 156545024, "read_chars": 4704601270, "write_chars": 6815701320, "user_time_in_shell": 0.13, "system_time_in_shell": 0.4, "all_input_files": ["media-conv/input/jpg_full/jpg/124200.jpg", "media-conv/input/jpg_full/jpg/119200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124802.jpg", "media-conv/input/jpg_full/jpg/106600.jpg", "media-conv/input/jpg_full/jpg/118303.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112406.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126400.jpg", "media-conv/input/jpg_full/jpg/122203.jpg", "media-conv/input/jpg_full/jpg/108401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/120201.jpg", "media-conv/input/jpg_full/jpg/128101.jpg", "media-conv/input/jpg_full/jpg/102402.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125101.jpg", "media-conv/input/jpg_full/jpg/106702.jpg", "media-conv/input/jpg_full/jpg/113101.jpg", "media-conv/input/jpg_full/jpg/128701.jpg", "media-conv/input/jpg_full/jpg/118000.jpg", "media-conv/input/jpg_full/jpg/105901.jpg", "media-conv/input/jpg_full/jpg/115702.jpg", "media-conv/input/jpg_full/jpg/126702.jpg", "media-conv/input/jpg_full/jpg/126803.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106603.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126000.jpg", "media-conv/input/jpg_full/jpg/118401.jpg", "media-conv/input/jpg_full/jpg/118000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110001.jpg", "media-conv/input/jpg_full/jpg/128300.jpg", "media-conv/input/jpg_full/jpg/108901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127700.jpg", "media-conv/input/jpg_full/jpg/105200.jpg", "media-conv/input/jpg_full/jpg/101800.jpg", "media-conv/input/jpg_full/jpg/128101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105800.jpg", "media-conv/input/jpg_full/jpg/111101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102500.jpg", "media-conv/input/jpg_full/jpg/121800.jpg", "media-conv/input/jpg_full/jpg/121100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/113401.jpg", "media-conv/input/jpg_full/jpg/129001.jpg", "media-conv/input/jpg_full/jpg/120500.jpg", "media-conv/input/jpg_full/jpg/108104.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127402.jpg", "media-conv/input/jpg_full/jpg/124000.jpg", "media-conv/input/jpg_full/jpg/101000.jpg", "media-conv/input/jpg_full/jpg/114901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110400.jpg", "media-conv/input/jpg_full/jpg/117701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129801.jpg", "media-conv/input/jpg_full/jpg/122708.jpg", "media-conv/input/jpg_full/jpg/126102.jpg", "media-conv/input/jpg_full/jpg/107202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107900.jpg", "media-conv/input/jpg_full/jpg/111501.jpg", "media-conv/input/jpg_full/jpg/118501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106601.jpg", "media-conv/input/jpg_full/jpg/102303.jpg", "media-conv/input/jpg_full/jpg/104400.jpg", "media-conv/input/jpg_full/jpg/120601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126100.jpg", "media-conv/input/jpg_full/jpg/102301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128501.jpg", "media-conv/input/jpg_full/jpg/121601.jpg", "media-conv/input/jpg_full/jpg/109501.jpg", "media-conv/input/jpg_full/jpg/120800.jpg", "media-conv/input/jpg_full/jpg/128501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100300.jpg", "media-conv/input/jpg_full/jpg/126705.jpg", "media-conv/input/jpg_full/jpg/122900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110401.jpg", "media-conv/input/jpg_full/jpg/123500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119100.jpg", "media-conv/input/jpg_full/jpg/110702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125700.jpg", "media-conv/input/jpg_full/jpg/105300.jpg", "media-conv/input/jpg_full/jpg/112302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102900.jpg", "media-conv/input/jpg_full/jpg/125202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122502.jpg", "media-conv/input/jpg_full/jpg/126101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100500.jpg", "media-conv/input/jpg_full/jpg/112402.jpg", "media-conv/input/jpg_full/jpg/107901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125501.jpg", "media-conv/input/jpg_full/jpg/122102.jpg", "media-conv/input/jpg_full/jpg/109000.jpg", "media-conv/input/jpg_full/jpg/110701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129800.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128800.jpg", "media-conv/input/jpg_full/jpg/114400.jpg", "media-conv/input/jpg_full/jpg/126301.jpg", "media-conv/input/jpg_full/jpg/113100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112003.jpg", "media-conv/input/jpg_full/jpg/102100.jpg", "media-conv/input/jpg_full/jpg/101201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118701.jpg", "media-conv/input/jpg_full/jpg/122302.jpg", "media-conv/input/jpg_full/jpg/120300.jpg", "media-conv/input/jpg_full/jpg/110300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127300.jpg", "media-conv/input/jpg_full/jpg/117800.jpg", "media-conv/input/jpg_full/jpg/126201.jpg", "media-conv/input/jpg_full/jpg/127500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116601.jpg", "media-conv/input/jpg_full/jpg/129802.jpg", "media-conv/input/jpg_full/jpg/101901.jpg", "media-conv/input/jpg_full/jpg/107203.jpg", "media-conv/input/jpg_full/jpg/121200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119101.jpg", "media-conv/input/jpg_full/jpg/121900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116703.jpg", "media-conv/input/jpg_full/jpg", "media-conv/input/jpg_full/jpg/121100.jpg", "media-conv/input/jpg_full/jpg/108100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122503.jpg", "media-conv/input/jpg_full/jpg/122702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129100.jpg", "media-conv/input/jpg_full/jpg/100900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114503.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109402.jpg", "media-conv/input/jpg_full/jpg/125102.jpg", "media-conv/input/jpg_full/jpg/104003.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101502.jpg", "media-conv/input/jpg_full/jpg/111500.jpg", "media-conv/input/jpg_full/jpg/112300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100902.jpg", "media-conv/input/jpg_full/jpg/123204.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114002.jpg", "media-conv/input/jpg_full/jpg/124700.jpg", "media-conv/input/jpg_full/jpg/126501.jpg", "media-conv/input/jpg_full/jpg/102501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126703.jpg", "media-conv/input/jpg_full/jpg/100001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112403.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122401.jpg", "media-conv/input/jpg_full/jpg/104501.jpg", "media-conv/input/jpg_full/jpg/113801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106403.jpg", "media-conv/input/jpg_full/jpg/129601.jpg", "media-conv/input/jpg_full/jpg/102200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102600.jpg", "media-conv/input/jpg_full/jpg/110000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116100.jpg", "media-conv/input/jpg_full/jpg/112600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105104.jpg", "media-conv/input/jpg_full/jpg/102701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106602.jpg", "media-conv/input/jpg_full/jpg/108103.jpg", "media-conv/input/jpg_full/jpg/122704.jpg", "media-conv/input/jpg_full/jpg/108201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114402.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129202.jpg", "media-conv/input/jpg_full/jpg/125703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121600.jpg", "media-conv/input/jpg_full/jpg/123701.jpg", "media-conv/input/jpg_full/jpg/111700.jpg", "media-conv/input/jpg_full/jpg/116901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123602.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/113403.jpg", "media-conv/input/jpg_full/jpg/102400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100400.jpg", "media-conv/input/jpg_full/jpg/107101.jpg", "media-conv/input/jpg_full/jpg/106501.jpg", "media-conv/input/jpg_full/jpg/113601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106301.jpg", "media-conv/input/jpg_full/jpg/112100.jpg", "media-conv/input/jpg_full/jpg/115301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118200.jpg", "media-conv/input/jpg_full/jpg/124202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128502.jpg", "media-conv/input/jpg_full/jpg/129003.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127502.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111800.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106701.jpg", "media-conv/input/jpg_full/jpg/118901.jpg", "media-conv/input/jpg_full/jpg/103102.jpg", "media-conv/input/jpg_full/jpg/114601.jpg", "media-conv/input/jpg_full/jpg/113701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107203.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112500.jpg", "media-conv/input/jpg_full/jpg/117300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124900.jpg", "media-conv/input/jpg_full/jpg/111601.jpg", "media-conv/input/jpg_full/jpg/123402.jpg", "media-conv/input/jpg_full/jpg/103700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100901.jpg", "media-conv/input/jpg_full/jpg/116702.jpg", "media-conv/input/jpg_full/jpg/122402.jpg", "media-conv/input/jpg_full/jpg/121403.jpg", "media-conv/input/jpg_full/jpg/122707.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116200.jpg", "media-conv/input/jpg_full/jpg/102801.jpg", "media-conv/input/jpg_full/jpg/123101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110100.jpg", "media-conv/input/jpg_full/jpg/102001.jpg", "media-conv/input/jpg_full/jpg/119401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108104.jpg", "media-conv/input/jpg_full/jpg/110300.jpg", "media-conv/input/jpg_full/jpg/105501.jpg", "media-conv/input/jpg_full/jpg/107201.jpg", "media-conv/input/jpg_full/jpg/116601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127500.jpg", "media-conv/input/jpg_full/jpg/127100.jpg", "media-conv/input/jpg_full/jpg/127200.jpg", "media-conv/input/jpg_full/jpg/115001.jpg", "media-conv/input/jpg_full/jpg/123901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112801.jpg", "media-conv/input/jpg_full/jpg/119702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121400.jpg", "media-conv/input/jpg_full/jpg/113301.jpg", "media-conv/input/jpg_full/jpg/100002.jpg", "media-conv/input/jpg_full/jpg/122504.jpg", "media-conv/input/jpg_full/jpg/122002.jpg", "media-conv/input/jpg_full/jpg/105601.jpg", "media-conv/input/jpg_full/jpg/109801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117300.jpg", "media-conv/input/jpg_full/jpg/110900.jpg", "media-conv/input/jpg_full/jpg/121501.jpg", "media-conv/input/jpg_full/jpg/100000.jpg", "media-conv/input/jpg_full/jpg/120501.jpg", "media-conv/input/jpg_full/jpg/125300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102401.jpg", "media-conv/input/jpg_full/jpg/107700.jpg", "media-conv/input/jpg_full/jpg/111002.jpg", "media-conv/input/jpg_full/jpg/102601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100700.jpg", "media-conv/input/jpg_full/jpg/115401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122101.jpg", "media-conv/input/jpg_full/jpg/106400.jpg", "media-conv/input/jpg_full/jpg/115101.jpg", "media-conv/input/jpg_full/jpg/102700.jpg", "media-conv/input/jpg_full/jpg/107000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124800.jpg", "media-conv/input/jpg_full/jpg/122500.jpg", "media-conv/input/jpg_full/jpg/124202.jpg", "media-conv/input/jpg_full/jpg/103700.jpg", "media-conv/input/jpg_full/jpg/119301.jpg", "media-conv/input/jpg_full/jpg/100300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125600.jpg", "media-conv/input/jpg_full/jpg/100500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101001.jpg", "media-conv/input/jpg_full/jpg/107101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124402.jpg", "media-conv/input/jpg_full/jpg/117200.jpg", "media-conv/input/jpg_full/jpg/114700.jpg", "media-conv/input/jpg_full/jpg/107902.jpg", "media-conv/input/jpg_full/jpg/104201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117900.jpg", "media-conv/input/jpg_full/jpg/126703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127503.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107301.jpg", "media-conv/input/jpg_full/jpg/119500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115400.jpg", "media-conv/input/jpg_full/jpg/125203.jpg", "media-conv/input/jpg_full/jpg/127600.jpg", "media-conv/input/jpg_full/jpg/118601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118802.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100503.jpg", "media-conv/input/jpg_full/jpg/101101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125300.jpg", "media-conv/input/jpg_full/jpg/114601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114801.jpg", "media-conv/input/jpg_full/jpg/107601.jpg", "media-conv/input/jpg_full/jpg/106704.jpg", "media-conv/input/jpg_full/jpg/116402.jpg", "media-conv/input/jpg_full/jpg/111002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114001.jpg", "media-conv/input/jpg_full/jpg/102401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109802.jpg", "media-conv/input/jpg_full/jpg/116000.jpg", "media-conv/input/jpg_full/jpg/106901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111701.jpg", "media-conv/input/jpg_full/jpg/104802.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107702.jpg", "media-conv/input/jpg_full/jpg/126700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121403.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129000.jpg", "media-conv/input/jpg_full/jpg/110501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111401.jpg", "media-conv/input/jpg_full/jpg/105300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103203.jpg", "media-conv/input/jpg_full/jpg/117901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117400.jpg", "media-conv/input/jpg_full/jpg/123002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/120401.jpg", "media-conv/input/jpg_full/jpg/127701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112002.jpg", "media-conv/input/jpg_full/jpg/114701.jpg", "media-conv/input/jpg_full/jpg/112501.jpg", "media-conv/input/jpg_full/jpg/101100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112700.jpg", "media-conv/input/jpg_full/jpg/103202.jpg", "media-conv/input/jpg_full/jpg/122705.jpg", "media-conv/input/jpg_full/jpg/109601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127202.jpg", "media-conv/input/jpg_full/jpg/114903.jpg", "media-conv/input/jpg_full/jpg/102400.jpg", "media-conv/input/jpg_full/jpg/120500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100301.jpg", "media-conv/input/jpg_full/jpg/127000.jpg", "media-conv/input/jpg_full/jpg/105002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114502.jpg", "media-conv/input/jpg_full/jpg/104902.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118003.jpg", "media-conv/input/jpg_full/jpg/116702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126202.jpg", "media-conv/input/jpg_full/jpg/107300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119200.jpg", "media-conv/input/jpg_full/jpg/118900.jpg", "media-conv/input/jpg_full/jpg/102202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128201.jpg", "media-conv/input/jpg_full/jpg/109001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115902.jpg", "media-conv/input/jpg_full/jpg/114502.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103801.jpg", "media-conv/input/jpg_full/jpg/125601.jpg", "media-conv/input/jpg_full/jpg/107600.jpg", "media-conv/input/jpg_full/jpg/114401.jpg", "media-conv/input/jpg_full/jpg/121000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127401.jpg", "media-conv/input/jpg_full/jpg/107202.jpg", "media-conv/input/jpg_full/jpg/115501.jpg", "media-conv/input/jpg_full/jpg/119704.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118302.jpg", "media-conv/input/jpg_full/jpg/107701.jpg", "media-conv/input/jpg_full/jpg/124101.jpg", "media-conv/input/jpg_full/jpg/109100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112602.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103000.jpg", "media-conv/input/jpg_full/jpg/109700.jpg", "media-conv/input/jpg_full/jpg/122701.jpg", "media-conv/input/jpg_full/jpg/123501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128700.jpg", "media-conv/input/jpg_full/jpg/108102.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116803.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124002.jpg", "media-conv/input/jpg_full/jpg/114101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116803.jpg", "media-conv/input/jpg_full/jpg/116001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103702.jpg", "media-conv/input/jpg_full/jpg/104901.jpg", "media-conv/input/jpg_full/jpg/113201.jpg", "media-conv/input/jpg_full/jpg/117600.jpg", "media-conv/input/jpg_full/jpg/119100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110800.jpg", "media-conv/input/jpg_full/jpg/127100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/120900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115800.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116800.jpg", "media-conv/input/jpg_full/jpg/103101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107800.jpg", "media-conv/input/jpg_full/jpg/129002.jpg", "media-conv/input/jpg_full/jpg/117501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108000.jpg", "media-conv/input/jpg_full/jpg/111600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119604.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121801.jpg", "media-conv/input/jpg_full/jpg/111901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104200.jpg", "media-conv/input/jpg_full/jpg/101502.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106401.jpg", "media-conv/input/jpg_full/jpg/112407.jpg", "media-conv/input/jpg_full/jpg/113800.jpg", "media-conv/input/jpg_full/jpg/107100.jpg", "media-conv/input/jpg_full/jpg/118202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124001.jpg", "media-conv/input/jpg_full/jpg/127801.jpg", "media-conv/input/jpg_full/jpg/129501.jpg", "media-conv/input/jpg_full/jpg/121801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115000.jpg", "media-conv/input/jpg_full/jpg/103401.jpg", "media-conv/input/jpg_full/jpg/116300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121404.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103101.jpg", "media-conv/input/jpg_full/jpg/107900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114900.jpg_copy.jpg"], "wall_time": 179.06605581099575, "start_time": "2025-01-10T12:40:31.003088+00:00", "category": "media-conv"} +{"script": "media-conv/scripts/to_mp3.sh", "user_time": 202.99, "system_time": 23.11, "max_unique_set_size": 156545024, "read_chars": 4617712089, "write_chars": 2632182095, "user_time_in_shell": 0.01, "system_time_in_shell": 0.14, "all_input_files": ["media-conv/input/jpg_full/jpg/124200.jpg", "media-conv/input/jpg_full/jpg/119200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124802.jpg", "media-conv/input/jpg_full/jpg/106600.jpg", "media-conv/input/jpg_full/jpg/118303.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112406.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126400.jpg", "media-conv/input/jpg_full/jpg/122203.jpg", "media-conv/input/jpg_full/jpg/108401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/120201.jpg", "media-conv/input/jpg_full/jpg/128101.jpg", "media-conv/input/jpg_full/jpg/102402.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125101.jpg", "media-conv/input/jpg_full/jpg/106702.jpg", "media-conv/input/jpg_full/jpg/113101.jpg", "media-conv/input/jpg_full/jpg/128701.jpg", "media-conv/input/jpg_full/jpg/118000.jpg", "media-conv/input/jpg_full/jpg/105901.jpg", "media-conv/input/jpg_full/jpg/115702.jpg", "media-conv/input/jpg_full/jpg/126702.jpg", "media-conv/input/jpg_full/jpg/126803.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106603.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126000.jpg", "media-conv/input/jpg_full/jpg/118401.jpg", "media-conv/input/jpg_full/jpg/118000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110001.jpg", "media-conv/input/jpg_full/jpg/128300.jpg", "media-conv/input/jpg_full/jpg/108901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127700.jpg", "media-conv/input/jpg_full/jpg/105200.jpg", "media-conv/input/jpg_full/jpg/101800.jpg", "media-conv/input/jpg_full/jpg/128101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105800.jpg", "media-conv/input/jpg_full/jpg/111101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102500.jpg", "media-conv/input/jpg_full/jpg/121800.jpg", "media-conv/input/jpg_full/jpg/121100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/113401.jpg", "media-conv/input/jpg_full/jpg/129001.jpg", "media-conv/input/jpg_full/jpg/120500.jpg", "media-conv/input/jpg_full/jpg/108104.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127402.jpg", "media-conv/input/jpg_full/jpg/124000.jpg", "media-conv/input/jpg_full/jpg/101000.jpg", "media-conv/input/jpg_full/jpg/114901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110400.jpg", "media-conv/input/jpg_full/jpg/117701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129801.jpg", "media-conv/input/jpg_full/jpg/122708.jpg", "media-conv/input/jpg_full/jpg/126102.jpg", "media-conv/input/jpg_full/jpg/107202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107900.jpg", "media-conv/input/jpg_full/jpg/111501.jpg", "media-conv/input/jpg_full/jpg/118501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106601.jpg", "media-conv/input/jpg_full/jpg/102303.jpg", "media-conv/input/jpg_full/jpg/104400.jpg", "media-conv/input/jpg_full/jpg/120601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126100.jpg", "media-conv/input/jpg_full/jpg/102301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128501.jpg", "media-conv/input/jpg_full/jpg/121601.jpg", "media-conv/input/jpg_full/jpg/109501.jpg", "media-conv/input/jpg_full/jpg/120800.jpg", "media-conv/input/jpg_full/jpg/128501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100300.jpg", "media-conv/input/jpg_full/jpg/126705.jpg", "media-conv/input/jpg_full/jpg/122900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110401.jpg", "media-conv/input/jpg_full/jpg/123500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119100.jpg", "media-conv/input/jpg_full/jpg/110702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125700.jpg", "media-conv/input/jpg_full/jpg/105300.jpg", "media-conv/input/jpg_full/jpg/112302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102900.jpg", "media-conv/input/jpg_full/jpg/125202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122502.jpg", "media-conv/input/jpg_full/jpg/126101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100500.jpg", "media-conv/input/jpg_full/jpg/112402.jpg", "media-conv/input/jpg_full/jpg/107901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125501.jpg", "media-conv/input/jpg_full/jpg/122102.jpg", "media-conv/input/jpg_full/jpg/109000.jpg", "media-conv/input/jpg_full/jpg/110701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129800.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128800.jpg", "media-conv/input/jpg_full/jpg/114400.jpg", "media-conv/input/jpg_full/jpg/126301.jpg", "media-conv/input/jpg_full/jpg/113100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112003.jpg", "media-conv/input/jpg_full/jpg/102100.jpg", "media-conv/input/jpg_full/jpg/101201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118701.jpg", "media-conv/input/jpg_full/jpg/122302.jpg", "media-conv/input/jpg_full/jpg/120300.jpg", "media-conv/input/jpg_full/jpg/110300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127300.jpg", "media-conv/input/jpg_full/jpg/117800.jpg", "media-conv/input/jpg_full/jpg/126201.jpg", "media-conv/input/jpg_full/jpg/127500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116601.jpg", "media-conv/input/jpg_full/jpg/129802.jpg", "media-conv/input/jpg_full/jpg/101901.jpg", "media-conv/input/jpg_full/jpg/107203.jpg", "media-conv/input/jpg_full/jpg/121200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119101.jpg", "media-conv/input/jpg_full/jpg/121900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116703.jpg", "media-conv/input/jpg_full/jpg/121100.jpg", "media-conv/input/jpg_full/jpg/108100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122503.jpg", "media-conv/input/jpg_full/jpg/122702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129100.jpg", "media-conv/input/jpg_full/jpg/100900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114503.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109402.jpg", "media-conv/input/jpg_full/jpg/125102.jpg", "media-conv/input/jpg_full/jpg/104003.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101502.jpg", "media-conv/input/jpg_full/jpg/111500.jpg", "media-conv/input/jpg_full/jpg/112300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100902.jpg", "media-conv/input/jpg_full/jpg/123204.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114002.jpg", "media-conv/input/jpg_full/jpg/124700.jpg", "media-conv/input/jpg_full/jpg/126501.jpg", "media-conv/input/jpg_full/jpg/102501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126703.jpg", "media-conv/input/jpg_full/jpg/100001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112403.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122401.jpg", "media-conv/input/jpg_full/jpg/104501.jpg", "media-conv/input/jpg_full/jpg/113801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118302.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106403.jpg", "media-conv/input/jpg_full/jpg/129601.jpg", "media-conv/input/jpg_full/jpg/102200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102600.jpg", "media-conv/input/jpg_full/jpg/110000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116100.jpg", "media-conv/input/jpg_full/jpg/112600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105104.jpg", "media-conv/input/jpg_full/jpg/102701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106602.jpg", "media-conv/input/jpg_full/jpg/108103.jpg", "media-conv/input/jpg_full/jpg/122704.jpg", "media-conv/input/jpg_full/jpg/108201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114402.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129202.jpg", "media-conv/input/jpg_full/jpg/125703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121600.jpg", "media-conv/input/jpg_full/jpg/123701.jpg", "media-conv/input/jpg_full/jpg/111700.jpg", "media-conv/input/jpg_full/jpg/116901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123602.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/113403.jpg", "media-conv/input/jpg_full/jpg/102400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100400.jpg", "media-conv/input/jpg_full/jpg/107101.jpg", "media-conv/input/jpg_full/jpg/106501.jpg", "media-conv/input/jpg_full/jpg/113601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106301.jpg", "media-conv/input/jpg_full/jpg/112100.jpg", "media-conv/input/jpg_full/jpg/115301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118200.jpg", "media-conv/input/jpg_full/jpg/124202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128502.jpg", "media-conv/input/jpg_full/jpg/129003.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127502.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111800.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106701.jpg", "media-conv/input/jpg_full/jpg/118901.jpg", "media-conv/input/jpg_full/jpg/103102.jpg", "media-conv/input/jpg_full/jpg/114601.jpg", "media-conv/input/jpg_full/jpg/113701.jpg_copy.jpg", "media-conv/input/wav_full", "media-conv/input/jpg_full/jpg/107203.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112500.jpg", "media-conv/input/jpg_full/jpg/117300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124900.jpg", "media-conv/input/jpg_full/jpg/111601.jpg", "media-conv/input/jpg_full/jpg/123402.jpg", "media-conv/input/jpg_full/jpg/103700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100901.jpg", "media-conv/input/jpg_full/jpg/116702.jpg", "media-conv/input/jpg_full/jpg/122402.jpg", "media-conv/input/jpg_full/jpg/121403.jpg", "media-conv/input/jpg_full/jpg/122707.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108200.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116200.jpg", "media-conv/input/jpg_full/jpg/102801.jpg", "media-conv/input/jpg_full/jpg/123101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110100.jpg", "media-conv/input/jpg_full/jpg/102001.jpg", "media-conv/input/jpg_full/jpg/119401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108104.jpg", "media-conv/input/jpg_full/jpg/110300.jpg", "media-conv/input/jpg_full/jpg/105501.jpg", "media-conv/input/jpg_full/jpg/107201.jpg", "media-conv/input/jpg_full/jpg/116601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127500.jpg", "media-conv/input/jpg_full/jpg/127100.jpg", "media-conv/input/jpg_full/jpg/127200.jpg", "media-conv/input/jpg_full/jpg/115001.jpg", "media-conv/input/jpg_full/jpg/123901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112801.jpg", "media-conv/input/jpg_full/jpg/119702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121400.jpg", "media-conv/input/jpg_full/jpg/113301.jpg", "media-conv/input/jpg_full/jpg/100002.jpg", "media-conv/input/jpg_full/jpg/122504.jpg", "media-conv/input/jpg_full/jpg/122002.jpg", "media-conv/input/jpg_full/jpg/105601.jpg", "media-conv/input/jpg_full/jpg/109801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117300.jpg", "media-conv/input/jpg_full/jpg/110900.jpg", "media-conv/input/jpg_full/jpg/121501.jpg", "media-conv/input/jpg_full/jpg/100000.jpg", "media-conv/input/jpg_full/jpg/120501.jpg", "media-conv/input/jpg_full/jpg/125300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102401.jpg", "media-conv/input/jpg_full/jpg/107700.jpg", "media-conv/input/jpg_full/jpg/111002.jpg", "media-conv/input/jpg_full/jpg/102601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100700.jpg", "media-conv/input/jpg_full/jpg/115401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122101.jpg", "media-conv/input/jpg_full/jpg/106400.jpg", "media-conv/input/jpg_full/jpg/115101.jpg", "media-conv/input/jpg_full/jpg/102700.jpg", "media-conv/input/jpg_full/jpg/107000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124800.jpg", "media-conv/input/jpg_full/jpg/122500.jpg", "media-conv/input/jpg_full/jpg/124202.jpg", "media-conv/input/jpg_full/jpg/103700.jpg", "media-conv/input/jpg_full/jpg/119301.jpg", "media-conv/input/jpg_full/jpg/100300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125600.jpg", "media-conv/input/jpg_full/jpg/100500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/101001.jpg", "media-conv/input/jpg_full/jpg/107101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124402.jpg", "media-conv/input/jpg_full/jpg/117200.jpg", "media-conv/input/jpg_full/jpg/114700.jpg", "media-conv/input/jpg_full/jpg/107902.jpg", "media-conv/input/jpg_full/jpg/104201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117900.jpg", "media-conv/input/jpg_full/jpg/126703.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127503.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107301.jpg", "media-conv/input/jpg_full/jpg/119500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115400.jpg", "media-conv/input/jpg_full/jpg/125203.jpg", "media-conv/input/jpg_full/jpg/127600.jpg", "media-conv/input/jpg_full/jpg/118601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118802.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100503.jpg", "media-conv/input/jpg_full/jpg/101101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125300.jpg", "media-conv/input/jpg_full/jpg/114601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114801.jpg", "media-conv/input/jpg_full/jpg/107601.jpg", "media-conv/input/jpg_full/jpg/106704.jpg", "media-conv/input/jpg_full/jpg/116402.jpg", "media-conv/input/jpg_full/jpg/111002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114001.jpg", "media-conv/input/jpg_full/jpg/102401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/109802.jpg", "media-conv/input/jpg_full/jpg/116000.jpg", "media-conv/input/jpg_full/jpg/106901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111701.jpg", "media-conv/input/jpg_full/jpg/104802.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107702.jpg", "media-conv/input/jpg_full/jpg/126700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121403.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129000.jpg", "media-conv/input/jpg_full/jpg/110501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/111401.jpg", "media-conv/input/jpg_full/jpg/105300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103203.jpg", "media-conv/input/jpg_full/jpg/117901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117400.jpg", "media-conv/input/jpg_full/jpg/123002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/120401.jpg", "media-conv/input/jpg_full/jpg/127701.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112002.jpg", "media-conv/input/jpg_full/jpg/114701.jpg", "media-conv/input/jpg_full/jpg/112501.jpg", "media-conv/input/jpg_full/jpg/101100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112700.jpg", "media-conv/input/jpg_full/jpg/103202.jpg", "media-conv/input/jpg_full/jpg/122705.jpg", "media-conv/input/jpg_full/jpg/109601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/125001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127202.jpg", "media-conv/input/jpg_full/jpg/114903.jpg", "media-conv/input/jpg_full/jpg/102400.jpg", "media-conv/input/jpg_full/jpg/120500.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/100301.jpg", "media-conv/input/jpg_full/jpg/127000.jpg", "media-conv/input/jpg_full/jpg/105002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114502.jpg", "media-conv/input/jpg_full/jpg/104902.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118003.jpg", "media-conv/input/jpg_full/jpg/116702.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/126202.jpg", "media-conv/input/jpg_full/jpg/107300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119200.jpg", "media-conv/input/jpg_full/jpg/118900.jpg", "media-conv/input/jpg_full/jpg/102202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128201.jpg", "media-conv/input/jpg_full/jpg/109001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/129300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115902.jpg", "media-conv/input/jpg_full/jpg/114502.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103801.jpg", "media-conv/input/jpg_full/jpg/125601.jpg", "media-conv/input/jpg_full/jpg/107600.jpg", "media-conv/input/jpg_full/jpg/114401.jpg", "media-conv/input/jpg_full/jpg/121000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/127401.jpg", "media-conv/input/jpg_full/jpg/107202.jpg", "media-conv/input/jpg_full/jpg/115501.jpg", "media-conv/input/jpg_full/jpg/119704.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/118302.jpg", "media-conv/input/jpg_full/jpg/107701.jpg", "media-conv/input/jpg_full/jpg/124101.jpg", "media-conv/input/jpg_full/jpg/109100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112602.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103000.jpg", "media-conv/input/jpg_full/jpg/109700.jpg", "media-conv/input/jpg_full/jpg/122701.jpg", "media-conv/input/jpg_full/jpg/123501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108601.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/128700.jpg", "media-conv/input/jpg_full/jpg/108102.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116803.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124002.jpg", "media-conv/input/jpg_full/jpg/114101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105400.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/117000.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116803.jpg", "media-conv/input/jpg_full/jpg/116001.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/122301.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103702.jpg", "media-conv/input/jpg_full/jpg/104901.jpg", "media-conv/input/jpg_full/jpg/113201.jpg", "media-conv/input/jpg_full/jpg/117600.jpg", "media-conv/input/jpg_full/jpg/119100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/110800.jpg", "media-conv/input/jpg_full/jpg/127100.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105401.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/120900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115800.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107201.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116800.jpg", "media-conv/input/jpg_full/jpg/103101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/107800.jpg", "media-conv/input/jpg_full/jpg/129002.jpg", "media-conv/input/jpg_full/jpg/117501.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/102101.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108000.jpg", "media-conv/input/jpg_full/jpg/111600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/108600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/112002.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/119604.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121801.jpg", "media-conv/input/jpg_full/jpg/111901.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/116700.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/104200.jpg", "media-conv/input/jpg_full/jpg/101502.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/106401.jpg", "media-conv/input/jpg_full/jpg/112407.jpg", "media-conv/input/jpg_full/jpg/113800.jpg", "media-conv/input/jpg_full/jpg/107100.jpg", "media-conv/input/jpg_full/jpg/118202.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/124001.jpg", "media-conv/input/jpg_full/jpg/127801.jpg", "media-conv/input/jpg_full/jpg/129501.jpg", "media-conv/input/jpg_full/jpg/121801.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/115000.jpg", "media-conv/input/jpg_full/jpg/103401.jpg", "media-conv/input/jpg_full/jpg/116300.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/121404.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/105600.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/103101.jpg", "media-conv/input/jpg_full/jpg/107900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/123900.jpg_copy.jpg", "media-conv/input/jpg_full/jpg/114900.jpg_copy.jpg"], "wall_time": 206.56266089699056, "start_time": "2025-01-10T12:40:31.003088+00:00", "category": "media-conv"} +{"script": "nlp/scripts/bigrams_appear_twice.sh", "user_time": 9.78, "system_time": 0.8, "max_unique_set_size": 13131776, "read_chars": 928053904, "write_chars": 789075897, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 9.33662349099177, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/bigrams.sh", "user_time": 8.89, "system_time": 0.85, "max_unique_set_size": 13131776, "read_chars": 808585570, "write_chars": 782274275, "user_time_in_shell": 0.0, "system_time_in_shell": 0.06, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 8.435692546001519, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/compare_exodus_genesis.sh", "user_time": 10.54, "system_time": 0.89, "max_unique_set_size": 13131776, "read_chars": 641903287, "write_chars": 460112263, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 9.926395350004896, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/count_consonant_seq.sh", "user_time": 4.25, "system_time": 0.39, "max_unique_set_size": 13131776, "read_chars": 375192486, "write_chars": 298940437, "user_time_in_shell": 0.01, "system_time_in_shell": 0.03, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 3.8162337130052038, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/count_morphs.sh", "user_time": 1.75, "system_time": 0.24, "max_unique_set_size": 13131776, "read_chars": 251192451, "write_chars": 185031949, "user_time_in_shell": 0.0, "system_time_in_shell": 0.03, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 1.5124635529937223, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/count_trigrams.sh", "user_time": 9.13, "system_time": 0.76, "max_unique_set_size": 13131776, "read_chars": 1103252076, "write_chars": 1047640341, "user_time_in_shell": 0.0, "system_time_in_shell": 0.03, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 8.623125780999544, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/count_vowel_seq.sh", "user_time": 1.07, "system_time": 0.15, "max_unique_set_size": 13131776, "read_chars": 248472059, "write_chars": 171361609, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 0.8114214259985602, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/count_words.sh", "user_time": 7.5, "system_time": 0.43, "max_unique_set_size": 13131776, "read_chars": 388390223, "write_chars": 330183792, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 6.720475797992549, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/find_anagrams.sh", "user_time": 8.21, "system_time": 0.5, "max_unique_set_size": 13131776, "read_chars": 387891219, "write_chars": 296250506, "user_time_in_shell": 0.0, "system_time_in_shell": 0.03, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 7.421679824008606, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/letter_words.sh", "user_time": 12.63, "system_time": 0.56, "max_unique_set_size": 13131776, "read_chars": 594938782, "write_chars": 439915368, "user_time_in_shell": 0.01, "system_time_in_shell": 0.07, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 11.426410068001132, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/merge_upper.sh", "user_time": 7.95, "system_time": 0.45, "max_unique_set_size": 13131776, "read_chars": 462960412, "write_chars": 402207541, "user_time_in_shell": 0.0, "system_time_in_shell": 0.05, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 7.021482936994289, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/sort.sh", "user_time": 7.84, "system_time": 0.55, "max_unique_set_size": 13131776, "read_chars": 408384881, "write_chars": 349587536, "user_time_in_shell": 0.0, "system_time_in_shell": 0.05, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 7.121749034005916, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/sort_words_by_folding.sh", "user_time": 7.85, "system_time": 0.48, "max_unique_set_size": 13131776, "read_chars": 408384888, "write_chars": 349587536, "user_time_in_shell": 0.0, "system_time_in_shell": 0.05, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 7.021611097006826, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/sort_words_by_num_of_syllables.sh", "user_time": 8.12, "system_time": 0.54, "max_unique_set_size": 13131776, "read_chars": 354262541, "write_chars": 266625003, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 7.4341789960017195, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/sort_words_by_rhyming.sh", "user_time": 8.6, "system_time": 0.62, "max_unique_set_size": 13131776, "read_chars": 448174483, "write_chars": 388395024, "user_time_in_shell": 0.01, "system_time_in_shell": 0.06, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 7.534731641004328, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/syllable_words_1.sh", "user_time": 10.39, "system_time": 0.38, "max_unique_set_size": 13131776, "read_chars": 326146147, "write_chars": 259996887, "user_time_in_shell": 0.0, "system_time_in_shell": 0.06, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 6.009969949009246, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/syllable_words_2.sh", "user_time": 7.78, "system_time": 0.28, "max_unique_set_size": 13131776, "read_chars": 301992695, "write_chars": 224772802, "user_time_in_shell": 0.0, "system_time_in_shell": 0.05, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 5.417854590006755, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/trigram_rec.sh", "user_time": 1.59, "system_time": 0.27, "max_unique_set_size": 13131776, "read_chars": 310756267, "write_chars": 148276166, "user_time_in_shell": 0.01, "system_time_in_shell": 0.06, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 1.0244607579952572, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/uppercase_by_token.sh", "user_time": 6.37, "system_time": 0.22, "max_unique_set_size": 13131776, "read_chars": 289069278, "write_chars": 211593619, "user_time_in_shell": 0.01, "system_time_in_shell": 0.02, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 5.117088548999163, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/uppercase_by_type.sh", "user_time": 7.1, "system_time": 0.39, "max_unique_set_size": 13131776, "read_chars": 306392594, "write_chars": 228325962, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 6.420154648993048, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/verses_2om_3om_2instances.sh", "user_time": 0.57, "system_time": 0.14, "max_unique_set_size": 13131776, "read_chars": 450263264, "write_chars": 222242081, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 0.5110087089997251, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/vowel_sequencies_gr_1K.sh", "user_time": 9.34, "system_time": 0.55, "max_unique_set_size": 13131776, "read_chars": 390622828, "write_chars": 310251098, "user_time_in_shell": 0.0, "system_time_in_shell": 0.06, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 6.921100444000331, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "nlp/scripts/words_no_vowels.sh", "user_time": 5.92, "system_time": 0.32, "max_unique_set_size": 13131776, "read_chars": 299310611, "write_chars": 220898262, "user_time_in_shell": 0.0, "system_time_in_shell": 0.04, "all_input_files": ["nlp/inputs/pg/pgw050mo.txt", "nlp/inputs/pg/66682-0.txt", "nlp/inputs/pg/66690-0.txt", "nlp/inputs/pg/66626-0.txt", "nlp/inputs/pg/66681-0.txt", "nlp/inputs/pg/pgwmo04.txt", "nlp/inputs/pg/66632-0.txt", "nlp/inputs/pg/66692-0.txt", "nlp/inputs/pg/655.txt", "nlp/inputs/pg/66624-0.txt", "nlp/inputs/pg/66678-0.txt", "nlp/inputs/pg/66625-0.txt", "nlp/inputs/pg/66631-0.txt", "nlp/inputs/pg/66663-0.txt", "nlp/inputs/pg/6663.txt", "nlp/inputs/pg/6660.txt", "nlp/inputs/pg/6664.txt", "nlp/inputs/pg/66673-0.txt", "nlp/inputs/pg/66653-0.txt", "nlp/inputs/pg/pgw050pq.txt", "nlp/inputs/pg/66689-0.txt", "nlp/inputs/pg/66693-0.txt", "nlp/inputs/pg/pgwab04.txt", "nlp/inputs/pg/66620-0.txt", "nlp/inputs/pg/66623-0.txt", "nlp/inputs/pg/pgw050ab.txt", "nlp/inputs/pg/66666-0.txt", "nlp/inputs/pg/66637-0.txt", "nlp/inputs/pg/66688-0.txt", "nlp/inputs/pg/66655-0.txt", "nlp/inputs/pg/66638-0.txt", "nlp/inputs/pg/66607-0.txt", "nlp/inputs/pg/66664-0.txt", "nlp/inputs/pg/fchld10.txt", "nlp/inputs/pg/66636-0.txt", "nlp/inputs/pg/6665-8.txt", "nlp/inputs/pg/66677-0.txt", "nlp/inputs/pg/66675-0.txt", "nlp/inputs/pg/6661.txt", "nlp/inputs/pg/6662.txt", "nlp/inputs/pg/660.txt", "nlp/inputs/pg/wvr1210.txt", "nlp/inputs/pg/66627-0.txt", "nlp/inputs/pg/66691-0.txt", "nlp/inputs/pg/pgwpq04.txt", "nlp/inputs/pg/66662-0.txt", "nlp/inputs/pg/66650-0.txt", "nlp/inputs/pg/66671-0.txt", "nlp/inputs/pg/66697-0.txt", "nlp/inputs/pg/66674-0.txt", "nlp/inputs/pg/66609-0.txt", "nlp/inputs/pg/66694-0.txt", "nlp/inputs/pg/66603-0.txt", "nlp/inputs/pg/66630-0.txt", "nlp/inputs/pg/66679-0.txt", "nlp/inputs/pg/66685-0.txt", "nlp/inputs/pg/66622-0.txt", "nlp/inputs/pg/66695-0.txt", "nlp/inputs/pg/666.txt", "nlp/inputs/pg/teop210.txt", "nlp/inputs/pg/6664-0.txt", "nlp/inputs/pg/6669.txt", "nlp/inputs/pg/66651-0.txt", "nlp/inputs/pg/665.txt", "nlp/inputs/pg/66639-0.txt", "nlp/inputs/pg/lttlc10.txt"], "wall_time": 5.230413461991702, "start_time": "2025-01-10T12:37:45.411521+00:00", "category": "nlp"} +{"script": "oneliners/scripts/bi-grams.sh", "user_time": 444.9, "system_time": 39.13, "max_unique_set_size": 2093056, "read_chars": 63476405984, "write_chars": 60396294192, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 298.7425371790014, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/diff.sh", "user_time": 39.81, "system_time": 21.06, "max_unique_set_size": 2093056, "read_chars": 41664793721, "write_chars": 35502725175, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 30.565667358998326, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/nfa-regex.sh", "user_time": 1636.34, "system_time": 2.36, "max_unique_set_size": 2093056, "read_chars": 3081032067, "write_chars": 3017179000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/1G.txt"], "wall_time": 1637.6071464969864, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/set-diff.sh", "user_time": 43.47, "system_time": 5.95, "max_unique_set_size": 2093056, "read_chars": 16158325285, "write_chars": 10322619000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 40.66662426399125, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/sort.sh", "user_time": 16.34, "system_time": 7.74, "max_unique_set_size": 2093056, "read_chars": 14670369326, "write_chars": 14670353576, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 23.9465265750041, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/sort-sort.sh", "user_time": 26.35, "system_time": 14.6, "max_unique_set_size": 2093056, "read_chars": 29181544408, "write_chars": 29181519504, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 37.377956152005936, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/spell.sh", "user_time": 259.89, "system_time": 19.56, "max_unique_set_size": 2093056, "read_chars": 35232884718, "write_chars": 32145001797, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 195.4011487319949, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/top-n.sh", "user_time": 347.42, "system_time": 20.03, "max_unique_set_size": 2093056, "read_chars": 29263494172, "write_chars": 26182503748, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 294.46078392499476, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/uniq-ips.sh", "user_time": 15.98, "system_time": 2.04, "max_unique_set_size": 2093056, "read_chars": 4057128291, "write_chars": 4057091781, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/1G.txt", "oneliners/inputs/logs-popcount-org.txt"], "wall_time": 16.037634951004293, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "oneliners/scripts/wf.sh", "user_time": 335.75, "system_time": 19.64, "max_unique_set_size": 2093056, "read_chars": 29263483079, "write_chars": 26182598348, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["oneliners/inputs/3G.txt", "oneliners/inputs/1G.txt"], "wall_time": 285.8534685880004, "start_time": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners"} +{"script": "riker/scripts/lua/run.sh", "user_time": 4.28, "system_time": 0.2, "max_unique_set_size": 62746624, "read_chars": 34086505, "write_chars": 4556229, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 4.709514137997758, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "riker/scripts/memcached/run.sh", "user_time": 8.2, "system_time": 0.6, "max_unique_set_size": 62746624, "read_chars": 179006030, "write_chars": 24708126, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 8.917289544988307, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "riker/scripts/redis/run.sh", "user_time": 19.8, "system_time": 1.17, "max_unique_set_size": 62746624, "read_chars": 490972894, "write_chars": 134867962, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 21.140171831008047, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "riker/scripts/sqlite/run.sh", "user_time": 63.37, "system_time": 0.96, "max_unique_set_size": 62746624, "read_chars": 397470054, "write_chars": 239330450, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 64.73437690600986, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "riker/scripts/vim/run.sh", "user_time": 53.93, "system_time": 2.35, "max_unique_set_size": 62746624, "read_chars": 464475773, "write_chars": 149990873, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 56.511617022013525, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "riker/scripts/xz-clang/run.sh", "user_time": 2.22, "system_time": 0.84, "max_unique_set_size": 62746624, "read_chars": 43970837, "write_chars": 906586, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 3.2069843230128754, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "riker/scripts/xz/run.sh", "user_time": 2.04, "system_time": 0.51, "max_unique_set_size": 62746624, "read_chars": 98955156, "write_chars": 2237006, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["riker/input/scripts/lua/lua-5.4.3/src/lmathlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lobject.c", "riker/input/scripts/lua/lua-5.4.3/src/ltable.c", "riker/input/scripts/lua/lua-5.4.3/src/ltm.c", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.o", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.o", "riker/input/scripts/lua/lua-5.4.3/src/lctype.o", "riker/input/scripts/lua/lua-5.4.3/src/lparser.o", "riker/input/scripts/lua/lua-5.4.3/src/loslib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.o", "riker/input/scripts/lua/lua-5.4.3/src/lmem.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.c", "riker/input/scripts/lua/lua-5.4.3/src/ldblib.c", "riker/input/scripts/lua/lua-5.4.3/src/lcode.o", "riker/input/scripts/lua/lua-5.4.3/src/lua", "riker/input/scripts/lua/lua-5.4.3/src/ltable.o", "riker/input/scripts/lua/lua-5.4.3/src/lcorolib.o", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.c", "riker/input/scripts/lua/lua-5.4.3/src/lstate.o", "riker/input/scripts/lua/lua-5.4.3/src/lcode.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.o", "riker/input/scripts/lua/lua-5.4.3/src/ldo.c", "riker/input/scripts/lua/lua-5.4.3/src/liolib.c", "riker/input/scripts/lua/lua-5.4.3/src/lua.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.o", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.c", "riker/input/scripts/lua/lua-5.4.3/src/luac", "riker/input/scripts/lua/lua-5.4.3/src/lstrlib.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.o", "riker/input/scripts/lua/lua-5.4.3/src/lmathlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.o", "riker/input/scripts/lua/lua-5.4.3/src/loadlib.o", "riker/input/scripts/lua/lua-5.4.3/src/lstring.c", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.c", "riker/input/scripts/lua/lua-5.4.3/src/lzio.c", "riker/input/scripts/lua/lua-5.4.3/src/lapi.c", "riker/input/scripts/lua/lua-5.4.3/src/lutf8lib.o", "riker/input/scripts/lua/lua-5.4.3/src/lauxlib.c", "riker/input/scripts/lua/lua-5.4.3/src/ldo.o", "riker/input/scripts/lua/lua-5.4.3/src/liolib.o", "riker/input/scripts/lua/lua-5.4.3/src/llex.c", "riker/input/scripts/lua/lua-5.4.3/src/lmem.c", "riker/input/scripts/lua/lua-5.4.3/src/stmsk3g0", "riker/input/scripts/lua/lua-5.4.3/src/lundump.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.c", "riker/input/scripts/lua/lua-5.4.3/src/liblua.a", "riker/input/scripts/lua/lua-5.4.3/src/lzio.o", "riker/input/scripts/lua/lua-5.4.3/src/ldump.o", "riker/input/scripts/lua/lua-5.4.3/src/lua.c", "riker/input/scripts/lua/lua-5.4.3/src/lvm.c", "riker/input/scripts/lua/lua-5.4.3/src/lfunc.c", "riker/input/scripts/lua/lua-5.4.3/src/loslib.o", "riker/input/scripts/lua/lua-5.4.3/src/lundump.c", "riker/input/scripts/lua/lua-5.4.3/src/lopcodes.o", "riker/input/scripts/lua/lua-5.4.3/src/stl5yAVi", "riker/input/scripts/lua/lua-5.4.3/src/ltablib.o", "riker/input/scripts/lua/lua-5.4.3/src/ldebug.o", "riker/input/scripts/lua/lua-5.4.3/src/lgc.c", "riker/input/scripts/lua/lua-5.4.3/src/lstring.o", "riker/input/scripts/lua/lua-5.4.3/src/lobject.o", "riker/input/scripts/lua/lua-5.4.3/src/linit.c", "riker/input/scripts/lua/lua-5.4.3/src/lparser.c", "riker/input/scripts/lua/lua-5.4.3/src/lgc.o", "riker/input/scripts/lua/lua-5.4.3/src/luac.o", "riker/input/scripts/lua/lua-5.4.3/src/lstate.c", "riker/input/scripts/lua/lua-5.4.3/src/lbaselib.o", "riker/input/scripts/lua/lua-5.4.3/src/ltm.o"], "wall_time": 2.6057609580020653, "start_time": "2025-01-10T12:07:43.505828+00:00", "category": "riker"} +{"script": "sklearn/scripts/run.sh", "user_time": 159.27, "system_time": 3.09, "max_unique_set_size": 818171904, "read_chars": 2439877924, "write_chars": 455995111, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["sklearn/tmp/X_train.obj", "sklearn/tmp/y_train.obj", "sklearn/scripts/warm_start.py", "sklearn/tmp/model.obj", "sklearn/tmp/X_test.obj", "sklearn/scripts/parallel.py", "sklearn/scripts/reshape_classes.py", "sklearn/scripts/adjust_coef.py", "sklearn/scripts/classes.py", "sklearn/scripts/penalty.py", "sklearn/inputs/covertype/samples_py3", "sklearn/scripts/zip_coef.py"], "wall_time": 28.283742457002518, "start_time": "2025-01-10T12:07:13.511143+00:00", "category": "sklearn"} +{"script": "unix50/scripts/10.sh", "user_time": 25.54, "system_time": 3.63, "max_unique_set_size": 684032, "read_chars": 11818278202, "write_chars": 8673197102, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/4_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 11.226252410997404, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/11.sh", "user_time": 25.4, "system_time": 3.57, "max_unique_set_size": 684032, "read_chars": 11855143363, "write_chars": 8710066180, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/4_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 12.627454944013152, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/12.sh", "user_time": 74.28, "system_time": 6.12, "max_unique_set_size": 684032, "read_chars": 15914449469, "write_chars": 12769376836, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/4_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 51.088190139998915, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/13.sh", "user_time": 10.29, "system_time": 3.3, "max_unique_set_size": 684032, "read_chars": 9744102099, "write_chars": 7595775000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/5_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 4.7073805990075925, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/14.sh", "user_time": 127.79, "system_time": 16.11, "max_unique_set_size": 684032, "read_chars": 29358540509, "write_chars": 27823299216, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt", "unix50/inputs/6_3G.txt"], "wall_time": 129.32853851698746, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/15.sh", "user_time": 6.29, "system_time": 3.1, "max_unique_set_size": 684032, "read_chars": 8390574105, "write_chars": 5245269009, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/7_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 4.906634163999115, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/16.sh", "user_time": 33.25, "system_time": 3.87, "max_unique_set_size": 684032, "read_chars": 10086159342, "write_chars": 6940839919, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/7_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 33.157955230999505, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/17.sh", "user_time": 32.24, "system_time": 2.98, "max_unique_set_size": 684032, "read_chars": 8575325255, "write_chars": 5430011979, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/7_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 31.65440217300784, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/18.sh", "user_time": 1.33, "system_time": 2.6, "max_unique_set_size": 684032, "read_chars": 9138702075, "write_chars": 6093525007, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/8_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 2.013329833993339, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/19.sh", "user_time": 2.71, "system_time": 1.08, "max_unique_set_size": 684032, "read_chars": 6455836181, "write_chars": 3411525000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/8_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 2.5046745279978495, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/1.sh", "user_time": 5.98, "system_time": 2.62, "max_unique_set_size": 684032, "read_chars": 6290115038, "write_chars": 5042925000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt"], "wall_time": 7.312210603005951, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/20.sh", "user_time": 0.0, "system_time": 0.0, "max_unique_set_size": 684032, "read_chars": 1481265, "write_chars": 954419, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/8_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 0.11034149400074966, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/21.sh", "user_time": 192.92, "system_time": 12.44, "max_unique_set_size": 684032, "read_chars": 24345445402, "write_chars": 21302806307, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/8_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 189.03676292199816, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/23.sh", "user_time": 190.53, "system_time": 7.17, "max_unique_set_size": 684032, "read_chars": 12931987267, "write_chars": 9786336005, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/9.1_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 105.43574378899939, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/24.sh", "user_time": 5.11, "system_time": 2.08, "max_unique_set_size": 684032, "read_chars": 6577099154, "write_chars": 3574500000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/9.2_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 5.417532743012998, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/25.sh", "user_time": 4.38, "system_time": 2.23, "max_unique_set_size": 684032, "read_chars": 6808555201, "write_chars": 4007556000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/9.3_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 4.608270315991831, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/26.sh", "user_time": 27.72, "system_time": 4.8, "max_unique_set_size": 684032, "read_chars": 12921188277, "write_chars": 10079849983, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt", "unix50/inputs/9.4_3G.txt"], "wall_time": 11.814984980010195, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/28.sh", "user_time": 213.69, "system_time": 8.25, "max_unique_set_size": 684032, "read_chars": 16588871273, "write_chars": 13639679932, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/9.6_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 92.63094597500458, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/29.sh", "user_time": 19.27, "system_time": 7.12, "max_unique_set_size": 684032, "read_chars": 15727098018, "write_chars": 13072220830, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt", "unix50/inputs/9.7_3G.txt"], "wall_time": 8.712266721006017, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/2.sh", "user_time": 47.32, "system_time": 7.33, "max_unique_set_size": 684032, "read_chars": 13774377552, "write_chars": 12527182566, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt"], "wall_time": 51.090443787994445, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/30.sh", "user_time": 184.13, "system_time": 9.04, "max_unique_set_size": 684032, "read_chars": 18164084191, "write_chars": 15288899906, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/9.8_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 102.00358132700785, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/31.sh", "user_time": 215.26, "system_time": 10.19, "max_unique_set_size": 684032, "read_chars": 19618566094, "write_chars": 16743374839, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/9.9_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 104.81673285900615, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/32.sh", "user_time": 4.83, "system_time": 3.16, "max_unique_set_size": 684032, "read_chars": 9597076064, "write_chars": 6457733918, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/10_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 3.2143361999915214, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/33.sh", "user_time": 4.62, "system_time": 2.82, "max_unique_set_size": 684032, "read_chars": 9556895954, "write_chars": 6457733910, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/10_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 3.014905589996488, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/34.sh", "user_time": 0.0, "system_time": 0.0, "max_unique_set_size": 684032, "read_chars": 1747574, "write_chars": 852034, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/10_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 0.10099653899669647, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/35.sh", "user_time": 0.3, "system_time": 1.46, "max_unique_set_size": 684032, "read_chars": 6381515027, "write_chars": 3242616000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/11_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 1.4124508100067033, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/36.sh", "user_time": 8.87, "system_time": 2.59, "max_unique_set_size": 684032, "read_chars": 7378682270, "write_chars": 4236052844, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/11_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 7.812560881997342, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/3.sh", "user_time": 0.0, "system_time": 0.0, "max_unique_set_size": 684032, "read_chars": 158461, "write_chars": 65581, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt"], "wall_time": 0.10083891400427092, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/4.sh", "user_time": 49.06, "system_time": 5.27, "max_unique_set_size": 684032, "read_chars": 12523441817, "write_chars": 9378363055, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt"], "wall_time": 47.08324818899564, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/5.sh", "user_time": 5.11, "system_time": 2.27, "max_unique_set_size": 684032, "read_chars": 6723169169, "write_chars": 3941550000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/1_3G.txt", "unix50/inputs/2_3G.txt"], "wall_time": 5.330902628993499, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/6.sh", "user_time": 9.45, "system_time": 3.46, "max_unique_set_size": 684032, "read_chars": 8722173471, "write_chars": 5790933000, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/3_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 7.318517494000844, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/7.sh", "user_time": 12.44, "system_time": 3.41, "max_unique_set_size": 684032, "read_chars": 11383632075, "write_chars": 8238585010, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/4_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 11.514842884993413, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/8.sh", "user_time": 9.12, "system_time": 2.99, "max_unique_set_size": 684032, "read_chars": 10699940013, "write_chars": 7554885009, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/4_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 5.116881836991524, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "unix50/scripts/9.sh", "user_time": 13.24, "system_time": 3.14, "max_unique_set_size": 684032, "read_chars": 11110172105, "write_chars": 7965105009, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": ["unix50/inputs/4_3G.txt", "unix50/inputs/1_3G.txt"], "wall_time": 5.71750155799964, "start_time": "2025-01-10T12:15:57.302683+00:00", "category": "unix50"} +{"script": "vps-audit-negate/scripts/vps-audit-negate.sh", "user_time": 0.84, "system_time": 0.39, "max_unique_set_size": 76038144, "read_chars": 184013760, "write_chars": 991523, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 2.3057772100000875, "start_time": "2025-01-10T12:10:58.762447+00:00", "category": "vps-audit-negate"} +{"script": "vps-audit/scripts/vps-audit.sh", "user_time": 0.9, "system_time": 0.44, "max_unique_set_size": 76193792, "read_chars": 184011578, "write_chars": 991433, "user_time_in_shell": 0.0, "system_time_in_shell": 0.0, "all_input_files": [], "wall_time": 2.004738363000797, "start_time": "2025-01-10T11:10:51.187212+00:00", "category": "vps-audit-negate"} +{"script": "web-index/scripts/ngrams.sh", "user_time": 22.57, "system_time": 12.03, "max_unique_set_size": 307433472, "read_chars": 124051184, "write_chars": 102696181, "user_time_in_shell": 0.03, "system_time_in_shell": 0.26, "all_input_files": ["web-index/tmp/sortmrxVxL", "web-index/tmp/sortgvOXBu", "web-index/inputs/index_small.txt", "web-index/tmp/sortBZ38pZ", "web-index/tmp/sortD8p7OG", "web-index/tmp/sortvoD98l", "web-index/tmp/sortO8OKG3"], "wall_time": 35.56739905300492, "start_time": "2025-01-10T12:05:52.663175+00:00", "category": "web-index"} diff --git a/infrastructure/target/lines_of_code.csv b/infrastructure/target/lines_of_code.csv new file mode 100644 index 000000000..020905204 --- /dev/null +++ b/infrastructure/target/lines_of_code.csv @@ -0,0 +1,124 @@ +aurpkg/scripts/pacaur.sh,18 +bio/scripts/bio.sh,22 +covid-mts/scripts/1.sh,9 +covid-mts/scripts/2.sh,10 +covid-mts/scripts/3.sh,10 +covid-mts/scripts/4.sh,9 +covid-mts/scripts/5.sh,15 +file-enc/scripts/compress_files.sh,7 +file-enc/scripts/encrypt_files.sh,11 +infrastructure/standards/100-files/scripts/main.sh,9 +infrastructure/standards/read-write/scripts/main.sh,7 +infrastructure/standards/read-write/scripts/sub.sh,3 +infrastructure/standards/shell-memory/scripts/main.sh,2 +infrastructure/standards/sleep/scripts/main.sh,5 +infrastructure/standards/time-in-shell-subprocess/scripts/main.sh,2 +infrastructure/standards/time-in-shell-subprocess/scripts/sub.sh,9 +infrastructure/standards/user-time-in-shell/scripts/main.sh,9 +infrastructure/standards/user-time/scripts/main.sh,4 +infrastructure/standards/write-only/scripts/main.sh,12 +log-analysis/scripts/nginx.sh,19 +log-analysis/scripts/pcaps.sh,16 +makeself/makeself/test/appendtest/appendtest.sh,120 +makeself/makeself/test/corrupttest/corrupttest.sh,70 +makeself/makeself/test/datetest/datetest.sh,78 +makeself/makeself/test/extracttest/extracttest.sh,70 +makeself/makeself/test/infotest/infotest.sh,136 +makeself/makeself/test/lsmtest/lsmtest.sh,63 +makeself/makeself/test/nochecktest/nochecktest.sh,54 +makeself/makeself/test/preextracttest/preextracttest.sh,112 +makeself/makeself/test/signtest/signtest.sh,196 +makeself/makeself/test/tarextratest/tarextratest.sh,42 +makeself/makeself/test/variabletest/variabletest.sh,65 +max-temp/scripts/temp-analytics.sh,17 +media-conv/scripts/img_convert.sh,11 +media-conv/scripts/to_mp3.sh,11 +nlp/scripts/bigrams_appear_twice.sh,20 +nlp/scripts/bigrams.sh,19 +nlp/scripts/compare_exodus_genesis.sh,21 +nlp/scripts/count_consonant_seq.sh,10 +nlp/scripts/count_morphs.sh,10 +nlp/scripts/count_trigrams.sh,21 +nlp/scripts/count_vowel_seq.sh,10 +nlp/scripts/count_words.sh,10 +nlp/scripts/find_anagrams.sh,19 +nlp/scripts/letter_words.sh,11 +nlp/scripts/merge_upper.sh,10 +nlp/scripts/sort.sh,10 +nlp/scripts/sort_words_by_folding.sh,10 +nlp/scripts/sort_words_by_num_of_syllables.sh,19 +nlp/scripts/sort_words_by_rhyming.sh,10 +nlp/scripts/syllable_words_1.sh,10 +nlp/scripts/syllable_words_2.sh,10 +nlp/scripts/trigram_rec.sh,21 +nlp/scripts/uppercase_by_token.sh,10 +nlp/scripts/uppercase_by_type.sh,10 +nlp/scripts/verses_2om_3om_2instances.sh,12 +nlp/scripts/vowel_sequencies_gr_1K.sh,10 +nlp/scripts/words_no_vowels.sh,10 +oneliners/scripts/bi-gram.aux.sh,61 +oneliners/scripts/bi-grams.sh,9 +oneliners/scripts/diff.sh,10 +oneliners/scripts/nfa-regex.sh,2 +oneliners/scripts/run.sh,1 +oneliners/scripts/set-diff.sh,11 +oneliners/scripts/sort.sh,2 +oneliners/scripts/sort-sort.sh,2 +oneliners/scripts/spell.sh,11 +oneliners/scripts/top-n.sh,2 +oneliners/scripts/uniq-ips.sh,2 +oneliners/scripts/wf.sh,2 +riker/scripts/lua/build.sh,9 +riker/scripts/memcached/build.sh,15 +riker/scripts/redis/build.sh,20 +riker/scripts/sqlite/build.sh,41 +riker/scripts/vim/build.sh,23 +riker/scripts/xz/build.sh,19 +riker/scripts/xz-clang/build.sh,19 +sklearn/scripts/run.sh,50 +unix50/scripts/10.sh,2 +unix50/scripts/11.sh,2 +unix50/scripts/12.sh,2 +unix50/scripts/13.sh,2 +unix50/scripts/14.sh,2 +unix50/scripts/15.sh,2 +unix50/scripts/16.sh,2 +unix50/scripts/17.sh,2 +unix50/scripts/18.sh,2 +unix50/scripts/19.sh,2 +unix50/scripts/1.sh,2 +unix50/scripts/20.sh,2 +unix50/scripts/21.sh,2 +unix50/scripts/22.sh,1 +unix50/scripts/23.sh,2 +unix50/scripts/24.sh,2 +unix50/scripts/25.sh,2 +unix50/scripts/26.sh,2 +unix50/scripts/27.sh,1 +unix50/scripts/28.sh,2 +unix50/scripts/29.sh,2 +unix50/scripts/2.sh,2 +unix50/scripts/30.sh,2 +unix50/scripts/31.sh,2 +unix50/scripts/32.sh,2 +unix50/scripts/33.sh,2 +unix50/scripts/34.sh,2 +unix50/scripts/35.sh,2 +unix50/scripts/36.sh,2 +unix50/scripts/3.sh,2 +unix50/scripts/4.sh,2 +unix50/scripts/5.sh,2 +unix50/scripts/6.sh,2 +unix50/scripts/7.sh,2 +unix50/scripts/8.sh,2 +unix50/scripts/9.sh,2 +vps-audit-negate/scripts/vps-audit-negate.sh,294 +vps-audit/scripts/vps-audit.sh,293 +web-index/scripts/bigrams_aux.sh,9 +web-index/scripts/extract_text.sh,7 +web-index/scripts/ngrams.sh,40 +web-index/scripts/p1.sh,9 +web-index/scripts/p2.sh,11 +web-index/scripts/trigrams_aux.sh,14 +web-index/scripts/web-index-aux.sh,112 +web-index/scripts/web-index.sh,116 diff --git a/infrastructure/target/nodes_in_scripts.csv b/infrastructure/target/nodes_in_scripts.csv new file mode 100644 index 000000000..8664eb498 --- /dev/null +++ b/infrastructure/target/nodes_in_scripts.csv @@ -0,0 +1,124 @@ +aurpkg/scripts/pacaur.sh,assignment:4;quoted_control:11;variable_use:13;command(mkdir):1;command(cd):2;and_command:1;function_command:2;escaped_char:11;command(mkcd):1;command(curl):1;file_redirection:2;command(echo):2;or_command:1;command(makedeb):1;dup_redirection:1;command(export):1;dollar_paren_shell_control:1;command(cat):1;command(tr):1;pipeline:1;command(run_tests):1;for_command:1 +bio/scripts/bio.sh,command(cd):1;quoted_control:29;dollar_paren_shell_control:4;command(dirname):1;variable_use:34;command(exit):1;or_command:1;assignment:6;command(cat):1;command(read):2;command(echo):6;command(cut):4;pipeline:6;command(samtools):5;escaped_char:23;command(sed):1;file_redirection:2;command(sort):1;command(uniq):1;while_command:2 +covid-mts/scripts/1.sh,command(cat):1;quoted_control:5;variable_use:1;command(sed):1;escaped_char:7;command(cut):2;command(sort):2;command(uniq):1;command(awk):1;pipeline:1 +covid-mts/scripts/2.sh,command(cat):1;quoted_control:5;variable_use:1;command(sed):1;escaped_char:7;command(cut):2;command(sort):3;command(uniq):1;command(awk):1;pipeline:1 +covid-mts/scripts/3.sh,command(cat):1;quoted_control:5;variable_use:1;command(sed):1;escaped_char:10;command(cut):2;command(sort):3;command(uniq):1;command(awk):1;pipeline:1 +covid-mts/scripts/4.sh,command(cat):1;quoted_control:5;variable_use:1;command(sed):1;escaped_char:10;command(cut):2;command(sort):2;command(uniq):1;command(awk):1;pipeline:1 +covid-mts/scripts/5.sh,command(sed):1;file_redirection:2;quoted_control:2;escaped_char:31;command(awk):1;pipeline:1 +file-enc/scripts/compress_files.sh,command(mkdir):1;variable_use:6;assignment:1;quoted_control:1;escaped_char:1;dollar_paren_shell_control:1;command(basename):1;command(cat):1;command(gzip):1;file_redirection:1;pipeline:1;for_command:1 +file-enc/scripts/encrypt_files.sh,command(mkdir):1;variable_use:6;command(openssl):1;quoted_control:2;function_command:1;command(export):1;assignment:1;escaped_char:1;dollar_paren_shell_control:1;command(basename):1;command(cat):1;command(pure_func):1;file_redirection:1;pipeline:1;for_command:1 +infrastructure/standards/100-files/scripts/main.sh,quoted_control:3;dollar_paren_shell_control:1;command(dirname):1;variable_use:2;escaped_char:2;command(exec):2;file_redirection:1;command(sleep):1;dup_redirection:1;for_command:1;function_command:1;command(run):1 +infrastructure/standards/read-write/scripts/main.sh,command(dd):1;function_command:1;command(do_copy):1;quoted_control:2;dollar_paren_shell_control:1;command(dirname):1;variable_use:1;escaped_char:1;command(sleep):1 +infrastructure/standards/read-write/scripts/sub.sh,command(dd):1;variable_use:1;command(sleep):1 +infrastructure/standards/shell-memory/scripts/main.sh,quoted_control:2;dollar_paren_shell_control:1;command(dirname):1;variable_use:1;escaped_char:1 +infrastructure/standards/sleep/scripts/main.sh,command(sleep):1;function_command:1;command(do_sleep):1 +infrastructure/standards/time-in-shell-subprocess/scripts/main.sh,quoted_control:2;dollar_paren_shell_control:1;command(dirname):1;variable_use:1;escaped_char:1 +infrastructure/standards/time-in-shell-subprocess/scripts/sub.sh,assignment:5;dollar_paren_shell_control:3;command(date):2;command([):1;quoted_control:2;variable_use:4;dollar_paren_paren_arith_control:1;while_command:1;command(awk):1;escaped_char:3;command(sleep):1 +infrastructure/standards/user-time-in-shell/scripts/main.sh,assignment:5;dollar_paren_shell_control:3;command(date):2;command([):1;quoted_control:2;variable_use:4;dollar_paren_paren_arith_control:1;while_command:1;command(awk):1;escaped_char:3;command(sleep):1 +infrastructure/standards/user-time/scripts/main.sh,quoted_control:4;dollar_paren_shell_control:2;command(dirname):2;variable_use:2;escaped_char:2;command(sleep):1 +infrastructure/standards/write-only/scripts/main.sh,assignment:4;quoted_control:6;dollar_paren_shell_control:2;command(dirname):1;variable_use:4;escaped_char:2;command(cat):1;command([):1;dollar_paren_paren_arith_control:1;command(printf):1;file_redirection:1;while_command:1;function_command:1;command(do_write_only):1;command(sleep):1 +log-analysis/scripts/nginx.sh,command(mkdir):1;variable_use:15;assignment:2;dollar_paren_shell_control:2;command(mktemp):1;command(tee):1;command(cut):2;quoted_control:16;escaped_char:21;command(sort):16;command(uniq):8;pipeline:9;command(awk):14;command(head):1;command(rm):1;function_command:1;command(export):1;command(basename):1;command(cat):1;command(pure_func):1;file_redirection:1;for_command:1 +log-analysis/scripts/pcaps.sh,command(mkdir):1;variable_use:11;assignment:2;dollar_paren_shell_control:2;command(mktemp):1;command(cat):2;file_redirection:8;command(tcpdump):3;quoted_control:4;command(sort):1;command(uniq):1;command(grep):1;pipeline:4;command(egrep):2;escaped_char:8;command(rm):1;function_command:1;command(export):1;command(basename):1;command(pure_func):1;for_command:1 +makeself/makeself/test/appendtest/appendtest.sh,command(set):1;assignment:11;quoted_control:97;dollar_paren_shell_control:11;command(readlink):3;variable_use:73;command(dirname):3;escaped_char:38;command(basename):1;command(echo):4;file_redirection:3;command(local):9;function_command:18;command(mktemp):1;command(trap):1;command(readonly):2;command(mkdir):2;command(touch):2;command(eval):1;command([[):2;command(return):12;if_command:5;command(evalAssert):7;and_command:3;command(shift):1;command(rm):4;or_command:5;command(sort):2;pipeline:3;command(find):1;command(printf):1;command(tr):1;negate_command:3;command(log_result):8;command(doInfoListCheckExec):2;command(assertFileContains):2;command(command):1;dup_redirection:1;command(doTestOpts):3;command(doTestComp):10;command(cd):1;command(testDefault):1;command(testNocomp):1;command(testBase64):1;command(testBzip2):1;command(testCompress):1;command(testGzip):1;command(testLz4):1;command(testLzo):1;command(testPbzip2):1;command(testPigz):1;command(testXz):1;command(testZstd):1 +makeself/makeself/test/corrupttest/corrupttest.sh,command(set):1;assignment:6;quoted_control:54;dollar_paren_shell_control:5;command(readlink):1;variable_use:19;command(dirname):3;escaped_char:16;command(echo):6;file_redirection:3;command(local):4;function_command:4;command(mktemp):1;command(cd):1;command(mkdir):1;command(cp):1;negate_command:3;command(log_result):13;command(exit):1;if_command:7;command(setupTests):2;command(./makeself-test.run):3;command(return):4;command(dd):1;command(truncated.run):1;command(testExtraBytes):1;command(testTruncated):1 +makeself/makeself/test/datetest/datetest.sh,command(set):1;assignment:12;quoted_control:55;dollar_paren_shell_control:8;command(readlink):1;variable_use:32;command(dirname):3;escaped_char:12;command(echo):4;file_redirection:5;command(local):3;function_command:7;command(mktemp):1;command(cd):2;command(mkdir):1;command(rm):1;command(setUp):4;command(strings):2;command(grep):2;pipeline:2;command(true):2;or_command:2;command(date):1;command([[):2;command(log_result):8;if_command:4;command(tearDown):4;negate_command:1;command(mv):2;command(cmp):1;command(testCurrentDate):1;command(testDateSet):1;command(testPackagingDateNeedsParameter):1;command(testByteforbyte):1 +makeself/makeself/test/extracttest/extracttest.sh,command(set):1;assignment:6;quoted_control:41;dollar_paren_shell_control:5;command(readlink):1;variable_use:29;command(dirname):3;escaped_char:6;command(echo):4;file_redirection:4;command(local):4;function_command:8;command(mktemp):1;command(cd):1;command(mkdir):1;command(cp):1;command(shift):1;command(log_result):4;if_command:3;command(setupTests):5;command(./makeself-test.run):5;command(return):7;command(command):2;dup_redirection:2;negate_command:2;command(run_test):5 +makeself/makeself/test/infotest/infotest.sh,command(set):1;assignment:13;quoted_control:49;dollar_paren_shell_control:7;command(readlink):1;variable_use:39;command(dirname):3;command(cat):2;escaped_char:96;command([[):3;and_command:4;command(echo):6;file_redirection:7;command(local):7;function_command:7;command(cd):2;command(return):8;or_command:2;command(mkdir):1;command(./makeself.sh):1;dup_redirection:3;if_command:4;command(./infotest.run):1;command(rm):2;subshell_command:1;command(mktemp):1;command(haveInfo):1;command(sed):2;command(diff):1;command(grep):2;command(awk):1;pipeline:2;negate_command:1;command(shift):1;command(log_result):2;command(diffInfo):3;heredoc_redirection:3;command(run_test):3 +makeself/makeself/test/lsmtest/lsmtest.sh,command(set):1;assignment:4;quoted_control:44;dollar_paren_shell_control:4;command(readlink):1;variable_use:18;command(dirname):3;escaped_char:6;command(echo):4;file_redirection:7;command(local):4;function_command:5;command(cd):1;command(mkdir):1;dup_redirection:2;negate_command:2;command(log_result):9;command(return):2;if_command:5;command(./lsmtest.run):1;command(rm):5;subshell_command:1;command(printf):3;command(withlsm):3;command(test_lsm_empty):1;command(test_lsm_one_line):1;command(test_lsm_one_line_without_nl):1 +makeself/makeself/test/nochecktest/nochecktest.sh,command(set):1;assignment:7;quoted_control:54;dollar_paren_shell_control:6;command(readlink):1;variable_use:27;command(dirname):3;escaped_char:16;command(echo):4;file_redirection:2;command(local):4;function_command:2;command(mktemp):2;command(cd):1;command(touch):1;subshell_command:1;command(log_result):8;command(rm):4;command(return):3;if_command:4;command(printf):2;dup_redirection:4;command(sync):1;command(grep):2;pipeline:2;command(testNoCheck):1 +makeself/makeself/test/preextracttest/preextracttest.sh,command(set):1;assignment:6;quoted_control:64;dollar_paren_shell_control:5;command(readlink):1;variable_use:23;command(dirname):3;escaped_char:34;command(echo):10;file_redirection:13;command(local):3;function_command:9;command(mktemp):1;command(pushd):1;command(mkdir):1;command(chmod):1;command(popd):1;command(rm):1;command(setUp):6;command([[):1;command(log_result):14;command(tearDown):8;command(return):2;if_command:7;command(./src.sh):5;command(diff):1;command(grep):3;pipeline:3;command(eval):1;command(testPreextractOpts):1;command(testWithNoPreextractOpts):1;command(testPreextractRun):1;command(testPreextractNoexec):1;command(testPreextractArgs):1;command(testPreextractEnvPassing):1 +makeself/makeself/test/signtest/signtest.sh,command(set):1;assignment:8;quoted_control:79;dollar_paren_shell_control:8;command(readlink):1;variable_use:37;command(dirname):3;escaped_char:32;command(echo):3;file_redirection:5;command(local):10;function_command:7;case_command:1;command(cat):3;heredoc_redirection:2;command(cat_key):1;command(gpg):2;pipeline:1;dup_redirection:1;command(return):4;command(shift):1;command(mktemp):4;command(touch):1;command(grep):1;or_command:2;command(eval):1;if_command:9;command(rm):4;command(export):3;command(checked_import_key):5;command(create_sign_verify):5;command(log_result):13;and_command:2;negate_command:2;command(testSingleKey):1;command(testMultipleKeys):1;command(testWrongKey):1 +makeself/makeself/test/tarextratest/tarextratest.sh,command(set):1;assignment:5;quoted_control:32;dollar_paren_shell_control:5;command(readlink):1;variable_use:17;command(dirname):3;escaped_char:8;command(echo):5;file_redirection:5;command(local):4;function_command:4;command(mktemp):1;command(pushd):1;command(mkdir):1;command(popd):1;command(rm):1;command(setupTests):1;command(log_result):4;command(tearDown):2;command(return):1;if_command:2;command(testTarExtraOpts):1 +makeself/makeself/test/variabletest/variabletest.sh,command(set):1;assignment:9;quoted_control:61;dollar_paren_shell_control:8;command(readlink):1;variable_use:42;command(dirname):3;escaped_char:31;command(echo):3;file_redirection:2;command(local):9;function_command:5;command(mktemp):1;command(cd):2;command(mkdir):4;command(touch):1;command(setupTests):3;command(mv):1;command([[):3;command(log_result):6;if_command:3;command(rm):3;command(testArchiveDir):1;command(testTmpRoot):1;command(testUserPWD):1 +max-temp/scripts/temp-analytics.sh,command([[):2;quoted_control:8;variable_use:8;command(echo):2;escaped_char:5;or_command:2;command(cat):3;command(cut):3;command(grep):3;command(sort):2;command(head):2;file_redirection:3;pipeline:3;command(awk):1 +media-conv/scripts/img_convert.sh,command(mkdir):1;variable_use:6;command(convert):1;quoted_control:3;escaped_char:3;function_command:1;command(export):1;assignment:1;dollar_paren_shell_control:1;command(basename):1;command(cat):1;command(pure_func):1;file_redirection:1;pipeline:1;for_command:1 +media-conv/scripts/to_mp3.sh,command(mkdir):1;variable_use:6;command(ffmpeg):1;file_redirection:2;function_command:1;command(export):1;assignment:1;quoted_control:1;escaped_char:1;dollar_paren_shell_control:1;command(basename):1;command(cat):1;command(pure_func):1;pipeline:1;for_command:1 +nlp/scripts/bigrams_appear_twice.sh,assignment:5;variable_use:28;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:2;command(mktemp):1;command(cat):2;file_redirection:4;command(tail):1;command(paste):1;command(sort):1;command(uniq):1;pipeline:3;command(awk):1;escaped_char:14;command(rm):1;function_command:1;command(export):1;command(ls):1;command(head):1;command(xargs):1;command(tr):1;command(grep):1;command(pure_func):1;for_command:1;command(echo):1 +nlp/scripts/bigrams.sh,assignment:5;variable_use:25;command(mkdir):1;quoted_control:5;dollar_paren_shell_control:2;command(mktemp):1;command(cat):2;file_redirection:3;command(tail):1;command(paste):1;command(rm):1;function_command:1;command(export):1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(tr):1;escaped_char:9;command(grep):1;command(pure_func):1;command(sort):1;command(uniq):1;for_command:1;command(echo):1 +nlp/scripts/compare_exodus_genesis.sh,assignment:7;variable_use:30;command(mkdir):1;dollar_paren_shell_control:2;command(mktemp):1;command(cat):3;file_redirection:3;command(tr):2;quoted_control:6;escaped_char:19;command(sort):3;pipeline:4;command(uniq):1;command(head):2;command(rm):1;function_command:1;command(export):1;command(ls):1;command(xargs):1;command(grep):1;command(pure_func):1;for_command:1;command(echo):1 +nlp/scripts/count_consonant_seq.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):2;escaped_char:10;command(sort):1;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/count_morphs.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:4;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(sed):2;escaped_char:8;command(sort):1;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/count_trigrams.sh,assignment:5;variable_use:31;command(mkdir):1;quoted_control:5;dollar_paren_shell_control:2;command(mktemp):1;command(cat):2;file_redirection:4;command(tail):2;command(paste):1;command(sort):1;command(uniq):1;pipeline:3;command(rm):1;function_command:1;command(export):1;command(ls):1;command(head):1;command(xargs):1;command(tr):1;escaped_char:9;command(grep):1;command(pure_func):1;for_command:1;command(echo):1 +nlp/scripts/count_vowel_seq.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):2;escaped_char:8;command(sort):1;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/count_words.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:5;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:9;command(grep):1;command(sort):1;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/find_anagrams.sh,assignment:5;variable_use:25;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:2;command(mktemp):1;command(sort):2;file_redirection:4;command(rev):1;command(uniq):1;command(awk):1;escaped_char:12;pipeline:3;command(rm):1;function_command:1;command(export):1;command(ls):1;command(head):1;command(xargs):1;command(cat):1;command(tr):1;command(grep):1;command(pure_func):1;for_command:1;command(echo):1 +nlp/scripts/letter_words.sh,assignment:3;variable_use:16;command(mkdir):1;quoted_control:10;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:3;command(cat):2;command(tr):2;escaped_char:18;command(grep):4;file_redirection:2;command(sort):1;for_command:1;command(echo):1 +nlp/scripts/merge_upper.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:7;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):2;escaped_char:15;command(grep):1;command(sort):1;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/sort.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:5;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:9;command(grep):1;command(sort):2;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/sort_words_by_folding.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:5;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:9;command(grep):1;command(sort):2;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/sort_words_by_num_of_syllables.sh,assignment:5;variable_use:25;command(mkdir):1;quoted_control:8;dollar_paren_shell_control:2;command(mktemp):1;command(cat):2;file_redirection:4;command(tr):2;escaped_char:12;command(awk):1;pipeline:4;command(paste):1;command(sort):2;command(sed):1;command(rm):1;function_command:1;command(export):1;command(ls):1;command(head):1;command(xargs):1;command(grep):1;command(pure_func):1;for_command:1;command(echo):1 +nlp/scripts/sort_words_by_rhyming.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:5;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:9;command(grep):1;command(sort):2;command(uniq):1;command(rev):2;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/syllable_words_1.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:17;command(grep):2;command(sort):1;command(uniq):1;command(sed):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/syllable_words_2.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:21;command(grep):2;command(sort):1;command(uniq):1;command(sed):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/trigram_rec.sh,assignment:5;variable_use:36;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:2;command(mktemp):1;command(tr):1;file_redirection:5;escaped_char:10;command(tail):2;command(paste):1;command(sort):3;command(uniq):1;pipeline:4;command(rm):1;function_command:1;command(export):1;command(ls):1;command(head):1;command(xargs):1;command(cat):2;command(grep):2;command(pure_func):2;command(sed):2;for_command:1;command(echo):1 +nlp/scripts/uppercase_by_token.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:12;command(grep):2;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/uppercase_by_type.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:12;command(grep):2;command(sort):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/verses_2om_3om_2instances.sh,assignment:3;variable_use:20;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:4;command(cat):3;command(grep):4;file_redirection:3;escaped_char:12;for_command:1;command(echo):1 +nlp/scripts/vowel_sequencies_gr_1K.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:8;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):2;escaped_char:15;command(grep):1;command(sort):1;command(uniq):1;command(awk):1;file_redirection:1;for_command:1;command(echo):1 +nlp/scripts/words_no_vowels.sh,assignment:3;variable_use:12;command(mkdir):1;quoted_control:6;dollar_paren_shell_control:1;command(ls):1;command(head):1;command(xargs):1;pipeline:2;command(cat):1;command(tr):1;escaped_char:11;command(grep):2;command(sort):1;command(uniq):1;file_redirection:1;for_command:1;command(echo):1 +oneliners/scripts/bi-gram.aux.sh,assignment:20;dollar_paren_shell_control:7;command(mktemp):7;command(mkfifo):6;variable_use:50;command(tee):1;command(tail):3;command(paste):3;command(sed):2;quoted_control:2;pipeline:4;command(rm):7;function_command:3;command(cat):7;file_redirection:9;background:5;command(head):1;command(wait):2;command(export):3 +oneliners/scripts/bi-grams.sh,command(.):1;command(cat):1;variable_use:1;command(tr):2;quoted_control:3;escaped_char:9;command(grep):1;command(bigrams_aux):1;command(sort):1;command(uniq):1;pipeline:1 +oneliners/scripts/diff.sh,command(mkfifo):1;command(cat):2;variable_use:2;command(tr):2;quoted_control:4;escaped_char:16;command(sort):2;file_redirection:2;pipeline:2;command(diff):1;command(rm):1 +oneliners/scripts/nfa-regex.sh,command(cat):1;variable_use:1;command(tr):1;command(grep):1;quoted_control:1;escaped_char:16;pipeline:1 +oneliners/scripts/run.sh,command(cat):1;quoted_control:2;escaped_char:2;command(sort):1;command(uniq):1;file_redirection:1;pipeline:1 +oneliners/scripts/set-diff.sh,command(mkfifo):1;command(cat):2;variable_use:2;command(cut):2;quoted_control:4;command(tr):1;escaped_char:8;command(sort):2;file_redirection:2;pipeline:2;command(comm):1;command(rm):1 +oneliners/scripts/sort.sh,command(cat):1;variable_use:1;command(sort):1;pipeline:1 +oneliners/scripts/sort-sort.sh,command(cat):1;variable_use:1;command(tr):1;command(sort):2;pipeline:1 +oneliners/scripts/spell.sh,assignment:1;variable_use:3;command(cat):1;command(sed):1;quoted_control:3;escaped_char:14;command(col):1;command(tr):3;command(sort):1;command(uniq):1;command(comm):1;pipeline:1 +oneliners/scripts/top-n.sh,command(cat):1;variable_use:1;command(tr):2;quoted_control:3;escaped_char:9;command(grep):1;command(sort):2;command(uniq):1;command(sed):1;pipeline:1 +oneliners/scripts/uniq-ips.sh,command(cat):1;quoted_control:1;variable_use:1;command(sort):1;command(uniq):1;pipeline:1 +oneliners/scripts/wf.sh,command(cat):1;variable_use:1;command(tr):2;quoted_control:3;escaped_char:9;command(grep):1;command(sort):2;command(uniq):1;pipeline:1 +riker/scripts/lua/build.sh,assignment:1;quoted_control:1;escaped_char:7;command(gcc):5;variable_use:3;dollar_paren_shell_control:1;command(ls):1;command(grep):1;pipeline:1;command(ar):1;command(ranlib):1 +riker/scripts/memcached/build.sh,assignment:5;quoted_control:6;escaped_char:14;command([):1;variable_use:10;if_command:1;command(gcc):5 +riker/scripts/redis/build.sh,assignment:9;dollar_paren_shell_control:4;command(git):2;file_redirection:5;command(echo):4;or_command:1;subshell_command:1;command(head):1;pipeline:2;command(wc):1;command(uname):1;quoted_control:10;escaped_char:78;command(date):1;variable_use:14;command(gcc):4;command(install):3 +riker/scripts/sqlite/build.sh,assignment:2;quoted_control:7;escaped_char:396;command(gcc):3;command(tclsh8.6):7;file_redirection:7;command(./mkkeywordhash):1;command(cp):8;command(./lemon):2;command(cat):1;pipeline:1;command(rm):3;command(mkdir):1;variable_use:6;command(mv):1;command(touch):1;command(libtool):5 +riker/scripts/vim/build.sh,command(cd):1;assignment:6;quoted_control:40;escaped_char:193;command(echo):12;file_redirection:14;command(sed):4;pipeline:8;variable_use:8;command(tr):4;command(logname):1;command(hostname):1;command(sh):2;command(gcc):1 +riker/scripts/xz/build.sh,assignment:3;quoted_control:3;escaped_char:87;command(mv):10;command(gcc):3;variable_use:7;command(rm):1;command(ln):1 +riker/scripts/xz-clang/build.sh,assignment:3;quoted_control:3;escaped_char:87;command(mv):10;command(clang):3;variable_use:7;command(rm):1;command(ln):1 +sklearn/scripts/run.sh,assignment:15;quoted_control:17;variable_use:145;command(export):1;command(echo):17;dup_redirection:17;escaped_char:21;dollar_paren_shell_control:3 +unix50/scripts/10.sh,command(cat):1;variable_use:1;command(tr):1;quoted_control:6;escaped_char:4;command(grep):3;command(cut):2;command(sort):2;command(uniq):1;pipeline:1 +unix50/scripts/11.sh,command(cat):1;variable_use:1;command(tr):2;quoted_control:7;escaped_char:5;command(grep):2;command(cut):2;command(sort):2;command(uniq):1;pipeline:1 +unix50/scripts/12.sh,command(cat):1;variable_use:1;command(tr):2;quoted_control:6;escaped_char:5;command(grep):1;command(cut):2;command(sort):1;command(uniq):1;command(head):1;command(tail):1;pipeline:1 +unix50/scripts/13.sh,command(cat):1;variable_use:1;command(grep):1;quoted_control:2;command(cut):2;escaped_char:1;pipeline:1 +unix50/scripts/14.sh,command(cat):1;variable_use:1;command(awk):1;quoted_control:2;escaped_char:2;command(sort):1;command(cut):1;pipeline:1 +unix50/scripts/15.sh,command(cat):1;variable_use:1;command(cut):1;command(grep):1;quoted_control:1;command(wc):1;pipeline:1 +unix50/scripts/16.sh,command(cat):1;variable_use:1;command(cut):1;command(sort):2;command(uniq):1;command(head):1;command(tr):1;quoted_control:2;escaped_char:1;command(tail):1;pipeline:1 +unix50/scripts/17.sh,command(cat):1;variable_use:1;command(cut):2;command(sort):1;command(uniq):1;command(sed):1;escaped_char:1;quoted_control:1;pipeline:1 +unix50/scripts/18.sh,command(cat):1;variable_use:1;command(tr):1;quoted_control:2;escaped_char:1;command(grep):1;command(wc):1;pipeline:1 +unix50/scripts/19.sh,command(cat):1;variable_use:1;command(grep):1;quoted_control:4;command(awk):2;escaped_char:4;command(cut):1;pipeline:1 +unix50/scripts/1.sh,command(cat):1;variable_use:1;command(cut):1;quoted_control:1;pipeline:1 +unix50/scripts/20.sh,command(cat):1;variable_use:1;command(grep):1;quoted_control:3;command(cut):2;command(head):1;pipeline:1 +unix50/scripts/21.sh,command(cat):1;variable_use:1;command(tr):1;quoted_control:3;escaped_char:8;command(sort):1;command(awk):1;pipeline:1 +unix50/scripts/22.sh, +unix50/scripts/23.sh,command(cat):1;variable_use:1;command(tr):3;quoted_control:7;escaped_char:12;command(grep):2;command(cut):1;pipeline:1 +unix50/scripts/24.sh,command(cat):1;variable_use:1;command(cut):1;command(tr):1;quoted_control:1;escaped_char:1;pipeline:1 +unix50/scripts/25.sh,command(cat):1;variable_use:1;command(cut):1;command(tr):1;quoted_control:1;escaped_char:1;pipeline:1 +unix50/scripts/26.sh,command(cat):1;variable_use:1;command(tr):2;quoted_control:5;escaped_char:4;command(grep):1;command(sed):1;command(cut):1;pipeline:1 +unix50/scripts/27.sh, +unix50/scripts/28.sh,command(cat):1;variable_use:1;command(tr):4;quoted_control:9;escaped_char:16;command(grep):2;command(sed):4;pipeline:1 +unix50/scripts/29.sh,command(cat):1;variable_use:1;command(sed):2;command(tr):2;quoted_control:3;escaped_char:5;pipeline:1 +unix50/scripts/2.sh,command(cat):1;variable_use:1;command(cut):1;quoted_control:1;command(sort):1;pipeline:1 +unix50/scripts/30.sh,command(cat):1;variable_use:1;command(tr):3;quoted_control:6;escaped_char:15;command(grep):1;command(sed):4;pipeline:1 +unix50/scripts/31.sh,command(cat):1;variable_use:1;command(tr):3;quoted_control:6;escaped_char:15;command(grep):1;command(sed):5;pipeline:1 +unix50/scripts/32.sh,command(cat):1;variable_use:1;command(sed):1;command(grep):1;quoted_control:1;command(cut):1;command(wc):1;pipeline:1 +unix50/scripts/33.sh,command(cat):1;variable_use:1;command(sed):1;command(grep):1;quoted_control:1;command(cut):1;pipeline:1 +unix50/scripts/34.sh,command(cat):1;variable_use:1;command(grep):1;quoted_control:4;command(cut):2;command(head):1;command(fmt):1;command(tr):2;escaped_char:7;pipeline:1 +unix50/scripts/35.sh,command(cat):1;variable_use:1;command(grep):1;quoted_control:1;command(cut):1;pipeline:1 +unix50/scripts/36.sh,command(cat):1;variable_use:1;command(cut):2;quoted_control:1;command(sort):2;command(uniq):1;command(head):1;command(fmt):1;command(sed):1;pipeline:1 +unix50/scripts/3.sh,command(cat):1;variable_use:1;command(head):1;command(cut):1;quoted_control:1;pipeline:1 +unix50/scripts/4.sh,command(cat):1;variable_use:1;command(cut):1;quoted_control:1;command(sort):2;command(uniq):1;pipeline:1 +unix50/scripts/5.sh,command(cat):1;variable_use:1;command(cut):1;quoted_control:2;command(tr):1;pipeline:1 +unix50/scripts/6.sh,command(cat):1;variable_use:1;command(cut):2;quoted_control:4;command(tr):2;escaped_char:7;pipeline:1 +unix50/scripts/7.sh,command(cat):1;variable_use:1;command(tr):1;quoted_control:3;escaped_char:2;command(grep):1;command(wc):1;pipeline:1 +unix50/scripts/8.sh,command(cat):1;variable_use:1;command(tr):1;quoted_control:4;escaped_char:2;command(grep):2;command(wc):1;pipeline:1 +unix50/scripts/9.sh,command(cat):1;variable_use:1;command(tr):1;quoted_control:6;escaped_char:4;command(grep):3;command(cut):1;command(wc):1;pipeline:1 +vps-audit-negate/scripts/vps-audit-negate.sh,assignment:55;quoted_control:377;escaped_char:367;dollar_paren_shell_control:54;command(date):3;variable_use:196;command(local):7;command(echo):43;file_redirection:47;function_command:5;command(print_header):2;command(cat):2;command(grep):26;command(cut):4;pipeline:41;command(uname):2;command(hostname):2;command(uptime):6;command(lscpu):1;command(xargs):2;command(nproc):3;command(free):6;command(awk):27;command(df):6;command(curl):1;command(print_info):10;case_command:1;command([):32;command(check_security):52;if_command:39;command(dirname):3;or_command:8;command(head):6;command(sysctl):1;command(command):6;dup_redirection:7;command(ufw):1;negate_command:12;command(firewall-cmd):1;command(sudo):1;command(nft):1;command(check_firewall_status):1;command(dpkg):2;command(pgrep):1;command(wc):5;command(apt-get):1;command(ps):1;command(ss):1;command(netstat):1;command(sort):1;command(uniq):1;command(tr):4;command(sed):1;command(top):2;command(find):1 +vps-audit/scripts/vps-audit.sh,assignment:58;quoted_control:377;escaped_char:367;dollar_paren_shell_control:54;command(date):3;variable_use:196;command(local):7;command(echo):43;file_redirection:47;function_command:5;command(print_header):2;command(cat):2;command(grep):26;command(cut):4;pipeline:41;command(uname):2;command(hostname):2;command(uptime):6;command(lscpu):1;command(xargs):2;command(nproc):3;command(free):6;command(awk):27;command(df):6;command(curl):1;command(print_info):10;case_command:1;command([):32;command(check_security):52;if_command:42;command(dirname):3;and_command:5;command(head):6;command(sysctl):1;command(command):6;dup_redirection:7;command(ufw):1;command(firewall-cmd):1;command(sudo):1;command(nft):1;command(check_firewall_status):1;command(dpkg):2;command(pgrep):1;negate_command:1;command(wc):5;command(apt-get):1;command(ps):1;command(netstat):1;command(ss):1;command(sort):1;command(uniq):1;command(tr):4;command(sed):1;command(top):2;command(find):1 +web-index/scripts/bigrams_aux.sh,command(mkfifo):2;file_redirection:3;subshell_command:2;command(sed):1;quoted_control:1;background:1;command(tee):1;command(tail):1;command(paste):1;pipeline:1;command(rm):2 +web-index/scripts/extract_text.sh,command(read):1;command(cat):1;variable_use:1;command(iconv):1;command(pandoc):1;pipeline:1;while_command:1 +web-index/scripts/ngrams.sh,assignment:5;dollar_paren_shell_control:2;command(git):1;command(export):4;variable_use:19;quoted_control:18;command(cd):1;command(dirname):1;command(exit):1;or_command:1;command(rm):2;command(mkfifo):1;escaped_char:16;command(cat):4;command(sed):1;command(tr):6;command(grep):1;command(tee):1;file_redirection:4;pipeline:4;command(sort):6;command(uniq):3 +web-index/scripts/p1.sh,assignment:2;variable_use:6;dollar_paren_shell_control:1;command(git):1;command(export):2;command(cat):2;quoted_control:6;escaped_char:10;command(tr):2;command(sed):1;pipeline:2;function_command:1;command(xargs):1 +web-index/scripts/p2.sh,assignment:2;variable_use:7;dollar_paren_shell_control:1;command(git):1;command(cat):1;command(sed):1;quoted_control:2;command(iconv):1;command(pandoc):1;command(tr):2;escaped_char:1;command(grep):1;pipeline:1 +web-index/scripts/trigrams_aux.sh,assignment:2;dollar_paren_shell_control:2;command(mktemp):2;command(mkfifo):1;variable_use:8;command(tee):2;command(tail):2;command(paste):2;command(cut):1;command(sed):2;quoted_control:2;escaped_char:2;pipeline:1;command(rm):1 +web-index/scripts/web-index-aux.sh,command(mkfifo):9;file_redirection:15;subshell_command:2;command(sed):5;quoted_control:8;background:6;command(tee):4;command(tail):5;command(paste):5;pipeline:10;command(rm):10;function_command:5;assignment:21;variable_use:59;dollar_paren_shell_control:8;command(mktemp):8;command(cat):12;command(head):1;command(wait):2;command(cut):1;escaped_char:5;command(read):1;command(iconv):1;command(pandoc):1;while_command:1;command(extract_text):1;command(tr):6;command(grep):1;command(sort):6;command(uniq):3;command(bigrams_aux):1;command(trigrams_aux):1 +web-index/scripts/web-index.sh,assignment:25;variable_use:66;dollar_paren_shell_control:9;command(git):1;command(mkfifo):9;file_redirection:16;subshell_command:2;command(sed):5;quoted_control:8;background:6;command(tee):4;command(tail):5;command(paste):5;pipeline:10;command(rm):9;function_command:5;command(mktemp):8;command(cat):11;command(head):2;command(wait):2;command(cut):1;escaped_char:5;command(read):1;command(iconv):1;command(pandoc):1;while_command:1;command(export):1;command(extract_text):1;command(tr):6;command(grep):1;command(sort):6;command(uniq):3;command(bigrams_aux):1;command(trigrams_aux):1 diff --git a/infrastructure/target/process-logs/2025-01-10T11:07:47.319694+00:00-infrastructure%standards%time-in-shell-subprocess.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:07:47.319694+00:00-infrastructure%standards%time-in-shell-subprocess.jsonl.xz new file mode 100644 index 000000000..b445705cd Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:07:47.319694+00:00-infrastructure%standards%time-in-shell-subprocess.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:07:47.319694+00:00-infrastructure%standards%time-in-shell-subprocess.mortem b/infrastructure/target/process-logs/2025-01-10T11:07:47.319694+00:00-infrastructure%standards%time-in-shell-subprocess.mortem new file mode 100644 index 000000000..289319124 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:07:47.319694+00:00-infrastructure%standards%time-in-shell-subprocess.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 50194\nwchar: 105\nsyscr: 98\nsyscw: 4\nread_bytes: 8192\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "23 (main.sh) Z 22 12 1 34816 12 4227340 181 951 0 1 0 0 127 0 20 0 1 0 24898102 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "12.735326857990003", "stat_before": "22 (python3) R 19 12 1 34816 12 4194560 1578 0 0 0 1 0 0 0 20 0 1 0 24898101 17367040 3047 18446744073709551615 4325376 7350237 140732663487008 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 44773376 140732663493626 140732663493751 140732663493751 140732663496679 0\n", "stat_after": "22 (python3) R 19 12 1 34816 12 4194560 1583 1132 0 1 2 0 127 0 20 0 1 0 24898101 17367040 3047 18446744073709551615 4325376 7350237 140732663487008 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 44773376 140732663493626 140732663493751 140732663493751 140732663496679 0\n", "script": "/benchmarks/infrastructure/standards/time-in-shell-subprocess/scripts/main.sh", "pid": 22, "benchmark_experiment_start": "2025-01-10T11:07:47.319694+00:00", "category": "infrastructure/standards/time-in-shell-subprocess", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:01.465606+00:00-infrastructure%standards%write-only.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:08:01.465606+00:00-infrastructure%standards%write-only.jsonl.xz new file mode 100644 index 000000000..56ec0dcca Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:08:01.465606+00:00-infrastructure%standards%write-only.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:01.465606+00:00-infrastructure%standards%write-only.mortem b/infrastructure/target/process-logs/2025-01-10T11:08:01.465606+00:00-infrastructure%standards%write-only.mortem new file mode 100644 index 000000000..60a97a83d --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:08:01.465606+00:00-infrastructure%standards%write-only.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 2019568\nwchar: 1001000056\nsyscr: 298\nsyscw: 245009\nread_bytes: 0\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "45 (main.sh) Z 44 12 1 34816 12 4227340 4112 366 0 0 1767 2 0 0 20 0 1 0 24899517 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "18.73310981200484", "stat_before": "44 (python3) R 41 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 24899515 17367040 3024 18446744073709551615 4325376 7350237 140721529839680 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 26390528 140721529840704 140721529840815 140721529840815 140721529843687 0\n", "stat_after": "44 (python3) R 41 12 1 34816 12 4194304 1584 4478 0 0 2 0 1767 2 20 0 1 0 24899515 17367040 3024 18446744073709551615 4325376 7350237 140721529839680 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 26390528 140721529840704 140721529840815 140721529840815 140721529843687 0\n", "script": "/benchmarks/infrastructure/standards/write-only/scripts/main.sh", "pid": 44, "benchmark_experiment_start": "2025-01-10T11:08:01.465606+00:00", "category": "infrastructure/standards/write-only", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:21.562009+00:00-infrastructure%standards%shell-memory.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:08:21.562009+00:00-infrastructure%standards%shell-memory.jsonl.xz new file mode 100644 index 000000000..e43226478 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:08:21.562009+00:00-infrastructure%standards%shell-memory.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:21.562009+00:00-infrastructure%standards%shell-memory.mortem b/infrastructure/target/process-logs/2025-01-10T11:08:21.562009+00:00-infrastructure%standards%shell-memory.mortem new file mode 100644 index 000000000..34f654b2d --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:08:21.562009+00:00-infrastructure%standards%shell-memory.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 1074367477\nwchar: 58\nsyscr: 107\nsyscw: 1\nread_bytes: 0\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "64 (main.sh) Z 63 12 1 34816 12 4227340 184 228417 0 0 0 0 1 46 20 0 1 0 24901526 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "1.5042628590017557", "stat_before": "63 (python3) R 60 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 24901525 17367040 3040 18446744073709551615 4325376 7350237 140727381471664 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 22609920 140727381476406 140727381476519 140727381476519 140727381479399 0\n", "stat_after": "63 (python3) R 60 12 1 34816 12 4194304 1582 228601 0 0 1 0 1 46 20 0 1 0 24901525 17367040 3040 18446744073709551615 4325376 7350237 140727381471664 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 22609920 140727381476406 140727381476519 140727381476519 140727381479399 0\n", "script": "/benchmarks/infrastructure/standards/shell-memory/scripts/main.sh", "pid": 63, "benchmark_experiment_start": "2025-01-10T11:08:21.562009+00:00", "category": "infrastructure/standards/shell-memory", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:23.231284+00:00-file-enc.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:08:23.231284+00:00-file-enc.jsonl.xz new file mode 100644 index 000000000..f6a450247 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:08:23.231284+00:00-file-enc.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:23.231284+00:00-file-enc.mortem b/infrastructure/target/process-logs/2025-01-10T11:08:23.231284+00:00-file-enc.mortem new file mode 100644 index 000000000..3e5c77907 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:08:23.231284+00:00-file-enc.mortem @@ -0,0 +1,2 @@ +{"io_zombie": "rchar: 939652643\nwchar: 876849667\nsyscr: 19701\nsyscw: 5262\nread_bytes: 469651456\nwrite_bytes: 407543808\ncancelled_write_bytes: 0\n", "stat_zombie": "82 (compress_files.) Z 81 12 1 34816 12 4227084 4389 31378 0 4 0 1 1141 66 20 0 1 0 24901694 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "11.720280769004603", "stat_before": "81 (python3) R 78 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 24901692 17367040 3025 18446744073709551615 4325376 7350237 140729237868352 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 23130112 140729237873707 140729237873883 140729237873883 140729237876711 0\n", "stat_after": "81 (python3) R 78 12 1 34816 12 4194304 1585 35767 0 4 2 0 1141 68 20 0 1 0 24901692 17367040 3025 18446744073709551615 4325376 7350237 140729237868352 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 23130112 140729237873707 140729237873883 140729237873883 140729237876711 0\n", "script": "/benchmarks/file-enc/scripts/compress_files.sh", "pid": 81, "benchmark_experiment_start": "2025-01-10T11:08:23.231284+00:00", "category": "file-enc", "input_file": "/benchmarks/file-enc/input/pcaps", "sc_clk_tck": 100} +{"io_zombie": "rchar: 940534234\nwchar: 938866413\nsyscr: 63241\nsyscw: 118310\nread_bytes: 909312\nwrite_bytes: 469557248\ncancelled_write_bytes: 0\n", "stat_zombie": "278 (encrypt_files.s) Z 277 12 1 34816 12 4227084 4300 46475 0 11 0 1 114 34 20 0 1 0 24902880 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "1.4028149770019809", "stat_before": "277 (python3) R 274 12 1 34816 12 4194304 1582 0 0 0 0 0 0 0 20 0 1 0 24902878 17371136 3038 18446744073709551615 4325376 7350237 140720854671648 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 41660416 140720854676526 140720854676700 140720854676700 140720854679527 0\n", "stat_after": "277 (python3) R 274 12 1 34816 12 4194304 1585 50775 0 11 0 0 115 36 20 0 1 0 24902878 17371136 3038 18446744073709551615 4325376 7350237 140720854671648 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 41660416 140720854676526 140720854676700 140720854676700 140720854679527 0\n", "script": "/benchmarks/file-enc/scripts/encrypt_files.sh", "pid": 277, "benchmark_experiment_start": "2025-01-10T11:08:23.231284+00:00", "category": "file-enc", "input_file": "/benchmarks/file-enc/input/pcaps", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:37.997999+00:00-covid-mts.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:08:37.997999+00:00-covid-mts.jsonl.xz new file mode 100644 index 000000000..b6bd4a249 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:08:37.997999+00:00-covid-mts.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:08:37.997999+00:00-covid-mts.mortem b/infrastructure/target/process-logs/2025-01-10T11:08:37.997999+00:00-covid-mts.mortem new file mode 100644 index 000000000..c65f50954 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:08:37.997999+00:00-covid-mts.mortem @@ -0,0 +1,4 @@ +{"io_zombie": "rchar: 11164655857\nwchar: 7575058868\nsyscr: 1871511\nsyscw: 1000626\nread_bytes: 261951488\nwrite_bytes: 24825856\ncancelled_write_bytes: 24817664\n", "stat_zombie": "546 (1.sh) Z 545 12 1 34816 12 4227084 249 5676 0 7 0 0 2340 377 20 0 1 0 24903170 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "18.027897869003937", "stat_before": "545 (python3) R 542 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 24903169 17371136 3057 18446744073709551615 4325376 7350237 140733673462544 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 27607040 140733673464941 140733673465058 140733673465058 140733673467879 0\n", "stat_after": "545 (python3) R 542 12 1 34816 12 4194304 1586 5925 0 7 1 0 2340 377 20 0 1 0 24903169 17371136 3057 18446744073709551615 4325376 7350237 140733673462544 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 27607040 140733673464941 140733673465058 140733673465058 140733673467879 0\n", "script": "/benchmarks/covid-mts/scripts/1.sh", "pid": 545, "benchmark_experiment_start": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts", "input_file": "/benchmarks/covid-mts/input/in.csv", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11159692476\nwchar: 7570100508\nsyscr: 1870400\nsyscw: 999415\nread_bytes: 499712\nwrite_bytes: 23166976\ncancelled_write_bytes: 23150592\n", "stat_zombie": "560 (2.sh) Z 559 12 1 34816 12 4227084 257 4795 0 0 0 0 2324 389 20 0 1 0 24904999 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "17.826995085997623", "stat_before": "559 (python3) R 556 12 1 34816 12 4194304 1580 0 0 0 0 0 0 0 20 0 1 0 24904998 17371136 3027 18446744073709551615 4325376 7350237 140730465281920 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 18702336 140730465285229 140730465285346 140730465285346 140730465288167 0\n", "stat_after": "559 (python3) R 556 12 1 34816 12 4194304 1585 5052 0 0 1 1 2324 389 20 0 1 0 24904998 17371136 3027 18446744073709551615 4325376 7350237 140730465281920 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 18702336 140730465285229 140730465285346 140730465285346 140730465288167 0\n", "script": "/benchmarks/covid-mts/scripts/2.sh", "pid": 559, "benchmark_experiment_start": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts", "input_file": "/benchmarks/covid-mts/input/in.csv", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11862174649\nwchar: 8272584241\nsyscr: 2040776\nsyscw: 1170932\nread_bytes: 0\nwrite_bytes: 323424256\ncancelled_write_bytes: 323403776\n", "stat_zombie": "575 (3.sh) Z 574 12 1 34816 12 4227084 256 6345 0 0 0 0 2996 407 20 0 1 0 24906808 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "24.132860534999054", "stat_before": "574 (python3) R 571 12 1 34816 12 4194304 1577 0 0 0 0 1 0 0 20 0 1 0 24906806 17371136 3027 18446744073709551615 4325376 7350237 140735034997904 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 35815424 140735034999917 140735035000034 140735035000034 140735035002855 0\n", "stat_after": "574 (python3) R 571 12 1 34816 12 4194304 1582 6601 0 0 1 2 2996 407 20 0 1 0 24906806 17371136 3027 18446744073709551615 4325376 7350237 140735034997904 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 35815424 140735034999917 140735035000034 140735035000034 140735035002855 0\n", "script": "/benchmarks/covid-mts/scripts/3.sh", "pid": 574, "benchmark_experiment_start": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts", "input_file": "/benchmarks/covid-mts/input/in.csv", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11128284988\nwchar: 7538687441\nsyscr: 1863115\nsyscw: 991901\nread_bytes: 1040384\nwrite_bytes: 1847296\ncancelled_write_bytes: 1839104\n", "stat_zombie": "590 (4.sh) Z 589 12 1 34816 12 4227084 240 3117 0 0 0 0 2651 375 20 0 1 0 24909258 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "20.62781354598701", "stat_before": "589 (python3) R 586 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 24909257 17371136 3029 18446744073709551615 4325376 7350237 140728673835984 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 40701952 140728673842285 140728673842402 140728673842402 140728673845223 0\n", "stat_after": "589 (python3) R 586 12 1 34816 12 4194304 1581 3357 0 0 2 0 2651 375 20 0 1 0 24909257 17371136 3029 18446744073709551615 4325376 7350237 140728673835984 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 40701952 140728673842285 140728673842402 140728673842402 140728673845223 0\n", "script": "/benchmarks/covid-mts/scripts/4.sh", "pid": 589, "benchmark_experiment_start": "2025-01-10T11:08:37.997999+00:00", "category": "covid-mts", "input_file": "/benchmarks/covid-mts/input/in.csv", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:36.962132+00:00-infrastructure%standards%user-time-in-shell.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:10:36.962132+00:00-infrastructure%standards%user-time-in-shell.jsonl.xz new file mode 100644 index 000000000..57b19d963 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:10:36.962132+00:00-infrastructure%standards%user-time-in-shell.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:36.962132+00:00-infrastructure%standards%user-time-in-shell.mortem b/infrastructure/target/process-logs/2025-01-10T11:10:36.962132+00:00-infrastructure%standards%user-time-in-shell.mortem new file mode 100644 index 000000000..36ef21487 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:10:36.962132+00:00-infrastructure%standards%user-time-in-shell.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 39263\nwchar: 33\nsyscr: 72\nsyscw: 3\nread_bytes: 0\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "611 (main.sh) Z 610 12 1 34816 12 4227340 240 568 0 0 129 0 0 0 20 0 1 0 24915068 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "13.034679463002249", "stat_before": "610 (python3) R 607 12 1 34816 12 4194304 1582 0 0 0 1 0 0 0 20 0 1 0 24915067 17367040 3064 18446744073709551615 4325376 7350237 140725194847184 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 44326912 140725194855448 140725194855567 140725194855567 140725194858471 0\n", "stat_after": "610 (python3) R 607 12 1 34816 12 4194304 1589 808 0 0 1 1 129 0 20 0 1 0 24915067 17367040 3064 18446744073709551615 4325376 7350237 140725194847184 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 44326912 140725194855448 140725194855567 140725194855567 140725194858471 0\n", "script": "/benchmarks/infrastructure/standards/user-time-in-shell/scripts/main.sh", "pid": 610, "benchmark_experiment_start": "2025-01-10T11:10:36.962132+00:00", "category": "infrastructure/standards/user-time-in-shell", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:51.187212+00:00-vps-audit.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:10:51.187212+00:00-vps-audit.jsonl.xz new file mode 100644 index 000000000..ec05f3861 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:10:51.187212+00:00-vps-audit.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:51.187212+00:00-vps-audit.mortem b/infrastructure/target/process-logs/2025-01-10T11:10:51.187212+00:00-vps-audit.mortem new file mode 100644 index 000000000..87724f081 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:10:51.187212+00:00-vps-audit.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 184011578\nwchar: 991433\nsyscr: 5431\nsyscw: 466\nread_bytes: 9863168\nwrite_bytes: 643072\ncancelled_write_bytes: 638976\n", "stat_zombie": "629 (vps-audit.sh) Z 628 12 1 34816 12 4227340 1892 44411 0 40 0 0 90 44 20 0 1 0 24916489 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.004738363000797", "stat_before": "628 (python3) R 625 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 24916487 17367040 3024 18446744073709551615 4325376 7350237 140723602248560 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 26517504 140723602252977 140723602253067 140723602253067 140723602255847 0\n", "stat_after": "628 (python3) R 625 12 1 34816 12 4194304 1581 46303 0 40 1 0 90 44 20 0 1 0 24916487 17367040 3024 18446744073709551615 4325376 7350237 140723602248560 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 26517504 140723602252977 140723602253067 140723602253067 140723602255847 0\n", "script": "/benchmarks/vps-audit/scripts/vps-audit.sh", "pid": 628, "benchmark_experiment_start": "2025-01-10T11:10:51.187212+00:00", "category": "vps-audit-negate", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:53.412126+00:00-infrastructure%standards%sleep.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:10:53.412126+00:00-infrastructure%standards%sleep.jsonl.xz new file mode 100644 index 000000000..7c0b654aa Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:10:53.412126+00:00-infrastructure%standards%sleep.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:53.412126+00:00-infrastructure%standards%sleep.mortem b/infrastructure/target/process-logs/2025-01-10T11:10:53.412126+00:00-infrastructure%standards%sleep.mortem new file mode 100644 index 000000000..cead5027d --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:10:53.412126+00:00-infrastructure%standards%sleep.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 10895\nwchar: 0\nsyscr: 24\nsyscw: 0\nread_bytes: 0\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "766 (main.sh) Z 765 12 1 34816 12 4227084 164 93 0 0 0 0 0 0 20 0 1 0 24916711 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.0090637279936345", "stat_before": "765 (python3) R 762 12 1 34816 12 4194304 1580 0 0 0 0 0 0 0 20 0 1 0 24916710 17371136 3065 18446744073709551615 4325376 7350237 140734581234640 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 39526400 140734581240921 140734581241027 140734581241027 140734581243879 0\n", "stat_after": "765 (python3) R 762 12 1 34816 12 4194304 1585 257 0 0 1 0 0 0 20 0 1 0 24916710 17371136 3065 18446744073709551615 4325376 7350237 140734581234640 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 39526400 140734581240921 140734581241027 140734581241027 140734581243879 0\n", "script": "/benchmarks/infrastructure/standards/sleep/scripts/main.sh", "pid": 765, "benchmark_experiment_start": "2025-01-10T11:10:53.412126+00:00", "category": "infrastructure/standards/sleep", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:56.670991+00:00-bio.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:10:56.670991+00:00-bio.jsonl.xz new file mode 100644 index 000000000..a4e482df9 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:10:56.670991+00:00-bio.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:10:56.670991+00:00-bio.mortem b/infrastructure/target/process-logs/2025-01-10T11:10:56.670991+00:00-bio.mortem new file mode 100644 index 000000000..cba31d38c --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:10:56.670991+00:00-bio.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 753173126\nwchar: 359827800\nsyscr: 79071\nsyscw: 26823\nread_bytes: 191430656\nwrite_bytes: 359874560\ncancelled_write_bytes: 0\n", "stat_zombie": "780 (bio.sh) Z 779 12 1 34816 12 4227084 205 210450 0 20 0 0 1512 56 20 0 1 0 24917037 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "16.030522984001436", "stat_before": "779 (python3) R 776 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 24917036 17367040 3062 18446744073709551615 4325376 7350237 140728224335936 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 20156416 140728224339100 140728224339195 140728224339195 140728224341991 0\n", "stat_after": "779 (python3) R 776 12 1 34816 12 4194304 1584 210655 0 20 1 0 1512 56 20 0 1 0 24917036 17367040 3062 18446744073709551615 4325376 7350237 140728224335936 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 20156416 140728224339100 140728224339195 140728224339195 140728224341991 0\n", "script": "/benchmarks/bio/scripts/bio.sh", "pid": 779, "benchmark_experiment_start": "2025-01-10T11:10:56.670991+00:00", "category": "bio", "input_file": "/benchmarks/bio/input_small.txt", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T11:11:15.195469+00:00-oneliners.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T11:11:15.195469+00:00-oneliners.jsonl.xz new file mode 100644 index 000000000..ea3687999 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T11:11:15.195469+00:00-oneliners.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T11:11:15.195469+00:00-oneliners.mortem b/infrastructure/target/process-logs/2025-01-10T11:11:15.195469+00:00-oneliners.mortem new file mode 100644 index 000000000..df1191078 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T11:11:15.195469+00:00-oneliners.mortem @@ -0,0 +1,10 @@ +{"io_zombie": "rchar: 3081032067\nwchar: 3017179000\nsyscr: 154144\nsyscw: 493719\nread_bytes: 1026568192\nwrite_bytes: 963174400\ncancelled_write_bytes: 0\n", "stat_zombie": "837 (nfa-regex.sh) Z 836 12 1 34816 12 4227084 180 635 0 0 0 0 163634 236 20 0 1 0 24918890 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "1637.6071464969864", "stat_before": "836 (python3) R 833 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 24918888 17371136 3036 18446744073709551615 4325376 7350237 140732906582528 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 44863488 140732906591288 140732906591374 140732906591374 140732906594279 0\n", "stat_after": "836 (python3) R 833 12 1 34816 12 4194304 1583 815 0 0 54 47 163634 236 20 0 1 0 24918888 17371136 3036 18446744073709551615 4325376 7350237 140732906582528 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 44863488 140732906591288 140732906591374 140732906591374 140732906594279 0\n", "script": "/benchmarks/oneliners/scripts/nfa-regex.sh", "pid": 836, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/1G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 14670369326\nwchar: 14670353576\nsyscr: 2299926\nsyscw: 2853298\nread_bytes: 1311551488\nwrite_bytes: 11590823936\ncancelled_write_bytes: 0\n", "stat_zombie": "847 (sort.sh) Z 846 12 1 34816 12 4227084 166 1456 0 0 0 0 1634 774 20 0 1 0 25083650 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "23.9465265750041", "stat_before": "846 (python3) R 843 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25083648 17371136 3036 18446744073709551615 4325376 7350237 140721502483632 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 38998016 140721502487618 140721502487699 140721502487699 140721502490599 0\n", "stat_after": "846 (python3) R 843 12 1 34816 12 4194304 1582 1622 0 0 2 1 1634 774 20 0 1 0 25083648 17371136 3036 18446744073709551615 4325376 7350237 140721502483632 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 38998016 140721502487618 140721502487699 140721502487699 140721502490599 0\n", "script": "/benchmarks/oneliners/scripts/sort.sh", "pid": 846, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 29263494172\nwchar: 26182503748\nsyscr: 5016802\nsyscw: 5666077\nread_bytes: 1068003328\nwrite_bytes: 11385794560\ncancelled_write_bytes: 0\n", "stat_zombie": "856 (top-n.sh) Z 855 12 1 34816 12 4227084 240 2655 0 12 0 0 34742 2003 20 0 1 0 25086068 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "294.46078392499476", "stat_before": "855 (python3) R 852 12 1 34816 12 4194304 1578 0 0 0 0 0 0 0 20 0 1 0 25086066 17371136 3034 18446744073709551615 4325376 7350237 140729541892800 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 29675520 140729541899328 140729541899410 140729541899410 140729541902311 0\n", "stat_after": "855 (python3) R 852 12 1 34816 12 4194304 1585 2895 0 12 12 12 34742 2003 20 0 1 0 25086066 17371136 3144 18446744073709551615 4325376 7350237 140729541892800 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 29675520 140729541899328 140729541899410 140729541899410 140729541902311 0\n", "script": "/benchmarks/oneliners/scripts/top-n.sh", "pid": 855, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 29263483079\nwchar: 26182598348\nsyscr: 5016566\nsyscw: 5666100\nread_bytes: 411963392\nwrite_bytes: 11385958400\ncancelled_write_bytes: 0\n", "stat_zombie": "871 (wf.sh) Z 870 12 1 34816 12 4227084 230 2781 0 0 0 0 33575 1964 20 0 1 0 25115807 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "285.8534685880004", "stat_before": "870 (python3) R 867 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25115806 17371136 3042 18446744073709551615 4325376 7350237 140733367781824 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 15695872 140733367784518 140733367784597 140733367784597 140733367787495 0\n", "stat_after": "870 (python3) R 867 12 1 34816 12 4194304 1585 3011 0 0 16 7 33575 1964 20 0 1 0 25115806 17371136 3042 18446744073709551615 4325376 7350237 140733367781824 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 15695872 140733367784518 140733367784597 140733367784597 140733367787495 0\n", "script": "/benchmarks/oneliners/scripts/wf.sh", "pid": 870, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 35232884718\nwchar: 32145001797\nsyscr: 7117548\nsyscw: 7833801\nread_bytes: 185511936\nwrite_bytes: 11385794560\ncancelled_write_bytes: 0\n", "stat_zombie": "885 (spell.sh) Z 884 12 1 34816 12 4227084 268 2761 0 4 0 0 25989 1956 20 0 1 0 25144677 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "195.4011487319949", "stat_before": "884 (python3) R 881 12 1 34816 12 4194304 1581 0 0 0 0 0 0 0 20 0 1 0 25144675 17371136 3062 18446744073709551615 4325376 7350237 140726157949072 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 23232512 140726157952064 140726157952146 140726157952146 140726157955047 0\n", "stat_after": "884 (python3) R 881 12 1 34816 12 4194304 1588 3029 0 4 9 6 25989 1956 20 0 1 0 25144675 17371136 3062 18446744073709551615 4325376 7350237 140726157949072 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 23232512 140726157952064 140726157952146 140726157952146 140726157955047 0\n", "script": "/benchmarks/oneliners/scripts/spell.sh", "pid": 884, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 41664793721\nwchar: 35502725175\nsyscr: 7257626\nsyscw: 7210997\nread_bytes: 4704952320\nwrite_bytes: 17019625472\ncancelled_write_bytes: 612622336\n", "stat_zombie": "901 (diff.sh) Z 900 12 1 34816 12 4227084 300 1441955 0 7 0 0 3981 2106 20 0 1 0 25164420 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "30.565667358998326", "stat_before": "900 (python3) R 897 12 1 34816 12 4194304 1581 0 0 0 0 0 0 0 20 0 1 0 25164418 17371136 3059 18446744073709551615 4325376 7350237 140732948222080 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 29335552 140732948227138 140732948227219 140732948227219 140732948230119 0\n", "stat_after": "900 (python3) R 897 12 1 34816 12 4194304 1588 1442255 0 7 2 2 3981 2106 20 0 1 0 25164418 17371136 2796 18446744073709551615 4325376 7350237 140732948222080 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 29335552 140732948227138 140732948227219 140732948227219 140732948230119 0\n", "script": "/benchmarks/oneliners/scripts/diff.sh", "pid": 900, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 63476405984\nwchar: 60396294192\nsyscr: 12863592\nsyscw: 13315683\nread_bytes: 2164092928\nwrite_bytes: 22545326080\ncancelled_write_bytes: 28672\n", "stat_zombie": "917 (bi-grams.sh) Z 916 12 1 34816 12 4227084 260 3435 5 15 0 0 44490 3913 20 0 1 0 25167527 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "298.7425371790014", "stat_before": "916 (python3) R 913 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25167525 17371136 3008 18446744073709551615 4325376 7350237 140735652759264 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 30093312 140735652762682 140735652762767 140735652762767 140735652765671 0\n", "stat_after": "916 (python3) R 913 12 1 34816 12 4194304 1584 3695 0 20 19 6 44490 3913 20 0 1 0 25167525 17371136 3008 18446744073709551615 4325376 7350237 140735652759264 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 30093312 140735652762682 140735652762767 140735652762767 140735652765671 0\n", "script": "/benchmarks/oneliners/scripts/bi-grams.sh", "pid": 916, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 16158325285\nwchar: 10322619000\nsyscr: 2440703\nsyscw: 1063283\nread_bytes: 1123262464\nwrite_bytes: 2419830784\ncancelled_write_bytes: 2093465600\n", "stat_zombie": "938 (set-diff.sh) Z 937 12 1 34816 12 4227084 315 3807 2 10 0 0 4347 595 20 0 1 0 25197758 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "40.66662426399125", "stat_before": "937 (python3) R 934 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25197757 17371136 3032 18446744073709551615 4325376 7350237 140727864241216 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 12324864 140727864247354 140727864247439 140727864247439 140727864250343 0\n", "stat_after": "937 (python3) R 934 12 1 34816 12 4194304 1587 4122 0 12 2 1 4347 595 20 0 1 0 25197757 17371136 3032 18446744073709551615 4325376 7350237 140727864241216 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 12324864 140727864247354 140727864247439 140727864247439 140727864250343 0\n", "script": "/benchmarks/oneliners/scripts/set-diff.sh", "pid": 937, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 29181544408\nwchar: 29181519504\nsyscr: 5523810\nsyscw: 6396484\nread_bytes: 4096\nwrite_bytes: 19941695488\ncancelled_write_bytes: 0\n", "stat_zombie": "955 (sort-sort.sh) Z 954 12 1 34816 12 4227084 192 3936 0 0 0 0 2635 1460 20 0 1 0 25201872 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "37.377956152005936", "stat_before": "954 (python3) R 951 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25201871 17371136 3048 18446744073709551615 4325376 7350237 140733563016544 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 22511616 140733563024440 140733563024526 140733563024526 140733563027431 0\n", "stat_after": "954 (python3) R 951 12 1 34816 12 4194304 1585 4128 0 0 2 2 2635 1460 20 0 1 0 25201871 17371136 3048 18446744073709551615 4325376 7350237 140733563016544 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 22511616 140733563024440 140733563024526 140733563024526 140733563027431 0\n", "script": "/benchmarks/oneliners/scripts/sort-sort.sh", "pid": 954, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 4057128291\nwchar: 4057091781\nsyscr: 695071\nsyscw: 822840\nread_bytes: 708837376\nwrite_bytes: 2638520320\ncancelled_write_bytes: 1152741376\n", "stat_zombie": "1076 (uniq-ips.sh) Z 1075 12 1 34816 12 4227084 178 2074 0 0 0 0 1598 204 20 0 1 0 25205647 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "16.037634951004293", "stat_before": "1075 (python3) R 1072 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25205645 17371136 3026 18446744073709551615 4325376 7350237 140723095478960 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 13090816 140723095487516 140723095487616 140723095487616 140723095490535 0\n", "stat_after": "1075 (python3) R 1072 12 1 34816 12 4194304 1586 2252 0 0 2 0 1598 204 20 0 1 0 25205645 17371136 3026 18446744073709551615 4325376 7350237 140723095478960 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 13090816 140723095487516 140723095487616 140723095487616 140723095490535 0\n", "script": "/benchmarks/oneliners/scripts/uniq-ips.sh", "pid": 1075, "benchmark_experiment_start": "2025-01-10T11:11:15.195469+00:00", "category": "oneliners", "input_file": "/benchmarks/oneliners/inputs/logs-popcount-org.txt", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:05:49.305291+00:00-infrastructure%standards%user-time.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:05:49.305291+00:00-infrastructure%standards%user-time.jsonl.xz new file mode 100644 index 000000000..120c2f548 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:05:49.305291+00:00-infrastructure%standards%user-time.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:05:49.305291+00:00-infrastructure%standards%user-time.mortem b/infrastructure/target/process-logs/2025-01-10T12:05:49.305291+00:00-infrastructure%standards%user-time.mortem new file mode 100644 index 000000000..996876cda --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:05:49.305291+00:00-infrastructure%standards%user-time.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 104509\nwchar: 110\nsyscr: 126\nsyscw: 2\nread_bytes: 20480\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "1099 (main.sh) Z 1098 12 1 34816 12 4227084 250 2265 0 1 0 0 204 0 20 0 1 0 25246301 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.106943783001043", "stat_before": "1098 (python3) R 1095 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25246299 17367040 3020 18446744073709551615 4325376 7350237 140723224607520 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 28368896 140723224613957 140723224614067 140723224614067 140723224616935 0\n", "stat_after": "1098 (python3) R 1095 12 1 34816 12 4194304 1582 2515 0 1 1 0 204 0 20 0 1 0 25246299 17367040 3020 18446744073709551615 4325376 7350237 140723224607520 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 28368896 140723224613957 140723224614067 140723224614067 140723224616935 0\n", "script": "/benchmarks/infrastructure/standards/user-time/scripts/main.sh", "pid": 1098, "benchmark_experiment_start": "2025-01-10T12:05:49.305291+00:00", "category": "infrastructure/standards/user-time", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:05:52.663175+00:00-web-index.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:05:52.663175+00:00-web-index.jsonl.xz new file mode 100644 index 000000000..cd0873f57 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:05:52.663175+00:00-web-index.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:05:52.663175+00:00-web-index.mortem b/infrastructure/target/process-logs/2025-01-10T12:05:52.663175+00:00-web-index.mortem new file mode 100644 index 000000000..d3a625610 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:05:52.663175+00:00-web-index.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 124051184\nwchar: 102696181\nsyscr: 1312474\nsyscw: 1668718\nread_bytes: 74428416\nwrite_bytes: 9715712\ncancelled_write_bytes: 7254016\n", "stat_zombie": "1120 (ngrams.sh) Z 1119 12 1 34816 12 4227084 652 6141162 0 1304 0 0 2257 1203 20 0 1 0 25246638 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "35.56739905300492", "stat_before": "1119 (python3) R 1116 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25246636 17367040 3019 18446744073709551615 4325376 7350237 140724110756176 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 30523392 140724110758796 140724110758900 140724110758900 140724110761959 0\n", "stat_after": "1119 (python3) R 1116 12 1 34816 12 4194304 1585 6141814 0 1304 4 0 2257 1203 20 0 1 0 25246636 17367040 3019 18446744073709551615 4325376 7350237 140724110756176 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 30523392 140724110758796 140724110758900 140724110758900 140724110761959 0\n", "script": "/benchmarks/web-index/scripts/ngrams.sh", "pid": 1119, "benchmark_experiment_start": "2025-01-10T12:05:52.663175+00:00", "category": "web-index", "input_file": "/benchmarks/web-index/inputs/index_small.txt", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:07:11.198419+00:00-infrastructure%standards%read-write.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:07:11.198419+00:00-infrastructure%standards%read-write.jsonl.xz new file mode 100644 index 000000000..dd62e720f Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:07:11.198419+00:00-infrastructure%standards%read-write.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:07:11.198419+00:00-infrastructure%standards%read-write.mortem b/infrastructure/target/process-logs/2025-01-10T12:07:11.198419+00:00-infrastructure%standards%read-write.mortem new file mode 100644 index 000000000..98aca9d9b --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:07:11.198419+00:00-infrastructure%standards%read-write.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 1048610555\nwchar: 1048576256\nsyscr: 1077\nsyscw: 1007\nread_bytes: 81920\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "8191 (main.sh) Z 8190 12 1 34816 12 4227084 234 1215 0 2 0 0 0 1 20 0 1 0 25254490 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.1066313219926087", "stat_before": "8190 (python3) R 8187 12 1 34816 12 4194304 1579 0 0 0 0 0 0 0 20 0 1 0 25254488 17367040 3039 18446744073709551615 4325376 7350237 140730620289856 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 37187584 140730620298304 140730620298415 140730620298415 140730620301287 0\n", "stat_after": "8190 (python3) R 8187 12 1 34816 12 4194304 1584 1449 0 2 1 0 0 1 20 0 1 0 25254488 17367040 3039 18446744073709551615 4325376 7350237 140730620289856 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 37187584 140730620298304 140730620298415 140730620298415 140730620301287 0\n", "script": "/benchmarks/infrastructure/standards/read-write/scripts/main.sh", "pid": 8190, "benchmark_experiment_start": "2025-01-10T12:07:11.198419+00:00", "category": "infrastructure/standards/read-write", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:07:13.511143+00:00-sklearn.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:07:13.511143+00:00-sklearn.jsonl.xz new file mode 100644 index 000000000..7b8db47d6 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:07:13.511143+00:00-sklearn.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:07:13.511143+00:00-sklearn.mortem b/infrastructure/target/process-logs/2025-01-10T12:07:13.511143+00:00-sklearn.mortem new file mode 100644 index 000000000..60ab8da3e --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:07:13.511143+00:00-sklearn.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 2439877924\nwchar: 455995111\nsyscr: 36898\nsyscw: 75\nread_bytes: 103268352\nwrite_bytes: 456048640\ncancelled_write_bytes: 4096\n", "stat_zombie": "8210 (run.sh) Z 8209 12 1 34816 12 4227084 606 690105 0 762 0 0 15927 309 20 0 1 0 25254724 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "28.283742457002518", "stat_before": "8209 (python3) R 8206 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25254722 17367040 3046 18446744073709551615 4325376 7350237 140724473493408 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 36605952 140724473496755 140724473496837 140724473496837 140724473499623 0\n", "stat_after": "8209 (python3) R 8206 12 1 34816 12 4194304 1584 690711 0 762 3 1 15927 309 20 0 1 0 25254722 17367040 3046 18446744073709551615 4325376 7350237 140724473493408 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 36605952 140724473496755 140724473496837 140724473496837 140724473499623 0\n", "script": "/benchmarks/sklearn/scripts/run.sh", "pid": 8209, "benchmark_experiment_start": "2025-01-10T12:07:13.511143+00:00", "category": "sklearn", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:07:43.505828+00:00-riker.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:07:43.505828+00:00-riker.jsonl.xz new file mode 100644 index 000000000..b44ab0a22 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:07:43.505828+00:00-riker.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:07:43.505828+00:00-riker.mortem b/infrastructure/target/process-logs/2025-01-10T12:07:43.505828+00:00-riker.mortem new file mode 100644 index 000000000..59a560e8f --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:07:43.505828+00:00-riker.mortem @@ -0,0 +1,7 @@ +{"io_zombie": "rchar: 34086505\nwchar: 4556229\nsyscr: 9044\nsyscw: 1433\nread_bytes: 91553792\nwrite_bytes: 4755456\ncancelled_write_bytes: 1105920\n", "stat_zombie": "8510 (build.sh) Z 8509 12 1 34816 12 4227084 70 153915 3 968 0 0 428 20 20 0 1 0 25257722 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "4.709514137997758", "stat_before": "8509 (python3) R 8506 12 1 34816 12 4194304 1575 0 0 0 1 0 0 0 20 0 1 0 25257720 17367040 3030 18446744073709551615 4325376 7350237 140724791936512 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 18448384 140724791944341 140724791944427 140724791944427 140724791947239 0\n", "stat_after": "8509 (python3) R 8506 12 1 34816 12 4194304 1580 153985 0 971 1 0 428 20 20 0 1 0 25257720 17367040 3030 18446744073709551615 4325376 7350237 140724791936512 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 18448384 140724791944341 140724791944427 140724791944427 140724791947239 0\n", "script": "/benchmarks/riker/scripts/lua/run.sh", "pid": 8509, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 179006030\nwchar: 24708126\nsyscr: 55713\nsyscw: 42219\nread_bytes: 3411968\nwrite_bytes: 24961024\ncancelled_write_bytes: 0\n", "stat_zombie": "8604 (build.sh) Z 8603 12 1 34816 12 4227084 67 330742 0 22 0 0 820 60 20 0 1 0 25258205 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "8.917289544988307", "stat_before": "8603 (python3) R 8600 12 1 34816 12 4194304 1574 0 0 0 1 0 0 0 20 0 1 0 25258203 17367040 3046 18446744073709551615 4325376 7350237 140723849233472 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 42627072 140723849237645 140723849237737 140723849237737 140723849240551 0\n", "stat_after": "8603 (python3) R 8600 12 1 34816 12 4194304 1581 330809 0 22 1 1 820 60 20 0 1 0 25258203 17367040 3046 18446744073709551615 4325376 7350237 140723849233472 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 42627072 140723849237645 140723849237737 140723849237737 140723849240551 0\n", "script": "/benchmarks/riker/scripts/memcached/run.sh", "pid": 8603, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 490972894\nwchar: 134867962\nsyscr: 74825\nsyscw: 17113\nread_bytes: 41820160\nwrite_bytes: 105705472\ncancelled_write_bytes: 0\n", "stat_zombie": "8745 (build.sh) Z 8744 12 1 34816 12 4227340 103 644121 0 263 0 0 1980 117 20 0 1 0 25259112 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "21.140171831008047", "stat_before": "8744 (python3) R 8741 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25259110 17367040 3046 18446744073709551615 4325376 7350237 140732402497808 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 24215552 140732402504853 140732402504941 140732402504941 140732402507751 0\n", "stat_after": "8744 (python3) R 8741 12 1 34816 12 4194304 1581 644224 0 263 2 0 1980 117 20 0 1 0 25259110 17367040 3046 18446744073709551615 4325376 7350237 140732402497808 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 24215552 140732402504853 140732402504941 140732402504941 140732402507751 0\n", "script": "/benchmarks/riker/scripts/redis/run.sh", "pid": 8744, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 397470054\nwchar: 239330450\nsyscr: 40766\nsyscw: 84386\nread_bytes: 111271936\nwrite_bytes: 228831232\ncancelled_write_bytes: 17821696\n", "stat_zombie": "8945 (build.sh) Z 8944 12 1 34816 12 4227340 83 710365 0 45 0 0 6337 96 20 0 1 0 25261255 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "64.73437690600986", "stat_before": "8944 (python3) R 8941 12 1 34816 12 4194304 1574 0 0 0 1 0 0 0 20 0 1 0 25261253 17367040 3029 18446744073709551615 4325376 7350237 140724214186320 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 39882752 140724214191254 140724214191343 140724214191343 140724214194151 0\n", "stat_after": "8944 (python3) R 8941 12 1 34816 12 4194304 1581 710448 0 45 3 3 6337 96 20 0 1 0 25261253 17367040 3029 18446744073709551615 4325376 7350237 140724214186320 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 39882752 140724214191254 140724214191343 140724214191343 140724214194151 0\n", "script": "/benchmarks/riker/scripts/sqlite/run.sh", "pid": 8944, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 464475773\nwchar: 149990873\nsyscr: 59494\nsyscw: 33893\nread_bytes: 12918784\nwrite_bytes: 149905408\ncancelled_write_bytes: 626688\n", "stat_zombie": "9368 (build.sh) Z 9367 12 1 34816 12 4227340 171 1625577 0 10 0 0 5393 234 20 0 1 0 25267787 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "56.511617022013525", "stat_before": "9367 (python3) R 9364 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25267785 17367040 3052 18446744073709551615 4325376 7350237 140725043645408 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 41058304 140725043647647 140725043647733 140725043647733 140725043650535 0\n", "stat_after": "9367 (python3) R 9364 12 1 34816 12 4194304 1586 1625748 0 10 4 1 5393 235 20 0 1 0 25267785 17367040 3052 18446744073709551615 4325376 7350237 140725043645408 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 41058304 140725043647647 140725043647733 140725043647733 140725043650535 0\n", "script": "/benchmarks/riker/scripts/vim/run.sh", "pid": 9367, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 98955156\nwchar: 2237006\nsyscr: 23269\nsyscw: 1749\nread_bytes: 1572864\nwrite_bytes: 2756608\ncancelled_write_bytes: 0\n", "stat_zombie": "9671 (build.sh) Z 9670 12 1 34816 12 4227084 76 270443 0 0 0 0 204 51 20 0 1 0 25273494 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.6057609580020653", "stat_before": "9670 (python3) R 9667 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25273492 17367040 3045 18446744073709551615 4325376 7350237 140725612836176 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 14987264 140725612840098 140725612840183 140725612840183 140725612842983 0\n", "stat_after": "9670 (python3) R 9667 12 1 34816 12 4194304 1583 270519 0 0 1 0 204 51 20 0 1 0 25273492 17367040 3045 18446744073709551615 4325376 7350237 140725612836176 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 14987264 140725612840098 140725612840183 140725612840183 140725612842983 0\n", "script": "/benchmarks/riker/scripts/xz/run.sh", "pid": 9670, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 43970837\nwchar: 906586\nsyscr: 16942\nsyscw: 842\nread_bytes: 48840704\nwrite_bytes: 1220608\ncancelled_write_bytes: 0\n", "stat_zombie": "9912 (build.sh) Z 9911 12 1 34816 12 4227084 73 499960 0 573 0 0 222 84 20 0 1 0 25273765 0 0 18446744073709551615 0 0 0 0 0 0 0 0 65538 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.2069843230128754", "stat_before": "9911 (python3) R 9908 12 1 34816 12 4194304 1581 0 0 0 0 0 0 0 20 0 1 0 25273763 17367040 3060 18446744073709551615 4325376 7350237 140729863659008 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 38076416 140729863664784 140729863664875 140729863664875 140729863667687 0\n", "stat_after": "9911 (python3) R 9908 12 1 34816 12 4194304 1586 500033 0 573 0 1 222 84 20 0 1 0 25273763 17367040 3060 18446744073709551615 4325376 7350237 140729863659008 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 38076416 140729863664784 140729863664875 140729863664875 140729863667687 0\n", "script": "/benchmarks/riker/scripts/xz-clang/run.sh", "pid": 9911, "benchmark_experiment_start": "2025-01-10T12:07:43.505828+00:00", "category": "riker", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:10:47.975902+00:00-infrastructure%standards%100-files.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:10:47.975902+00:00-infrastructure%standards%100-files.jsonl.xz new file mode 100644 index 000000000..c67a42d17 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:10:47.975902+00:00-infrastructure%standards%100-files.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:10:47.975902+00:00-infrastructure%standards%100-files.mortem b/infrastructure/target/process-logs/2025-01-10T12:10:47.975902+00:00-infrastructure%standards%100-files.mortem new file mode 100644 index 000000000..d6c7fe583 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:10:47.975902+00:00-infrastructure%standards%100-files.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 420468\nwchar: 55\nsyscr: 826\nsyscw: 1\nread_bytes: 4096\nwrite_bytes: 0\ncancelled_write_bytes: 0\n", "stat_zombie": "10152 (main.sh) Z 10151 12 1 34816 12 4227084 3239 9259 0 0 0 1 4 0 20 0 1 0 25276168 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "10.128033633009181", "stat_before": "10151 (python3) R 10148 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25276166 17367040 3029 18446744073709551615 4325376 7350237 140731546295440 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 37400576 140731546301509 140731546301619 140731546301619 140731546304487 0\n", "stat_after": "10151 (python3) R 10148 12 1 34816 12 4194304 1584 12498 0 0 2 0 5 2 20 0 1 0 25276166 17367040 3029 18446744073709551615 4325376 7350237 140731546295440 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 37400576 140731546301509 140731546301619 140731546301619 140731546304487 0\n", "script": "/benchmarks/infrastructure/standards/100-files/scripts/main.sh", "pid": 10151, "benchmark_experiment_start": "2025-01-10T12:10:47.975902+00:00", "category": "infrastructure/standards/100-files", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:10:58.762447+00:00-vps-audit-negate.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:10:58.762447+00:00-vps-audit-negate.jsonl.xz new file mode 100644 index 000000000..5d69c84af Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:10:58.762447+00:00-vps-audit-negate.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:10:58.762447+00:00-vps-audit-negate.mortem b/infrastructure/target/process-logs/2025-01-10T12:10:58.762447+00:00-vps-audit-negate.mortem new file mode 100644 index 000000000..dc1137672 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:10:58.762447+00:00-vps-audit-negate.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 184013760\nwchar: 991523\nsyscr: 5431\nsyscw: 466\nread_bytes: 108351488\nwrite_bytes: 643072\ncancelled_write_bytes: 638976\n", "stat_zombie": "10267 (vps-audit-negat) Z 10266 12 1 34816 12 4227340 1956 37909 0 223 0 0 84 38 20 0 1 0 25277248 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.3057772100000875", "stat_before": "10266 (python3) R 10263 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25277246 17367040 3028 18446744073709551615 4325376 7350237 140724523745264 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 34889728 140724523746439 140724523746543 140724523746543 140724523749351 0\n", "stat_after": "10266 (python3) R 10263 12 1 34816 12 4194304 1582 39865 0 223 1 0 84 39 20 0 1 0 25277246 17367040 3028 18446744073709551615 4325376 7350237 140724523745264 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 34889728 140724523746439 140724523746543 140724523746543 140724523749351 0\n", "script": "/benchmarks/vps-audit-negate/scripts/vps-audit-negate.sh", "pid": 10266, "benchmark_experiment_start": "2025-01-10T12:10:58.762447+00:00", "category": "vps-audit-negate", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:11:16.954569+00:00-log-analysis.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:11:16.954569+00:00-log-analysis.jsonl.xz new file mode 100644 index 000000000..e38e53cfc Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:11:16.954569+00:00-log-analysis.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:11:16.954569+00:00-log-analysis.mortem b/infrastructure/target/process-logs/2025-01-10T12:11:16.954569+00:00-log-analysis.mortem new file mode 100644 index 000000000..5c7ca43e2 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:11:16.954569+00:00-log-analysis.mortem @@ -0,0 +1,2 @@ +{"io_zombie": "rchar: 1407954171\nwchar: 512300654\nsyscr: 301703\nsyscw: 63876\nread_bytes: 127721472\nwrite_bytes: 144723968\ncancelled_write_bytes: 15585280\n", "stat_zombie": "17899 (nginx.sh) Z 17898 12 1 34816 12 4227084 730 84572 0 54 0 0 360 56 20 0 1 0 25279067 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.5066292240080656", "stat_before": "17898 (python3) R 17895 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25279065 17371136 3028 18446744073709551615 4325376 7350237 140734214468320 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 29134848 140734214472732 140734214472907 140734214472907 140734214475751 0\n", "stat_after": "17898 (python3) R 17895 12 1 34816 12 4194304 1585 85302 0 54 1 0 360 56 20 0 1 0 25279065 17371136 3028 18446744073709551615 4325376 7350237 140734214468320 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 29134848 140734214472732 140734214472907 140734214472907 140734214475751 0\n", "script": "/benchmarks/log-analysis/scripts/nginx.sh", "pid": 17898, "benchmark_experiment_start": "2025-01-10T12:11:16.954569+00:00", "category": "log-analysis", "input_file": "/benchmarks/log-analysis/input/nginx-logs", "sc_clk_tck": 100} +{"io_zombie": "rchar: 10231310721\nwchar: 6144779605\nsyscr: 42653262\nsyscw: 52257382\nread_bytes: 1372008448\nwrite_bytes: 1417121792\ncancelled_write_bytes: 22192128\n", "stat_zombie": "18283 (pcaps.sh) Z 18282 12 1 34816 12 4227084 4872 254864 0 87 0 1 9530 6970 20 0 1 0 25279429 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "124.81457920899265", "stat_before": "18282 (python3) R 18279 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25279427 17367040 3030 18446744073709551615 4325376 7350237 140721117014560 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 26124288 140721117017126 140721117017296 140721117017296 140721117020135 0\n", "stat_after": "18282 (python3) R 18279 12 1 34816 12 4194304 1584 259736 0 87 6 6 9530 6972 20 0 1 0 25279427 17367040 3030 18446744073709551615 4325376 7350237 140721117014560 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 26124288 140721117017126 140721117017296 140721117017296 140721117020135 0\n", "script": "/benchmarks/log-analysis/scripts/pcaps.sh", "pid": 18282, "benchmark_experiment_start": "2025-01-10T12:11:16.954569+00:00", "category": "log-analysis", "input_file": "/benchmarks/log-analysis/input/pcaps", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:13:43.085656+00:00-aurpkg.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:13:43.085656+00:00-aurpkg.jsonl.xz new file mode 100644 index 000000000..f914670ec Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:13:43.085656+00:00-aurpkg.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:13:43.085656+00:00-aurpkg.mortem b/infrastructure/target/process-logs/2025-01-10T12:13:43.085656+00:00-aurpkg.mortem new file mode 100644 index 000000000..bc05e74dd --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:13:43.085656+00:00-aurpkg.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 138703146\nwchar: 335264\nsyscr: 85088\nsyscw: 61746\nread_bytes: 581632\nwrite_bytes: 1232896\ncancelled_write_bytes: 0\n", "stat_zombie": "19265 (pacaur.sh) Z 19264 12 1 34816 12 4227084 15348 1135640 0 18 1 5 452 108 20 0 1 0 25293679 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "124.93513706000522", "stat_before": "19264 (python3) R 19261 12 1 34816 12 4194304 1581 0 0 0 0 0 0 0 20 0 1 0 25293678 17371136 3057 18446744073709551615 4325376 7350237 140723967602208 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 36184064 140723967607914 140723967608042 140723967608042 140723967610855 0\n", "stat_after": "19264 (python3) R 19261 12 1 34816 12 4194304 1589 1150988 0 18 5 12 453 113 20 0 1 0 25293678 17371136 3057 18446744073709551615 4325376 7350237 140723967602208 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 36184064 140723967607914 140723967608042 140723967608042 140723967610855 0\n", "script": "/benchmarks/aurpkg/scripts/pacaur.sh", "pid": 19264, "benchmark_experiment_start": "2025-01-10T12:13:43.085656+00:00", "category": "aurpkg", "input_file": "/benchmarks/aurpkg/input/packages", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:15:57.302683+00:00-unix50.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:15:57.302683+00:00-unix50.jsonl.xz new file mode 100644 index 000000000..1515c2bab Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:15:57.302683+00:00-unix50.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:15:57.302683+00:00-unix50.mortem b/infrastructure/target/process-logs/2025-01-10T12:15:57.302683+00:00-unix50.mortem new file mode 100644 index 000000000..029837886 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:15:57.302683+00:00-unix50.mortem @@ -0,0 +1,34 @@ +{"io_zombie": "rchar: 6290115038\nwchar: 5042925000\nsyscr: 791864\nsyscw: 487344\nread_bytes: 3145060352\nwrite_bytes: 1897877504\ncancelled_write_bytes: 0\n", "stat_zombie": "25735 (1.sh) Z 25734 12 1 34816 12 4227084 171 255 0 0 0 0 598 262 20 0 1 0 25307102 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.312210603005951", "stat_before": "25734 (python3) R 25731 12 1 34816 12 4194304 1575 0 0 0 1 0 0 0 20 0 1 0 25307100 17371136 3032 18446744073709551615 4325376 7350237 140735566825744 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 22032384 140735566828633 140735566828713 140735566828713 140735566831591 0\n", "stat_after": "25734 (python3) R 25731 12 1 34816 12 4194304 1579 426 0 0 2 0 598 262 20 0 1 0 25307100 17371136 3032 18446744073709551615 4325376 7350237 140735566825744 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 22032384 140735566828633 140735566828713 140735566828713 140735566831591 0\n", "script": "/benchmarks/unix50/scripts/1.sh", "pid": 25734, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/1_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 13774377552\nwchar: 12527182566\nsyscr: 2545151\nsyscw: 2315357\nread_bytes: 73728\nwrite_bytes: 7487541248\ncancelled_write_bytes: 0\n", "stat_zombie": "25744 (2.sh) Z 25743 12 1 34816 12 4227084 174 3250 2 1 0 0 4732 733 20 0 1 0 25307846 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "51.090443787994445", "stat_before": "25743 (python3) R 25740 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25307844 17371136 3050 18446744073709551615 4325376 7350237 140721036959104 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 41275392 140721036964953 140721036965033 140721036965033 140721036967911 0\n", "stat_after": "25743 (python3) R 25740 12 1 34816 12 4194304 1585 3424 0 3 2 2 4732 733 20 0 1 0 25307844 17371136 3050 18446744073709551615 4325376 7350237 140721036959104 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 41275392 140721036964953 140721036965033 140721036965033 140721036967911 0\n", "script": "/benchmarks/unix50/scripts/2.sh", "pid": 25743, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/1_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 158461\nwchar: 65581\nsyscr: 44\nsyscw: 3\nread_bytes: 36864\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25754 (3.sh) Z 25753 12 1 34816 12 4227084 177 364 2 1 0 0 0 0 20 0 1 0 25312997 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.10083891400427092", "stat_before": "25753 (python3) R 25750 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25312996 17371136 3052 18446744073709551615 4325376 7350237 140733350066208 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 31612928 140733350073433 140733350073513 140733350073513 140733350076391 0\n", "stat_after": "25753 (python3) R 25750 12 1 34816 12 4194304 1578 541 0 3 1 0 0 0 20 0 1 0 25312996 17371136 3052 18446744073709551615 4325376 7350237 140733350066208 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 31612928 140733350073433 140733350073513 140733350073513 140733350076391 0\n", "script": "/benchmarks/unix50/scripts/3.sh", "pid": 25753, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/1_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 12523441817\nwchar: 9378363055\nsyscr: 2221833\nsyscw: 1547519\nread_bytes: 4096\nwrite_bytes: 3745992704\ncancelled_write_bytes: 1084465152\n", "stat_zombie": "25764 (4.sh) Z 25763 12 1 34816 12 4227084 205 2327 0 1 0 0 4906 527 20 0 1 0 25313015 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "47.08324818899564", "stat_before": "25763 (python3) R 25760 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25313014 17371136 3032 18446744073709551615 4325376 7350237 140733710917648 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 20852736 140733710922841 140733710922921 140733710922921 140733710925799 0\n", "stat_after": "25763 (python3) R 25760 12 1 34816 12 4194304 1586 2532 0 1 3 1 4906 527 20 0 1 0 25313014 17371136 3032 18446744073709551615 4325376 7350237 140733710917648 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 20852736 140733710922841 140733710922921 140733710922921 140733710925799 0\n", "script": "/benchmarks/unix50/scripts/4.sh", "pid": 25763, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/1_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 6723169169\nwchar: 3941550000\nsyscr: 897935\nsyscw: 218809\nread_bytes: 3143561216\nwrite_bytes: 361951232\ncancelled_write_bytes: 0\n", "stat_zombie": "25776 (5.sh) Z 25775 12 1 34816 12 4227084 180 368 0 0 0 0 511 226 20 0 1 0 25317771 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.330902628993499", "stat_before": "25775 (python3) R 25772 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25317770 17371136 3067 18446744073709551615 4325376 7350237 140720690741648 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 38989824 140720690742361 140720690742441 140720690742441 140720690745319 0\n", "stat_after": "25775 (python3) R 25772 12 1 34816 12 4194304 1583 548 0 0 2 0 511 227 20 0 1 0 25317770 17371136 3067 18446744073709551615 4325376 7350237 140720690741648 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 38989824 140720690742361 140720690742441 140720690742441 140720690745319 0\n", "script": "/benchmarks/unix50/scripts/5.sh", "pid": 25775, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/2_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 8722173471\nwchar: 5790933000\nsyscr: 1385497\nsyscw: 669812\nread_bytes: 3145703424\nwrite_bytes: 214482944\ncancelled_write_bytes: 0\n", "stat_zombie": "25786 (6.sh) Z 25785 12 1 34816 12 4227084 202 584 0 1 0 0 945 346 20 0 1 0 25318316 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.318517494000844", "stat_before": "25785 (python3) R 25782 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25318314 17371136 3033 18446744073709551615 4325376 7350237 140729705149344 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 14626816 140729705153625 140729705153705 140729705153705 140729705156583 0\n", "stat_after": "25785 (python3) R 25782 12 1 34816 12 4194304 1581 786 0 1 1 0 945 346 20 0 1 0 25318314 17371136 3033 18446744073709551615 4325376 7350237 140729705149344 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 14626816 140729705153625 140729705153705 140729705153705 140729705156583 0\n", "script": "/benchmarks/unix50/scripts/6.sh", "pid": 25785, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/3_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11383632075\nwchar: 8238585010\nsyscr: 947573\nsyscw: 1267542\nread_bytes: 3145052160\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25798 (7.sh) Z 25797 12 1 34816 12 4227084 191 522 0 2 0 0 1244 341 20 0 1 0 25319062 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "11.514842884993413", "stat_before": "25797 (python3) R 25794 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25319060 17371136 3033 18446744073709551615 4325376 7350237 140733480922368 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 43438080 140733480924249 140733480924329 140733480924329 140733480927207 0\n", "stat_after": "25797 (python3) R 25794 12 1 34816 12 4194304 1580 713 0 2 2 0 1244 341 20 0 1 0 25319060 17371136 3033 18446744073709551615 4325376 7350237 140733480922368 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 43438080 140733480924249 140733480924329 140733480924329 140733480927207 0\n", "script": "/benchmarks/unix50/scripts/7.sh", "pid": 25797, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 10699940013\nwchar: 7554885009\nsyscr: 780530\nsyscw: 1100624\nread_bytes: 4096\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25809 (8.sh) Z 25808 12 1 34816 12 4227084 203 669 0 0 0 0 912 299 20 0 1 0 25320230 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.116881836991524", "stat_before": "25808 (python3) R 25805 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25320229 17371136 3033 18446744073709551615 4325376 7350237 140725131714736 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 40075264 140725131719769 140725131719849 140725131719849 140725131722727 0\n", "stat_after": "25808 (python3) R 25805 12 1 34816 12 4194304 1580 872 0 0 1 0 912 299 20 0 1 0 25320229 17371136 3033 18446744073709551615 4325376 7350237 140725131714736 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 40075264 140725131719769 140725131719849 140725131719849 140725131722727 0\n", "script": "/benchmarks/unix50/scripts/8.sh", "pid": 25808, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11110172105\nwchar: 7965105009\nsyscr: 879705\nsyscw: 1200776\nread_bytes: 4096\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25821 (9.sh) Z 25820 12 1 34816 12 4227084 224 940 0 1 0 0 1324 314 20 0 1 0 25320754 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.71750155799964", "stat_before": "25820 (python3) R 25817 12 1 34816 12 4194304 1573 0 0 0 1 0 0 0 20 0 1 0 25320752 17371136 3032 18446744073709551615 4325376 7350237 140726624085312 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 34058240 140726624089177 140726624089257 140726624089257 140726624092135 0\n", "stat_after": "25820 (python3) R 25817 12 1 34816 12 4194304 1577 1164 0 1 2 0 1324 314 20 0 1 0 25320752 17371136 3032 18446744073709551615 4325376 7350237 140726624085312 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 34058240 140726624089177 140726624089257 140726624089257 140726624092135 0\n", "script": "/benchmarks/unix50/scripts/9.sh", "pid": 25820, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11818278202\nwchar: 8673197102\nsyscr: 1004230\nsyscw: 1373883\nread_bytes: 4096\nwrite_bytes: 285143040\ncancelled_write_bytes: 285138944\n", "stat_zombie": "25835 (10.sh) Z 25834 12 1 34816 12 4227084 265 4134 0 0 0 0 2554 363 20 0 1 0 25321339 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "11.226252410997404", "stat_before": "25834 (python3) R 25831 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25321337 17371136 3052 18446744073709551615 4325376 7350237 140721770740384 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 21336064 140721770742871 140721770742952 140721770742952 140721770745831 0\n", "stat_after": "25834 (python3) R 25831 12 1 34816 12 4194304 1587 4399 0 0 2 0 2554 363 20 0 1 0 25321337 17371136 3052 18446744073709551615 4325376 7350237 140721770740384 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 21336064 140721770742871 140721770742952 140721770742952 140721770745831 0\n", "script": "/benchmarks/unix50/scripts/10.sh", "pid": 25834, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 11855143363\nwchar: 8710066180\nsyscr: 1017995\nsyscw: 1382931\nread_bytes: 4096\nwrite_bytes: 404291584\ncancelled_write_bytes: 404287488\n", "stat_zombie": "25852 (11.sh) Z 25851 12 1 34816 12 4227084 272 4121 0 4 0 0 2540 357 20 0 1 0 25322482 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "12.627454944013152", "stat_before": "25851 (python3) R 25848 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25322480 17371136 3030 18446744073709551615 4325376 7350237 140722904211008 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 19718144 140722904216663 140722904216744 140722904216744 140722904219623 0\n", "stat_after": "25851 (python3) R 25848 12 1 34816 12 4194304 1586 4393 0 4 2 0 2540 357 20 0 1 0 25322480 17371136 3030 18446744073709551615 4325376 7350237 140722904211008 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 19718144 140722904216663 140722904216744 140722904216744 140722904219623 0\n", "script": "/benchmarks/unix50/scripts/11.sh", "pid": 25851, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 15914449469\nwchar: 12769376836\nsyscr: 1950389\nsyscw: 2374631\nread_bytes: 12288\nwrite_bytes: 1684598784\ncancelled_write_bytes: 1325457408\n", "stat_zombie": "25869 (12.sh) Z 25868 12 1 34816 12 4227084 265 3951 0 1 0 0 7427 612 20 0 1 0 25323766 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "51.088190139998915", "stat_before": "25868 (python3) R 25865 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25323764 17371136 3029 18446744073709551615 4325376 7350237 140731964922384 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 23740416 140731964925015 140731964925096 140731964925096 140731964927975 0\n", "stat_after": "25868 (python3) R 25865 12 1 34816 12 4194304 1584 4216 0 1 3 1 7428 612 20 0 1 0 25323764 17371136 3029 18446744073709551615 4325376 7350237 140731964922384 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 23740416 140731964925015 140731964925096 140731964925096 140731964927975 0\n", "script": "/benchmarks/unix50/scripts/12.sh", "pid": 25868, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 9744102099\nwchar: 7595775000\nsyscr: 930984\nsyscw: 1110439\nread_bytes: 3145736192\nwrite_bytes: 997425152\ncancelled_write_bytes: 0\n", "stat_zombie": "25886 (13.sh) Z 25885 12 1 34816 12 4227084 190 516 0 0 0 0 1029 330 20 0 1 0 25328939 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "4.7073805990075925", "stat_before": "25885 (python3) R 25882 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25328938 17371136 3049 18446744073709551615 4325376 7350237 140720855956272 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 23994368 140720855958615 140720855958696 140720855958696 140720855961575 0\n", "stat_after": "25885 (python3) R 25882 12 1 34816 12 4194304 1583 706 0 0 1 0 1029 330 20 0 1 0 25328938 17371136 3049 18446744073709551615 4325376 7350237 140720855956272 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 23994368 140720855958615 140720855958696 140720855958696 140720855961575 0\n", "script": "/benchmarks/unix50/scripts/13.sh", "pid": 25885, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/5_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 29358540509\nwchar: 27823299216\nsyscr: 6394646\nsyscw: 6049599\nread_bytes: 9154400256\nwrite_bytes: 15409434624\ncancelled_write_bytes: 0\n", "stat_zombie": "25897 (14.sh) Z 25896 12 1 34816 12 4227084 185 3150 0 6 0 0 12779 1611 20 0 1 0 25329422 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "129.32853851698746", "stat_before": "25896 (python3) R 25893 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25329420 17371136 3057 18446744073709551615 4325376 7350237 140730016442432 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 31092736 140730016449623 140730016449704 140730016449704 140730016452583 0\n", "stat_after": "25896 (python3) R 25893 12 1 34816 12 4194304 1586 3335 0 6 5 6 12779 1611 20 0 1 0 25329420 17371136 2793 18446744073709551615 4325376 7350237 140730016442432 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 31092736 140730016449623 140730016449704 140730016449704 140730016452583 0\n", "script": "/benchmarks/unix50/scripts/14.sh", "pid": 25896, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/6_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 8390574105\nwchar: 5245269009\nsyscr: 1304457\nsyscw: 536692\nread_bytes: 3145924608\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25908 (15.sh) Z 25907 12 1 34816 12 4227084 188 520 8 8 0 0 629 310 20 0 1 0 25342460 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "4.906634163999115", "stat_before": "25907 (python3) R 25904 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25342458 17371136 3034 18446744073709551615 4325376 7350237 140724008872864 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 32186368 140724008879191 140724008879272 140724008879272 140724008882151 0\n", "stat_after": "25907 (python3) R 25904 12 1 34816 12 4194304 1585 708 0 16 1 0 629 310 20 0 1 0 25342458 17371136 3034 18446744073709551615 4325376 7350237 140724008872864 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 32186368 140724008879191 140724008879272 140724008879272 140724008882151 0\n", "script": "/benchmarks/unix50/scripts/15.sh", "pid": 25907, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/7_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 10086159342\nwchar: 6940839919\nsyscr: 1702899\nsyscw: 950913\nread_bytes: 126976\nwrite_bytes: 2195734528\ncancelled_write_bytes: 2195730432\n", "stat_zombie": "25919 (16.sh) Z 25918 12 1 34816 12 4227084 239 2529 0 19 0 0 3325 387 20 0 1 0 25342962 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "33.157955230999505", "stat_before": "25918 (python3) R 25915 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25342960 17371136 3015 18446744073709551615 4325376 7350237 140723248100768 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 15544320 140723248104535 140723248104616 140723248104616 140723248107495 0\n", "stat_after": "25918 (python3) R 25915 12 1 34816 12 4194304 1586 2768 0 19 3 0 3325 387 20 0 1 0 25342960 17371136 3015 18446744073709551615 4325376 7350237 140723248100768 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 15544320 140723248104535 140723248104616 140723248104616 140723248107495 0\n", "script": "/benchmarks/unix50/scripts/16.sh", "pid": 25918, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/7_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 8575325255\nwchar: 5430011979\nsyscr: 1336316\nsyscw: 582380\nread_bytes: 180224\nwrite_bytes: 1270087680\ncancelled_write_bytes: 1128230912\n", "stat_zombie": "25934 (17.sh) Z 25933 12 1 34816 12 4227084 217 2244 0 8 0 0 3224 298 20 0 1 0 25346321 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "31.65440217300784", "stat_before": "25933 (python3) R 25930 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25346319 17371136 3022 18446744073709551615 4325376 7350237 140730650740064 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 20439040 140730650747991 140730650748072 140730650748072 140730650750951 0\n", "stat_after": "25933 (python3) R 25930 12 1 34816 12 4194304 1583 2461 0 8 3 0 3224 298 20 0 1 0 25346319 17371136 3022 18446744073709551615 4325376 7350237 140730650740064 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 20439040 140730650747991 140730650748072 140730650748072 140730650750951 0\n", "script": "/benchmarks/unix50/scripts/17.sh", "pid": 25933, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/7_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 9138702075\nwchar: 6093525007\nsyscr: 768958\nsyscw: 767466\nread_bytes: 3045158912\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25947 (18.sh) Z 25946 12 1 34816 12 4227084 190 516 0 0 0 0 133 260 20 0 1 0 25349524 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.013329833993339", "stat_before": "25946 (python3) R 25943 12 1 34816 12 4194304 1583 0 0 0 1 0 0 0 20 0 1 0 25349523 17371136 3042 18446744073709551615 4325376 7350237 140734463767648 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 22454272 140734463771735 140734463771816 140734463771816 140734463774695 0\n", "stat_after": "25946 (python3) R 25943 12 1 34816 12 4194304 1587 706 0 0 1 0 133 260 20 0 1 0 25349523 17371136 3042 18446744073709551615 4325376 7350237 140734463767648 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 22454272 140734463771735 140734463771816 140734463771816 140734463774695 0\n", "script": "/benchmarks/unix50/scripts/18.sh", "pid": 25946, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/8_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 6455836181\nwchar: 3411525000\nsyscr: 174503\nsyscw: 112683\nread_bytes: 1843200\nwrite_bytes: 901120\ncancelled_write_bytes: 0\n", "stat_zombie": "25958 (19.sh) Z 25957 12 1 34816 12 4227084 199 821 2 41 0 0 271 108 20 0 1 0 25349736 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.5046745279978495", "stat_before": "25957 (python3) R 25954 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25349734 17371136 3035 18446744073709551615 4325376 7350237 140728708742736 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 13389824 140728708748375 140728708748456 140728708748456 140728708751335 0\n", "stat_after": "25957 (python3) R 25954 12 1 34816 12 4194304 1584 1020 0 43 1 0 271 108 20 0 1 0 25349734 17371136 3035 18446744073709551615 4325376 7350237 140728708742736 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 13389824 140728708748375 140728708748456 140728708748456 140728708751335 0\n", "script": "/benchmarks/unix50/scripts/19.sh", "pid": 25957, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/8_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 1481265\nwchar: 954419\nsyscr: 148\nsyscw: 106\nread_bytes: 4096\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25970 (20.sh) Z 25969 12 1 34816 12 4227084 203 628 0 0 0 0 0 0 20 0 1 0 25349996 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.11034149400074966", "stat_before": "25969 (python3) R 25966 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25349995 17371136 3046 18446744073709551615 4325376 7350237 140732075611648 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 16375808 140732075619415 140732075619496 140732075619496 140732075622375 0\n", "stat_after": "25969 (python3) R 25966 12 1 34816 12 4194304 1582 831 0 0 1 0 0 0 20 0 1 0 25349995 17371136 3046 18446744073709551615 4325376 7350237 140732075611648 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 16375808 140732075619415 140732075619496 140732075619496 140732075622375 0\n", "script": "/benchmarks/unix50/scripts/20.sh", "pid": 25969, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/8_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 24345445402\nwchar: 21302806307\nsyscr: 4357536\nsyscw: 4481528\nread_bytes: 1162178560\nwrite_bytes: 12170878976\ncancelled_write_bytes: 0\n", "stat_zombie": "25982 (21.sh) Z 25981 12 1 34816 12 4227084 189 3464 0 1 0 0 19291 1244 20 0 1 0 25350016 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "189.03676292199816", "stat_before": "25981 (python3) R 25978 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25350014 17371136 3023 18446744073709551615 4325376 7350237 140726824998368 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 40693760 140726825006167 140726825006248 140726825006248 140726825009127 0\n", "stat_after": "25981 (python3) R 25978 12 1 34816 12 4194304 1585 3653 0 1 10 5 19292 1244 20 0 1 0 25350014 17371136 2860 18446744073709551615 4325376 7350237 140726824998368 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 40693760 140726825006167 140726825006248 140726825006248 140726825009127 0\n", "script": "/benchmarks/unix50/scripts/21.sh", "pid": 25981, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/8_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 12931987267\nwchar: 9786336005\nsyscr: 827183\nsyscw: 1645274\nread_bytes: 3145711616\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "25993 (23.sh) Z 25992 12 1 34816 12 4227084 219 895 3 6 0 0 19053 717 20 0 1 0 25369063 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "105.43574378899939", "stat_before": "25992 (python3) R 25989 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25369061 17371136 3033 18446744073709551615 4325376 7350237 140731818520944 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 26996736 140731818521683 140731818521766 140731818521766 140731818524647 0\n", "stat_after": "25992 (python3) R 25989 12 1 34816 12 4194304 1583 1114 0 9 5 3 19053 717 20 0 1 0 25369061 17371136 3142 18446744073709551615 4325376 7350237 140731818520944 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 26996736 140731818521683 140731818521766 140731818521766 140731818524647 0\n", "script": "/benchmarks/unix50/scripts/23.sh", "pid": 25992, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.1_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 6577099154\nwchar: 3574500000\nsyscr: 861808\nsyscw: 128722\nread_bytes: 3145564160\nwrite_bytes: 142983168\ncancelled_write_bytes: 0\n", "stat_zombie": "26007 (24.sh) Z 26006 12 1 34816 12 4227084 178 366 0 0 0 0 511 208 20 0 1 0 25379710 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.417532743012998", "stat_before": "26006 (python3) R 26003 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25379708 17371136 3012 18446744073709551615 4325376 7350237 140721371520800 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 18059264 140721371522131 140721371522214 140721371522214 140721371525095 0\n", "stat_after": "26006 (python3) R 26003 12 1 34816 12 4194304 1582 544 0 0 1 0 511 208 20 0 1 0 25379708 17371136 3012 18446744073709551615 4325376 7350237 140721371520800 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 18059264 140721371522131 140721371522214 140721371522214 140721371525095 0\n", "script": "/benchmarks/unix50/scripts/24.sh", "pid": 26006, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.2_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 6808555201\nwchar: 4007556000\nsyscr: 918275\nsyscw: 234412\nread_bytes: 3145834496\nwrite_bytes: 344739840\ncancelled_write_bytes: 0\n", "stat_zombie": "26017 (25.sh) Z 26016 12 1 34816 12 4227084 177 363 3 3 0 0 438 223 20 0 1 0 25380263 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "4.608270315991831", "stat_before": "26016 (python3) R 26013 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25380262 17371136 3024 18446744073709551615 4325376 7350237 140728431392496 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 42254336 140728431395923 140728431396006 140728431396006 140728431398887 0\n", "stat_after": "26016 (python3) R 26013 12 1 34816 12 4194304 1586 540 0 6 1 0 438 223 20 0 1 0 25380262 17371136 3024 18446744073709551615 4325376 7350237 140728431392496 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 42254336 140728431395923 140728431396006 140728431396006 140728431398887 0\n", "script": "/benchmarks/unix50/scripts/25.sh", "pid": 26016, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.3_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 12921188277\nwchar: 10079849983\nsyscr: 1322660\nsyscw: 1716903\nread_bytes: 3145920512\nwrite_bytes: 304427008\ncancelled_write_bytes: 0\n", "stat_zombie": "26027 (26.sh) Z 26026 12 1 34816 12 4227084 215 769 0 8 0 0 2772 480 20 0 1 0 25380735 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "11.814984980010195", "stat_before": "26026 (python3) R 26023 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25380734 17371136 3029 18446744073709551615 4325376 7350237 140724521581584 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 41193472 140724521583699 140724521583782 140724521583782 140724521586663 0\n", "stat_after": "26026 (python3) R 26023 12 1 34816 12 4194304 1586 984 0 8 2 0 2772 480 20 0 1 0 25380734 17371136 3029 18446744073709551615 4325376 7350237 140724521581584 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 41193472 140724521583699 140724521583782 140724521583782 140724521586663 0\n", "script": "/benchmarks/unix50/scripts/26.sh", "pid": 26026, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.4_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 16588871273\nwchar: 13639679932\nsyscr: 1759444\nsyscw: 2585999\nread_bytes: 3145793536\nwrite_bytes: 196608000\ncancelled_write_bytes: 0\n", "stat_zombie": "26040 (28.sh) Z 26039 12 1 34816 12 4227084 278 1415 0 1 0 0 21368 825 20 0 1 0 25381936 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "92.63094597500458", "stat_before": "26039 (python3) R 26036 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25381934 17371136 3006 18446744073709551615 4325376 7350237 140732743708720 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 39452672 140732743713875 140732743713958 140732743713958 140732743716839 0\n", "stat_after": "26039 (python3) R 26036 12 1 34816 12 4194304 1585 1693 0 1 3 4 21369 825 20 0 1 0 25381934 17371136 3006 18446744073709551615 4325376 7350237 140732743708720 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 39452672 140732743713875 140732743713958 140732743713958 140732743716839 0\n", "script": "/benchmarks/unix50/scripts/28.sh", "pid": 26039, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.6_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 15727098018\nwchar: 13072220830\nsyscr: 2712457\nsyscw: 2447475\nread_bytes: 3145445376\nwrite_bytes: 490569728\ncancelled_write_bytes: 0\n", "stat_zombie": "26058 (29.sh) Z 26057 12 1 34816 12 4227084 203 627 0 8 0 0 1927 712 20 0 1 0 25391319 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "8.712266721006017", "stat_before": "26057 (python3) R 26054 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25391318 17371136 3024 18446744073709551615 4325376 7350237 140734567536832 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 21217280 140734567543891 140734567543974 140734567543974 140734567546855 0\n", "stat_after": "26057 (python3) R 26054 12 1 34816 12 4194304 1585 830 0 8 2 0 1927 712 20 0 1 0 25391318 17371136 3024 18446744073709551615 4325376 7350237 140734567536832 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 21217280 140734567543891 140734567543974 140734567543974 140734567546855 0\n", "script": "/benchmarks/unix50/scripts/29.sh", "pid": 26057, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.7_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 18164084191\nwchar: 15288899906\nsyscr: 2425637\nsyscw: 2988645\nread_bytes: 3145732096\nwrite_bytes: 270602240\ncancelled_write_bytes: 0\n", "stat_zombie": "26070 (30.sh) Z 26069 12 1 34816 12 4227084 253 1158 0 0 0 0 18413 903 20 0 1 0 25392206 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "102.00358132700785", "stat_before": "26069 (python3) R 26066 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25392204 17371136 3019 18446744073709551615 4325376 7350237 140736629154128 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 18485248 140736629154899 140736629154982 140736629154982 140736629157863 0\n", "stat_after": "26069 (python3) R 26066 12 1 34816 12 4194304 1582 1411 0 0 5 1 18413 904 20 0 1 0 25392204 17371136 3019 18446744073709551615 4325376 7350237 140736629154128 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 18485248 140736629154899 140736629154982 140736629154982 140736629157863 0\n", "script": "/benchmarks/unix50/scripts/30.sh", "pid": 26069, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.8_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 19618566094\nwchar: 16743374839\nsyscr: 2781097\nsyscw: 3343741\nread_bytes: 3145732096\nwrite_bytes: 270602240\ncancelled_write_bytes: 0\n", "stat_zombie": "26086 (31.sh) Z 26085 12 1 34816 12 4227084 267 1300 0 0 0 0 21526 1019 20 0 1 0 25402537 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "104.81673285900615", "stat_before": "26085 (python3) R 26082 12 1 34816 12 4194304 1585 0 0 0 1 0 0 0 20 0 1 0 25402536 17371136 3062 18446744073709551615 4325376 7350237 140734017592848 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 12603392 140734017598547 140734017598630 140734017598630 140734017601511 0\n", "stat_after": "26085 (python3) R 26082 12 1 34816 12 4194304 1590 1567 0 0 4 2 21526 1019 20 0 1 0 25402536 17371136 3062 18446744073709551615 4325376 7350237 140734017592848 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 12603392 140734017598547 140734017598630 140734017598630 140734017601511 0\n", "script": "/benchmarks/unix50/scripts/31.sh", "pid": 26085, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/9.9_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 9597076064\nwchar: 6457733918\nsyscr: 1554193\nsyscw: 834117\nread_bytes: 3139334144\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "26103 (32.sh) Z 26102 12 1 34816 12 4227084 202 656 0 1 0 0 482 316 20 0 1 0 25413148 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.2143361999915214", "stat_before": "26102 (python3) R 26099 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25413147 17371136 3023 18446744073709551615 4325376 7350237 140730041421424 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 20209664 140730041422933 140730041423015 140730041423015 140730041425895 0\n", "stat_after": "26102 (python3) R 26099 12 1 34816 12 4194304 1581 858 0 1 1 0 483 316 20 0 1 0 25413147 17371136 3023 18446744073709551615 4325376 7350237 140730041421424 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 20209664 140730041422933 140730041423015 140730041423015 140730041425895 0\n", "script": "/benchmarks/unix50/scripts/32.sh", "pid": 26102, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/10_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 9556895954\nwchar: 6457733910\nsyscr: 1373475\nsyscw: 834116\nread_bytes: 4096\nwrite_bytes: 40177664\ncancelled_write_bytes: 0\n", "stat_zombie": "26115 (33.sh) Z 26114 12 1 34816 12 4227084 193 542 0 0 0 0 462 282 20 0 1 0 25413480 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.014905589996488", "stat_before": "26114 (python3) R 26111 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25413479 17371136 3057 18446744073709551615 4325376 7350237 140726886814272 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 13045760 140726886822997 140726886823079 140726886823079 140726886825959 0\n", "stat_after": "26114 (python3) R 26111 12 1 34816 12 4194304 1583 735 0 0 1 0 462 282 20 0 1 0 25413479 17371136 3057 18446744073709551615 4325376 7350237 140726886814272 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 13045760 140726886822997 140726886823079 140726886823079 140726886825959 0\n", "script": "/benchmarks/unix50/scripts/33.sh", "pid": 26114, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/10_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 1747574\nwchar: 852034\nsyscr: 121\nsyscw: 22\nread_bytes: 77824\nwrite_bytes: 4096\ncancelled_write_bytes: 0\n", "stat_zombie": "26126 (34.sh) Z 26125 12 1 34816 12 4227084 242 952 0 4 0 0 0 0 20 0 1 0 25413792 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.10099653899669647", "stat_before": "26125 (python3) R 26122 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25413790 17371136 3016 18446744073709551615 4325376 7350237 140726327103952 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 29659136 140726327108693 140726327108775 140726327108775 140726327111655 0\n", "stat_after": "26125 (python3) R 26122 12 1 34816 12 4194304 1580 1194 0 4 1 0 0 0 20 0 1 0 25413790 17371136 3016 18446744073709551615 4325376 7350237 140726327103952 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 29659136 140726327108693 140726327108775 140726327108775 140726327111655 0\n", "script": "/benchmarks/unix50/scripts/34.sh", "pid": 26125, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/10_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 6381515027\nwchar: 3242616000\nsyscr: 111481\nsyscw: 48400\nread_bytes: 3142586368\nwrite_bytes: 3706880\ncancelled_write_bytes: 0\n", "stat_zombie": "26141 (35.sh) Z 26140 12 1 34816 12 4227084 182 410 0 0 0 0 30 146 20 0 1 0 25413810 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "1.4124508100067033", "stat_before": "26140 (python3) R 26137 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25413809 17371136 3029 18446744073709551615 4325376 7350237 140727393755008 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 23056384 140727393756245 140727393756327 140727393756327 140727393759207 0\n", "stat_after": "26140 (python3) R 26137 12 1 34816 12 4194304 1583 592 0 0 1 0 30 146 20 0 1 0 25413809 17371136 3029 18446744073709551615 4325376 7350237 140727393755008 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 23056384 140727393756245 140727393756327 140727393756327 140727393759207 0\n", "script": "/benchmarks/unix50/scripts/35.sh", "pid": 26140, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/11_3G.txt", "sc_clk_tck": 100} +{"io_zombie": "rchar: 7378682270\nwchar: 4236052844\nsyscr: 1055816\nsyscw: 291124\nread_bytes: 3149217792\nwrite_bytes: 313200640\ncancelled_write_bytes: 176328704\n", "stat_zombie": "26151 (36.sh) Z 26150 12 1 34816 12 4227084 260 2891 0 7 0 0 887 259 20 0 1 0 25413961 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.812560881997342", "stat_before": "26150 (python3) R 26147 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25413959 17371136 3044 18446744073709551615 4325376 7350237 140726959692240 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 38924288 140726959694933 140726959695015 140726959695015 140726959697895 0\n", "stat_after": "26150 (python3) R 26147 12 1 34816 12 4194304 1585 3151 0 7 1 0 887 259 20 0 1 0 25413959 17371136 3044 18446744073709551615 4325376 7350237 140726959692240 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 38924288 140726959694933 140726959695015 140726959695015 140726959697895 0\n", "script": "/benchmarks/unix50/scripts/36.sh", "pid": 26150, "benchmark_experiment_start": "2025-01-10T12:15:57.302683+00:00", "category": "unix50", "input_file": "/benchmarks/unix50/inputs/11_3G.txt", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:37:40.373479+00:00-max-temp.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:37:40.373479+00:00-max-temp.jsonl.xz new file mode 100644 index 000000000..db929fbc5 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:37:40.373479+00:00-max-temp.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:37:40.373479+00:00-max-temp.mortem b/infrastructure/target/process-logs/2025-01-10T12:37:40.373479+00:00-max-temp.mortem new file mode 100644 index 000000000..7a0fbcd4a --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:37:40.373479+00:00-max-temp.mortem @@ -0,0 +1 @@ +{"io_zombie": "rchar: 5202128054\nwchar: 2687204677\nsyscr: 667036\nsyscw: 54390\nread_bytes: 848691200\nwrite_bytes: 50466816\ncancelled_write_bytes: 50454528\n", "stat_zombie": "26180 (temp-analytics.) Z 26179 12 1 34816 12 4227084 303 5145 0 22 0 0 536 145 20 0 1 0 25437409 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "4.507814807991963", "stat_before": "26179 (python3) R 26176 12 1 34816 12 4194304 1582 0 0 0 1 0 0 0 20 0 1 0 25437407 17367040 3054 18446744073709551615 4325376 7350237 140726022137616 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 16015360 140726022140917 140726022141011 140726022141011 140726022143975 0\n", "stat_after": "26179 (python3) R 26176 12 1 34816 12 4194304 1589 5448 0 22 1 0 536 145 20 0 1 0 25437407 17367040 3054 18446744073709551615 4325376 7350237 140726022137616 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 16015360 140726022140917 140726022141011 140726022141011 140726022143975 0\n", "script": "/benchmarks/max-temp/scripts/temp-analytics.sh", "pid": 26179, "benchmark_experiment_start": "2025-01-10T12:37:40.373479+00:00", "category": "max-temp", "input_file": "/benchmarks/max-temp/input/temperatures.full.txt", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:37:45.411521+00:00-nlp.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:37:45.411521+00:00-nlp.jsonl.xz new file mode 100644 index 000000000..c8e44c792 Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:37:45.411521+00:00-nlp.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:37:45.411521+00:00-nlp.mortem b/infrastructure/target/process-logs/2025-01-10T12:37:45.411521+00:00-nlp.mortem new file mode 100644 index 000000000..cea9e7fcd --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:37:45.411521+00:00-nlp.mortem @@ -0,0 +1,23 @@ +{"io_zombie": "rchar: 326146147\nwchar: 259996887\nsyscr: 44721\nsyscw: 46525\nread_bytes: 74711040\nwrite_bytes: 13778944\ncancelled_write_bytes: 13287424\n", "stat_zombie": "26212 (syllable_words_) Z 26211 12 1 34816 12 4227084 11966 171122 0 20 0 6 1038 31 20 0 1 0 25437912 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "6.009969949009246", "stat_before": "26211 (python3) R 26208 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25437910 17371136 3011 18446744073709551615 4325376 7350237 140722065567824 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 16084992 140722065568850 140722065568955 140722065568955 140722065571815 0\n", "stat_after": "26211 (python3) R 26208 12 1 34816 12 4194304 1585 183088 0 20 2 0 1039 38 20 0 1 0 25437910 17371136 3011 18446744073709551615 4325376 7350237 140722065567824 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 16084992 140722065568850 140722065568955 140722065568955 140722065571815 0\n", "script": "/benchmarks/nlp/scripts/syllable_words_1.sh", "pid": 26211, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 301992695\nwchar: 224772802\nsyscr: 39714\nsyscw: 37869\nread_bytes: 4096\nwrite_bytes: 491520\ncancelled_write_bytes: 0\n", "stat_zombie": "27184 (syllable_words_) Z 27183 12 1 34816 12 4227084 11962 155315 0 12 0 5 778 22 20 0 1 0 25438526 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.417854590006755", "stat_before": "27183 (python3) R 27180 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25438525 17371136 3051 18446744073709551615 4325376 7350237 140731561002976 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 35360768 140731561006162 140731561006267 140731561006267 140731561009127 0\n", "stat_after": "27183 (python3) R 27180 12 1 34816 12 4194304 1585 167277 0 12 2 0 778 28 20 0 1 0 25438525 17371136 3051 18446744073709551615 4325376 7350237 140731561002976 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 35360768 140731561006162 140731561006267 140731561006267 140731561009127 0\n", "script": "/benchmarks/nlp/scripts/syllable_words_2.sh", "pid": 27183, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 594938782\nwchar: 439915368\nsyscr: 69322\nsyscw: 72956\nread_bytes: 4096\nwrite_bytes: 8085504\ncancelled_write_bytes: 7102464\n", "stat_zombie": "28156 (letter_words.sh) Z 28155 12 1 34816 12 4227084 16075 219057 0 37 1 7 1262 49 20 0 1 0 25439081 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "11.426410068001132", "stat_before": "28155 (python3) R 28152 12 1 34816 12 4194304 1574 0 0 0 1 0 0 0 20 0 1 0 25439079 17371136 3015 18446744073709551615 4325376 7350237 140736844718144 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 27729920 140736844723294 140736844723391 140736844723391 140736844726247 0\n", "stat_after": "28155 (python3) R 28152 12 1 34816 12 4194304 1581 235132 0 37 2 0 1263 56 20 0 1 0 25439079 17371136 3015 18446744073709551615 4325376 7350237 140736844718144 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 27729920 140736844723294 140736844723391 140736844723391 140736844726247 0\n", "script": "/benchmarks/nlp/scripts/letter_words.sh", "pid": 28155, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 928053904\nwchar: 789075897\nsyscr: 179765\nsyscw: 175724\nread_bytes: 208896\nwrite_bytes: 324853760\ncancelled_write_bytes: 73064448\n", "stat_zombie": "29368 (bigrams_appear_) Z 29367 12 1 34816 12 4227084 8617 272108 0 12 0 4 977 76 20 0 1 0 25440239 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "9.33662349099177", "stat_before": "29367 (python3) R 29364 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25440237 17371136 3040 18446744073709551615 4325376 7350237 140730776829296 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 29609984 140730776831046 140730776831159 140730776831159 140730776834023 0\n", "stat_after": "29367 (python3) R 29364 12 1 34816 12 4194304 1587 280725 0 12 1 0 978 80 20 0 1 0 25440237 17371136 3040 18446744073709551615 4325376 7350237 140730776829296 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 29609984 140730776831046 140730776831159 140730776831159 140730776834023 0\n", "script": "/benchmarks/nlp/scripts/bigrams_appear_twice.sh", "pid": 29367, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 808585570\nwchar: 782274275\nsyscr: 150418\nsyscw: 174075\nread_bytes: 4096\nwrite_bytes: 317829120\ncancelled_write_bytes: 200425472\n", "stat_zombie": "30940 (bigrams.sh) Z 30939 12 1 34816 12 4227084 11682 242642 0 9 0 6 889 79 20 0 1 0 25441187 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "8.435692546001519", "stat_before": "30939 (python3) R 30936 12 1 34816 12 4194304 1575 0 0 0 1 0 0 0 20 0 1 0 25441185 17371136 3015 18446744073709551615 4325376 7350237 140721349507120 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 40640512 140721349514349 140721349514436 140721349514436 140721349517287 0\n", "stat_after": "30939 (python3) R 30936 12 1 34816 12 4194304 1580 254324 0 9 1 0 889 85 20 0 1 0 25441185 17371136 3015 18446744073709551615 4325376 7350237 140721349507120 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 40640512 140721349514349 140721349514436 140721349514436 140721349517287 0\n", "script": "/benchmarks/nlp/scripts/bigrams.sh", "pid": 30939, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 641903287\nwchar: 460112263\nsyscr: 75290\nsyscw: 72948\nread_bytes: 712704\nwrite_bytes: 44175360\ncancelled_write_bytes: 43683840\n", "stat_zombie": "32392 (compare_exodus_) Z 32391 12 1 34816 12 4227084 10119 409882 0 51 0 4 1054 84 20 0 1 0 25442044 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "9.926395350004896", "stat_before": "32391 (python3) R 32388 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25442043 17371136 3031 18446744073709551615 4325376 7350237 140729463454336 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 37343232 140729463460928 140729463461045 140729463461045 140729463463911 0\n", "stat_after": "32391 (python3) R 32388 12 1 34816 12 4194304 1585 420001 0 51 1 0 1054 89 20 0 1 0 25442043 17371136 3031 18446744073709551615 4325376 7350237 140729463454336 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 37343232 140729463460928 140729463461045 140729463461045 140729463463911 0\n", "script": "/benchmarks/nlp/scripts/compare_exodus_genesis.sh", "pid": 32391, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 375192486\nwchar: 298940437\nsyscr: 57146\nsyscw: 55847\nread_bytes: 4096\nwrite_bytes: 43552768\ncancelled_write_bytes: 42422272\n", "stat_zombie": "34204 (count_consonant) Z 34203 12 1 34816 12 4227084 8119 145944 0 27 1 3 423 35 20 0 1 0 25443051 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "3.8162337130052038", "stat_before": "34203 (python3) R 34200 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25443050 17371136 3055 18446744073709551615 4325376 7350237 140730078608288 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 20369408 140730078610505 140730078610616 140730078610616 140730078613479 0\n", "stat_after": "34203 (python3) R 34200 12 1 34816 12 4194304 1587 154063 0 27 1 0 425 39 20 0 1 0 25443050 17371136 3055 18446744073709551615 4325376 7350237 140730078608288 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 20369408 140730078610505 140730078610616 140730078610616 140730078613479 0\n", "script": "/benchmarks/nlp/scripts/count_consonant_seq.sh", "pid": 34203, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 251192451\nwchar: 185031949\nsyscr: 51157\nsyscw: 28073\nread_bytes: 4096\nwrite_bytes: 11948032\ncancelled_write_bytes: 0\n", "stat_zombie": "34936 (count_morphs.sh) Z 34935 12 1 34816 12 4227084 8601 122496 0 12 0 3 175 20 20 0 1 0 25443446 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "1.5124635529937223", "stat_before": "34935 (python3) R 34932 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25443444 17371136 3038 18446744073709551615 4325376 7350237 140737169992144 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 29184000 140737169994846 140737169994943 140737169994943 140737169997799 0\n", "stat_after": "34935 (python3) R 34932 12 1 34816 12 4194304 1580 131097 0 12 1 0 175 24 20 0 1 0 25443444 17371136 3038 18446744073709551615 4325376 7350237 140737169992144 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 29184000 140737169994846 140737169994943 140737169994943 140737169997799 0\n", "script": "/benchmarks/nlp/scripts/count_morphs.sh", "pid": 34935, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 1103252076\nwchar: 1047640341\nsyscr: 213413\nsyscw: 238896\nread_bytes: 4096\nwrite_bytes: 456613888\ncancelled_write_bytes: 304558080\n", "stat_zombie": "35668 (count_trigrams.) Z 35667 12 1 34816 12 4227084 8616 268303 0 2 0 3 912 73 20 0 1 0 25443606 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "8.623125780999544", "stat_before": "35667 (python3) R 35664 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25443604 17371136 3040 18446744073709551615 4325376 7350237 140732044995856 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 36556800 140732044997720 140732044997821 140732044997821 140732045000679 0\n", "stat_after": "35667 (python3) R 35664 12 1 34816 12 4194304 1586 276919 0 2 1 0 913 76 20 0 1 0 25443604 17371136 3040 18446744073709551615 4325376 7350237 140732044995856 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 36556800 140732044997720 140732044997821 140732044997821 140732045000679 0\n", "script": "/benchmarks/nlp/scripts/count_trigrams.sh", "pid": 35667, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 248472059\nwchar: 171361609\nsyscr: 30851\nsyscw: 24682\nread_bytes: 4096\nwrite_bytes: 5406720\ncancelled_write_bytes: 4915200\n", "stat_zombie": "37240 (count_vowel_seq) Z 37239 12 1 34816 12 4227084 8242 122228 0 4 0 4 107 11 20 0 1 0 25444482 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.8114214259985602", "stat_before": "37239 (python3) R 37236 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25444481 17371136 3014 18446744073709551615 4325376 7350237 140723880256512 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 38322176 140723880260693 140723880260796 140723880260796 140723880263655 0\n", "stat_after": "37239 (python3) R 37236 12 1 34816 12 4194304 1580 130470 0 4 1 0 107 15 20 0 1 0 25444481 17371136 3014 18446744073709551615 4325376 7350237 140723880256512 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 38322176 140723880260693 140723880260796 140723880260796 140723880263655 0\n", "script": "/benchmarks/nlp/scripts/count_vowel_seq.sh", "pid": 37239, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 388390223\nwchar: 330183792\nsyscr: 57563\nsyscw: 63435\nread_bytes: 4096\nwrite_bytes: 55545856\ncancelled_write_bytes: 35901440\n", "stat_zombie": "37972 (count_words.sh) Z 37971 12 1 34816 12 4227084 8124 145363 0 27 0 4 749 39 20 0 1 0 25444572 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "6.720475797992549", "stat_before": "37971 (python3) R 37968 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25444571 17371136 3021 18446744073709551615 4325376 7350237 140725222249584 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 41234432 140725222257761 140725222257856 140725222257856 140725222260711 0\n", "stat_after": "37971 (python3) R 37968 12 1 34816 12 4194304 1585 153487 0 27 2 0 750 43 20 0 1 0 25444571 17371136 3021 18446744073709551615 4325376 7350237 140725222249584 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 41234432 140725222257761 140725222257856 140725222257856 140725222260711 0\n", "script": "/benchmarks/nlp/scripts/count_words.sh", "pid": 37971, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 387891219\nwchar: 296250506\nsyscr: 58669\nsyscw: 55520\nread_bytes: 20480\nwrite_bytes: 27701248\ncancelled_write_bytes: 27181056\n", "stat_zombie": "38704 (find_anagrams.s) Z 38703 12 1 34816 12 4227084 8615 288675 0 2 0 3 820 47 20 0 1 0 25445257 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.421679824008606", "stat_before": "38703 (python3) R 38700 12 1 34816 12 4194304 1579 0 0 0 0 0 0 0 20 0 1 0 25445255 17371136 3015 18446744073709551615 4325376 7350237 140734362736720 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 32911360 140734362743899 140734362743998 140734362743998 140734362746855 0\n", "stat_after": "38703 (python3) R 38700 12 1 34816 12 4194304 1586 297290 0 2 0 1 821 50 20 0 1 0 25445255 17371136 3015 18446744073709551615 4325376 7350237 140734362736720 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 32911360 140734362743899 140734362743998 140734362743998 140734362746855 0\n", "script": "/benchmarks/nlp/scripts/find_anagrams.sh", "pid": 38703, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 462960412\nwchar: 402207541\nsyscr: 67758\nsyscw: 80961\nread_bytes: 4096\nwrite_bytes: 53489664\ncancelled_write_bytes: 35901440\n", "stat_zombie": "40156 (merge_upper.sh) Z 40155 12 1 34816 12 4227084 9805 159633 0 31 0 5 794 39 20 0 1 0 25446012 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.021482936994289", "stat_before": "40155 (python3) R 40152 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25446010 17371136 3012 18446744073709551615 4325376 7350237 140722700299936 0 0 0 0 16781312 2 0 0 0 17 2 0 0 0 0 0 10649032 12210560 23932928 140722700305505 140722700305600 140722700305600 140722700308455 0\n", "stat_after": "40155 (python3) R 40152 12 1 34816 12 4194304 1583 169438 0 31 2 0 795 45 20 0 1 0 25446010 17371136 3012 18446744073709551615 4325376 7350237 140722700299936 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 23932928 140722700305505 140722700305600 140722700305600 140722700308455 0\n", "script": "/benchmarks/nlp/scripts/merge_upper.sh", "pid": 40155, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 408384881\nwchar: 349587536\nsyscr: 63098\nsyscw: 68231\nread_bytes: 4096\nwrite_bytes: 55545856\ncancelled_write_bytes: 35901440\n", "stat_zombie": "41008 (sort.sh) Z 41007 12 1 34816 12 4227084 9809 189526 0 29 0 5 784 49 20 0 1 0 25446727 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.121749034005916", "stat_before": "41007 (python3) R 41004 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25446726 17371136 3059 18446744073709551615 4325376 7350237 140721422984624 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 31055872 140721422988406 140721422988487 140721422988487 140721422991335 0\n", "stat_after": "41007 (python3) R 41004 12 1 34816 12 4194304 1585 199335 0 29 2 0 784 55 20 0 1 0 25446726 17371136 3059 18446744073709551615 4325376 7350237 140721422984624 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 31055872 140721422988406 140721422988487 140721422988487 140721422991335 0\n", "script": "/benchmarks/nlp/scripts/sort.sh", "pid": 41007, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 408384888\nwchar: 349587536\nsyscr: 63067\nsyscw: 68231\nread_bytes: 4096\nwrite_bytes: 55545856\ncancelled_write_bytes: 35901440\n", "stat_zombie": "41860 (sort_words_by_f) Z 41859 12 1 34816 12 4227084 9804 189503 0 20 0 5 784 42 20 0 1 0 25447455 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 7 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.021611097006826", "stat_before": "41859 (python3) R 41856 12 1 34816 12 4194304 1578 0 0 0 0 0 0 0 20 0 1 0 25447453 17371136 3020 18446744073709551615 4325376 7350237 140723494472176 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 40800256 140723494478915 140723494479030 140723494479030 140723494481895 0\n", "stat_after": "41859 (python3) R 41856 12 1 34816 12 4194304 1585 199307 0 20 0 1 785 48 20 0 1 0 25447453 17371136 3020 18446744073709551615 4325376 7350237 140723494472176 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 40800256 140723494478915 140723494479030 140723494479030 140723494481895 0\n", "script": "/benchmarks/nlp/scripts/sort_words_by_folding.sh", "pid": 41859, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 354262541\nwchar: 266625003\nsyscr: 54232\nsyscw: 48153\nread_bytes: 4096\nwrite_bytes: 20283392\ncancelled_write_bytes: 19791872\n", "stat_zombie": "42712 (sort_words_by_n) Z 42711 12 1 34816 12 4227084 9943 312451 0 7 0 4 811 49 20 0 1 0 25448170 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.4341789960017195", "stat_before": "42711 (python3) R 42708 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25448168 17371136 2994 18446744073709551615 4325376 7350237 140729128814848 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 34123776 140729128817704 140729128817837 140729128817837 140729128820711 0\n", "stat_after": "42711 (python3) R 42708 12 1 34816 12 4194304 1584 322394 0 7 1 0 812 54 20 0 1 0 25448168 17371136 2994 18446744073709551615 4325376 7350237 140729128814848 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 34123776 140729128817704 140729128817837 140729128817837 140729128820711 0\n", "script": "/benchmarks/nlp/scripts/sort_words_by_num_of_syllables.sh", "pid": 42711, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 448174483\nwchar: 388395024\nsyscr: 75010\nsyscw: 77823\nread_bytes: 4096\nwrite_bytes: 55545856\ncancelled_write_bytes: 35901440\n", "stat_zombie": "44404 (sort_words_by_r) Z 44403 12 1 34816 12 4227084 13040 215482 0 23 1 6 859 55 20 0 1 0 25448927 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.534731641004328", "stat_before": "44403 (python3) R 44400 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25448925 17371136 3026 18446744073709551615 4325376 7350237 140723191502512 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 19288064 140723191505987 140723191506102 140723191506102 140723191508967 0\n", "stat_after": "44403 (python3) R 44400 12 1 34816 12 4194304 1583 228522 0 23 1 0 860 62 20 0 1 0 25448925 17371136 3026 18446744073709551615 4325376 7350237 140723191502512 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 19288064 140723191505987 140723191506102 140723191506102 140723191508967 0\n", "script": "/benchmarks/nlp/scripts/sort_words_by_rhyming.sh", "pid": 44403, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 310756267\nwchar: 148276166\nsyscr: 34724\nsyscw: 1930\nread_bytes: 4096\nwrite_bytes: 557056\ncancelled_write_bytes: 417792\n", "stat_zombie": "45496 (trigram_rec.sh) Z 45495 12 1 34816 12 4227084 20180 476173 0 3 1 6 157 21 20 0 1 0 25449695 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "1.0244607579952572", "stat_before": "45495 (python3) R 45492 12 1 34816 12 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 25449693 17371136 3011 18446744073709551615 4325376 7350237 140730905376944 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 41525248 140730905384033 140730905384128 140730905384128 140730905386983 0\n", "stat_after": "45495 (python3) R 45492 12 1 34816 12 4194304 1583 496353 0 3 1 0 159 27 20 0 1 0 25449693 17371136 3011 18446744073709551615 4325376 7350237 140730905376944 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 41525248 140730905384033 140730905384128 140730905384128 140730905386983 0\n", "script": "/benchmarks/nlp/scripts/trigram_rec.sh", "pid": 45495, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 289069278\nwchar: 211593619\nsyscr: 33123\nsyscw: 34447\nread_bytes: 4096\nwrite_bytes: 491520\ncancelled_write_bytes: 0\n", "stat_zombie": "48748 (uppercase_by_to) Z 48747 12 1 34816 12 4227084 6918 82310 0 15 1 2 636 19 20 0 1 0 25449806 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.117088548999163", "stat_before": "48747 (python3) R 48744 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25449805 17371136 3027 18446744073709551615 4325376 7350237 140726460915232 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 44675072 140726460920908 140726460921017 140726460921017 140726460923879 0\n", "stat_after": "48747 (python3) R 48744 12 1 34816 12 4194304 1585 89228 0 15 1 0 637 22 20 0 1 0 25449805 17371136 3027 18446744073709551615 4325376 7350237 140726460915232 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 44675072 140726460920908 140726460921017 140726460921017 140726460923879 0\n", "script": "/benchmarks/nlp/scripts/uppercase_by_token.sh", "pid": 48747, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 306392594\nwchar: 228325962\nsyscr: 36222\nsyscw: 38632\nread_bytes: 4096\nwrite_bytes: 7593984\ncancelled_write_bytes: 7102464\n", "stat_zombie": "49360 (uppercase_by_ty) Z 49359 12 1 34816 12 4227084 8605 149446 0 23 0 4 710 34 20 0 1 0 25450329 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 4 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "6.420154648993048", "stat_before": "49359 (python3) R 49356 12 1 34816 12 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 25450328 17371136 3020 18446744073709551615 4325376 7350237 140729351260080 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 20598784 140729351263311 140729351263418 140729351263418 140729351266279 0\n", "stat_after": "49359 (python3) R 49356 12 1 34816 12 4194304 1583 158051 0 23 2 0 710 39 20 0 1 0 25450328 17371136 3020 18446744073709551615 4325376 7350237 140729351260080 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 20598784 140729351263311 140729351263418 140729351263418 140729351266279 0\n", "script": "/benchmarks/nlp/scripts/uppercase_by_type.sh", "pid": 49359, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 450263264\nwchar: 222242081\nsyscr: 16795\nsyscw: 2370\nread_bytes: 4096\nwrite_bytes: 1474560\ncancelled_write_bytes: 0\n", "stat_zombie": "50092 (verses_2om_3om_) Z 50091 12 1 34816 12 4227084 12692 140747 0 0 0 4 57 9 20 0 1 0 25450984 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.5110087089997251", "stat_before": "50091 (python3) R 50088 12 1 34816 12 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 25450982 17371136 3019 18446744073709551615 4325376 7350237 140723213516464 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 32174080 140723213517879 140723213518002 140723213518002 140723213520871 0\n", "stat_after": "50091 (python3) R 50088 12 1 34816 12 4194304 1578 153439 0 0 1 0 57 14 20 0 1 0 25450982 17371136 3019 18446744073709551615 4325376 7350237 140723213516464 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 32174080 140723213517879 140723213518002 140723213518002 140723213520871 0\n", "script": "/benchmarks/nlp/scripts/verses_2om_3om_2instances.sh", "pid": 50091, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 390622828\nwchar: 310251098\nsyscr: 60448\nsyscw: 58797\nread_bytes: 4096\nwrite_bytes: 26157056\ncancelled_write_bytes: 25665536\n", "stat_zombie": "51064 (vowel_sequencie) Z 51063 12 1 34816 12 4227084 11246 183837 0 22 0 6 934 48 20 0 1 0 25451043 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "6.921100444000331", "stat_before": "51063 (python3) R 51060 12 1 34816 12 4194304 1581 0 0 0 0 1 0 0 20 0 1 0 25451042 17371136 3021 18446744073709551615 4325376 7350237 140724004366368 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 29548544 140724004373568 140724004373685 140724004373685 140724004376551 0\n", "stat_after": "51063 (python3) R 51060 12 1 34816 12 4194304 1588 195083 0 22 0 1 934 55 20 0 1 0 25451042 17371136 3021 18446744073709551615 4325376 7350237 140724004366368 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 29548544 140724004373568 140724004373685 140724004373685 140724004376551 0\n", "script": "/benchmarks/nlp/scripts/vowel_sequencies_gr_1K.sh", "pid": 51063, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 299310611\nwchar: 220898262\nsyscr: 37808\nsyscw: 36835\nread_bytes: 4096\nwrite_bytes: 2375680\ncancelled_write_bytes: 1839104\n", "stat_zombie": "52036 (words_no_vowels) Z 52035 12 1 34816 12 4227084 9801 130989 0 30 0 4 592 27 20 0 1 0 25451749 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "5.230413461991702", "stat_before": "52035 (python3) R 52032 12 1 34816 12 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 25451747 17371136 3008 18446744073709551615 4325376 7350237 140729576900624 0 0 0 0 16781312 2 0 0 0 17 3 0 0 0 0 0 10649032 12210560 13201408 140729576907861 140729576907964 140729576907964 140729576910823 0\n", "stat_after": "52035 (python3) R 52032 12 1 34816 12 4194304 1584 140790 0 30 1 0 592 32 20 0 1 0 25451747 17371136 3008 18446744073709551615 4325376 7350237 140729576900624 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 13201408 140729576907861 140729576907964 140729576907964 140729576910823 0\n", "script": "/benchmarks/nlp/scripts/words_no_vowels.sh", "pid": 52035, "benchmark_experiment_start": "2025-01-10T12:37:45.411521+00:00", "category": "nlp", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-10T12:40:31.003088+00:00-media-conv.jsonl.xz b/infrastructure/target/process-logs/2025-01-10T12:40:31.003088+00:00-media-conv.jsonl.xz new file mode 100644 index 000000000..40a2d9fbf Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-10T12:40:31.003088+00:00-media-conv.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-10T12:40:31.003088+00:00-media-conv.mortem b/infrastructure/target/process-logs/2025-01-10T12:40:31.003088+00:00-media-conv.mortem new file mode 100644 index 000000000..e2866033f --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-10T12:40:31.003088+00:00-media-conv.mortem @@ -0,0 +1,2 @@ +{"io_zombie": "rchar: 4704601270\nwchar: 6815701320\nsyscr: 192951\nsyscw: 199222\nread_bytes: 2314620928\nwrite_bytes: 4526841856\ncancelled_write_bytes: 2302074880\n", "stat_zombie": "52896 (img_convert.sh) Z 52895 12 1 34816 12 4227084 119307 12849094 0 164 13 40 70783 9602 20 0 1 0 25454472 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 2 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "179.06605581099575", "stat_before": "52895 (python3) R 52892 12 1 34816 12 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 25454470 17371136 3041 18446744073709551615 4325376 7350237 140720979440592 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 40882176 140720979448854 140720979449037 140720979449037 140720979451879 0\n", "stat_after": "52895 (python3) R 52892 12 1 34816 12 4194304 1588 12968401 0 164 13 7 70797 9642 20 0 1 0 25454470 17371136 3041 18446744073709551615 4325376 7350237 140720979440592 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 40882176 140720979448854 140720979449037 140720979449037 140720979451879 0\n", "script": "/benchmarks/media-conv/scripts/img_convert.sh", "pid": 52895, "benchmark_experiment_start": "2025-01-10T12:40:31.003088+00:00", "category": "media-conv", "input_file": "/benchmarks/media-conv/input/jpg_full/jpg", "sc_clk_tck": 100} +{"io_zombie": "rchar: 4617712089\nwchar: 2632182095\nsyscr: 176429\nsyscw: 615481\nread_bytes: 2330202112\nwrite_bytes: 369131520\ncancelled_write_bytes: 0\n", "stat_zombie": "70760 (to_mp3.sh) Z 70759 12 1 34816 12 4227084 33823 2147192 1 853 1 14 20298 2297 20 0 1 0 25472492 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "206.56266089699056", "stat_before": "70759 (python3) R 70756 12 1 34816 12 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 25472490 17371136 3041 18446744073709551615 4325376 7350237 140725255303728 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 13844480 140725255312429 140725255312598 140725255312598 140725255315431 0\n", "stat_after": "70759 (python3) R 70756 12 1 34816 12 4194304 1586 2181015 0 854 8 6 20299 2311 20 0 1 0 25472490 17371136 3041 18446744073709551615 4325376 7350237 140725255303728 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 13844480 140725255312429 140725255312598 140725255312598 140725255315431 0\n", "script": "/benchmarks/media-conv/scripts/to_mp3.sh", "pid": 70759, "benchmark_experiment_start": "2025-01-10T12:40:31.003088+00:00", "category": "media-conv", "input_file": "/benchmarks/media-conv/input/wav_full", "sc_clk_tck": 100} diff --git a/infrastructure/target/process-logs/2025-01-11T05:05:33.666909+00:00-makeself.jsonl.xz b/infrastructure/target/process-logs/2025-01-11T05:05:33.666909+00:00-makeself.jsonl.xz new file mode 100644 index 000000000..0391942bf Binary files /dev/null and b/infrastructure/target/process-logs/2025-01-11T05:05:33.666909+00:00-makeself.jsonl.xz differ diff --git a/infrastructure/target/process-logs/2025-01-11T05:05:33.666909+00:00-makeself.mortem b/infrastructure/target/process-logs/2025-01-11T05:05:33.666909+00:00-makeself.mortem new file mode 100644 index 000000000..897eb66c9 --- /dev/null +++ b/infrastructure/target/process-logs/2025-01-11T05:05:33.666909+00:00-makeself.mortem @@ -0,0 +1,11 @@ +{"io_zombie": "rchar: 39501786\nwchar: 4642795\nsyscr: 54036\nsyscw: 7646\nread_bytes: 593920\nwrite_bytes: 741376\ncancelled_write_bytes: 708608\n", "stat_zombie": "26 (bash) Z 25 13 1 34816 13 4227340 8531 570807 0 41 1 1 256 28 20 0 1 0 31364738 0 0 18446744073709551615 0 0 0 0 0 0 0 4 1132560123 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "2.2036481060204096", "stat_before": "25 (python3) R 22 13 1 34816 13 4194560 1576 0 0 0 1 0 0 0 20 0 1 0 31364736 17375232 3037 18446744073709551615 4325376 7350237 140722384205984 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 37552128 140722384209049 140722384209156 140722384209156 140722384211943 0\n", "stat_after": "25 (python3) R 22 13 1 34816 13 4194560 1580 579338 0 41 1 0 258 29 20 0 1 0 31364736 17375232 3037 18446744073709551615 4325376 7350237 140722384205984 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 37552128 140722384209049 140722384209156 140722384209156 140722384211943 0\n", "script": "/benchmarks/makeself/makeself/test/appendtest/appendtest.sh", "pid": 25, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 4017172\nwchar: 1421525\nsyscr: 37178\nsyscw: 34958\nread_bytes: 0\nwrite_bytes: 798720\ncancelled_write_bytes: 356352\n", "stat_zombie": "5889 (bash) Z 5888 13 1 34816 13 4227340 715 30909 0 0 0 0 17 3 20 0 1 0 31364969 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.20080455800052732", "stat_before": "5888 (python3) R 5885 13 1 34816 13 4194304 1579 0 0 0 1 0 0 0 20 0 1 0 31364968 17375232 3040 18446744073709551615 4325376 7350237 140732518186400 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 36913152 140732518188181 140732518188290 140732518188290 140732518191079 0\n", "stat_after": "5888 (python3) R 5885 13 1 34816 13 4194304 1581 31624 0 0 1 0 18 3 20 0 1 0 31364968 17375232 3040 18446744073709551615 4325376 7350237 140732518186400 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 36913152 140732518188181 140732518188290 140732518188290 140732518191079 0\n", "script": "/benchmarks/makeself/makeself/test/corrupttest/corrupttest.sh", "pid": 5888, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 1208682\nwchar: 301425\nsyscr: 1529\nsyscw: 171\nread_bytes: 0\nwrite_bytes: 143360\ncancelled_write_bytes: 131072\n", "stat_zombie": "6225 (bash) Z 6224 13 1 34816 13 4227340 908 16207 0 1 0 0 6 0 20 0 1 0 31364998 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 256\n", "elapsed_secs": "0.10071892698761076", "stat_before": "6224 (python3) R 6221 13 1 34816 13 4194304 1578 0 0 0 0 0 0 0 20 0 1 0 31364996 17371136 3015 18446744073709551615 4325376 7350237 140724094789600 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 14581760 140724094792865 140724094792968 140724094792968 140724094795751 0\n", "stat_after": "6224 (python3) R 6221 13 1 34816 13 4194304 1579 17115 0 1 0 0 6 0 20 0 1 0 31364996 17371136 3015 18446744073709551615 4325376 7350237 140724094789600 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 14581760 140724094792865 140724094792968 140724094792968 140724094795751 0\n", "script": "/benchmarks/makeself/makeself/test/datetest/datetest.sh", "pid": 6224, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 6128212\nwchar: 2967926\nsyscr: 6385\nsyscw: 1164\nread_bytes: 0\nwrite_bytes: 1740800\ncancelled_write_bytes: 892928\n", "stat_zombie": "6402 (bash) Z 6401 13 1 34816 13 4227084 941 49092 0 2 0 0 19 3 20 0 1 0 31365016 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.20081199999549426", "stat_before": "6401 (python3) R 6398 13 1 34816 13 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 31365014 17375232 3002 18446744073709551615 4325376 7350237 140735404848576 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 23773184 140735404856469 140735404856578 140735404856578 140735404859367 0\n", "stat_after": "6401 (python3) R 6398 13 1 34816 13 4194304 1580 50033 0 2 1 0 19 3 20 0 1 0 31365014 17375232 3002 18446744073709551615 4325376 7350237 140735404848576 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 23773184 140735404856469 140735404856578 140735404856578 140735404859367 0\n", "script": "/benchmarks/makeself/makeself/test/extracttest/extracttest.sh", "pid": 6401, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 1494657\nwchar: 314140\nsyscr: 2021\nsyscw: 233\nread_bytes: 0\nwrite_bytes: 208896\ncancelled_write_bytes: 200704\n", "stat_zombie": "6948 (bash) Z 6947 13 1 34816 13 4227340 1288 22384 0 1 0 0 8 1 20 0 1 0 31365044 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.10065633099293336", "stat_before": "6947 (python3) R 6944 13 1 34816 13 4194304 1576 0 0 0 1 0 0 0 20 0 1 0 31365043 17371136 3036 18446744073709551615 4325376 7350237 140737177590544 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 15892480 140737177592993 140737177593096 140737177593096 140737177595879 0\n", "stat_after": "6947 (python3) R 6944 13 1 34816 13 4194304 1577 23672 0 1 1 0 8 1 20 0 1 0 31365043 17371136 3036 18446744073709551615 4325376 7350237 140737177590544 0 0 0 0 16781312 2 0 0 0 17 0 0 0 0 0 0 10649032 12210560 15892480 140737177592993 140737177593096 140737177593096 140737177595879 0\n", "script": "/benchmarks/makeself/makeself/test/infotest/infotest.sh", "pid": 6947, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 1393413\nwchar: 303155\nsyscr: 1802\nsyscw: 195\nread_bytes: 0\nwrite_bytes: 163840\ncancelled_write_bytes: 155648\n", "stat_zombie": "7183 (lsmtest.sh) Z 7182 13 1 34816 13 4227340 453 19297 0 0 0 0 7 1 20 0 1 0 31365063 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.10046923399204388", "stat_before": "7182 (python3) R 7179 13 1 34816 13 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 31365061 17371136 3036 18446744073709551615 4325376 7350237 140727781271648 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 17072128 140727781274789 140727781274890 140727781274890 140727781277671 0\n", "stat_after": "7182 (python3) R 7179 13 1 34816 13 4194304 1579 19750 0 0 1 0 7 1 20 0 1 0 31365061 17371136 3036 18446744073709551615 4325376 7350237 140727781271648 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 17072128 140727781274789 140727781274890 140727781274890 140727781277671 0\n", "script": "/benchmarks/makeself/makeself/test/lsmtest/lsmtest.sh", "pid": 7182, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 1421012\nwchar: 187077\nsyscr: 1805\nsyscw: 227\nread_bytes: 4096\nwrite_bytes: 65536\ncancelled_write_bytes: 28672\n", "stat_zombie": "7393 (bash) Z 7392 13 1 34816 13 4227340 588 19334 0 2 0 0 8 0 20 0 1 0 31365081 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 3 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.10069203699822538", "stat_before": "7392 (python3) R 7389 13 1 34816 13 4194304 1582 0 0 0 1 0 0 0 20 0 1 0 31365079 17375232 3022 18446744073709551615 4325376 7350237 140733283103200 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 17801216 140733283103893 140733283104002 140733283104002 140733283106791 0\n", "stat_after": "7392 (python3) R 7389 13 1 34816 13 4194304 1584 19922 0 2 1 0 9 1 20 0 1 0 31365079 17375232 3022 18446744073709551615 4325376 7350237 140733283103200 0 0 0 0 16781312 2 0 0 0 17 1 0 0 0 0 0 10649032 12210560 17801216 140733283103893 140733283104002 140733283104002 140733283106791 0\n", "script": "/benchmarks/makeself/makeself/test/nochecktest/nochecktest.sh", "pid": 7392, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 4254105\nwchar: 860183\nsyscr: 6125\nsyscw: 736\nread_bytes: 0\nwrite_bytes: 380928\ncancelled_write_bytes: 356352\n", "stat_zombie": "7597 (bash) Z 7596 13 1 34816 13 4227340 1727 64278 0 1 0 0 24 2 20 0 1 0 31365099 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 1 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.30089568201219663", "stat_before": "7596 (python3) R 7593 13 1 34816 13 4194304 1577 0 0 0 1 0 0 0 20 0 1 0 31365098 17375232 3011 18446744073709551615 4325376 7350237 140733308564032 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 22171648 140733308572809 140733308572924 140733308572924 140733308575719 0\n", "stat_after": "7596 (python3) R 7593 13 1 34816 13 4194304 1578 66005 0 1 1 0 24 3 20 0 1 0 31365098 17375232 3011 18446744073709551615 4325376 7350237 140733308564032 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 22171648 140733308572809 140733308572924 140733308572924 140733308575719 0\n", "script": "/benchmarks/makeself/makeself/test/preextracttest/preextracttest.sh", "pid": 7596, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 4716338\nwchar: 1003425\nsyscr: 7959\nsyscw: 1578\nread_bytes: 53248\nwrite_bytes: 475136\ncancelled_write_bytes: 389120\n", "stat_zombie": "8319 (bash) Z 8318 13 1 34816 13 4227084 1962 72899 0 5 0 0 29 4 20 0 1 0 31365138 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "7.713798152981326", "stat_before": "8318 (python3) R 8315 13 1 34816 13 4194304 1581 0 0 0 1 0 0 0 20 0 1 0 31365136 17371136 3030 18446744073709551615 4325376 7350237 140729010253504 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 20926464 140729010259105 140729010259208 140729010259208 140729010261991 0\n", "stat_after": "8318 (python3) R 8315 13 1 34816 13 4194304 1587 74861 0 5 1 0 29 4 20 0 1 0 31365136 17371136 3030 18446744073709551615 4325376 7350237 140729010253504 0 0 0 0 16781312 2 0 0 0 17 7 0 0 0 0 0 10649032 12210560 20926464 140729010259105 140729010259208 140729010259208 140729010261991 0\n", "script": "/benchmarks/makeself/makeself/test/signtest/signtest.sh", "pid": 8318, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 420021\nwchar: 101817\nsyscr: 586\nsyscw: 71\nread_bytes: 0\nwrite_bytes: 61440\ncancelled_write_bytes: 53248\n", "stat_zombie": "9148 (bash) Z 9147 13 1 34816 13 4227340 428 6026 0 1 0 0 2 0 20 0 1 0 31365922 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 6 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.10067750999587588", "stat_before": "9147 (python3) R 9144 13 1 34816 13 4194304 1578 0 0 0 1 0 0 0 20 0 1 0 31365920 17371136 3037 18446744073709551615 4325376 7350237 140730339732864 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 24784896 140730339738769 140730339738880 140730339738880 140730339741671 0\n", "stat_after": "9147 (python3) R 9144 13 1 34816 13 4194304 1579 6454 0 1 1 0 2 0 20 0 1 0 31365920 17371136 3037 18446744073709551615 4325376 7350237 140730339732864 0 0 0 0 16781312 2 0 0 0 17 6 0 0 0 0 0 10649032 12210560 24784896 140730339738769 140730339738880 140730339738880 140730339741671 0\n", "script": "/benchmarks/makeself/makeself/test/tarextratest/tarextratest.sh", "pid": 9147, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} +{"io_zombie": "rchar: 2326977\nwchar: 610615\nsyscr: 3741\nsyscw: 486\nread_bytes: 16384\nwrite_bytes: 155648\ncancelled_write_bytes: 147456\n", "stat_zombie": "9220 (bash) Z 9219 13 1 34816 13 4227084 1010 33771 0 2 0 0 13 1 20 0 1 0 31365940 0 0 18446744073709551615 0 0 0 0 0 0 0 4 65536 1 0 0 17 5 0 0 0 0 0 0 0 0 0 0 0 0 0\n", "elapsed_secs": "0.20078112301416695", "stat_before": "9219 (python3) R 9216 13 1 34816 13 4194304 1580 0 0 0 1 0 0 0 20 0 1 0 31365938 17371136 3028 18446744073709551615 4325376 7350237 140736555898688 0 0 0 0 16781312 2 0 0 0 17 4 0 0 0 0 0 10649032 12210560 20520960 140736555906193 140736555906304 140736555906304 140736555909095 0\n", "stat_after": "9219 (python3) R 9216 13 1 34816 13 4194304 1581 34781 0 2 1 0 13 1 20 0 1 0 31365938 17371136 3028 18446744073709551615 4325376 7350237 140736555898688 0 0 0 0 16781312 2 0 0 0 17 5 0 0 0 0 0 10649032 12210560 20520960 140736555906193 140736555906304 140736555906304 140736555909095 0\n", "script": "/benchmarks/makeself/makeself/test/variabletest/variabletest.sh", "pid": 9219, "benchmark_experiment_start": "2025-01-11T05:05:33.666909+00:00", "category": "makeself", "input_file": null, "sc_clk_tck": 100} diff --git a/infrastructure/viz/dynamic.py b/infrastructure/viz/dynamic.py deleted file mode 100644 index b5bb17b2f..000000000 --- a/infrastructure/viz/dynamic.py +++ /dev/null @@ -1,141 +0,0 @@ -import pandas as pd -import seaborn as sns -import matplotlib.pyplot as plt - -# Data format example: (column titles not in the file, all times are seconds) -# benchmark_script, user_time, system_time, max_unique_set_size, read_chars, write_chars, user_time_in_shell, system_time_in_shell, all_input_files, wall_time -# covid-mts/scripts/1.sh,17.32,4.08,13512704,10364829524,7538064195,0.0,0.0,covid-mts/input/in.csv,22.41 -# file-enc/scripts/encrypt_files.sh,1.55,0.54,2998272,925500199,923880800,0.0,0.01,file-enc/input/pcaps/http-download101c.pcapng;file-enc/input/pcaps/ftp-download101.pcapng;file-enc/input/pcaps/tr-twohosts.pcapng;file-enc/input/pcaps/split250_00004_20160704110759.pcapng;file-enc/input/pcaps/http-pcaprnet101.pcapng;file-enc/input/pcaps/sec-suspicious101.pcapng;file-enc/input/pcaps/challenge101-8.pcapng;file-enc/input/pcaps/challenge101-3.pcapng;file-enc/input/pcaps/challenge101-6.pcapng;file-enc/input/pcaps/http-openoffice101a.pcapng;file-enc/input/pcaps/tr-winsize.pcapng;file-enc/input/pcaps/ftp-crack101.pcapng;file-enc/input/pcaps/http-misctraffic101.pcapng;file-enc/input/pcaps/http-google101.pcapng;file-enc/input/pcaps/http-wiresharkdownload101.pcapng;file-enc/input/pcaps/general101d.pcapng;file-enc/input/pcaps/http-download101.pcapng;file-enc/input/pcaps/http-chappellu101.pcapng;file-enc/input/pcaps/http-college101.pcapng;file-enc/input/pcaps/http-download101d.pcapng;file-enc/input/pcaps/net-lost-route.pcapng;file-enc/input/pcaps/general101.pcapng;file-enc/input/pcaps/http-sfgate101.pcapng;file-enc/input/pcaps;file-enc/input/pcaps/http-browse101b.pcapng;file-enc/input/pcaps/split250_00001_20160704110759.pcapng;file-enc/input/pcaps/http-download-a.pcapng,2.09 -# log-analysis/scripts/nginx.sh,0.57,0.17,15114240,417362164,232406881,0.0,0.0,log-analysis/input/nginx-logs;log-analysis/input/nginx-logs/log5;log-analysis/input/nginx-logs/log7,0.75 - -data_path = 'target/dynamic_analysis.csv' -benchmark_mapping_path = 'target/scripts_to_benchmark.csv' -input_size_path = 'data/size-inputs.csv' - -def plot_benchmark_times_split(df): - sns.set_theme(style="whitegrid") - plt.figure(figsize=(10, 6)) - sns.barplot(x='benchmark', y='user_time', data=df, color='blue', label='User time') - sns.barplot(x='benchmark', y='system_time', data=df, color='red', label='System time') - plt.xticks(rotation=90) - plt.yscale('symlog', linthresh=0.1) - plt.legend() - plt.show() - -def plot_benchmark_times(df, - ticks = ([0, 0.001, 0.01, 0.1, 1, 10, 100, 1000], - ['0', '1ms', '10ms', '100ms', '1s', '10s', '100s', '1000s']), - ylabel='Time (s)', - linthresh=0.001): - sns.set(style="whitegrid") - plt.figure(figsize=(10, 6)) - sns.barplot(x='benchmark', y='time_in_commands', data=df, color='blue', label='Commands') - sns.barplot(x='benchmark', y='time_in_shell', data=df, color='green', label='Shell') - plt.xticks(rotation=90) - plt.yscale('symlog', linthresh=linthresh) - plt.yticks(*ticks) - plt.ylabel(ylabel) - plt.legend() - plt.show() - -def plot_io(df, - ticks=([0, 100000000, 1000000000, 10000000000, 100000000000, 1000000000000], - ['0', '100MB', '1GB', '10GB', '100GB', '1TB']), - ylabel='IO bytes', - linthresh=100000000): - sns.set(style="whitegrid") - plt.figure(figsize=(10, 6)) - sns.barplot(x='benchmark', y='io_chars', data=df, color='green', label='IO bytes') - plt.yscale('symlog', linthresh=linthresh) - plt.yticks(*ticks) - plt.ylabel(ylabel) - plt.xticks(rotation=90) - plt.legend() - plt.show() - -def plot_memory(df, - ticks=([0, 1000000, 10000000, 100000000, 1000000000, 10000000000, 100000000000], - ['0', '1MB', '10MB', '100MB', '1GB', '10GB', '100GB']), - ylabel='Memory (bytes)', - linthresh=1000000): - sns.set(style="whitegrid") - plt.figure(figsize=(10, 6)) - sns.barplot(x='benchmark', y='max_unique_set_size', data=df, color='purple', label='Max unique set size') - plt.xticks(rotation=90) - plt.yscale('symlog', linthresh=linthresh) - plt.yticks(*ticks) - plt.ylabel(ylabel) - plt.legend() - plt.show() - -def main(data_path): - df = pd.read_csv(data_path, header=None) - df.columns = ['script', 'user_time', 'system_time', 'max_unique_set_size', 'read_chars', 'write_chars', 'user_time_in_shell', 'system_time_in_shell', 'all_input_files', 'wall_time'] - print() - for col in list(df.columns[1:7]) + list(df.columns[9:10]): - df[col] = df[col].astype(float) - df['all_input_files'] = df['all_input_files'].apply(lambda x: str(x).split(';')) - - # aggregate by benchmark - map_df = pd.read_csv(benchmark_mapping_path, header=None) - map_df.columns = ['script', 'benchmark'] - df = df.merge(map_df, on='script') - # sum all times - df = df.groupby('benchmark').agg({'user_time': 'sum', - 'system_time': 'sum', - 'max_unique_set_size': 'sum', - 'read_chars': 'sum', - 'write_chars': 'sum', - 'user_time_in_shell': 'sum', - 'system_time_in_shell': 'sum', - 'all_input_files': 'sum', - 'wall_time': 'sum'}).reset_index() - - # merge the read and write_chars - df['io_chars'] = df['read_chars'] + df['write_chars'] - df = df.drop(columns=['read_chars', 'write_chars']) - - # calculate time in shell and time in commands - df['time'] = df['user_time'] + df['system_time'] - df['time_in_shell'] = df['user_time_in_shell'] + df['system_time_in_shell'] - df['time_in_commands'] = df['time'] - df['time_in_shell'] - - # report any benchmarks where the wall time is not approximately equal to the sum of user and system time - for _, row in df.iterrows(): - if abs(row['wall_time'] - (row['user_time'] + row['system_time'])) > 0.1: - print(f"Wall time for benchmark {row['benchmark']} maybe suspicious: {row['wall_time']} vs (u{row['user_time']} + s{row['system_time']})") - - # relative numbers to input size - input_sizes = pd.read_csv(input_size_path, header=None) - input_sizes.columns = ['input_size', # bytes - 'input_file'] - input_sizes['input_size'] = input_sizes['input_size'].apply(lambda x: int(x)) - input_sizes['benchmark'] = input_sizes['input_file'].apply(lambda x: str(x).split('/')[0]) - input_sizes = input_sizes.groupby('benchmark').agg({'input_size': 'sum'}).reset_index() - - df_rel_to_input = df.merge(input_sizes, on='benchmark') - df_rel_to_input['io_chars'] = df_rel_to_input['io_chars'] / df_rel_to_input['input_size'] - df_rel_to_input['max_unique_set_size'] = df_rel_to_input['max_unique_set_size'] / df_rel_to_input['input_size'] - df_rel_to_input['time_in_shell'] = df_rel_to_input['time_in_shell'] / df_rel_to_input['input_size'] - df_rel_to_input['time_in_commands'] = df_rel_to_input['time_in_commands'] / df_rel_to_input['input_size'] - - plot_benchmark_times(df) - plot_io(df) - plot_memory(df) - - plot_benchmark_times(df_rel_to_input, ylabel='Time per input byte', - ticks=([0, 0.00000001, 0.0000001, 0.000001, 0.00001, 0.0001], - ['0', '10ns', '100ns', '1us', '10us', '100us']), - linthresh=0.00000001) - plot_io(df_rel_to_input, ylabel='IO per input byte', - ticks=([0, 1, 10, 100, 1000], - ['0', '1B', '10B', '100B', '1KB']), - linthresh=1) - plot_memory(df_rel_to_input, ylabel='Memory per input byte', - ticks=([0, 0.001, 0.01, 0.1, 1, 10, 100, 1000, 10000], - ['0', '0.001B', '0.01B', '0.1B', '1B', '10B', '100B', '1KB', '10KB']), - linthresh=0.001) - - -if __name__ == '__main__': - main(data_path) \ No newline at end of file diff --git a/infrastructure/viz_dynamic.py b/infrastructure/viz_dynamic.py new file mode 100755 index 000000000..d01ddb5a5 --- /dev/null +++ b/infrastructure/viz_dynamic.py @@ -0,0 +1,221 @@ +#!/usr/bin/env python3 + +from sys import stderr +from pathlib import Path +import pandas as pd +import seaborn as sns +import numpy as np +import matplotlib.pyplot as plt + +from all_scripts import get_all_scripts +from project_root import get_project_root + +root = get_project_root() +data_path = root / 'infrastructure/target/dynamic_analysis.jsonl' +input_size_path = root / 'infrastructure/data/size_inputs.jsonl' + +def get_input_sizes_df(df): + sizes_df = pd.read_json(input_size_path, lines=True) + def find_input_size(row): + total = 0 + for file in row['all_input_files']: + file_path = file + file = Path(file).relative_to(row['category']) + file_rest = str(Path(*file.parts[1:])) + relevant = sizes_df[(sizes_df['path'] == file_rest) & (sizes_df['category'] == row['category'])] + if relevant.empty: + if 'sort' in file_path: # one of them sort files + continue + if 'riker/input' in file_path: + # these should all be in the file, + # everything else is in an intermediate + continue + if 'aurpkg/outputs' in file_path: + # these are intemediate files + continue + if 'bio/outputs' in file_path: + # these are intemediate files + continue + if 'test_result' in file_path: + # these are final files + continue + if 'tmp' in file_path: + # these are intermediate files + continue + print('could not find input size for', file, row['script'], file=stderr) + continue + size, = relevant['size_bytes'] + total += size + return total + df['input_size'] = df.apply(find_input_size, axis=1) + return df + +def get_map_df(): + items = [ + (str(script.relative_to(root)), benchmark_name) + for benchmark_name, scripts in get_all_scripts().items() + for script in scripts + ] + return pd.DataFrame(items, columns=['script', 'benchmark']) + +def plot_benchmark_times_split(df): + sns.set_theme(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='user_time', data=df, color='blue', label='User time') + sns.barplot(x='benchmark', y='system_time', data=df, color='red', label='System time') + plt.xticks(rotation=90) + plt.subplots_adjust(bottom=0.4) + plt.yscale('symlog', linthresh=0.1) + plt.legend() + plt.show() + +def plot_benchmark_times(df, + ticks = ([0, 0.001, 0.01, 0.1, 1, 10, 100, 1000], + ['0', '1ms', '10ms', '100ms', '1s', '10s', '100s', '1000s']), + ylabel='Time (s)', + linthresh=0.001): + sns.set(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='time_in_commands', data=df, color='blue', label='Commands') + sns.barplot(x='benchmark', y='time_in_shell', data=df, color='green', label='Shell') + plt.xticks(rotation=90) + plt.subplots_adjust(bottom=0.4) + plt.yscale('symlog', linthresh=linthresh) + plt.yticks(*ticks) + plt.ylabel(ylabel) + plt.legend() + plt.show() + +def plot_io(df, + ticks=([0, 100000000, 1000000000, 10000000000, 100000000000, 1000000000000], + ['0', '100MB', '1GB', '10GB', '100GB', '1TB']), + ylabel='IO bytes', + linthresh=100000000): + sns.set(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='io_chars', data=df, color='green', label='IO bytes') + plt.yscale('symlog', linthresh=linthresh) + plt.yticks(*ticks) + plt.ylabel(ylabel) + plt.xticks(rotation=90) + plt.subplots_adjust(bottom=0.4) + plt.legend() + plt.show() + +def plot_memory(df, + ticks=([0, 1000000, 10000000, 100000000, 1000000000, 10000000000, 100000000000], + ['0', '1MB', '10MB', '100MB', '1GB', '10GB', '100GB']), + ylabel='Memory (bytes)', + linthresh=1000000): + sns.set(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='max_unique_set_size', data=df, color='purple', label='Max unique set size') + plt.xticks(rotation=90) + plt.subplots_adjust(bottom=0.4) + plt.yscale('symlog', linthresh=linthresh) + plt.yticks(*ticks) + plt.ylabel(ylabel) + plt.legend() + plt.show() + +def read_data(): + df = pd.read_json(data_path, lines=True) + for col in list(df.columns[1:7]) + list(df.columns[9:10]): + df[col] = df[col].astype(float) + + df = get_input_sizes_df(df) + + # aggregate by benchmark + map_df = get_map_df() + df = df.merge(map_df, on='script') + + # report any benchmarks where the wall time is not approximately equal to the sum of user and system time + for _, row in df.iterrows(): + if abs(row['wall_time'] - (row['user_time'] + row['system_time'])) > 0.1: + print(f"Wall time for benchmark {row['benchmark']} maybe suspicious: {row['wall_time']} vs (u{row['user_time']} + s{row['system_time']})", file=stderr) + + # merge the read and write_chars + df['io_chars'] = df['read_chars'] + df['write_chars'] + # calculate time in shell and time in commands + df['time'] = df['user_time'] + df['system_time'] + df['time_in_shell'] = df['user_time_in_shell'] + df['system_time_in_shell'] + df['time_in_commands'] = df['time'] - df['time_in_shell'] + + # sum all times + bench_df = df.groupby('benchmark').agg({'user_time': 'sum', + 'system_time': 'sum', + 'max_unique_set_size': 'max', + 'read_chars': 'sum', + 'write_chars': 'sum', + 'user_time_in_shell': 'sum', + 'system_time_in_shell': 'sum', + 'input_size': 'sum', + 'io_chars': 'sum', + 'time': 'sum', + 'time_in_shell': 'sum', + 'time_in_commands': 'sum', + 'wall_time': 'sum'}).reset_index() + + return df, bench_df + +def main(): + _, df = read_data() + + # the benchmark did a certain amount of io. how many bytes per second was this? + df['bytes_per_second_actual'] = (df['read_chars'] + df['write_chars']) / (df['wall_time']) + sns.set(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='bytes_per_second_actual', data=df, color='blue', label='Commands') + plt.xticks(rotation=90) + plt.subplots_adjust(bottom=0.4) + plt.yscale('symlog', linthresh=1e1) + plt.yticks(np.logspace(1, 12, 12)) + plt.ylabel('bytes (rchar + wchar) per second (wall time)') + plt.legend() + plt.show() + +# # this metric is bad in the cases that we don't have the data for the inputs +# # the benchmark has a specific input on disk that it processed. how much of this input did it process per second? +# df['bytes_per_second_input'] = df['input_size'] / (df['wall_time']) +# sns.set(style="whitegrid") +# plt.figure(figsize=(10, 6)) +# sns.barplot(x='benchmark', y='bytes_per_second_input', data=df, color='blue', label='Commands') +# plt.xticks(rotation=90) +# plt.title('missing input') +# plt.yscale('symlog', linthresh=1e1) +# plt.yticks(np.logspace(1, 12, 12)) +# plt.ylabel('bytes (input file size) per second (wall time)') +# plt.legend() +# plt.show() + + # fraction of the actual scheduled (user + system) time is in the shell. how much cpu work is in the launnched shell + df['time_in_shell_frac'] = (df['user_time_in_shell'] + df['system_time_in_shell']) / (df['user_time'] + df['system_time']) + sns.set(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='time_in_shell_frac', data=df, color='blue', label='Commands') + plt.xticks(rotation=90) + plt.subplots_adjust(bottom=0.4) + plt.yticks(np.linspace(0, 1, 10)) + plt.ylabel('fraction of time (utime + stime) in the shell') + plt.legend() + plt.show() + + # what fraction of the real (wall) runtime of the process is user or system time? + df['time_occupied'] = (df['user_time'] + df['system_time']) / df['wall_time'] + sns.set(style="whitegrid") + plt.figure(figsize=(10, 6)) + sns.barplot(x='benchmark', y='time_occupied', data=df, color='blue', label='Commands') + plt.title('what fraction of the benchmark time was spent doing cpu work') + plt.subplots_adjust(bottom=0.4) + plt.xticks(rotation=90) + plt.yticks(np.linspace(0, 6, 10)) + plt.ylabel('fraction: cpu time (utime + stime) divided by wall runtime') + plt.legend() + plt.show() + + plot_benchmark_times(df) + plot_io(df) + plot_memory(df) + +if __name__ == '__main__': + main() diff --git a/infrastructure/viz/syntax.py b/infrastructure/viz_syntax.py old mode 100644 new mode 100755 similarity index 68% rename from infrastructure/viz/syntax.py rename to infrastructure/viz_syntax.py index e55552f31..dc2e39efc --- a/infrastructure/viz/syntax.py +++ b/infrastructure/viz_syntax.py @@ -1,15 +1,20 @@ +#!/usr/bin/env python3 + import pandas as pd import seaborn as sns import matplotlib.pyplot as plt +from all_scripts import get_all_scripts +from project_root import get_project_root + # Data format example: # covid-mts/scripts/1.sh,command(cat):1;quoted_control:5;command(sed):1;command(cut):2;command(sort):2;command(uniq):1;command(awk):1;pipeline:1 # file-enc/scripts/encrypt_files.sh,command(mkdir):1;variable_use:4;command(openssl):1;quoted_control:2;function_command:1;command(export):1;assignment:1;command(cat):1;command(pure_func):1;file_redirection:1;pipeline:1;for_command:1 # ... -data_path = 'target/nodes_in_scripts.csv' -benchmark_mapping_path = 'target/scripts_to_benchmark.csv' - +root = get_project_root() +data_path = root / 'infrastructure/target/nodes_in_scripts.csv' +benchmark_mapping_path = 'infrastructure/target/scripts_to_benchmark.csv' special_commands = ['eval', 'alias'] @@ -41,9 +46,24 @@ # raw_command # escaped_char +node_rename_map = { + 'home_tilde_control': 'home_tilde', + 'dollar_paren_shell_control': '$(shell)', + 'dollar_paren_paren_arith_control': '$((arithmetic))' +} + def normalize_node_name(node): # remove "_command" suffix if present - return node.replace('_command', '') + renamed = node_rename_map.get(node, node) + return renamed.replace('_command', '') + +def get_map_df(): + items = [ + (str(script.relative_to(root)), benchmark_name) + for benchmark_name, scripts in get_all_scripts().items() + for script in scripts + ] + return pd.DataFrame(items, columns=['script', 'benchmark']) def node_heatmap(df): # todo which of these are missing entirely? @@ -82,23 +102,27 @@ def merge_node_counts(series): merged_dict[k] = merged_dict.get(k, 0) + v return merged_dict -def main(data_path): +def read_data(merge_commands=True): df = pd.read_csv(data_path, header=None) df.columns = ['script', 'nodes'] # Unpack node counts df['nodes'] = df['nodes'].apply(lambda x: dict([tuple(i.split(':')) for i in x.split(';')]) if isinstance(x, str) else {}) # Transform nodes entries for 'command(eval)' and 'command(alias)' into 'eval' and 'alias' - df['nodes'] = df['nodes'].apply(lambda x: {extract_special_command(k): v for k, v in x.items()}) - # Merge all the "command" nodes, we don't care about the individual commands here - df['nodes'] = df['nodes'].apply(lambda x: {k: int(v) for k, v in x.items() if 'command(' not in k} | {'command': sum([int(v) for k, v in x.items() if 'command(' in k])}) + df['nodes'] = df['nodes'].apply(lambda x: {extract_special_command(k): int(v) for k, v in x.items()}) + if merge_commands: + # Merge all the "command" nodes, we don't care about the individual commands here + df['nodes'] = df['nodes'].apply(lambda x: {k: v for k, v in x.items() if 'command(' not in k} | {'command': sum([v for k, v in x.items() if 'command(' in k])}) # Aggregate by benchmark - map_df = pd.read_csv(benchmark_mapping_path, header=None) - map_df.columns = ['script', 'benchmark'] + map_df = get_map_df() df = df.merge(map_df, on='script') - df = df.groupby('benchmark').agg({'nodes': merge_node_counts}).reset_index() + bench_df = df.groupby('benchmark').agg({'nodes': merge_node_counts}).reset_index() + + return (df, bench_df) +def main(): + _, df = read_data() node_heatmap(df) if __name__ == '__main__': - main(data_path) \ No newline at end of file + main() diff --git a/log-analysis/run.sh b/log-analysis/run.sh index 66b2035a0..a49fc9d9f 100755 --- a/log-analysis/run.sh +++ b/log-analysis/run.sh @@ -17,12 +17,18 @@ if [[ "$@" == *"--small"* ]]; then suffix=".small" fi +export BENCHMARK_CATEGORY="log-analysis" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +echo "shell: $BENCHMARK_SHELL" echo "nginx" +export BENCHMARK_INPUT_FILE="$(realpath "$nginx_input")" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/nginx.sh")" $BENCHMARK_SHELL $scripts_dir/nginx.sh $nginx_input $results_dir/nginx$suffix echo $? echo "pcaps" +export BENCHMARK_INPUT_FILE="$(realpath "$pcaps_input")" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/pcaps.sh")" $BENCHMARK_SHELL $scripts_dir/pcaps.sh $pcaps_input $results_dir/pcaps$suffix echo $? diff --git a/makeself/makeself/test/appendtest/appendtest.sh b/makeself/makeself/test/appendtest/appendtest.sh index b4cf9f5c3..82b9bc786 100755 --- a/makeself/makeself/test/appendtest/appendtest.sh +++ b/makeself/makeself/test/appendtest/appendtest.sh @@ -7,7 +7,6 @@ SRCDIR="$(dirname "$(dirname "${THISDIR}")")" SUT="${SRCDIR}/makeself.sh" WHAT="$(basename "${THIS}")" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" log_result() { diff --git a/makeself/makeself/test/corrupttest/corrupttest.sh b/makeself/makeself/test/corrupttest/corrupttest.sh index df29d9623..132b4e695 100755 --- a/makeself/makeself/test/corrupttest/corrupttest.sh +++ b/makeself/makeself/test/corrupttest/corrupttest.sh @@ -5,7 +5,6 @@ THISDIR="$(dirname "${THIS}")" SRCDIR="$(dirname "$(dirname "${THISDIR}")")" SUT="${SRCDIR}/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -22,7 +21,7 @@ setupTests() { cd "$temp_path" mkdir -p archive cp -a "$SRCDIR" archive/ - if ! $BENCHMARK_SHELL "$SUT" "$@" archive makeself-test.run "Test $*" echo Testing --tar-extra="--exclude .git"; then + if ! "$SUT" "$@" archive makeself-test.run "Test $*" echo Testing --tar-extra="--exclude .git"; then log_result "setupTests" "FAIL" "Failed to create archive" exit 1 fi @@ -31,7 +30,7 @@ setupTests() { testExtraBytes() { setupTests --sha256 - if $BENCHMARK_SHELL ./makeself-test.run --check; then + if ./makeself-test.run --check; then log_result "testExtraBytes: Initial Check" "PASS" else log_result "testExtraBytes: Initial Check" "FAIL" @@ -40,7 +39,7 @@ testExtraBytes() { echo "Adding a bunch of random characters at the end!!" >> makeself-test.run - if ! $BENCHMARK_SHELL ./makeself-test.run --check; then + if ! ./makeself-test.run --check; then log_result "testExtraBytes: Corrupted Archive Check" "PASS" else log_result "testExtraBytes: Corrupted Archive Check" "FAIL" @@ -51,7 +50,7 @@ testExtraBytes() { testTruncated() { setupTests --sha256 - if $BENCHMARK_SHELL ./makeself-test.run --check; then + if ./makeself-test.run --check; then log_result "testTruncated: Initial Check" "PASS" else log_result "testTruncated: Initial Check" "FAIL" @@ -60,7 +59,7 @@ testTruncated() { dd if=makeself-test.run of=truncated.run bs=1 count=34303 - if ! $BENCHMARK_SHELL truncated.run --check; then + if ! truncated.run --check; then log_result "testTruncated: Truncated Archive Check" "PASS" else log_result "testTruncated: Truncated Archive Check" "FAIL" diff --git a/makeself/makeself/test/datetest/datetest.sh b/makeself/makeself/test/datetest/datetest.sh index 89e7c352d..f8b74b4c1 100755 --- a/makeself/makeself/test/datetest/datetest.sh +++ b/makeself/makeself/test/datetest/datetest.sh @@ -5,7 +5,6 @@ THISDIR="$(dirname "${THIS}")" SRCDIR="$(dirname "$(dirname "${THISDIR}")")" SUT="${SRCDIR}/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -30,7 +29,7 @@ tearDown() { testCurrentDate() { setUp - $BENCHMARK_SHELL "$SUT" src src.sh alabel startup.sh + "$SUT" src src.sh alabel startup.sh actual=$(strings src.sh | grep packaging || true) expected=$(LC_ALL=C date +"%b") @@ -47,7 +46,7 @@ testDateSet() { setUp expected='Sat Mar 5 19:35:21 EST 2016' - $BENCHMARK_SHELL "$SUT" --packaging-date "${expected}" src src.sh alabel startup.sh + "$SUT" --packaging-date "${expected}" src src.sh alabel startup.sh actual=$(strings src.sh | grep "Date of packaging" || true) @@ -61,7 +60,7 @@ testDateSet() { testPackagingDateNeedsParameter() { setUp - if ! $BENCHMARK_SHELL "$SUT" --packaging-date src src.sh alabel startup.sh; then + if ! "$SUT" --packaging-date src src.sh alabel startup.sh; then log_result "testPackagingDateNeedsParameter" "PASS" else log_result "testPackagingDateNeedsParameter" "FAIL" "Expected failure, but succeeded" @@ -73,10 +72,10 @@ testByteforbyte() { setUp date='Sat Mar 3 19:35:21 EST 2016' - $BENCHMARK_SHELL "$SUT" --packaging-date "${date}" --tar-extra "--mtime 20160303" \ + "$SUT" --packaging-date "${date}" --tar-extra "--mtime 20160303" \ src src.sh alabel startup.sh mv src.sh first - $BENCHMARK_SHELL "$SUT" --packaging-date "${date}" --tar-extra "--mtime 20160303" \ + "$SUT" --packaging-date "${date}" --tar-extra "--mtime 20160303" \ src src.sh alabel startup.sh mv src.sh second diff --git a/makeself/makeself/test/extracttest/extracttest.sh b/makeself/makeself/test/extracttest/extracttest.sh index 7977f72a7..ff083f417 100755 --- a/makeself/makeself/test/extracttest/extracttest.sh +++ b/makeself/makeself/test/extracttest/extracttest.sh @@ -5,7 +5,6 @@ THISDIR="$(dirname "${THIS}")" SRCDIR="$(dirname "$(dirname "${THISDIR}")")" SUT="${SRCDIR}/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" # Default to bash if not set # Initialize the log file echo "Test results:" > "${LOGFILE}" @@ -22,7 +21,7 @@ setupTests() { cd "$temp" mkdir archive cp -a "$SRCDIR" archive/ - $BENCHMARK_SHELL "$SUT" "$@" archive makeself-test.run "Test $*" echo Testing --tar-extra="--exclude .git" + "$SUT" "$@" archive makeself-test.run "Test $*" echo Testing --tar-extra="--exclude .git" } run_test() { @@ -38,19 +37,19 @@ run_test() { testQuiet() { setupTests - $BENCHMARK_SHELL ./makeself-test.run --quiet + ./makeself-test.run --quiet return $? } testGzip() { setupTests --gzip - $BENCHMARK_SHELL ./makeself-test.run --check + ./makeself-test.run --check return $? } testBzip2() { setupTests --bzip2 - $BENCHMARK_SHELL ./makeself-test.run --check + ./makeself-test.run --check return $? } @@ -60,7 +59,7 @@ testPBzip2() { return 0 fi setupTests --pbzip2 - $BENCHMARK_SHELL ./makeself-test.run --check + ./makeself-test.run --check return $? } @@ -70,7 +69,7 @@ testZstd() { return 0 fi setupTests --zstd - $BENCHMARK_SHELL ./makeself-test.run --check + ./makeself-test.run --check return $? } diff --git a/makeself/makeself/test/infotest/infotest.sh b/makeself/makeself/test/infotest/infotest.sh index c883b257d..7a3faff52 100755 --- a/makeself/makeself/test/infotest/infotest.sh +++ b/makeself/makeself/test/infotest/infotest.sh @@ -5,7 +5,6 @@ THISDIR="$(dirname "${THIS}")" SRCDIR="$(dirname "$(dirname "${THISDIR}")")" VERSION="$(cat "${SRCDIR}/VERSION")" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" is_alpine_distro=false && [[ -f "/etc/alpine-release" ]] && is_alpine_distro=true @@ -27,11 +26,11 @@ haveInfo() { ( cd "${SRCDIR}" || return 1 mkdir -p infotest - $BENCHMARK_SHELL ./makeself.sh "$@" ./infotest ./infotest.run infotest ls -lah >/dev/null 2>&1 + ./makeself.sh "$@" ./infotest ./infotest.run infotest ls -lah >/dev/null 2>&1 if [[ $? -ne 0 ]]; then return 1 fi - $BENCHMARK_SHELL ./infotest.run --info + ./infotest.run --info local rc=$? rm -rf infotest infotest.run return "${rc}" diff --git a/makeself/makeself/test/lsmtest/lsmtest.sh b/makeself/makeself/test/lsmtest/lsmtest.sh index dce54eeca..ca342e841 100755 --- a/makeself/makeself/test/lsmtest/lsmtest.sh +++ b/makeself/makeself/test/lsmtest/lsmtest.sh @@ -4,7 +4,6 @@ THIS="$(readlink -f "$0")" THISDIR="$(dirname "${THIS}")" SUT="$(dirname "$(dirname "${THISDIR}")")/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -20,7 +19,7 @@ withlsm() { ( cd "${THISDIR}" mkdir -p lsmtest - if ! $BENCHMARK_SHELL "${SUT}" $options ./lsmtest ./lsmtest.run lsmtest ls -lah > /dev/null 2>&1; then + if ! "${SUT}" $options ./lsmtest ./lsmtest.run lsmtest ls -lah > /dev/null 2>&1; then log_result "withlsm" "FAIL" "Failed to create archive" return 1 fi diff --git a/makeself/makeself/test/nochecktest/nochecktest.sh b/makeself/makeself/test/nochecktest/nochecktest.sh index 85b6208cc..01267f06f 100755 --- a/makeself/makeself/test/nochecktest/nochecktest.sh +++ b/makeself/makeself/test/nochecktest/nochecktest.sh @@ -4,7 +4,6 @@ THIS="$(readlink -f "$0")" THISDIR="$(dirname "${THIS}")" SUT="$(dirname "$(dirname "${THISDIR}")")/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -27,7 +26,7 @@ testNoCheck() { # Create a self-extracting archive. file_name="$(mktemp -t file_name.XXXXXX)" - if $BENCHMARK_SHELL "${SUT}" --nox11 --sha256 "${archive_dir}" "${file_name}" "no check test" true; then + if "${SUT}" --nox11 --sha256 "${archive_dir}" "${file_name}" "no check test" true; then log_result "testNoCheck: Create Archive" "PASS" else log_result "testNoCheck: Create Archive" "FAIL" @@ -38,7 +37,7 @@ testNoCheck() { # Archive verification enabled printf '\nArchive verification enabled:\n' >&2 sync - if $BENCHMARK_SHELL "${file_name}" 2>&1 | grep -qF 'Verifying archive integrity...'; then + if "${file_name}" 2>&1 | grep -qF 'Verifying archive integrity...'; then log_result "testNoCheck: Verify Archive (Enabled)" "PASS" else log_result "testNoCheck: Verify Archive (Enabled)" "FAIL" @@ -48,7 +47,7 @@ testNoCheck() { # Archive verification disabled printf '\nArchive verification disabled:\n' >&2 - if SETUP_NOCHECK=1 $BENCHMARK_SHELL "${file_name}" 2>&1 | grep -qFv 'Verifying archive integrity...'; then + if SETUP_NOCHECK=1 "${file_name}" 2>&1 | grep -qFv 'Verifying archive integrity...'; then log_result "testNoCheck: Verify Archive (Disabled)" "PASS" else log_result "testNoCheck: Verify Archive (Disabled)" "FAIL" diff --git a/makeself/makeself/test/preextracttest/preextracttest.sh b/makeself/makeself/test/preextracttest/preextracttest.sh index 3659af8d7..46cb82be4 100755 --- a/makeself/makeself/test/preextracttest/preextracttest.sh +++ b/makeself/makeself/test/preextracttest/preextracttest.sh @@ -4,7 +4,6 @@ THIS="$(readlink -f "$0")" THISDIR="$(dirname "${THIS}")" SUT="$(dirname "$(dirname "${THISDIR}")")/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -36,7 +35,7 @@ testPreextractOpts() { echo "$$ Some\toutput\n\a\b\0777 $var1 ${var2} `cat var3.txt` $(env)" > text.txt ' > preextract.sh - $BENCHMARK_SHELL "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh + "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh if [[ $? -eq 0 ]]; then log_result "testPreextractOpts: Create Archive" "PASS" else @@ -45,7 +44,7 @@ testPreextractOpts() { return 1 fi - $BENCHMARK_SHELL ./src.sh --show-preextract > show-preextract.out + ./src.sh --show-preextract > show-preextract.out if diff preextract.sh show-preextract.out > /dev/null; then log_result "testPreextractOpts: Verify Preextract" "PASS" else @@ -59,8 +58,8 @@ testPreextractOpts() { testWithNoPreextractOpts() { setUp - $BENCHMARK_SHELL "$SUT" src src.sh alabel ./startup.sh - if $BENCHMARK_SHELL ./src.sh --show-preextract; then + "$SUT" src src.sh alabel ./startup.sh + if ./src.sh --show-preextract; then log_result "testWithNoPreextractOpts" "FAIL" else log_result "testWithNoPreextractOpts" "PASS" @@ -71,8 +70,8 @@ testWithNoPreextractOpts() { testPreextractRun() { setUp echo 'echo Validating provided options...' > preextract.sh - $BENCHMARK_SHELL "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh - if $BENCHMARK_SHELL ./src.sh | grep -qF 'Validating provided options...'; then + "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh + if ./src.sh | grep -qF 'Validating provided options...'; then log_result "testPreextractRun" "PASS" else log_result "testPreextractRun" "FAIL" @@ -83,8 +82,8 @@ testPreextractRun() { testPreextractNoexec() { setUp echo 'exit 2' > preextract.sh - $BENCHMARK_SHELL "$SUT" --preextract preextract.sh src src.sh alabel ./startup.sh - if $BENCHMARK_SHELL ./src.sh --noexec; then + "$SUT" --preextract preextract.sh src src.sh alabel ./startup.sh + if ./src.sh --noexec; then log_result "testPreextractNoexec" "PASS" else log_result "testPreextractNoexec" "FAIL" @@ -95,7 +94,7 @@ testPreextractNoexec() { testPreextractArgs() { setUp echo 'echo $*' > preextract.sh - $BENCHMARK_SHELL "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh --logdir /var/log + "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh --logdir /var/log test_cmd='./src.sh -- --env dev' if eval "${test_cmd}" | grep -qF -- '--logdir /var/log --env dev'; then @@ -110,8 +109,8 @@ testPreextractEnvPassing() { setUp echo 'echo "export INSTALLATION_DIR=/usr/bin" > preextract.env' > preextract.sh echo '. ./preextract.env; echo $INSTALLATION_DIR' > src/startup.sh - $BENCHMARK_SHELL "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh - if $BENCHMARK_SHELL ./src.sh | grep -qF '/usr/bin'; then + "$SUT" --nox11 --preextract preextract.sh src src.sh alabel ./startup.sh + if ./src.sh | grep -qF '/usr/bin'; then log_result "testPreextractEnvPassing" "PASS" else log_result "testPreextractEnvPassing" "FAIL" diff --git a/makeself/makeself/test/signtest/signtest.sh b/makeself/makeself/test/signtest/signtest.sh index 82be003b7..13147e6c2 100755 --- a/makeself/makeself/test/signtest/signtest.sh +++ b/makeself/makeself/test/signtest/signtest.sh @@ -4,7 +4,6 @@ THIS="$(readlink -f "$0")" THISDIR="$(dirname "${THIS}")" SUT="$(dirname "$(dirname "${THISDIR}")")/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -141,7 +140,7 @@ create_sign_verify() { local archive_run="${archive_dir}.run" local output="${archive_run}.out" - if $BENCHMARK_SHELL "$SUT" --sign password123 "$@" "${archive_dir}" "${archive_run}" "signtest" ls >"${output}"; then + if "$SUT" --sign password123 "$@" "${archive_dir}" "${archive_run}" "signtest" ls >"${output}"; then grep -Exq 'Signature: [[:alnum:]+/]+' "${output}" || return 1 eval "${archive_run}" --verify-sig "${keyid}" || return 1 else diff --git a/makeself/makeself/test/tarextratest/tarextratest.sh b/makeself/makeself/test/tarextratest/tarextratest.sh index 7a532e19a..284ebfb77 100755 --- a/makeself/makeself/test/tarextratest/tarextratest.sh +++ b/makeself/makeself/test/tarextratest/tarextratest.sh @@ -4,7 +4,6 @@ THIS="$(readlink -f "$0")" THISDIR="$(dirname "${THIS}")" SUT="$(dirname "$(dirname "${THISDIR}")")/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -31,7 +30,7 @@ testTarExtraOpts() { setupTests local tar_extra="--verbose --exclude .git" - if $BENCHMARK_SHELL "$SUT" --tar-extra "$tar_extra" src src.sh alabel startup.sh; then + if "$SUT" --tar-extra "$tar_extra" src src.sh alabel startup.sh; then log_result "testTarExtraOpts" "PASS" else log_result "testTarExtraOpts" "FAIL" "Tar extra options failed." diff --git a/makeself/makeself/test/variabletest/variabletest.sh b/makeself/makeself/test/variabletest/variabletest.sh index a2aa5d1b7..6720a53e0 100755 --- a/makeself/makeself/test/variabletest/variabletest.sh +++ b/makeself/makeself/test/variabletest/variabletest.sh @@ -4,7 +4,6 @@ THIS="$(readlink -f "$0")" THISDIR="$(dirname "${THIS}")" SUT="$(dirname "$(dirname "${THISDIR}")")/makeself.sh" LOGFILE="${THISDIR}/test_results.log" -BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" echo "Test results:" > "${LOGFILE}" @@ -21,7 +20,7 @@ setupTests() { mkdir archive touch archive/file - $BENCHMARK_SHELL "$SUT" archive makeself-test.run "Test $1" echo "\\\"\${${1}}\\\"" + "$SUT" archive makeself-test.run "Test $1" echo "\\\"\${${1}}\\\"" } testArchiveDir() { diff --git a/makeself/run.sh b/makeself/run.sh index 1c964200e..21420bb22 100755 --- a/makeself/run.sh +++ b/makeself/run.sh @@ -5,6 +5,7 @@ BASE_DIR="$(dirname "$(readlink -f "$0")")" TESTS_DIR="${BASE_DIR}/makeself/test" LOGFILE="${BASE_DIR}/run_results.log" BENCHMARK_SHELL="${BENCHMARK_SHELL:-bash}" +export BENCHMARK_CATEGORY="makeself" echo "Starting test execution..." > "${LOGFILE}" @@ -14,6 +15,7 @@ for test_script in "${TESTS_DIR}"/*/*.sh; do test_log="${test_dir}/test_results.log" echo "Running test: ${test_name}" >> "${LOGFILE}" + export BENCHMARK_SCRIPT="$(realpath "$test_script")" if "${BENCHMARK_SHELL}" "${test_script}" >> "${test_log}" 2>&1; then echo "PASS: ${test_name}" >> "${LOGFILE}" else diff --git a/max-temp/run.sh b/max-temp/run.sh index 5bc6a7d4a..4e8550d36 100755 --- a/max-temp/run.sh +++ b/max-temp/run.sh @@ -19,5 +19,8 @@ export statistics_dir="$results_dir/statistics$suffix" mkdir -p "$statistics_dir" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +export BENCHMARK_CATEGORY="max-temp" +export BENCHMARK_INPUT_FILE="$(realpath "$input_file")" +export BENCHMARK_SCRIPT="$(realpath "${scripts_dir}/temp-analytics.sh")" -$BENCHMARK_SHELL ${scripts_dir}/temp-analytics.sh +$BENCHMARK_SHELL "${scripts_dir}/temp-analytics.sh" diff --git a/media-conv/run.sh b/media-conv/run.sh index c91367261..0e3d8ade7 100755 --- a/media-conv/run.sh +++ b/media-conv/run.sh @@ -18,11 +18,16 @@ if [[ "$@" == *"--small"* ]]; then fi BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +export BENCHMARK_CATEGORY="media-conv" echo "img_convert" +export BENCHMARK_INPUT_FILE="$(realpath "$img_convert_input")" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/img_convert.sh")" $BENCHMARK_SHELL $scripts_dir/img_convert.sh $img_convert_input $results_dir/img_convert$suffix > $results_dir/img_convert$suffix.log echo $? echo "to_mp3" +export BENCHMARK_INPUT_FILE="$(realpath "$to_mp3_input")" +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/to_mp3.sh")" $BENCHMARK_SHELL $scripts_dir/to_mp3.sh $to_mp3_input $results_dir/to_mp3$suffix > $results_dir/to_mp3$suffix.log echo $? diff --git a/nlp/deps.sh b/nlp/deps.sh index 6d9c19ef1..959e1d326 100755 --- a/nlp/deps.sh +++ b/nlp/deps.sh @@ -1 +1,3 @@ +#!/bin/bash + # This benchmark does not have any dependencies. diff --git a/nlp/run.sh b/nlp/run.sh index 21d67bc44..2af728a39 100755 --- a/nlp/run.sh +++ b/nlp/run.sh @@ -12,6 +12,7 @@ else export IN="$SUITE_DIR/inputs/pg" fi +export BENCHMARK_CATEGORY="nlp" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} mkdir -p "outputs" @@ -52,6 +53,7 @@ while IFS= read -r script; do mkdir -p "$output_dir" + export BENCHMARK_SCRIPT="$(realpath "$script_file")" echo "$script" $BENCHMARK_SHELL "$script_file" "$output_dir" echo "$?" diff --git a/nlp/scripts/bigrams.sh b/nlp/scripts/bigrams.sh index 1a996cf6d..7d6b37164 100755 --- a/nlp/scripts/bigrams.sh +++ b/nlp/scripts/bigrams.sh @@ -20,7 +20,7 @@ export -f pure_func for input in $(ls ${IN} | head -n ${ENTRIES} | xargs -I arg1 basename arg1) do - cat $IN/$input | tr -c 'A-Za-z' '[\n*]' | grep -v "^\s*$"| pure_func $input| sort | uniq -c > ${OUT}/${input}.input.bigrams.out + cat $IN/$input | tr -c 'A-Za-z' '[\n*]' | grep -v "^\s*$"| pure_func $input| sort | uniq -c > ${OUT}${input}.input.bigrams.out done echo 'done'; diff --git a/oneliners/input.sh b/oneliners/input.sh index 2db674d00..2b0723c3f 100755 --- a/oneliners/input.sh +++ b/oneliners/input.sh @@ -28,7 +28,7 @@ if [ ! -f ./3G.txt ]; then fi if [ ! -f ./dict.txt ]; then - wget -O - https://atlas-group.cs.brown.edu/data/dummy/dict.txt --no-check-certificate | sort > dict.txt + wget -O - https://atlas-group.cs.brown.edu/data/dummy/dict.txt --no-check-certificate | LC_ALL=C sort > dict.txt fi if [ ! -f ./all_cmds.txt ]; then diff --git a/oneliners/run.sh b/oneliners/run.sh index a81f01b72..29e34ee71 100755 --- a/oneliners/run.sh +++ b/oneliners/run.sh @@ -4,6 +4,7 @@ export SUITE_DIR=$(realpath $(dirname "$0")) export TIMEFORMAT=%R cd $SUITE_DIR +export BENCHMARK_CATEGORY="oneliners" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} if [[ "$@" == *"--small"* ]]; then @@ -46,6 +47,8 @@ do output_file="./outputs/${parsed[0]}.out" echo "$script_file" + export BENCHMARK_INPUT_FILE="$(realpath "$input_file")" + export BENCHMARK_SCRIPT="$(realpath "$script_file")" $BENCHMARK_SHELL "$script_file" "$input_file" > "$output_file" echo "$?" done diff --git a/riker/run.sh b/riker/run.sh index 6174cec1a..44fac13c8 100755 --- a/riker/run.sh +++ b/riker/run.sh @@ -4,7 +4,10 @@ REPO_TOP="$(git rev-parse --show-toplevel)" eval_dir="${REPO_TOP}/riker" scripts_dir="${eval_dir}/scripts" +export BENCHMARK_CATEGORY="riker" + for bench in "$scripts_dir"/*; do + export BENCHMARK_SCRIPT="$(realpath "$bench/run.sh")" "$bench/run.sh" $@ done diff --git a/riker/scripts/redis/input.sh b/riker/scripts/redis/input.sh index ad398f409..a7a234755 100755 --- a/riker/scripts/redis/input.sh +++ b/riker/scripts/redis/input.sh @@ -10,3 +10,4 @@ git clone https://github.com/redis/redis "$input_dir/dev" git -C "$input_dir/dev" checkout d96f47cf06b1cc24b82109e0e87ac5428517525a (cd "$input_dir/dev" && make .make-prerequisites) + diff --git a/sklearn/run.sh b/sklearn/run.sh old mode 100644 new mode 100755 index 6758bdfca..719ecfafa --- a/sklearn/run.sh +++ b/sklearn/run.sh @@ -5,6 +5,10 @@ eval_dir="${REPO_TOP}/sklearn" scripts_dir="${eval_dir}/scripts" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +export BENCHMARK_CATEGORY="sklearn" + cd "$eval_dir" # scripts/run.sh references PWD + +export BENCHMARK_SCRIPT="$(realpath "$scripts_dir/run.sh")" $BENCHMARK_SHELL "$scripts_dir/run.sh" $@ diff --git a/sklearn/tmp/.gitignore b/sklearn/tmp/.gitignore new file mode 100644 index 000000000..e69de29bb diff --git a/unix50/run.sh b/unix50/run.sh index 26b230020..94a81daac 100755 --- a/unix50/run.sh +++ b/unix50/run.sh @@ -55,6 +55,7 @@ echo executing unix50 $(date) mkdir -p "outputs" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} +export BENCHMARK_CATEGORY="unix50" for script_input in ${scripts_inputs[@]}; do @@ -67,6 +68,8 @@ do input_file="./inputs/$input$suffix.txt" output_file="./outputs/$script.out" + export BENCHMARK_SCRIPT="$(realpath "$script_file")" + export BENCHMARK_INPUT_FILE="$(realpath "$input_file")" echo "$script" $BENCHMARK_SHELL $script_file $input_file > $output_file echo $? diff --git a/vps-audit-negate/run.sh b/vps-audit-negate/run.sh index 75528928e..d8302090d 100755 --- a/vps-audit-negate/run.sh +++ b/vps-audit-negate/run.sh @@ -4,6 +4,8 @@ REPO_TOP=$(git rev-parse --show-toplevel) eval_dir="${REPO_TOP}/vps-audit-negate" scripts_dir="${eval_dir}/scripts" main_script="${scripts_dir}/vps-audit-negate.sh" +export BENCHMARK_CATEGORY=vps-audit-negate +export BENCHMARK_SCRIPT="$(realpath "$main_script")" mkdir -p "${eval_dir}/outputs" echo "Starting VPS audit..." ${BENCHMARK_SHELL} "${main_script}" diff --git a/vps-audit/run.sh b/vps-audit/run.sh index 3f008e15b..fc8b049d4 100755 --- a/vps-audit/run.sh +++ b/vps-audit/run.sh @@ -4,6 +4,8 @@ REPO_TOP=$(git rev-parse --show-toplevel) eval_dir="${REPO_TOP}/vps-audit" scripts_dir="${eval_dir}/scripts" main_script="${scripts_dir}/vps-audit.sh" +export BENCHMARK_CATEGORY=vps-audit-negate +export BENCHMARK_SCRIPT="$(realpath "$main_script")" mkdir -p "${eval_dir}/outputs" echo "Starting VPS audit..." ${BENCHMARK_SHELL} "${main_script}" diff --git a/web-index/run.sh b/web-index/run.sh index 5b6fd32d1..b3c7f76f2 100755 --- a/web-index/run.sh +++ b/web-index/run.sh @@ -2,6 +2,7 @@ cd "$(dirname "$0")" +export BENCHMARK_CATEGORY="web-index" BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash} directory_path="inputs/articles" @@ -26,5 +27,7 @@ fi mkdir -p "$OUTPUT_BASE" echo "web-index" +export BENCHMARK_SCRIPT="$(realpath "./scripts/ngrams.sh")" +export BENCHMARK_INPUT_FILE="$(realpath "$INPUT_FILE")" $BENCHMARK_SHELL ./scripts/ngrams.sh "$OUTPUT_BASE" echo $? diff --git a/web-index/scripts/bigrams_aux.sh b/web-index/scripts/bigrams_aux.sh index b9ae0f37d..6496d0139 100755 --- a/web-index/scripts/bigrams_aux.sh +++ b/web-index/scripts/bigrams_aux.sh @@ -1,3 +1,5 @@ +#!/bin/bash + ( mkfifo s2 > /dev/null ) ; ( mkfifo s3 > /dev/null ) ; diff --git a/web-index/scripts/extract_text.sh b/web-index/scripts/extract_text.sh index 81e5b4c84..6438f7e41 100755 --- a/web-index/scripts/extract_text.sh +++ b/web-index/scripts/extract_text.sh @@ -1,3 +1,5 @@ +#!/bin/bash + while read -r line do cat $line | diff --git a/web-index/scripts/ngrams.sh b/web-index/scripts/ngrams.sh index a2a6a01e7..e4d290e23 100755 --- a/web-index/scripts/ngrams.sh +++ b/web-index/scripts/ngrams.sh @@ -1,3 +1,5 @@ +#!/bin/bash + REPO_TOP=$(git rev-parse --show-toplevel) export TEST_BASE=$REPO_TOP/web-index export SCRIPT_DIR="$TEST_BASE"/scripts diff --git a/web-index/scripts/trigrams_aux.sh b/web-index/scripts/trigrams_aux.sh index 99ccc5b42..25bf353ed 100755 --- a/web-index/scripts/trigrams_aux.sh +++ b/web-index/scripts/trigrams_aux.sh @@ -1,3 +1,5 @@ +#!/bin/bash + s2=$(mktemp -u) s3=$(mktemp -u) @@ -13,4 +15,5 @@ tee $s2 | sed "\$d" | sed "\$d" -rm $s2 $s3 \ No newline at end of file +rm $s2 $s3 + diff --git a/web-index/scripts/web-index-aux.sh b/web-index/scripts/web-index-aux.sh old mode 100644 new mode 100755 index cb6fd403e..dac9c7bfc --- a/web-index/scripts/web-index-aux.sh +++ b/web-index/scripts/web-index-aux.sh @@ -1,3 +1,5 @@ +#!/bin/bash + mkfifo {1,2,3}grams bigrams_aux()