From 4b855eb93e693b385a610c686e52de0644916b4c Mon Sep 17 00:00:00 2001 From: quentin Date: Thu, 7 Sep 2023 19:40:48 +0200 Subject: [PATCH] Bump project version to 15 for seek history serialization --- librz/core/project_migrate.c | 18 +- librz/include/rz_project.h | 5 +- test/db/cmd/project | 1 + test/integration/test_project_migrate.c | 48 +- test/prj/v15-seek-history.rzdb | 5847 +++++++++++++++++++++++ 5 files changed, 5916 insertions(+), 3 deletions(-) create mode 100644 test/prj/v15-seek-history.rzdb diff --git a/librz/core/project_migrate.c b/librz/core/project_migrate.c index 3a61bf94c11..579a2ae0588 100644 --- a/librz/core/project_migrate.c +++ b/librz/core/project_migrate.c @@ -533,7 +533,7 @@ RZ_API bool rz_project_migrate_v12_v13(RzProject *prj, RzSerializeResultInfo *re // -- // Migration 13 -> 14 // -// Changes from : +// Changes from 8e29b959b86a35bbbfed599989f077dba6e0ebd5: // Removed {stack,reg} from "/core/analysis/functions/vars" // and converted into storage object { ..., storage: { type: ... } } @@ -592,6 +592,21 @@ RZ_API bool rz_project_migrate_v13_v14(RzProject *prj, RzSerializeResultInfo *re return true; } +// -- +// Migration 14 -> 15 +// +// Changes from : +// Added serialization functionality for seek history +// New namespace: /core/seek + +RZ_API bool rz_project_migrate_v14_v15(RzProject *prj, RzSerializeResultInfo *res) { + Sdb *core_db; + RZ_SERIALIZE_SUB(prj, core_db, res, "core", return false;); + sdb_ns(core_db, "seek", true); + + return true; +} + static bool (*const migrations[])(RzProject *prj, RzSerializeResultInfo *res) = { rz_project_migrate_v1_v2, rz_project_migrate_v2_v3, @@ -606,6 +621,7 @@ static bool (*const migrations[])(RzProject *prj, RzSerializeResultInfo *res) = rz_project_migrate_v11_v12, rz_project_migrate_v12_v13, rz_project_migrate_v13_v14, + rz_project_migrate_v14_v15, }; /// Migrate the given project to the current version in-place diff --git a/librz/include/rz_project.h b/librz/include/rz_project.h index 412834257bb..59ad94642cb 100644 --- a/librz/include/rz_project.h +++ b/librz/include/rz_project.h @@ -12,7 +12,7 @@ extern "C" { #endif -#define RZ_PROJECT_VERSION 14 +#define RZ_PROJECT_VERSION 15 typedef Sdb RzProject; @@ -57,6 +57,9 @@ RZ_API bool rz_project_migrate_v8_v9(RzProject *prj, RzSerializeResultInfo *res) RZ_API bool rz_project_migrate_v9_v10(RzProject *prj, RzSerializeResultInfo *res); RZ_API bool rz_project_migrate_v10_v11(RzProject *prj, RzSerializeResultInfo *res); RZ_API bool rz_project_migrate_v11_v12(RzProject *prj, RzSerializeResultInfo *res); +RZ_API bool rz_project_migrate_v12_v13(RzProject *prj, RzSerializeResultInfo *res); +RZ_API bool rz_project_migrate_v13_v14(RzProject *prj, RzSerializeResultInfo *res); +RZ_API bool rz_project_migrate_v14_v15(RzProject *prj, RzSerializeResultInfo *res); RZ_API bool rz_project_migrate(RzProject *prj, unsigned long version, RzSerializeResultInfo *res); #ifdef __cplusplus diff --git a/test/db/cmd/project b/test/db/cmd/project index 27f865d5ae2..f2e21eec02c 100644 --- a/test/db/cmd/project +++ b/test/db/cmd/project @@ -372,6 +372,7 @@ Detailed project load info: project migrated from version 11 to 12. project migrated from version 12 to 13. project migrated from version 13 to 14. + project migrated from version 14 to 15. EOF RUN diff --git a/test/integration/test_project_migrate.c b/test/integration/test_project_migrate.c index ab21cffb0f3..8dcb41a252e 100644 --- a/test/integration/test_project_migrate.c +++ b/test/integration/test_project_migrate.c @@ -535,6 +535,23 @@ static bool test_migrate_v9_v10_v11_stack_vars_sp() { mu_end; } +static bool test_migrate_v14_v15() { + RzProject *prj = rz_project_load_file_raw("prj/v14-float_ex1_hightec.rzdb.gz"); + mu_assert_notnull(prj, "load raw project"); + RzSerializeResultInfo *res = rz_serialize_result_info_new(); + bool s = rz_project_migrate_v14_v15(prj, res); + mu_assert_true(s, "migrate success"); + + Sdb *core_db = sdb_ns(prj, "core", false); + mu_assert_notnull(core_db, "core ns"); + Sdb *seek_db = sdb_ns(core_db, "seek", false); + mu_assert_notnull(seek_db, "seek ns"); + + rz_serialize_result_info_free(res); + rz_project_free(prj); + mu_end; +} + /// Load project of given version from file into core and check the log for migration success messages #define BEGIN_LOAD_TEST(core, version, file) \ do { \ @@ -845,7 +862,6 @@ static bool test_load_v9_v10_stack_vars_sp(int version, const char *prj_file) { rz_core_free(core); mu_end; - mu_end; } static bool test_load_v12() { @@ -877,6 +893,34 @@ static bool test_load_v14() { mu_end; } +static bool test_load_v15_seek_history() { + RzCore *core = rz_core_new(); + + // enable the cursor so we can check the deserialized value + rz_print_set_cursor(core->print, true, 0, 0); + + BEGIN_LOAD_TEST(core, 15, "prj/v15-seek-history.rzdb"); + + mu_assert_eq(rz_vector_len(&core->seek_history.undos), 1, "bad number of undos"); + RzCoreSeekItem *item = rz_vector_index_ptr(&core->seek_history.undos, 0); + mu_assert_eq(item->offset, 0x5ae0, "bad undo offset"); + mu_assert_eq(item->cursor, 1, "bad undo cursor"); + + mu_assert_eq(rz_vector_len(&core->seek_history.redos), 2, "bad number of redos"); + item = rz_vector_index_ptr(&core->seek_history.redos, 1); + mu_assert_eq(item->offset, 0x5b00, "bad first redo offset"); + mu_assert_eq(item->cursor, 3, "bad first redo cursor"); + item = rz_vector_index_ptr(&core->seek_history.redos, 0); + mu_assert_eq(item->offset, 0x5b10, "bad second redo offset"); + mu_assert_eq(item->cursor, 4, "bad second redo cursor"); + + // core offset not restored from current seek history item, so not checked + mu_assert_eq(rz_print_get_cursor(core->print), 2, "bad current cursor"); + + rz_core_free(core); + mu_end; +} + int all_tests() { mu_run_test(test_migrate_v1_v2_noreturn); mu_run_test(test_migrate_v1_v2_noreturn_empty); @@ -894,6 +938,7 @@ int all_tests() { mu_run_test(test_migrate_v9_v10_v11_stack_vars_bp); mu_run_test(test_migrate_v9_v10_v11_stack_vars_sp); mu_run_test(test_migrate_v2_v12); + mu_run_test(test_migrate_v14_v15); mu_run_test(test_load_v1_noreturn); mu_run_test(test_load_v1_noreturn_empty); mu_run_test(test_load_v1_unknown_type); @@ -913,6 +958,7 @@ int all_tests() { mu_run_test(test_load_v9_v10_stack_vars_sp, 10, "prj/v10-sp-vars.rzdb"); mu_run_test(test_load_v12); mu_run_test(test_load_v14); + mu_run_test(test_load_v15_seek_history); return tests_passed != tests_run; } diff --git a/test/prj/v15-seek-history.rzdb b/test/prj/v15-seek-history.rzdb new file mode 100644 index 00000000000..d97941b7f7f --- /dev/null +++ b/test/prj/v15-seek-history.rzdb @@ -0,0 +1,5847 @@ +/ +type=rizin rz-db project +version=15 + +/core +blocksize=0x100 +offset=0x5af0 + +/core/analysis + +/core/analysis/blocks + +/core/analysis/callables +_Exit=func +__assert_fail=func +__bzero=func +__cxa_throw=func +__error=func +__libc_init=func +__libc_init_array=func +__libc_start_main=func +__maskrune=func +__stack_chk_fail=func +__tolower=func +__toupper=func +__uClibc_main=func +_exit=func +abort=func +abs=func +access=func +acos=func +acosf=func +acosh=func +acoshf=func +acoshl=func +acosl=func +aligned_alloc=func +arc4random=func +asctime=func +asin=func +asinf=func +asinh=func +asinhf=func +asinhl=func +asinl=func +at_quick_exit=func +atan=func +atan2=func +atan2f=func +atan2l=func +atanf=func +atanh=func +atanhf=func +atanhl=func +atanl=func +atexit=func +atof=func +atoi=func +atol=func +atoll=func +basename=func +bind=func +bindtextdomain=func +bsearch=func +btowc=func +bzero=func +calloc=func +cbrt=func +cbrtf=func +cbrtl=func +ceil=func +ceilf=func +ceill=func +chmod=func +clearerr=func +clock=func +close=func +compat_mode=func +connect=func +copysign=func +copysignf=func +copysignl=func +cos=func +cosf=func +cosh=func +coshf=func +coshl=func +cosl=func +ctime=func +difftime=func +div=func +erf=func +erfc=func +erfcf=func +erfcl=func +erff=func +erfl=func +err=func +errc=func +error=func +errx=func +exit=func +exp=func +exp2=func +exp2f=func +exp2l=func +expf=func +expl=func +expm1=func +expm1f=func +expm1l=func +fabs=func +fabsf=func +fabsl=func +fchmod=func +fclose=func +fdim=func +fdimf=func +fdiml=func +feclearexcept=func +fegetenv=func +fegetexceptflag=func +fegetround=func +feholdexcept=func +feof=func +feraiseexcept=func +ferror=func +fesetenv=func +fesetexceptflag=func +fesetround=func +fetestexcept=func +feupdateenv=func +fflush=func +fgetc=func +fgetpos=func +fgets=func +fgetwc=func +fgetws=func +fileno=func +floor=func +floorf=func +floorl=func +fma=func +fmaf=func +fmal=func +fmax=func +fmaxf=func +fmaxl=func +fmin=func +fminf=func +fminl=func +fmod=func +fmodf=func +fmodl=func +fopen=func +fpclassify=func +fprintf=func +fputc=func +fputs=func +fputwc=func +fputws=func +fread=func +free=func +freopen=func +frexp=func +frexpf=func +frexpl=func +fscanf=func +fseek=func +fsetpos=func +fstat=func +ftell=func +fts_children_INODE64=func +fts_close_INODE64=func +fts_open_INODE64=func +fts_read_INODE64=func +fts_set_INODE64=func +func._Exit.arg.0=int,status +func._Exit.args=0x1 +func._Exit.noreturn=true +func._Exit.ret=void +func.__assert_fail.arg.0=const char *,function +func.__assert_fail.args=0x4 +func.__assert_fail.noreturn=true +func.__assert_fail.ret=void +func.__bzero.arg.0=size_t,n +func.__bzero.args=0x2 +func.__bzero.ret=void +func.__cxa_throw.arg.0=void *,dest +func.__cxa_throw.args=0x3 +func.__cxa_throw.noreturn=true +func.__cxa_throw.ret=void +func.__error.arg.0=char *,format +func.__error.args=0x3 +func.__error.ret=void +func.__libc_init.arg.0=char **,envp +func.__libc_init.args=0x3 +func.__libc_init.noreturn=true +func.__libc_init.ret=void +func.__libc_init_array.args=0 +func.__libc_init_array.ret=void +func.__libc_start_main.arg.0=void *,stack_end +func.__libc_start_main.args=0x7 +func.__libc_start_main.noreturn=true +func.__libc_start_main.ret=int +func.__maskrune.arg.0=long,f +func.__maskrune.args=0x2 +func.__maskrune.ret=int +func.__stack_chk_fail.args=0 +func.__stack_chk_fail.noreturn=true +func.__stack_chk_fail.ret=void +func.__tolower.arg.0=int,c +func.__tolower.args=0x1 +func.__tolower.ret=int +func.__toupper.arg.0=int,c +func.__toupper.args=0x1 +func.__toupper.ret=int +func.__uClibc_main.arg.0=void *,stack_end +func.__uClibc_main.args=0x7 +func.__uClibc_main.noreturn=true +func.__uClibc_main.ret=int +func._exit.arg.0=int,status +func._exit.args=0x1 +func._exit.noreturn=true +func._exit.ret=void +func.abort.args=0 +func.abort.noreturn=true +func.abort.ret=void +func.abs.arg.0=int,j +func.abs.args=0x1 +func.abs.ret=int +func.access.arg.0=enum access_perm,mode +func.access.args=0x2 +func.access.ret=int +func.acos.arg.0=double,x +func.acos.args=0x1 +func.acos.ret=double +func.acosf.arg.0=float,x +func.acosf.args=0x1 +func.acosf.ret=float +func.acosh.arg.0=double,x +func.acosh.args=0x1 +func.acosh.ret=double +func.acoshf.arg.0=float,x +func.acoshf.args=0x1 +func.acoshf.ret=float +func.acoshl.arg.0=long double,x +func.acoshl.args=0x1 +func.acoshl.ret=long double +func.acosl.arg.0=long double,x +func.acosl.args=0x1 +func.acosl.ret=long double +func.aligned_alloc.arg.0=size_t,size +func.aligned_alloc.args=0x2 +func.aligned_alloc.ret=void +func.arc4random.args=0 +func.arc4random.ret=uint32_t +func.asctime.arg.0=struct tm *,timeptr +func.asctime.args=0x1 +func.asctime.ret=char * +func.asin.arg.0=double,x +func.asin.args=0x1 +func.asin.ret=double +func.asinf.arg.0=float,x +func.asinf.args=0x1 +func.asinf.ret=float +func.asinh.arg.0=double,x +func.asinh.args=0x1 +func.asinh.ret=double +func.asinhf.arg.0=float,x +func.asinhf.args=0x1 +func.asinhf.ret=float +func.asinhl.arg.0=long double,x +func.asinhl.args=0x1 +func.asinhl.ret=long double +func.asinl.arg.0=long double,x +func.asinl.args=0x1 +func.asinl.ret=long double +func.at_quick_exit.args=0 +func.at_quick_exit.ret=int +func.atan.arg.0=double,x +func.atan.args=0x1 +func.atan.ret=double +func.atan2.arg.0=double,x +func.atan2.args=0x2 +func.atan2.ret=double +func.atan2f.arg.0=float,x +func.atan2f.args=0x2 +func.atan2f.ret=float +func.atan2l.arg.0=long double,x +func.atan2l.args=0x2 +func.atan2l.ret=long double +func.atanf.arg.0=float,x +func.atanf.args=0x1 +func.atanf.ret=float +func.atanh.arg.0=double,x +func.atanh.args=0x1 +func.atanh.ret=double +func.atanhf.arg.0=float,x +func.atanhf.args=0x1 +func.atanhf.ret=float +func.atanhl.arg.0=long double,x +func.atanhl.args=0x1 +func.atanhl.ret=long double +func.atanl.arg.0=long double,x +func.atanl.args=0x1 +func.atanl.ret=long double +func.atexit.arg.0=void *,function +func.atexit.args=0x1 +func.atexit.ret=int +func.atof.arg.0=const char *,str +func.atof.args=0x1 +func.atof.ret=double +func.atoi.arg.0=const char *,str +func.atoi.args=0x1 +func.atoi.ret=int +func.atol.arg.0=const char *,str +func.atol.args=0x1 +func.atol.ret=long +func.atoll.arg.0=const char *,str +func.atoll.args=0x1 +func.atoll.ret=long long +func.basename.arg.0=char *,path +func.basename.args=0x1 +func.basename.ret=char * +func.bind.arg.0=socklen_t,address_len +func.bind.args=0x3 +func.bind.ret=int +func.bindtextdomain.arg.0=char *,dirname +func.bindtextdomain.args=0x2 +func.bindtextdomain.ret=char * +func.bsearch.arg.0=void *,compar +func.bsearch.args=0x5 +func.bsearch.ret=void * +func.btowc.arg.0=int,c +func.btowc.args=0x1 +func.btowc.ret=wint_t +func.bzero.arg.0=size_t,n +func.bzero.args=0x2 +func.bzero.ret=void +func.calloc.arg.0=size_t,size +func.calloc.args=0x2 +func.calloc.ret=void * +func.cbrt.arg.0=double,x +func.cbrt.args=0x1 +func.cbrt.ret=double +func.cbrtf.arg.0=float,x +func.cbrtf.args=0x1 +func.cbrtf.ret=float +func.cbrtl.arg.0=long double,x +func.cbrtl.args=0x1 +func.cbrtl.ret=long double +func.ceil.arg.0=double,x +func.ceil.args=0x1 +func.ceil.ret=double +func.ceilf.arg.0=float,x +func.ceilf.args=0x1 +func.ceilf.ret=float +func.ceill.arg.0=long double,x +func.ceill.args=0x1 +func.ceill.ret=long double +func.chmod.arg.0=int,mode +func.chmod.args=0x2 +func.chmod.ret=int +func.clearerr.arg.0=FILE *,stream +func.clearerr.args=0x1 +func.clearerr.ret=void +func.clock.args=0 +func.clock.ret=clock_t +func.close.arg.0=int,fildes +func.close.args=0x1 +func.close.ret=int +func.compat_mode.arg.0=const char *,mode +func.compat_mode.args=0x2 +func.compat_mode.ret=bool +func.connect.arg.0=size_t,addrlen +func.connect.args=0x3 +func.connect.ret=ssize_t +func.copysign.arg.0=double,y +func.copysign.args=0x2 +func.copysign.ret=double +func.copysignf.arg.0=float,y +func.copysignf.args=0x2 +func.copysignf.ret=float +func.copysignl.arg.0=long double,y +func.copysignl.args=0x2 +func.copysignl.ret=long double +func.cos.arg.0=double,x +func.cos.args=0x1 +func.cos.ret=double +func.cosf.arg.0=float,x +func.cosf.args=0x1 +func.cosf.ret=float +func.cosh.arg.0=double,x +func.cosh.args=0x1 +func.cosh.ret=double +func.coshf.arg.0=float,x +func.coshf.args=0x1 +func.coshf.ret=float +func.coshl.arg.0=long double,x +func.coshl.args=0x1 +func.coshl.ret=long double +func.cosl.arg.0=long double,x +func.cosl.args=0x1 +func.cosl.ret=long double +func.ctime.arg.0=time_t *,timer +func.ctime.args=0x1 +func.ctime.ret=char * +func.difftime.arg.0=time_t,time0 +func.difftime.args=0x2 +func.difftime.ret=double +func.div.arg.0=int,denom +func.div.args=0x2 +func.div.ret=div_t +func.erf.arg.0=double,x +func.erf.args=0x1 +func.erf.ret=double +func.erfc.arg.0=double,x +func.erfc.args=0x1 +func.erfc.ret=double +func.erfcf.arg.0=float,x +func.erfcf.args=0x1 +func.erfcf.ret=float +func.erfcl.arg.0=long double,x +func.erfcl.args=0x1 +func.erfcl.ret=long double +func.erff.arg.0=float,x +func.erff.args=0x1 +func.erff.ret=float +func.erfl.arg.0=long double,x +func.erfl.args=0x1 +func.erfl.ret=long double +func.err.arg.0=int,eval +func.err.args=0x1 +func.err.noreturn=true +func.err.ret=void +func.errc.arg.0=int,eval +func.errc.args=0x1 +func.errc.noreturn=true +func.errc.ret=void +func.error.arg.0=char *,format +func.error.args=0x3 +func.error.ret=void +func.errx.arg.0=int,eval +func.errx.args=0x1 +func.errx.noreturn=true +func.errx.ret=void +func.exit.arg.0=int,status +func.exit.args=0x1 +func.exit.noreturn=true +func.exit.ret=void +func.exp.arg.0=double,x +func.exp.args=0x1 +func.exp.ret=double +func.exp2.arg.0=double,x +func.exp2.args=0x1 +func.exp2.ret=double +func.exp2f.arg.0=float,x +func.exp2f.args=0x1 +func.exp2f.ret=float +func.exp2l.arg.0=long double,x +func.exp2l.args=0x1 +func.exp2l.ret=long double +func.expf.arg.0=float,x +func.expf.args=0x1 +func.expf.ret=float +func.expl.arg.0=long double,x +func.expl.args=0x1 +func.expl.ret=long double +func.expm1.arg.0=double,x +func.expm1.args=0x1 +func.expm1.ret=double +func.expm1f.arg.0=float,x +func.expm1f.args=0x1 +func.expm1f.ret=float +func.expm1l.arg.0=long double,x +func.expm1l.args=0x1 +func.expm1l.ret=long double +func.fabs.arg.0=double,x +func.fabs.args=0x1 +func.fabs.ret=double +func.fabsf.arg.0=float,x +func.fabsf.args=0x1 +func.fabsf.ret=float +func.fabsl.arg.0=long double,x +func.fabsl.args=0x1 +func.fabsl.ret=long double +func.fchmod.arg.0=int,mode +func.fchmod.args=0x2 +func.fchmod.ret=int +func.fclose.arg.0=FILE *,stream +func.fclose.args=0x1 +func.fclose.ret=int +func.fdim.arg.0=double,y +func.fdim.args=0x2 +func.fdim.ret=double +func.fdimf.arg.0=float,y +func.fdimf.args=0x2 +func.fdimf.ret=float +func.fdiml.arg.0=long double,y +func.fdiml.args=0x2 +func.fdiml.ret=long double +func.feclearexcept.arg.0=int,excepts +func.feclearexcept.args=0x1 +func.feclearexcept.ret=int +func.fegetenv.arg.0=fenv_t *,envp +func.fegetenv.args=0x1 +func.fegetenv.ret=int +func.fegetexceptflag.arg.0=int,excepts +func.fegetexceptflag.args=0x2 +func.fegetexceptflag.ret=int +func.fegetround.args=0 +func.fegetround.ret=int +func.feholdexcept.arg.0=fenv_t *,envp +func.feholdexcept.args=0x1 +func.feholdexcept.ret=int +func.feof.arg.0=FILE *,stream +func.feof.args=0x1 +func.feof.ret=int +func.feraiseexcept.arg.0=int,excepts +func.feraiseexcept.args=0x1 +func.feraiseexcept.ret=int +func.ferror.arg.0=FILE *,stream +func.ferror.args=0x1 +func.ferror.ret=int +func.fesetenv.arg.0=fenv_t *,arg +func.fesetenv.args=0x1 +func.fesetenv.ret=int +func.fesetexceptflag.arg.0=int,excepts +func.fesetexceptflag.args=0x2 +func.fesetexceptflag.ret=int +func.fesetround.arg.0=int,round +func.fesetround.args=0x1 +func.fesetround.ret=int +func.fetestexcept.arg.0=int,excepts +func.fetestexcept.args=0x1 +func.fetestexcept.ret=int +func.feupdateenv.arg.0=fenv_t *,arg +func.feupdateenv.args=0x1 +func.feupdateenv.ret=int +func.fflush.arg.0=FILE *,stream +func.fflush.args=0x1 +func.fflush.ret=int +func.fgetc.arg.0=FILE *,stream +func.fgetc.args=0x1 +func.fgetc.ret=int +func.fgetpos.arg.0=fpos_t *,pos +func.fgetpos.args=0x2 +func.fgetpos.ret=int +func.fgets.arg.0=FILE *,stream +func.fgets.args=0x3 +func.fgets.ret=char * +func.fgetwc.arg.0=FILE *,stream +func.fgetwc.args=0x1 +func.fgetwc.ret=wint_t +func.fgetws.arg.0=FILE *,stream +func.fgetws.args=0x3 +func.fgetws.ret=wchar_t * +func.fileno.arg.0=FILE *,stream +func.fileno.args=0x1 +func.fileno.ret=int +func.floor.arg.0=double,x +func.floor.args=0x1 +func.floor.ret=double +func.floorf.arg.0=float,x +func.floorf.args=0x1 +func.floorf.ret=float +func.floorl.arg.0=long double,x +func.floorl.args=0x1 +func.floorl.ret=long double +func.fma.arg.0=double,z +func.fma.args=0x3 +func.fma.ret=double +func.fmaf.arg.0=float,z +func.fmaf.args=0x3 +func.fmaf.ret=float +func.fmal.arg.0=long double,z +func.fmal.args=0x3 +func.fmal.ret=long double +func.fmax.arg.0=double,y +func.fmax.args=0x2 +func.fmax.ret=double +func.fmaxf.arg.0=float,y +func.fmaxf.args=0x2 +func.fmaxf.ret=float +func.fmaxl.arg.0=long double,y +func.fmaxl.args=0x2 +func.fmaxl.ret=long double +func.fmin.arg.0=double,y +func.fmin.args=0x2 +func.fmin.ret=double +func.fminf.arg.0=float,y +func.fminf.args=0x2 +func.fminf.ret=float +func.fminl.arg.0=long double,y +func.fminl.args=0x2 +func.fminl.ret=long double +func.fmod.arg.0=double,y +func.fmod.args=0x2 +func.fmod.ret=double +func.fmodf.arg.0=float,y +func.fmodf.args=0x2 +func.fmodf.ret=float +func.fmodl.arg.0=long double,y +func.fmodl.args=0x2 +func.fmodl.ret=long double +func.fopen.arg.0=const char *,mode +func.fopen.args=0x2 +func.fopen.ret=FILE * +func.fpclassify.arg.0=double,x +func.fpclassify.args=0x1 +func.fpclassify.ret=int +func.fprintf.arg.0=void *,va_args +func.fprintf.args=0x3 +func.fprintf.ret=int +func.fputc.arg.0=FILE *,stream +func.fputc.args=0x2 +func.fputc.ret=int +func.fputs.arg.0=FILE *,stream +func.fputs.args=0x2 +func.fputs.ret=int +func.fputwc.arg.0=FILE *,stream +func.fputwc.args=0x2 +func.fputwc.ret=wint_t +func.fputws.arg.0=FILE *,stream +func.fputws.args=0x2 +func.fputws.ret=int +func.fread.arg.0=FILE *,stream +func.fread.args=0x4 +func.fread.ret=size_t +func.free.arg.0=void *,ptr +func.free.args=0x1 +func.free.ret=void +func.freopen.arg.0=FILE *,stream +func.freopen.args=0x3 +func.freopen.ret=FILE * +func.frexp.arg.0=int *,exp +func.frexp.args=0x2 +func.frexp.ret=double +func.frexpf.arg.0=int *,exp +func.frexpf.args=0x2 +func.frexpf.ret=float +func.frexpl.arg.0=int *,exp +func.frexpl.args=0x2 +func.frexpl.ret=long double +func.fscanf.arg.0=void *,va_args +func.fscanf.args=0x3 +func.fscanf.ret=int +func.fseek.arg.0=int,whence +func.fseek.args=0x3 +func.fseek.ret=int +func.fsetpos.arg.0=fpos_t *,pos +func.fsetpos.args=0x2 +func.fsetpos.ret=int +func.fstat.arg.0=void *,buf +func.fstat.args=0x2 +func.fstat.ret=int +func.ftell.arg.0=FILE *,stream +func.ftell.args=0x1 +func.ftell.ret=long +func.fts_children_INODE64.arg.0=int,opotions +func.fts_children_INODE64.args=0x2 +func.fts_children_INODE64.ret=void * +func.fts_close_INODE64.arg.0=void *,ftsp +func.fts_close_INODE64.args=0x1 +func.fts_close_INODE64.ret=int +func.fts_open_INODE64.arg.0=void *,ftsen_INODE64t +func.fts_open_INODE64.args=0x4 +func.fts_open_INODE64.ret=void * +func.fts_read_INODE64.arg.0=void *,ftsp +func.fts_read_INODE64.args=0x1 +func.fts_read_INODE64.ret=void * +func.fts_set_INODE64.arg.0=int,options +func.fts_set_INODE64.args=0x3 +func.fts_set_INODE64.ret=int +func.fwide.arg.0=int,mode +func.fwide.args=0x2 +func.fwide.ret=int +func.fwprintf.arg.0=wchar_t *,format +func.fwprintf.args=0x2 +func.fwprintf.ret=int +func.fwrite.arg.0=FILE *,stream +func.fwrite.args=0x4 +func.fwrite.ret=size_t +func.fwscanf.arg.0=wchar_t *,format +func.fwscanf.args=0x2 +func.fwscanf.ret=int +func.getc.arg.0=FILE *,stream +func.getc.args=0x1 +func.getc.ret=int +func.getchar.args=0 +func.getchar.ret=int +func.getenv.arg.0=const char *,name +func.getenv.args=0x1 +func.getenv.ret=char * +func.geteuid.args=0 +func.geteuid.ret=uid_t +func.getopt.arg.0=const char *,optstring +func.getopt.args=0x3 +func.getopt.ret=int +func.getpid.args=0 +func.getpid.ret=int +func.getprogname.args=0 +func.getprogname.ret=const char * +func.gets.arg.0=char *,s +func.gets.args=0x1 +func.gets.ret=char * +func.getsockname.arg.0=socklen_t *,addrlen +func.getsockname.args=0x3 +func.getsockname.ret=int +func.getsockopt.arg.0=socklen_t *,optlen +func.getsockopt.args=0x5 +func.getsockopt.ret=int +func.getuid.args=0 +func.getuid.ret=uid_t +func.getwc.arg.0=FILE *,stream +func.getwc.args=0x1 +func.getwc.ret=wint_t +func.getwchar.args=0 +func.getwchar.ret=wint_t +func.gmtime.arg.0=time_t *,timer +func.gmtime.args=0x1 +func.gmtime.ret=struct tm * +func.group_from_gid.arg.0=int,nogroup +func.group_from_gid.args=0x2 +func.group_from_gid.ret=char * +func.humanize_number.arg.0=char *,buf +func.humanize_number.args=0x1 +func.humanize_number.ret=int +func.hypot.arg.0=double,y +func.hypot.args=0x2 +func.hypot.ret=double +func.hypotf.arg.0=float,y +func.hypotf.args=0x2 +func.hypotf.ret=float +func.hypotl.arg.0=long double,y +func.hypotl.args=0x2 +func.hypotl.ret=long double +func.ilogb.arg.0=double,x +func.ilogb.args=0x1 +func.ilogb.ret=int +func.ilogbf.arg.0=float,x +func.ilogbf.args=0x1 +func.ilogbf.ret=int +func.ilogbl.arg.0=long double,x +func.ilogbl.args=0x1 +func.ilogbl.ret=int +func.imaxabs.arg.0=intmax_t,j +func.imaxabs.args=0x1 +func.imaxabs.ret=intmax_t +func.imaxdiv.arg.0=intmax_t,denom +func.imaxdiv.args=0x2 +func.imaxdiv.ret=imaxdiv_t +func.inet_aton.arg.0=void *,pin +func.inet_aton.args=0x2 +func.inet_aton.ret=int +func.inet_ntoa.arg.0=void *,in +func.inet_ntoa.args=0x1 +func.inet_ntoa.ret=char * +func.initstate.arg.0=size_t,size +func.initstate.args=0x3 +func.initstate.ret=char * +func.ioctl.arg.0=unsigned long,request +func.ioctl.args=0x2 +func.ioctl.ret=int +func.isalnum.arg.0=int,c +func.isalnum.args=0x1 +func.isalnum.ret=int +func.isalpha.arg.0=int,c +func.isalpha.args=0x1 +func.isalpha.ret=int +func.isatty.arg.0=int,fd +func.isatty.args=0x1 +func.isatty.ret=int +func.isblank.arg.0=int,c +func.isblank.args=0x1 +func.isblank.ret=int +func.iscntrl.arg.0=int,c +func.iscntrl.args=0x1 +func.iscntrl.ret=int +func.isdigit.arg.0=int,c +func.isdigit.args=0x1 +func.isdigit.ret=int +func.isfinite.arg.0=double,x +func.isfinite.args=0x1 +func.isfinite.ret=bool +func.isgraph.arg.0=int,c +func.isgraph.args=0x1 +func.isgraph.ret=int +func.isgreater.arg.0=double,y +func.isgreater.args=0x2 +func.isgreater.ret=bool +func.isgreaterequal.arg.0=double,y +func.isgreaterequal.args=0x2 +func.isgreaterequal.ret=bool +func.isinf.arg.0=double,x +func.isinf.args=0x1 +func.isinf.ret=bool +func.isless.arg.0=double,y +func.isless.args=0x2 +func.isless.ret=bool +func.islessequal.arg.0=double,y +func.islessequal.args=0x2 +func.islessequal.ret=bool +func.islessgreater.arg.0=double,y +func.islessgreater.args=0x2 +func.islessgreater.ret=bool +func.islower.arg.0=int,c +func.islower.args=0x1 +func.islower.ret=int +func.isnan.arg.0=double,x +func.isnan.args=0x1 +func.isnan.ret=bool +func.isnormal.arg.0=double,x +func.isnormal.args=0x1 +func.isnormal.ret=bool +func.isprint.arg.0=int,c +func.isprint.args=0x1 +func.isprint.ret=int +func.ispunct.arg.0=int,c +func.ispunct.args=0x1 +func.ispunct.ret=int +func.isspace.arg.0=int,c +func.isspace.args=0x1 +func.isspace.ret=int +func.isunordered.arg.0=double,y +func.isunordered.args=0x2 +func.isunordered.ret=bool +func.isupper.arg.0=int,c +func.isupper.args=0x1 +func.isupper.ret=int +func.iswalnum.arg.0=wint_t,wc +func.iswalnum.args=0x1 +func.iswalnum.ret=int +func.iswalpha.arg.0=wint_t,wc +func.iswalpha.args=0x1 +func.iswalpha.ret=int +func.iswblank.arg.0=wint_t,wc +func.iswblank.args=0x1 +func.iswblank.ret=int +func.iswcntrl.arg.0=wint_t,wc +func.iswcntrl.args=0x1 +func.iswcntrl.ret=int +func.iswctype.arg.0=wctype_t,desc +func.iswctype.args=0x2 +func.iswctype.ret=int +func.iswdigit.arg.0=wint_t,wc +func.iswdigit.args=0x1 +func.iswdigit.ret=int +func.iswgraph.arg.0=wint_t,wc +func.iswgraph.args=0x1 +func.iswgraph.ret=int +func.iswlower.arg.0=wint_t,wc +func.iswlower.args=0x1 +func.iswlower.ret=int +func.iswprint.arg.0=wint_t,wc +func.iswprint.args=0x1 +func.iswprint.ret=int +func.iswpunct.arg.0=wint_t,wc +func.iswpunct.args=0x1 +func.iswpunct.ret=int +func.iswspace.arg.0=wint_t,wc +func.iswspace.args=0x1 +func.iswspace.ret=int +func.iswupper.arg.0=wint_t,wc +func.iswupper.args=0x1 +func.iswupper.ret=int +func.iswxdigit.arg.0=wint_t,wc +func.iswxdigit.args=0x1 +func.iswxdigit.ret=int +func.isxdigit.arg.0=int,c +func.isxdigit.args=0x1 +func.isxdigit.ret=int +func.kill.arg.0=int,sig +func.kill.args=0x2 +func.kill.ret=int +func.labs.arg.0=long,j +func.labs.args=0x1 +func.labs.ret=long +func.ldexp.arg.0=int,exp +func.ldexp.args=0x2 +func.ldexp.ret=double +func.ldexpf.arg.0=int,exp +func.ldexpf.args=0x2 +func.ldexpf.ret=float +func.ldexpl.arg.0=int,exp +func.ldexpl.args=0x2 +func.ldexpl.ret=long double +func.ldiv.arg.0=long,denom +func.ldiv.args=0x2 +func.ldiv.ret=ldiv_t +func.lgamma.arg.0=double,x +func.lgamma.args=0x1 +func.lgamma.ret=double +func.lgammaf.arg.0=float,x +func.lgammaf.args=0x1 +func.lgammaf.ret=float +func.lgammal.arg.0=long double,x +func.lgammal.args=0x1 +func.lgammal.ret=long double +func.llabs.arg.0=long long,j +func.llabs.args=0x1 +func.llabs.ret=long long +func.lldiv.arg.0=long long,denom +func.lldiv.args=0x2 +func.lldiv.ret=lldiv_t +func.llrint.arg.0=double,x +func.llrint.args=0x1 +func.llrint.ret=long long +func.llrintf.arg.0=float,x +func.llrintf.args=0x1 +func.llrintf.ret=long long +func.llrintl.arg.0=long double,x +func.llrintl.args=0x1 +func.llrintl.ret=long long +func.llround.arg.0=double,x +func.llround.args=0x1 +func.llround.ret=long long +func.llroundf.arg.0=float,x +func.llroundf.args=0x1 +func.llroundf.ret=long long +func.llroundl.arg.0=long double,x +func.llroundl.args=0x1 +func.llroundl.ret=long long +func.localeconv.args=0 +func.localeconv.ret=struct lconv * +func.localtime.arg.0=time_t *,timer +func.localtime.args=0x1 +func.localtime.ret=struct tm * +func.log.arg.0=double,x +func.log.args=0x1 +func.log.ret=double +func.log10.arg.0=double,x +func.log10.args=0x1 +func.log10.ret=double +func.log10f.arg.0=float,x +func.log10f.args=0x1 +func.log10f.ret=float +func.log10l.arg.0=long double,x +func.log10l.args=0x1 +func.log10l.ret=long double +func.log1p.arg.0=double,x +func.log1p.args=0x1 +func.log1p.ret=double +func.log1pf.arg.0=float,x +func.log1pf.args=0x1 +func.log1pf.ret=float +func.log1pl.arg.0=long double,x +func.log1pl.args=0x1 +func.log1pl.ret=long double +func.log2.arg.0=double,x +func.log2.args=0x1 +func.log2.ret=double +func.log2f.arg.0=float,x +func.log2f.args=0x1 +func.log2f.ret=float +func.log2l.arg.0=long double,x +func.log2l.args=0x1 +func.log2l.ret=long double +func.logb.arg.0=double,x +func.logb.args=0x1 +func.logb.ret=double +func.logbf.arg.0=float,x +func.logbf.args=0x1 +func.logbf.ret=float +func.logbl.arg.0=long double,x +func.logbl.args=0x1 +func.logbl.ret=long double +func.logf.arg.0=float,x +func.logf.args=0x1 +func.logf.ret=float +func.logl.arg.0=long double,x +func.logl.args=0x1 +func.logl.ret=long double +func.longjmp.arg.0=int,val +func.longjmp.args=0x2 +func.longjmp.ret=void +func.lrint.arg.0=double,x +func.lrint.args=0x1 +func.lrint.ret=long +func.lrintf.arg.0=float,x +func.lrintf.args=0x1 +func.lrintf.ret=long +func.lrintl.arg.0=long double,x +func.lrintl.args=0x1 +func.lrintl.ret=long +func.lround.arg.0=double,x +func.lround.args=0x1 +func.lround.ret=long +func.lroundf.arg.0=float,x +func.lroundf.args=0x1 +func.lroundf.ret=long +func.lroundl.arg.0=long double,x +func.lroundl.args=0x1 +func.lroundl.ret=long +func.lstat.arg.0=void *,buf +func.lstat.args=0x2 +func.lstat.ret=void +func.main.arg.0=char **,envp +func.main.args=0x3 +func.main.ret=int +func.malloc.arg.0=size_t,size +func.malloc.args=0x1 +func.malloc.ret=void * +func.maskrune.arg.0=unsigned long,f +func.maskrune.args=0x2 +func.maskrune.ret=int +func.mblen.arg.0=size_t,n +func.mblen.args=0x2 +func.mblen.ret=int +func.mbrlen.arg.0=mbstate_t *,ps +func.mbrlen.args=0x3 +func.mbrlen.ret=size_t +func.mbrtowc.arg.0=mbstate_t *,ps +func.mbrtowc.args=0x4 +func.mbrtowc.ret=size_t +func.mbsinit.arg.0=mbstate_t *,ps +func.mbsinit.args=0x1 +func.mbsinit.ret=int +func.mbsrtowcs.arg.0=mbstate_t *,ps +func.mbsrtowcs.args=0x4 +func.mbsrtowcs.ret=size_t +func.mbstowcs.arg.0=size_t,n +func.mbstowcs.args=0x3 +func.mbstowcs.ret=size_t +func.mbtowc.arg.0=size_t,n +func.mbtowc.args=0x3 +func.mbtowc.ret=int +func.memchr.arg.0=size_t,n +func.memchr.args=0x3 +func.memchr.ret=void * +func.memcmp.arg.0=size_t,n +func.memcmp.args=0x3 +func.memcmp.ret=int +func.memcpy.arg.0=size_t,n +func.memcpy.args=0x3 +func.memcpy.ret=void * +func.memmem.arg.0=int,little_len +func.memmem.args=0x4 +func.memmem.ret=void * +func.memmove.arg.0=size_t,n +func.memmove.args=0x3 +func.memmove.ret=void * +func.memset.arg.0=size_t,n +func.memset.args=0x3 +func.memset.ret=void * +func.mkstemp.arg.0=char *,template +func.mkstemp.args=0x1 +func.mkstemp.ret=int +func.mktemp.arg.0=char *,template +func.mktemp.args=0x1 +func.mktemp.ret=char * +func.mktime.arg.0=struct tm *,timeptr +func.mktime.args=0x1 +func.mktime.ret=time_t +func.mmap.arg.0=size_t,offset +func.mmap.args=0x6 +func.mmap.ret=void * +func.modf.arg.0=double *,iptr +func.modf.args=0x2 +func.modf.ret=double +func.modff.arg.0=float *,iptr +func.modff.args=0x2 +func.modff.ret=float +func.modfl.arg.0=long double *,iptr +func.modfl.args=0x2 +func.modfl.ret=long double +func.munmap.arg.0=size_t,length +func.munmap.args=0x2 +func.munmap.ret=int +func.nan.arg.0=const char *,str +func.nan.args=0x1 +func.nan.ret=double +func.nanf.arg.0=const char *,str +func.nanf.args=0x1 +func.nanf.ret=float +func.nanl.arg.0=const char *,str +func.nanl.args=0x1 +func.nanl.ret=long double +func.nanosleep.arg.0=struct timespec *,rem +func.nanosleep.args=0x2 +func.nanosleep.ret=int +func.nearbyint.arg.0=double,x +func.nearbyint.args=0x1 +func.nearbyint.ret=double +func.nearbyintf.arg.0=float,x +func.nearbyintf.args=0x1 +func.nearbyintf.ret=float +func.nearbyintl.arg.0=long double,x +func.nearbyintl.args=0x1 +func.nearbyintl.ret=long double +func.nextafter.arg.0=double,y +func.nextafter.args=0x2 +func.nextafter.ret=double +func.nextafterf.arg.0=float,y +func.nextafterf.args=0x2 +func.nextafterf.ret=float +func.nextafterl.arg.0=long double,y +func.nextafterl.args=0x2 +func.nextafterl.ret=long double +func.nexttoward.arg.0=long double,y +func.nexttoward.args=0x2 +func.nexttoward.ret=double +func.nexttowardf.arg.0=long double,y +func.nexttowardf.args=0x2 +func.nexttowardf.ret=float +func.nexttowardl.arg.0=long double,y +func.nexttowardl.args=0x2 +func.nexttowardl.ret=long double +func.nl_langinfo.arg.0=nl_item,item +func.nl_langinfo.args=0x1 +func.nl_langinfo.ret=char * +func.nl_langinfo_l.arg.0=locale_t,locale +func.nl_langinfo_l.args=0x2 +func.nl_langinfo_l.ret=char * +func.objc_enumerationMutation.arg.0=void *,instance +func.objc_enumerationMutation.args=0x1 +func.objc_enumerationMutation.ret=void +func.objc_msgSend.arg.0=char *,selector +func.objc_msgSend.args=0x2 +func.objc_msgSend.ret=void * +func.objc_msgSendSuper2.arg.0=char *,selector +func.objc_msgSendSuper2.args=0x2 +func.objc_msgSendSuper2.ret=void * +func.objc_release.arg.0=void *,instance +func.objc_release.args=0x1 +func.objc_release.ret=void +func.objc_retain.arg.0=void *,instance +func.objc_retain.args=0x1 +func.objc_retain.ret=void +func.objc_retainAutoreleasedReturnValue.arg.0=void *,instance +func.objc_retainAutoreleasedReturnValue.args=0x1 +func.objc_retainAutoreleasedReturnValue.ret=void +func.objc_storeStrong.arg.0=int,type +func.objc_storeStrong.args=0x2 +func.objc_storeStrong.ret=void * +func.open.arg.0=int,oflag +func.open.args=0x2 +func.open.ret=int +func.openat.arg.0=int,oflag +func.openat.args=0x3 +func.openat.ret=int +func.pclose.arg.0=FILE *,stream +func.pclose.args=0x1 +func.pclose.ret=int +func.perror.arg.0=const char *,s +func.perror.args=0x1 +func.perror.ret=void +func.popen.arg.0=const char *,mode +func.popen.args=0x2 +func.popen.ret=FILE * +func.pow.arg.0=double,y +func.pow.args=0x2 +func.pow.ret=double +func.powf.arg.0=float,y +func.powf.args=0x2 +func.powf.ret=float +func.powl.arg.0=long double,y +func.powl.args=0x2 +func.powl.ret=long double +func.prctl.arg.0=unsigned long,v5 +func.prctl.args=0x5 +func.prctl.ret=int +func.printf.arg.0=const char *,format +func.printf.args=0x1 +func.printf.ret=int +func.ptrace.arg.0=void *,data +func.ptrace.args=0x4 +func.ptrace.ret=long +func.putc.arg.0=FILE *,stream +func.putc.args=0x2 +func.putc.ret=int +func.putchar.arg.0=int,c +func.putchar.args=0x1 +func.putchar.ret=int +func.puts.arg.0=const char *,s +func.puts.args=0x1 +func.puts.ret=int +func.pututxline.arg.0=void *,utx +func.pututxline.args=0x1 +func.pututxline.ret=void * +func.putwc.arg.0=FILE *,stream +func.putwc.args=0x2 +func.putwc.ret=wint_t +func.putwchar.arg.0=wchar_t,c +func.putwchar.args=0x1 +func.putwchar.ret=wint_t +func.qsort.arg.0=void *,compar +func.qsort.args=0x4 +func.qsort.ret=void +func.quick_exit.arg.0=int,status +func.quick_exit.args=0x1 +func.quick_exit.ret=void +func.raise.arg.0=int,sig +func.raise.args=0x1 +func.raise.ret=int +func.rand.args=0 +func.rand.ret=int +func.random.args=0 +func.random.ret=uint32_t +func.read.arg.0=size_t,nbyte +func.read.args=0x3 +func.read.ret=ssize_t +func.realloc.arg.0=size_t,size +func.realloc.args=0x2 +func.realloc.ret=void * +func.reallocf.arg.0=size_t,size +func.reallocf.args=0x2 +func.reallocf.ret=void * +func.recv.arg.0=int,flags +func.recv.args=0x4 +func.recv.ret=ssize_t +func.remainder.arg.0=double,y +func.remainder.args=0x2 +func.remainder.ret=double +func.remainderf.arg.0=float,y +func.remainderf.args=0x2 +func.remainderf.ret=float +func.remainderl.arg.0=long double,y +func.remainderl.args=0x2 +func.remainderl.ret=long double +func.remove.arg.0=const char *,filename +func.remove.args=0x1 +func.remove.ret=int +func.remquo.arg.0=int *,pquo +func.remquo.args=0x3 +func.remquo.ret=double +func.remquof.arg.0=int *,pquo +func.remquof.args=0x3 +func.remquof.ret=float +func.remquol.arg.0=int *,pquo +func.remquol.args=0x3 +func.remquol.ret=long double +func.rename.arg.0=const char *,newpath +func.rename.args=0x2 +func.rename.ret=int +func.rewind.arg.0=FILE *,stream +func.rewind.args=0x1 +func.rewind.ret=void +func.rint.arg.0=double,x +func.rint.args=0x1 +func.rint.ret=double +func.rintf.arg.0=float,x +func.rintf.args=0x1 +func.rintf.ret=float +func.rintl.arg.0=long double,x +func.rintl.args=0x1 +func.rintl.ret=long double +func.round.arg.0=double,x +func.round.args=0x1 +func.round.ret=double +func.roundf.arg.0=float,x +func.roundf.args=0x1 +func.roundf.ret=float +func.roundl.arg.0=long double,x +func.roundl.args=0x1 +func.roundl.ret=long double +func.scalbln.arg.0=long,ex +func.scalbln.args=0x2 +func.scalbln.ret=double +func.scalblnf.arg.0=long,ex +func.scalblnf.args=0x2 +func.scalblnf.ret=float +func.scalblnl.arg.0=long,ex +func.scalblnl.args=0x2 +func.scalblnl.ret=long double +func.scalbn.arg.0=int,ex +func.scalbn.args=0x2 +func.scalbn.ret=double +func.scalbnf.arg.0=int,ex +func.scalbnf.args=0x2 +func.scalbnf.ret=float +func.scalbnl.arg.0=int,ex +func.scalbnl.args=0x2 +func.scalbnl.ret=long double +func.scanf.arg.0=const char *,format +func.scanf.args=0x1 +func.scanf.ret=int +func.select.arg.0=struct timeval *,timeout +func.select.args=0x5 +func.select.ret=int +func.send.arg.0=int,flags +func.send.args=0x4 +func.send.ret=ssize_t +func.setbuf.arg.0=char *,buf +func.setbuf.args=0x2 +func.setbuf.ret=void +func.setenv.arg.0=int,overwrite +func.setenv.args=0x3 +func.setenv.ret=int +func.setjmp.arg.0=jmp_buf,env +func.setjmp.args=0x1 +func.setjmp.ret=int +func.setlocale.arg.0=const char *,locale +func.setlocale.args=0x2 +func.setlocale.ret=char * +func.setsockopt.arg.0=socklen_t,optlen +func.setsockopt.args=0x5 +func.setsockopt.ret=int +func.setstate.arg.0=const char *,state +func.setstate.args=0x1 +func.setstate.ret=const char * +func.setvbuf.arg.0=size_t,size +func.setvbuf.args=0x4 +func.setvbuf.ret=int +func.sigaction.arg.0=struct sigaction *,oldact +func.sigaction.args=0x3 +func.sigaction.ret=int +func.signal.arg.0=void *,func +func.signal.args=0x2 +func.signal.ret=void +func.signbit.arg.0=double,x +func.signbit.args=0x1 +func.signbit.ret=bool +func.sin.arg.0=double,x +func.sin.args=0x1 +func.sin.ret=double +func.sinf.arg.0=float,x +func.sinf.args=0x1 +func.sinf.ret=float +func.sinh.arg.0=double,x +func.sinh.args=0x1 +func.sinh.ret=double +func.sinhf.arg.0=float,x +func.sinhf.args=0x1 +func.sinhf.ret=float +func.sinhl.arg.0=long double,x +func.sinhl.args=0x1 +func.sinhl.ret=long double +func.sinl.arg.0=long double,x +func.sinl.args=0x1 +func.sinl.ret=long double +func.sleep.arg.0=int,s +func.sleep.args=0x1 +func.sleep.ret=int +func.snprintf.arg.0=va_list,args +func.snprintf.args=0x4 +func.snprintf.ret=int +func.snprintf_chk.arg.0=va_list,args +func.snprintf_chk.args=0x4 +func.snprintf_chk.ret=int +func.socket.arg.0=int,protocol +func.socket.args=0x3 +func.socket.ret=int +func.sprintf.arg.0=va_list,args +func.sprintf.args=0x3 +func.sprintf.ret=int +func.sprintf_chk.arg.0=va_list,args +func.sprintf_chk.args=0x3 +func.sprintf_chk.ret=int +func.sqrt.arg.0=double,x +func.sqrt.args=0x1 +func.sqrt.ret=double +func.sqrtf.arg.0=float,x +func.sqrtf.args=0x1 +func.sqrtf.ret=float +func.sqrtl.arg.0=long double,x +func.sqrtl.args=0x1 +func.sqrtl.ret=long double +func.srand.arg.0=int,seed +func.srand.args=0x1 +func.srand.ret=void +func.srandom.arg.0=uint32_t,seed +func.srandom.args=0x1 +func.srandom.ret=uint32_t +func.srandomdev.args=0 +func.srandomdev.ret=void +func.sscanf.arg.0=va_list,args +func.sscanf.args=0x3 +func.sscanf.ret=int +func.strcasecmp.arg.0=const char *,s2 +func.strcasecmp.args=0x2 +func.strcasecmp.ret=int +func.strcat.arg.0=const char *,s2 +func.strcat.args=0x2 +func.strcat.ret=char * +func.strchr.arg.0=int,c +func.strchr.args=0x2 +func.strchr.ret=char * +func.strcmp.arg.0=const char *,s2 +func.strcmp.args=0x2 +func.strcmp.ret=int +func.strcoll.arg.0=const char *,s2 +func.strcoll.args=0x2 +func.strcoll.ret=int +func.strcpy.arg.0=const char *,src +func.strcpy.args=0x2 +func.strcpy.ret=char * +func.strcpy_chk.arg.0=const char *,src +func.strcpy_chk.args=0x2 +func.strcpy_chk.ret=char * +func.strcspn.arg.0=const char *,s2 +func.strcspn.args=0x2 +func.strcspn.ret=size_t +func.strdup.arg.0=const char *,src +func.strdup.args=0x1 +func.strdup.ret=char * +func.strerror.arg.0=int,errnum +func.strerror.args=0x1 +func.strerror.ret=char * +func.strftime.arg.0=struct tm *,timeptr +func.strftime.args=0x4 +func.strftime.ret=size_t +func.strlcpy.arg.0=size_t,_n +func.strlcpy.args=0x3 +func.strlcpy.ret=char * +func.strlen.arg.0=const char *,s +func.strlen.args=0x1 +func.strlen.ret=size_t +func.strmode.arg.0=char *,bp +func.strmode.args=0x2 +func.strmode.ret=void +func.strncasecmp.arg.0=size_t,n +func.strncasecmp.args=0x3 +func.strncasecmp.ret=int +func.strncat.arg.0=size_t,n +func.strncat.args=0x3 +func.strncat.ret=char * +func.strncmp.arg.0=size_t,n +func.strncmp.args=0x3 +func.strncmp.ret=int +func.strncpy.arg.0=size_t,_n +func.strncpy.args=0x3 +func.strncpy.ret=char * +func.strndup.arg.0=int,n +func.strndup.args=0x2 +func.strndup.ret=char * +func.strpbrk.arg.0=const char *,s2 +func.strpbrk.args=0x2 +func.strpbrk.ret=char * +func.strrchr.arg.0=int,c +func.strrchr.args=0x2 +func.strrchr.ret=char * +func.strspn.arg.0=const char *,s2 +func.strspn.args=0x2 +func.strspn.ret=size_t +func.strstr.arg.0=const char *,s2 +func.strstr.args=0x2 +func.strstr.ret=char * +func.strtod.arg.0=char **,endptr +func.strtod.args=0x2 +func.strtod.ret=double +func.strtof.arg.0=char **,endptr +func.strtof.args=0x2 +func.strtof.ret=float +func.strtoimax.arg.0=int,base +func.strtoimax.args=0x3 +func.strtoimax.ret=intmax_t +func.strtok.arg.0=const char *,s2 +func.strtok.args=0x2 +func.strtok.ret=char * +func.strtol.arg.0=int,base +func.strtol.args=0x3 +func.strtol.ret=long +func.strtold.arg.0=char **,endptr +func.strtold.args=0x2 +func.strtold.ret=long double +func.strtoll.arg.0=int,base +func.strtoll.args=0x3 +func.strtoll.ret=long long +func.strtoul.arg.0=int,base +func.strtoul.args=0x3 +func.strtoul.ret=long +func.strtoull.arg.0=int,base +func.strtoull.args=0x3 +func.strtoull.ret=long long +func.strtoumax.arg.0=int,base +func.strtoumax.args=0x3 +func.strtoumax.ret=uintmax_t +func.strxfrm.arg.0=size_t,n +func.strxfrm.args=0x3 +func.strxfrm.ret=size_t +func.swprintf.arg.0=wchar_t *,format +func.swprintf.args=0x3 +func.swprintf.ret=int +func.swscanf.arg.0=wchar_t *,format +func.swscanf.args=0x2 +func.swscanf.ret=int +func.symlink.arg.0=const char *,path2 +func.symlink.args=0x2 +func.symlink.ret=int +func.system.arg.0=const char *,string +func.system.args=0x1 +func.system.ret=int +func.tan.arg.0=double,x +func.tan.args=0x1 +func.tan.ret=double +func.tanf.arg.0=float,x +func.tanf.args=0x1 +func.tanf.ret=float +func.tanh.arg.0=double,x +func.tanh.args=0x1 +func.tanh.ret=double +func.tanhf.arg.0=float,x +func.tanhf.args=0x1 +func.tanhf.ret=float +func.tanhl.arg.0=long double,x +func.tanhl.args=0x1 +func.tanhl.ret=long double +func.tanl.arg.0=long double,x +func.tanl.args=0x1 +func.tanl.ret=long double +func.textdomain.arg.0=char *,domainname +func.textdomain.args=0x1 +func.textdomain.ret=char * +func.tgamma.arg.0=double,x +func.tgamma.args=0x1 +func.tgamma.ret=double +func.tgammaf.arg.0=float,x +func.tgammaf.args=0x1 +func.tgammaf.ret=float +func.tgammal.arg.0=long double,x +func.tgammal.args=0x1 +func.tgammal.ret=long double +func.tgoto.arg.0=int,row +func.tgoto.args=0x3 +func.tgoto.ret=char * +func.time.arg.0=time_t *,timer +func.time.args=0x1 +func.time.ret=time_t +func.tmpfile.args=0 +func.tmpfile.ret=FILE * +func.tmpnam.arg.0=char *,s +func.tmpnam.args=0x1 +func.tmpnam.ret=char * +func.tolower.arg.0=int,c +func.tolower.args=0x1 +func.tolower.ret=int +func.toupper.arg.0=int,c +func.toupper.args=0x1 +func.toupper.ret=int +func.towctrans.arg.0=wctrans_t,desc +func.towctrans.args=0x2 +func.towctrans.ret=wint_t +func.towlower.arg.0=wint_t,wc +func.towlower.args=0x1 +func.towlower.ret=wint_t +func.towupper.arg.0=wint_t,wc +func.towupper.args=0x1 +func.towupper.ret=wint_t +func.trunc.arg.0=double,x +func.trunc.args=0x1 +func.trunc.ret=double +func.truncf.arg.0=float,x +func.truncf.args=0x1 +func.truncf.ret=float +func.truncl.arg.0=long double,x +func.truncl.args=0x1 +func.truncl.ret=long double +func.umask.arg.0=int,m +func.umask.args=0x1 +func.umask.ret=int +func.ungetc.arg.0=FILE *,stream +func.ungetc.args=0x2 +func.ungetc.ret=int +func.ungetwc.arg.0=FILE *,stream +func.ungetwc.args=0x2 +func.ungetwc.ret=wint_t +func.unlink.arg.0=const char *,path +func.unlink.args=0x1 +func.unlink.ret=int +func.user_from_uid.arg.0=int,nouser +func.user_from_uid.args=0x2 +func.user_from_uid.ret=char * +func.usleep.arg.0=int,s +func.usleep.args=0x1 +func.usleep.ret=int +func.vfprintf.arg.0=va_list,ap +func.vfprintf.args=0x3 +func.vfprintf.ret=int +func.vfscanf.arg.0=va_list,ap +func.vfscanf.args=0x3 +func.vfscanf.ret=int +func.vfwprintf.arg.0=va_list,arg +func.vfwprintf.args=0x3 +func.vfwprintf.ret=int +func.vfwscanf.arg.0=va_list,arg +func.vfwscanf.args=0x3 +func.vfwscanf.ret=int +func.vprintf.arg.0=va_list,ap +func.vprintf.args=0x2 +func.vprintf.ret=int +func.vscanf.arg.0=va_list,ap +func.vscanf.args=0x2 +func.vscanf.ret=int +func.vsnprintf.arg.0=va_list,arg +func.vsnprintf.args=0x4 +func.vsnprintf.ret=int +func.vsprintf.arg.0=va_list,arg +func.vsprintf.args=0x3 +func.vsprintf.ret=int +func.vsscanf.arg.0=va_list,arg +func.vsscanf.args=0x3 +func.vsscanf.ret=int +func.vswprintf.arg.0=va_list,arg +func.vswprintf.args=0x4 +func.vswprintf.ret=int +func.vswscanf.arg.0=va_list,arg +func.vswscanf.args=0x3 +func.vswscanf.ret=int +func.vwprintf.arg.0=va_list,arg +func.vwprintf.args=0x2 +func.vwprintf.ret=int +func.vwscanf.arg.0=va_list,arg +func.vwscanf.args=0x2 +func.vwscanf.ret=int +func.wait.arg.0=int *,wstatus +func.wait.args=0x1 +func.wait.ret=pid_t +func.waitid.arg.0=int,options +func.waitid.args=0x4 +func.waitid.ret=int +func.waitpid.arg.0=int,options +func.waitpid.args=0x3 +func.waitpid.ret=pid_t +func.warn.arg.0=const char *,format +func.warn.args=0x1 +func.warn.ret=void +func.warnc.arg.0=int,opt +func.warnc.args=0x2 +func.warnc.ret=void +func.warnx.arg.0=const char *,format +func.warnx.args=0x1 +func.warnx.ret=void +func.wcrtomb.arg.0=mbstate_t *,ps +func.wcrtomb.args=0x3 +func.wcrtomb.ret=size_t +func.wcscat.arg.0=wchar_t *,s2 +func.wcscat.args=0x2 +func.wcscat.ret=wchar_t * +func.wcschr.arg.0=wchar_t,c +func.wcschr.args=0x2 +func.wcschr.ret=wchar_t * +func.wcscmp.arg.0=wchar_t *,s2 +func.wcscmp.args=0x2 +func.wcscmp.ret=int +func.wcscoll.arg.0=wchar_t *,s2 +func.wcscoll.args=0x2 +func.wcscoll.ret=int +func.wcscpy.arg.0=wchar_t *,s2 +func.wcscpy.args=0x2 +func.wcscpy.ret=wchar_t * +func.wcscspn.arg.0=wchar_t *,s2 +func.wcscspn.args=0x2 +func.wcscspn.ret=size_t +func.wcsftime.arg.0=struct tm *,timeptr +func.wcsftime.args=0x4 +func.wcsftime.ret=size_t +func.wcslen.arg.0=wchar_t *,s +func.wcslen.args=0x1 +func.wcslen.ret=size_t +func.wcsncat.arg.0=size_t,n +func.wcsncat.args=0x3 +func.wcsncat.ret=wchar_t * +func.wcsncmp.arg.0=size_t,n +func.wcsncmp.args=0x3 +func.wcsncmp.ret=int +func.wcsncpy.arg.0=size_t,n +func.wcsncpy.args=0x3 +func.wcsncpy.ret=wchar_t * +func.wcspbrk.arg.0=wchar_t *,s2 +func.wcspbrk.args=0x2 +func.wcspbrk.ret=wchar_t * +func.wcsrchr.arg.0=wchar_t,c +func.wcsrchr.args=0x2 +func.wcsrchr.ret=wchar_t * +func.wcsrtombs.arg.0=mbstate_t *,ps +func.wcsrtombs.args=0x4 +func.wcsrtombs.ret=size_t +func.wcsspn.arg.0=wchar_t *,s2 +func.wcsspn.args=0x2 +func.wcsspn.ret=size_t +func.wcsstr.arg.0=wchar_t *,s2 +func.wcsstr.args=0x2 +func.wcsstr.ret=wchar_t * +func.wcstod.arg.0=wchar_t **,endptr +func.wcstod.args=0x2 +func.wcstod.ret=double +func.wcstof.arg.0=wchar_t **,endptr +func.wcstof.args=0x2 +func.wcstof.ret=float +func.wcstoimax.arg.0=int,base +func.wcstoimax.args=0x3 +func.wcstoimax.ret=intmax_t +func.wcstok.arg.0=wchar_t **,ptr +func.wcstok.args=0x3 +func.wcstok.ret=wchar_t * +func.wcstol.arg.0=int,base +func.wcstol.args=0x3 +func.wcstol.ret=long +func.wcstold.arg.0=wchar_t **,endptr +func.wcstold.args=0x2 +func.wcstold.ret=long double +func.wcstoll.arg.0=int,base +func.wcstoll.args=0x3 +func.wcstoll.ret=long long +func.wcstombs.arg.0=size_t,n +func.wcstombs.args=0x3 +func.wcstombs.ret=size_t +func.wcstoul.arg.0=int,base +func.wcstoul.args=0x3 +func.wcstoul.ret=long +func.wcstoull.arg.0=int,base +func.wcstoull.args=0x3 +func.wcstoull.ret=long long +func.wcstoumax.arg.0=int,base +func.wcstoumax.args=0x3 +func.wcstoumax.ret=uintmax_t +func.wcsxfrm.arg.0=size_t,n +func.wcsxfrm.args=0x3 +func.wcsxfrm.ret=size_t +func.wctob.arg.0=wint_t,c +func.wctob.args=0x1 +func.wctob.ret=int +func.wctomb.arg.0=wchar_t,wchar +func.wctomb.args=0x2 +func.wctomb.ret=int +func.wctrans.arg.0=const char *,property +func.wctrans.args=0x1 +func.wctrans.ret=wctrans_t +func.wctype.arg.0=const char *,property +func.wctype.args=0x1 +func.wctype.ret=wctype_t +func.wmemchr.arg.0=size_t,n +func.wmemchr.args=0x3 +func.wmemchr.ret=wchar_t * +func.wmemcmp.arg.0=size_t,n +func.wmemcmp.args=0x3 +func.wmemcmp.ret=int +func.wmemcpy.arg.0=size_t,n +func.wmemcpy.args=0x3 +func.wmemcpy.ret=wchar_t * +func.wmemmove.arg.0=size_t,n +func.wmemmove.args=0x3 +func.wmemmove.ret=wchar_t * +func.wmemset.arg.0=size_t,n +func.wmemset.args=0x3 +func.wmemset.ret=wchar_t * +func.wprintf.arg.0=wchar_t *,format +func.wprintf.args=0x1 +func.wprintf.ret=int +func.write.arg.0=size_t,nbytes +func.write.args=0x3 +func.write.ret=ssize_t +func.wscanf.arg.0=wchar_t *,format +func.wscanf.args=0x1 +func.wscanf.ret=int +func.xmalloc.arg.0=size_t,size +func.xmalloc.args=0x1 +func.xmalloc.ret=void * +fwide=func +fwprintf=func +fwrite=func +fwscanf=func +getc=func +getchar=func +getenv=func +geteuid=func +getopt=func +getpid=func +getprogname=func +gets=func +getsockname=func +getsockopt=func +getuid=func +getwc=func +getwchar=func +gmtime=func +group_from_gid=func +humanize_number=func +hypot=func +hypotf=func +hypotl=func +ilogb=func +ilogbf=func +ilogbl=func +imaxabs=func +imaxdiv=func +inet_aton=func +inet_ntoa=func +initstate=func +ioctl=func +isalnum=func +isalpha=func +isatty=func +isblank=func +iscntrl=func +isdigit=func +isfinite=func +isgraph=func +isgreater=func +isgreaterequal=func +isinf=func +isless=func +islessequal=func +islessgreater=func +islower=func +isnan=func +isnormal=func +isprint=func +ispunct=func +isspace=func +isunordered=func +isupper=func +iswalnum=func +iswalpha=func +iswblank=func +iswcntrl=func +iswctype=func +iswdigit=func +iswgraph=func +iswlower=func +iswprint=func +iswpunct=func +iswspace=func +iswupper=func +iswxdigit=func +isxdigit=func +kill=func +labs=func +ldexp=func +ldexpf=func +ldexpl=func +ldiv=func +lgamma=func +lgammaf=func +lgammal=func +llabs=func +lldiv=func +llrint=func +llrintf=func +llrintl=func +llround=func +llroundf=func +llroundl=func +localeconv=func +localtime=func +log=func +log10=func +log10f=func +log10l=func +log1p=func +log1pf=func +log1pl=func +log2=func +log2f=func +log2l=func +logb=func +logbf=func +logbl=func +logf=func +logl=func +longjmp=func +lrint=func +lrintf=func +lrintl=func +lround=func +lroundf=func +lroundl=func +lstat=func +main=func +malloc=func +maskrune=func +mblen=func +mbrlen=func +mbrtowc=func +mbsinit=func +mbsrtowcs=func +mbstowcs=func +mbtowc=func +memchr=func +memcmp=func +memcpy=func +memmem=func +memmove=func +memset=func +mkstemp=func +mktemp=func +mktime=func +mmap=func +modf=func +modff=func +modfl=func +munmap=func +nan=func +nanf=func +nanl=func +nanosleep=func +nearbyint=func +nearbyintf=func +nearbyintl=func +nextafter=func +nextafterf=func +nextafterl=func +nexttoward=func +nexttowardf=func +nexttowardl=func +nl_langinfo=func +nl_langinfo_l=func +objc_enumerationMutation=func +objc_msgSend=func +objc_msgSendSuper2=func +objc_release=func +objc_retain=func +objc_retainAutoreleasedReturnValue=func +objc_storeStrong=func +open=func +openat=func +pclose=func +perror=func +popen=func +pow=func +powf=func +powl=func +prctl=func +printf=func +ptrace=func +putc=func +putchar=func +puts=func +pututxline=func +putwc=func +putwchar=func +qsort=func +quick_exit=func +raise=func +rand=func +random=func +read=func +realloc=func +reallocf=func +recv=func +remainder=func +remainderf=func +remainderl=func +remove=func +remquo=func +remquof=func +remquol=func +rename=func +rewind=func +rint=func +rintf=func +rintl=func +round=func +roundf=func +roundl=func +scalbln=func +scalblnf=func +scalblnl=func +scalbn=func +scalbnf=func +scalbnl=func +scanf=func +select=func +send=func +setbuf=func +setenv=func +setjmp=func +setlocale=func +setsockopt=func +setstate=func +setvbuf=func +sigaction=func +signal=func +signbit=func +sin=func +sinf=func +sinh=func +sinhf=func +sinhl=func +sinl=func +sleep=func +snprintf=func +snprintf_chk=func +socket=func +sprintf=func +sprintf_chk=func +sqrt=func +sqrtf=func +sqrtl=func +srand=func +srandom=func +srandomdev=func +sscanf=func +strcasecmp=func +strcat=func +strchr=func +strcmp=func +strcoll=func +strcpy=func +strcpy_chk=func +strcspn=func +strdup=func +strerror=func +strftime=func +strlcpy=func +strlen=func +strmode=func +strncasecmp=func +strncat=func +strncmp=func +strncpy=func +strndup=func +strpbrk=func +strrchr=func +strspn=func +strstr=func +strtod=func +strtof=func +strtoimax=func +strtok=func +strtol=func +strtold=func +strtoll=func +strtoul=func +strtoull=func +strtoumax=func +strxfrm=func +swprintf=func +swscanf=func +symlink=func +system=func +tan=func +tanf=func +tanh=func +tanhf=func +tanhl=func +tanl=func +textdomain=func +tgamma=func +tgammaf=func +tgammal=func +tgoto=func +time=func +tmpfile=func +tmpnam=func +tolower=func +toupper=func +towctrans=func +towlower=func +towupper=func +trunc=func +truncf=func +truncl=func +umask=func +ungetc=func +ungetwc=func +unlink=func +user_from_uid=func +usleep=func +vfprintf=func +vfscanf=func +vfwprintf=func +vfwscanf=func +vprintf=func +vscanf=func +vsnprintf=func +vsprintf=func +vsscanf=func +vswprintf=func +vswscanf=func +vwprintf=func +vwscanf=func +wait=func +waitid=func +waitpid=func +warn=func +warnc=func +warnx=func +wcrtomb=func +wcscat=func +wcschr=func +wcscmp=func +wcscoll=func +wcscpy=func +wcscspn=func +wcsftime=func +wcslen=func +wcsncat=func +wcsncmp=func +wcsncpy=func +wcspbrk=func +wcsrchr=func +wcsrtombs=func +wcsspn=func +wcsstr=func +wcstod=func +wcstof=func +wcstoimax=func +wcstok=func +wcstol=func +wcstold=func +wcstoll=func +wcstombs=func +wcstoul=func +wcstoull=func +wcstoumax=func +wcsxfrm=func +wctob=func +wctomb=func +wctrans=func +wctype=func +wmemchr=func +wmemcmp=func +wmemcpy=func +wmemmove=func +wmemset=func +wprintf=func +write=func +wscanf=func +xmalloc=func + +/core/analysis/cc +amd64=cc +amd64syscall=cc +cc.amd64.arg0=rdi +cc.amd64.arg1=rsi +cc.amd64.arg10=xmm4 +cc.amd64.arg2=rdx +cc.amd64.arg3=rcx +cc.amd64.arg4=r8 +cc.amd64.arg5=r9 +cc.amd64.arg6=xmm0 +cc.amd64.arg7=xmm1 +cc.amd64.arg8=xmm2 +cc.amd64.arg9=xmm3 +cc.amd64.ret=rax +cc.amd64syscall.arg0=rdi +cc.amd64syscall.arg1=rsi +cc.amd64syscall.arg2=rdx +cc.amd64syscall.arg3=r10 +cc.amd64syscall.arg4=r8 +cc.amd64syscall.arg5=r9 +cc.amd64syscall.ret=rax +cc.ms.arg0=rcx +cc.ms.arg1=rdx +cc.ms.arg2=r8 +cc.ms.arg3=r9 +cc.ms.argn=stack +cc.ms.ret=rax +cc.reg.arg0=rdi +cc.reg.arg1=rsi +cc.reg.arg2=rdx +cc.reg.arg3=rcx +cc.reg.ret=rdi +cc.swift.arg0=rdi +cc.swift.arg1=rsi +cc.swift.arg10=xmm4 +cc.swift.arg2=rdx +cc.swift.arg3=rcx +cc.swift.arg4=r8 +cc.swift.arg5=r9 +cc.swift.arg6=xmm0 +cc.swift.arg7=xmm1 +cc.swift.arg8=xmm2 +cc.swift.arg9=xmm3 +cc.swift.error=r12 +cc.swift.ret=rax +cc.swift.self=r13 +default.cc=amd64 +ms=cc +reg=cc +swift=cc + +/core/analysis/classes + +/core/analysis/classes/attrs + +/core/analysis/functions + +/core/analysis/hints + +/core/analysis/imports + +/core/analysis/meta +0x1018=[{"type":"C","str":"[05] -r-- section size 1482 named .dynstr"}] +0x15e2=[{"type":"C","str":"[06] -r-- section size 262 named .gnu.version"}] +0x16784=[{"type":"C","str":"[11] -r-x section size 13 named .fini"}] +0x16e8=[{"type":"C","str":"[07] -r-- section size 112 named .gnu.version_r"}] +0x17000=[{"type":"C","str":"[12] -r-- section size 20745 named .rodata"}] +0x1758=[{"size":8,"type":"d","str":"8"},{"type":"C","str":"[08] -r-- section size 7464 named .rela.dyn"}] +0x1760=[{"size":8,"type":"d","str":"8"}] +0x1768=[{"size":8,"type":"d","str":"8"}] +0x176b8=[{"size":12,"type":"s","subtype":98,"str":"dev_ino_pop"}] +0x1770=[{"size":8,"type":"d","str":"8"}] +0x17748=[{"size":11,"type":"s","subtype":98,"str":"sort_files"}] +0x17753=[{"size":7,"type":"s","subtype":98,"str":"posix-"}] +0x1775a=[{"size":5,"type":"s","subtype":98,"str":"main"}] +0x1778=[{"size":8,"type":"d","str":"8"}] +0x1780=[{"size":8,"type":"d","str":"8"}] +0x17810=[{"size":11,"type":"s","subtype":98,"str":"?pcdb-lswd"}] +0x17820=[{"size":66,"type":"s","subtype":98,"str":"# Configuration file for dircolors, a utility to help you set the"}] +0x17862=[{"size":73,"type":"s","subtype":98,"str":"# LS_COLORS environment variable used by GNU ls with the --color option."}] +0x1788=[{"size":8,"type":"d","str":"8"}] +0x178ab=[{"size":57,"type":"s","subtype":98,"str":"# Copyright (C) 1996-2018 Free Software Foundation, Inc."}] +0x178e4=[{"size":71,"type":"s","subtype":98,"str":"# Copying and distribution of this file, with or without modification,"}] +0x1790=[{"size":8,"type":"d","str":"8"}] +0x1792b=[{"size":77,"type":"s","subtype":98,"str":"# are permitted provided the copyright notice and this notice are preserved."}] +0x17978=[{"size":60,"type":"s","subtype":98,"str":"# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the"}] +0x1798=[{"size":8,"type":"d","str":"8"}] +0x179b4=[{"size":62,"type":"s","subtype":98,"str":"# slackware version of dircolors) are recognized but ignored."}] +0x179f2=[{"size":65,"type":"s","subtype":98,"str":"# Below are TERM entries, which can be a glob patterns, to match"}] +0x17a0=[{"size":8,"type":"d","str":"8"}] +0x17a33=[{"size":75,"type":"s","subtype":98,"str":"# against the TERM environment variable to determine if it is colorizable."}] +0x17a7e=[{"size":11,"type":"s","subtype":98,"str":"TERM Eterm"}] +0x17a8=[{"size":8,"type":"d","str":"8"}] +0x17a89=[{"size":10,"type":"s","subtype":98,"str":"TERM ansi"}] +0x17a93=[{"size":13,"type":"s","subtype":98,"str":"TERM *color*"}] +0x17aa0=[{"size":22,"type":"s","subtype":98,"str":"TERM con[0-9]*x[0-9]*"}] +0x17ab6=[{"size":12,"type":"s","subtype":98,"str":"TERM cons25"}] +0x17ac2=[{"size":13,"type":"s","subtype":98,"str":"TERM console"}] +0x17acf=[{"size":12,"type":"s","subtype":98,"str":"TERM cygwin"}] +0x17adb=[{"size":12,"type":"s","subtype":98,"str":"TERM dtterm"}] +0x17ae7=[{"size":11,"type":"s","subtype":98,"str":"TERM gnome"}] +0x17af2=[{"size":10,"type":"s","subtype":98,"str":"TERM hurd"}] +0x17afc=[{"size":13,"type":"s","subtype":98,"str":"TERM jfbterm"}] +0x17b0=[{"size":8,"type":"d","str":"8"}] +0x17b09=[{"size":13,"type":"s","subtype":98,"str":"TERM konsole"}] +0x17b16=[{"size":11,"type":"s","subtype":98,"str":"TERM kterm"}] +0x17b21=[{"size":11,"type":"s","subtype":98,"str":"TERM linux"}] +0x17b2c=[{"size":13,"type":"s","subtype":98,"str":"TERM linux-c"}] +0x17b39=[{"size":12,"type":"s","subtype":98,"str":"TERM mlterm"}] +0x17b45=[{"size":11,"type":"s","subtype":98,"str":"TERM putty"}] +0x17b50=[{"size":11,"type":"s","subtype":98,"str":"TERM rxvt*"}] +0x17b5b=[{"size":13,"type":"s","subtype":98,"str":"TERM screen*"}] +0x17b68=[{"size":8,"type":"s","subtype":98,"str":"TERM st"}] +0x17b70=[{"size":16,"type":"s","subtype":98,"str":"TERM terminator"}] +0x17b8=[{"size":8,"type":"d","str":"8"}] +0x17b80=[{"size":11,"type":"s","subtype":98,"str":"TERM tmux*"}] +0x17b8b=[{"size":11,"type":"s","subtype":98,"str":"TERM vt100"}] +0x17b96=[{"size":12,"type":"s","subtype":98,"str":"TERM xterm*"}] +0x17ba2=[{"size":74,"type":"s","subtype":98,"str":"# Below are the color init strings for the basic file types. A color init"}] +0x17bec=[{"size":65,"type":"s","subtype":98,"str":"# string consists of one or more of the following numeric codes:"}] +0x17c0=[{"size":8,"type":"d","str":"8"}] +0x17c2d=[{"size":19,"type":"s","subtype":98,"str":"# Attribute codes:"}] +0x17c40=[{"size":65,"type":"s","subtype":98,"str":"# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed"}] +0x17c8=[{"size":8,"type":"d","str":"8"}] +0x17c81=[{"size":20,"type":"s","subtype":98,"str":"# Text color codes:"}] +0x17c95=[{"size":73,"type":"s","subtype":98,"str":"# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white"}] +0x17cde=[{"size":26,"type":"s","subtype":98,"str":"# Background color codes:"}] +0x17cf8=[{"size":73,"type":"s","subtype":98,"str":"# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white"}] +0x17d0=[{"size":8,"type":"d","str":"8"}] +0x17d41=[{"size":34,"type":"s","subtype":98,"str":"#NORMAL 00 # no color code at all"}] +0x17d63=[{"size":45,"type":"s","subtype":98,"str":"#FILE 00 # regular file: use no color at all"}] +0x17d8=[{"size":8,"type":"d","str":"8"}] +0x17d90=[{"size":34,"type":"s","subtype":98,"str":"RESET 0 # reset to \\"normal\\" color"}] +0x17db2=[{"size":22,"type":"s","subtype":98,"str":"DIR 01;34 # directory"}] +0x17dc8=[{"size":70,"type":"s","subtype":98,"str":"LINK 01;36 # symbolic link. (If you set this to 'target' instead of a"}] +0x17e0=[{"size":8,"type":"d","str":"8"}] +0x17e0e=[{"size":62,"type":"s","subtype":98,"str":" # numerical value, the color is as for the file pointed to.)"}] +0x17e4c=[{"size":56,"type":"s","subtype":98,"str":"MULTIHARDLINK 00 # regular file with more than one link"}] +0x17e8=[{"size":8,"type":"d","str":"8"}] +0x17e84=[{"size":18,"type":"s","subtype":98,"str":"FIFO 40;33 # pipe"}] +0x17e96=[{"size":20,"type":"s","subtype":98,"str":"SOCK 01;35 # socket"}] +0x17eaa=[{"size":18,"type":"s","subtype":98,"str":"DOOR 01;35 # door"}] +0x17ebc=[{"size":35,"type":"s","subtype":98,"str":"BLK 40;33;01 # block device driver"}] +0x17edf=[{"size":39,"type":"s","subtype":98,"str":"CHR 40;33;01 # character device driver"}] +0x17f0=[{"size":8,"type":"d","str":"8"}] +0x17f06=[{"size":73,"type":"s","subtype":98,"str":"ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file ..."}] +0x17f4f=[{"size":45,"type":"s","subtype":98,"str":"MISSING 00 # ... and the files they point to"}] +0x17f7c=[{"size":41,"type":"s","subtype":98,"str":"SETUID 37;41 # file that is setuid (u+s)"}] +0x17f8=[{"size":8,"type":"d","str":"8"}] +0x17fa5=[{"size":41,"type":"s","subtype":98,"str":"SETGID 30;43 # file that is setgid (g+s)"}] +0x17fce=[{"size":40,"type":"s","subtype":98,"str":"CAPABILITY 30;41 # file with capability"}] +0x17ff6=[{"size":77,"type":"s","subtype":98,"str":"STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)"}] +0x1800=[{"size":8,"type":"d","str":"8"}] +0x18043=[{"size":71,"type":"s","subtype":98,"str":"OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky"}] +0x1808=[{"size":8,"type":"d","str":"8"}] +0x1808a=[{"size":71,"type":"s","subtype":98,"str":"STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable"}] +0x180d1=[{"size":45,"type":"s","subtype":98,"str":"# This is for files with execute permission:"}] +0x180fe=[{"size":11,"type":"s","subtype":98,"str":"EXEC 01;32"}] +0x1810=[{"size":8,"type":"d","str":"8"}] +0x18109=[{"size":71,"type":"s","subtype":98,"str":"# List any file extensions like '.gz' or '.tar' that you would like ls"}] +0x18150=[{"size":76,"type":"s","subtype":98,"str":"# to colorize below. Put the extension, a space, and the color init string."}] +0x1818=[{"size":8,"type":"d","str":"8"}] +0x1819c=[{"size":49,"type":"s","subtype":98,"str":"# (and any comments you want to add after a '#')"}] +0x181cd=[{"size":74,"type":"s","subtype":98,"str":"# If you use DOS-style suffixes, you may want to uncomment the following:"}] +0x1820=[{"size":8,"type":"d","str":"8"}] +0x18217=[{"size":41,"type":"s","subtype":98,"str":"#.cmd 01;32 # executables (bright green)"}] +0x18240=[{"size":12,"type":"s","subtype":98,"str":"#.exe 01;32"}] +0x1824c=[{"size":12,"type":"s","subtype":98,"str":"#.com 01;32"}] +0x18258=[{"size":12,"type":"s","subtype":98,"str":"#.btm 01;32"}] +0x18264=[{"size":12,"type":"s","subtype":98,"str":"#.bat 01;32"}] +0x18270=[{"size":66,"type":"s","subtype":98,"str":"# Or if you want to colorize scripts even if they do not have the"}] +0x1828=[{"size":8,"type":"d","str":"8"}] +0x182b2=[{"size":31,"type":"s","subtype":98,"str":"# executable bit actually set."}] +0x182d1=[{"size":11,"type":"s","subtype":98,"str":"#.sh 01;32"}] +0x182dc=[{"size":12,"type":"s","subtype":98,"str":"#.csh 01;32"}] +0x182e8=[{"size":39,"type":"s","subtype":98,"str":" # archives or compressed (bright red)"}] +0x1830=[{"size":8,"type":"d","str":"8"}] +0x1830f=[{"size":11,"type":"s","subtype":98,"str":".tar 01;31"}] +0x1831a=[{"size":11,"type":"s","subtype":98,"str":".tgz 01;31"}] +0x18325=[{"size":11,"type":"s","subtype":98,"str":".arc 01;31"}] +0x18330=[{"size":11,"type":"s","subtype":98,"str":".arj 01;31"}] +0x1833b=[{"size":11,"type":"s","subtype":98,"str":".taz 01;31"}] +0x18346=[{"size":11,"type":"s","subtype":98,"str":".lha 01;31"}] +0x18351=[{"size":11,"type":"s","subtype":98,"str":".lz4 01;31"}] +0x1835c=[{"size":11,"type":"s","subtype":98,"str":".lzh 01;31"}] +0x18367=[{"size":12,"type":"s","subtype":98,"str":".lzma 01;31"}] +0x18373=[{"size":11,"type":"s","subtype":98,"str":".tlz 01;31"}] +0x1837e=[{"size":11,"type":"s","subtype":98,"str":".txz 01;31"}] +0x1838=[{"size":8,"type":"d","str":"8"}] +0x18389=[{"size":11,"type":"s","subtype":98,"str":".tzo 01;31"}] +0x18394=[{"size":11,"type":"s","subtype":98,"str":".t7z 01;31"}] +0x1839f=[{"size":11,"type":"s","subtype":98,"str":".zip 01;31"}] +0x183aa=[{"size":9,"type":"s","subtype":98,"str":".z 01;31"}] +0x183b3=[{"size":10,"type":"s","subtype":98,"str":".dz 01;31"}] +0x183bd=[{"size":10,"type":"s","subtype":98,"str":".gz 01;31"}] +0x183c7=[{"size":11,"type":"s","subtype":98,"str":".lrz 01;31"}] +0x183d2=[{"size":10,"type":"s","subtype":98,"str":".lz 01;31"}] +0x183dc=[{"size":11,"type":"s","subtype":98,"str":".lzo 01;31"}] +0x183e7=[{"size":10,"type":"s","subtype":98,"str":".xz 01;31"}] +0x183f1=[{"size":11,"type":"s","subtype":98,"str":".zst 01;31"}] +0x183fc=[{"size":12,"type":"s","subtype":98,"str":".tzst 01;31"}] +0x1840=[{"size":8,"type":"d","str":"8"}] +0x18408=[{"size":11,"type":"s","subtype":98,"str":".bz2 01;31"}] +0x18413=[{"size":10,"type":"s","subtype":98,"str":".bz 01;31"}] +0x1841d=[{"size":11,"type":"s","subtype":98,"str":".tbz 01;31"}] +0x18428=[{"size":12,"type":"s","subtype":98,"str":".tbz2 01;31"}] +0x18434=[{"size":10,"type":"s","subtype":98,"str":".tz 01;31"}] +0x1843e=[{"size":11,"type":"s","subtype":98,"str":".deb 01;31"}] +0x18449=[{"size":11,"type":"s","subtype":98,"str":".rpm 01;31"}] +0x18454=[{"size":11,"type":"s","subtype":98,"str":".jar 01;31"}] +0x1845f=[{"size":11,"type":"s","subtype":98,"str":".war 01;31"}] +0x1846a=[{"size":11,"type":"s","subtype":98,"str":".ear 01;31"}] +0x18475=[{"size":11,"type":"s","subtype":98,"str":".sar 01;31"}] +0x1848=[{"size":8,"type":"d","str":"8"}] +0x18480=[{"size":11,"type":"s","subtype":98,"str":".rar 01;31"}] +0x1848b=[{"size":11,"type":"s","subtype":98,"str":".alz 01;31"}] +0x18496=[{"size":11,"type":"s","subtype":98,"str":".ace 01;31"}] +0x184a1=[{"size":11,"type":"s","subtype":98,"str":".zoo 01;31"}] +0x184ac=[{"size":12,"type":"s","subtype":98,"str":".cpio 01;31"}] +0x184b8=[{"size":10,"type":"s","subtype":98,"str":".7z 01;31"}] +0x184c2=[{"size":10,"type":"s","subtype":98,"str":".rz 01;31"}] +0x184cc=[{"size":11,"type":"s","subtype":98,"str":".cab 01;31"}] +0x184d7=[{"size":11,"type":"s","subtype":98,"str":".wim 01;31"}] +0x184e2=[{"size":11,"type":"s","subtype":98,"str":".swm 01;31"}] +0x184ed=[{"size":11,"type":"s","subtype":98,"str":".dwm 01;31"}] +0x184f8=[{"size":11,"type":"s","subtype":98,"str":".esd 01;31"}] +0x1850=[{"size":8,"type":"d","str":"8"}] +0x18503=[{"size":16,"type":"s","subtype":98,"str":"# image formats"}] +0x18513=[{"size":11,"type":"s","subtype":98,"str":".jpg 01;35"}] +0x1851e=[{"size":12,"type":"s","subtype":98,"str":".jpeg 01;35"}] +0x1852a=[{"size":12,"type":"s","subtype":98,"str":".mjpg 01;35"}] +0x18536=[{"size":13,"type":"s","subtype":98,"str":".mjpeg 01;35"}] +0x18543=[{"size":11,"type":"s","subtype":98,"str":".gif 01;35"}] +0x1854e=[{"size":11,"type":"s","subtype":98,"str":".bmp 01;35"}] +0x18559=[{"size":11,"type":"s","subtype":98,"str":".pbm 01;35"}] +0x18564=[{"size":11,"type":"s","subtype":98,"str":".pgm 01;35"}] +0x1856f=[{"size":11,"type":"s","subtype":98,"str":".ppm 01;35"}] +0x1857a=[{"size":11,"type":"s","subtype":98,"str":".tga 01;35"}] +0x1858=[{"size":8,"type":"d","str":"8"}] +0x18585=[{"size":11,"type":"s","subtype":98,"str":".xbm 01;35"}] +0x18590=[{"size":11,"type":"s","subtype":98,"str":".xpm 01;35"}] +0x1859b=[{"size":11,"type":"s","subtype":98,"str":".tif 01;35"}] +0x185a6=[{"size":12,"type":"s","subtype":98,"str":".tiff 01;35"}] +0x185b2=[{"size":11,"type":"s","subtype":98,"str":".png 01;35"}] +0x185bd=[{"size":11,"type":"s","subtype":98,"str":".svg 01;35"}] +0x185c8=[{"size":12,"type":"s","subtype":98,"str":".svgz 01;35"}] +0x185d4=[{"size":11,"type":"s","subtype":98,"str":".mng 01;35"}] +0x185df=[{"size":11,"type":"s","subtype":98,"str":".pcx 01;35"}] +0x185ea=[{"size":11,"type":"s","subtype":98,"str":".mov 01;35"}] +0x185f5=[{"size":11,"type":"s","subtype":98,"str":".mpg 01;35"}] +0x1860=[{"size":8,"type":"d","str":"8"}] +0x18600=[{"size":12,"type":"s","subtype":98,"str":".mpeg 01;35"}] +0x1860c=[{"size":11,"type":"s","subtype":98,"str":".m2v 01;35"}] +0x18617=[{"size":11,"type":"s","subtype":98,"str":".mkv 01;35"}] +0x18622=[{"size":12,"type":"s","subtype":98,"str":".webm 01;35"}] +0x1862e=[{"size":11,"type":"s","subtype":98,"str":".ogm 01;35"}] +0x18639=[{"size":11,"type":"s","subtype":98,"str":".mp4 01;35"}] +0x18644=[{"size":11,"type":"s","subtype":98,"str":".m4v 01;35"}] +0x1864f=[{"size":12,"type":"s","subtype":98,"str":".mp4v 01;35"}] +0x1865b=[{"size":11,"type":"s","subtype":98,"str":".vob 01;35"}] +0x18666=[{"size":10,"type":"s","subtype":98,"str":".qt 01;35"}] +0x18670=[{"size":11,"type":"s","subtype":98,"str":".nuv 01;35"}] +0x1867b=[{"size":11,"type":"s","subtype":98,"str":".wmv 01;35"}] +0x1868=[{"size":8,"type":"d","str":"8"}] +0x18686=[{"size":11,"type":"s","subtype":98,"str":".asf 01;35"}] +0x18691=[{"size":10,"type":"s","subtype":98,"str":".rm 01;35"}] +0x1869b=[{"size":12,"type":"s","subtype":98,"str":".rmvb 01;35"}] +0x186a7=[{"size":11,"type":"s","subtype":98,"str":".flc 01;35"}] +0x186b2=[{"size":11,"type":"s","subtype":98,"str":".avi 01;35"}] +0x186bd=[{"size":11,"type":"s","subtype":98,"str":".fli 01;35"}] +0x186c8=[{"size":11,"type":"s","subtype":98,"str":".flv 01;35"}] +0x186d3=[{"size":10,"type":"s","subtype":98,"str":".gl 01;35"}] +0x186dd=[{"size":10,"type":"s","subtype":98,"str":".dl 01;35"}] +0x186e7=[{"size":11,"type":"s","subtype":98,"str":".xcf 01;35"}] +0x186f2=[{"size":11,"type":"s","subtype":98,"str":".xwd 01;35"}] +0x186fd=[{"size":11,"type":"s","subtype":98,"str":".yuv 01;35"}] +0x1870=[{"size":8,"type":"d","str":"8"}] +0x18708=[{"size":11,"type":"s","subtype":98,"str":".cgm 01;35"}] +0x18713=[{"size":11,"type":"s","subtype":98,"str":".emf 01;35"}] +0x1871e=[{"size":55,"type":"s","subtype":98,"str":"# https://wiki.xiph.org/MIME_Types_and_File_Extensions"}] +0x18755=[{"size":11,"type":"s","subtype":98,"str":".ogv 01;35"}] +0x18760=[{"size":11,"type":"s","subtype":98,"str":".ogx 01;35"}] +0x1876b=[{"size":16,"type":"s","subtype":98,"str":"# audio formats"}] +0x1877b=[{"size":11,"type":"s","subtype":98,"str":".aac 00;36"}] +0x1878=[{"size":8,"type":"d","str":"8"}] +0x18786=[{"size":10,"type":"s","subtype":98,"str":".au 00;36"}] +0x18790=[{"size":12,"type":"s","subtype":98,"str":".flac 00;36"}] +0x1879c=[{"size":11,"type":"s","subtype":98,"str":".m4a 00;36"}] +0x187a7=[{"size":11,"type":"s","subtype":98,"str":".mid 00;36"}] +0x187b2=[{"size":12,"type":"s","subtype":98,"str":".midi 00;36"}] +0x187be=[{"size":11,"type":"s","subtype":98,"str":".mka 00;36"}] +0x187c9=[{"size":11,"type":"s","subtype":98,"str":".mp3 00;36"}] +0x187d4=[{"size":11,"type":"s","subtype":98,"str":".mpc 00;36"}] +0x187df=[{"size":11,"type":"s","subtype":98,"str":".ogg 00;36"}] +0x187ea=[{"size":10,"type":"s","subtype":98,"str":".ra 00;36"}] +0x187f4=[{"size":11,"type":"s","subtype":98,"str":".wav 00;36"}] +0x187ff=[{"size":55,"type":"s","subtype":98,"str":"# https://wiki.xiph.org/MIME_Types_and_File_Extensions"}] +0x1880=[{"size":8,"type":"d","str":"8"}] +0x18836=[{"size":11,"type":"s","subtype":98,"str":".oga 00;36"}] +0x18841=[{"size":12,"type":"s","subtype":98,"str":".opus 00;36"}] +0x1884d=[{"size":11,"type":"s","subtype":98,"str":".spx 00;36"}] +0x18858=[{"size":12,"type":"s","subtype":98,"str":".xspf 00;36"}] +0x18867=[{"size":9,"type":"s","subtype":98,"str":"%.*s%s%s"}] +0x18870=[{"size":7,"type":"s","subtype":98,"str":"%%%02x"}] +0x18877=[{"size":9,"type":"s","subtype":98,"str":"src/ls.c"}] +0x1888=[{"size":8,"type":"d","str":"8"}] +0x18880=[{"size":26,"type":"s","subtype":98,"str":"sort_type != sort_version"}] +0x1889a=[{"size":5,"type":"s","subtype":98,"str":" %lu"}] +0x1889f=[{"size":6,"type":"s","subtype":98,"str":"%*lu "}] +0x188a7=[{"size":20,"type":"s","subtype":98,"str":"\\u001b]8;;file://%s%s%s\\u0007"}] +0x188bb=[{"size":7,"type":"s","subtype":98,"str":"\\u001b]8;;\\u0007"}] +0x188c2=[{"size":8,"type":"s","subtype":98,"str":"%s %*s "}] +0x188cd=[{"size":10,"type":"s","subtype":98,"str":"%*s, %*s "}] +0x188d7=[{"size":5,"type":"s","subtype":98,"str":" -> "}] +0x188dc=[{"size":24,"type":"s","subtype":98,"str":"error canonicalizing %s"}] +0x188f4=[{"size":17,"type":"s","subtype":98,"str":"cannot access %s"}] +0x1890=[{"size":8,"type":"d","str":"8"}] +0x18905=[{"size":29,"type":"s","subtype":98,"str":"cannot read symbolic link %s"}] +0x18922=[{"size":25,"type":"s","subtype":98,"str":"cannot open directory %s"}] +0x1893b=[{"size":21,"type":"s","subtype":98,"str":"reading directory %s"}] +0x18950=[{"size":21,"type":"s","subtype":98,"str":"closing directory %s"}] +0x18965=[{"size":6,"type":"s","subtype":98,"str":"total"}] +0x1896b=[{"size":5,"type":"s","subtype":98,"str":"vdir"}] +0x18970=[{"size":16,"type":"s","subtype":98,"str":"test invocation"}] +0x1898=[{"size":8,"type":"d","str":"8"}] +0x18980=[{"size":22,"type":"s","subtype":98,"str":"Multi-call invocation"}] +0x18996=[{"size":10,"type":"s","subtype":98,"str":"sha224sum"}] +0x189a0=[{"size":15,"type":"s","subtype":98,"str":"sha2 utilities"}] +0x189af=[{"size":10,"type":"s","subtype":98,"str":"sha256sum"}] +0x189b9=[{"size":10,"type":"s","subtype":98,"str":"sha384sum"}] +0x189c3=[{"size":10,"type":"s","subtype":98,"str":"sha512sum"}] +0x189cd=[{"size":23,"type":"s","subtype":98,"str":"\\n%s online help: <%s>\\n"}] +0x189e4=[{"size":14,"type":"s","subtype":98,"str":"GNU coreutils"}] +0x189f6=[{"size":9,"type":"s","subtype":98,"str":"full-iso"}] +0x18a0=[{"size":8,"type":"d","str":"8"}] +0x18a02=[{"size":18,"type":"s","subtype":98,"str":"/usr/share/locale"}] +0x18a14=[{"size":14,"type":"s","subtype":98,"str":"QUOTING_STYLE"}] +0x18a22=[{"size":8,"type":"s","subtype":98,"str":"COLUMNS"}] +0x18a2a=[{"size":8,"type":"s","subtype":98,"str":"TABSIZE"}] +0x18a32=[{"size":19,"type":"s","subtype":98,"str":"invalid line width"}] +0x18a45=[{"size":7,"type":"s","subtype":98,"str":"%s: %s"}] +0x18a50=[{"size":17,"type":"s","subtype":98,"str":"invalid tab size"}] +0x18a61=[{"size":7,"type":"s","subtype":98,"str":"--sort"}] +0x18a68=[{"size":7,"type":"s","subtype":98,"str":"--time"}] +0x18a6f=[{"size":9,"type":"s","subtype":98,"str":"--format"}] +0x18a78=[{"size":8,"type":"s","subtype":98,"str":"--color"}] +0x18a8=[{"size":8,"type":"d","str":"8"}] +0x18a80=[{"size":12,"type":"s","subtype":98,"str":"--hyperlink"}] +0x18a8c=[{"size":18,"type":"s","subtype":98,"str":"--indicator-style"}] +0x18a9e=[{"size":16,"type":"s","subtype":98,"str":"--quoting-style"}] +0x18aae=[{"size":16,"type":"s","subtype":98,"str":"David MacKenzie"}] +0x18abe=[{"size":20,"type":"s","subtype":98,"str":"Richard M. Stallman"}] +0x18ad2=[{"size":14,"type":"s","subtype":98,"str":"LS_BLOCK_SIZE"}] +0x18ae0=[{"size":6,"type":"s","subtype":98,"str":"*=>@|"}] +0x18ae6=[{"size":11,"type":"s","subtype":98,"str":"TIME_STYLE"}] +0x18af1=[{"size":29,"type":"s","subtype":98,"str":"invalid time style format %s"}] +0x18b0=[{"size":8,"type":"d","str":"8"}] +0x18b0e=[{"size":11,"type":"s","subtype":98,"str":"time style"}] +0x18b19=[{"size":22,"type":"s","subtype":98,"str":"Valid arguments are:\\n"}] +0x18b2f=[{"size":16,"type":"s","subtype":98,"str":" - [posix-]%s\\n"}] +0x18b3f=[{"size":24,"type":"s","subtype":98,"str":"%Y-%m-%d %H:%M:%S.%N %z"}] +0x18b57=[{"size":15,"type":"s","subtype":98,"str":"%Y-%m-%d %H:%M"}] +0x18b66=[{"size":10,"type":"s","subtype":98,"str":"%Y-%m-%d "}] +0x18b70=[{"size":10,"type":"s","subtype":98,"str":"LS_COLORS"}] +0x18b7a=[{"size":10,"type":"s","subtype":98,"str":"COLORTERM"}] +0x18b8=[{"size":8,"type":"d","str":"8"}] +0x18b84=[{"size":6,"type":"s","subtype":98,"str":"TERM "}] +0x18b8a=[{"size":24,"type":"s","subtype":98,"str":"unrecognized prefix: %s"}] +0x18ba2=[{"size":7,"type":"s","subtype":98,"str":"target"}] +0x18bac=[{"size":6,"type":"s","subtype":98,"str":"found"}] +0x18bb2=[{"size":10,"type":"s","subtype":98,"str":"//DIRED//"}] +0x18bbc=[{"size":13,"type":"s","subtype":98,"str":"//SUBDIRED//"}] +0x18bcd=[{"size":6,"type":"s","subtype":98,"str":"force"}] +0x18bd3=[{"size":6,"type":"s","subtype":98,"str":"never"}] +0x18bdc=[{"size":5,"type":"s","subtype":98,"str":"none"}] +0x18be1=[{"size":5,"type":"s","subtype":98,"str":"auto"}] +0x18be6=[{"size":7,"type":"s","subtype":98,"str":"if-tty"}] +0x18bed=[{"size":6,"type":"s","subtype":98,"str":"atime"}] +0x18bf7=[{"size":6,"type":"s","subtype":98,"str":"ctime"}] +0x18bfd=[{"size":7,"type":"s","subtype":98,"str":"status"}] +0x18c0=[{"size":8,"type":"d","str":"8"}] +0x18c04=[{"size":10,"type":"s","subtype":98,"str":"extension"}] +0x18c0e=[{"size":8,"type":"s","subtype":98,"str":"verbose"}] +0x18c16=[{"size":5,"type":"s","subtype":98,"str":"long"}] +0x18c1b=[{"size":7,"type":"s","subtype":98,"str":"commas"}] +0x18c22=[{"size":11,"type":"s","subtype":98,"str":"horizontal"}] +0x18c2d=[{"size":7,"type":"s","subtype":98,"str":"across"}] +0x18c34=[{"size":9,"type":"s","subtype":98,"str":"vertical"}] +0x18c3d=[{"size":14,"type":"s","subtype":98,"str":"single-column"}] +0x18c4b=[{"size":10,"type":"s","subtype":98,"str":"directory"}] +0x18c55=[{"size":6,"type":"s","subtype":98,"str":"dired"}] +0x18c5b=[{"size":10,"type":"s","subtype":98,"str":"full-time"}] +0x18c65=[{"size":24,"type":"s","subtype":98,"str":"group-directories-first"}] +0x18c7d=[{"size":15,"type":"s","subtype":98,"str":"human-readable"}] +0x18c8=[{"size":8,"type":"d","str":"8"}] +0x18c8c=[{"size":6,"type":"s","subtype":98,"str":"inode"}] +0x18c92=[{"size":10,"type":"s","subtype":98,"str":"kibibytes"}] +0x18c9c=[{"size":16,"type":"s","subtype":98,"str":"numeric-uid-gid"}] +0x18cac=[{"size":9,"type":"s","subtype":98,"str":"no-group"}] +0x18cb5=[{"size":19,"type":"s","subtype":98,"str":"hide-control-chars"}] +0x18cc8=[{"size":8,"type":"s","subtype":98,"str":"reverse"}] +0x18cd0=[{"size":11,"type":"s","subtype":98,"str":"almost-all"}] +0x18cdb=[{"size":15,"type":"s","subtype":98,"str":"ignore-backups"}] +0x18cea=[{"size":9,"type":"s","subtype":98,"str":"classify"}] +0x18cf3=[{"size":10,"type":"s","subtype":98,"str":"file-type"}] +0x18d0=[{"size":8,"type":"d","str":"8"}] +0x18d00=[{"size":25,"type":"s","subtype":98,"str":"dereference-command-line"}] +0x18d19=[{"size":5,"type":"s","subtype":98,"str":"hide"}] +0x18d1e=[{"size":7,"type":"s","subtype":98,"str":"ignore"}] +0x18d25=[{"size":12,"type":"s","subtype":98,"str":"dereference"}] +0x18d31=[{"size":8,"type":"s","subtype":98,"str":"literal"}] +0x18d39=[{"size":11,"type":"s","subtype":98,"str":"quote-name"}] +0x18d44=[{"size":10,"type":"s","subtype":98,"str":"recursive"}] +0x18d4e=[{"size":19,"type":"s","subtype":98,"str":"show-control-chars"}] +0x18d61=[{"size":8,"type":"s","subtype":98,"str":"tabsize"}] +0x18d69=[{"size":11,"type":"s","subtype":98,"str":"time-style"}] +0x18d74=[{"size":11,"type":"s","subtype":98,"str":"block-size"}] +0x18d7f=[{"size":8,"type":"s","subtype":98,"str":"context"}] +0x18d8=[{"size":8,"type":"d","str":"8"}] +0x18d87=[{"size":7,"type":"s","subtype":98,"str":"author"}] +0x18d8e=[{"size":5,"type":"s","subtype":98,"str":"help"}] +0x18d93=[{"size":10,"type":"s","subtype":98,"str":"%b %e %Y"}] +0x18d9d=[{"size":12,"type":"s","subtype":98,"str":"%b %e %H:%M"}] +0x18dac=[{"size":6,"type":"s","subtype":98,"str":"01;34"}] +0x18db2=[{"size":6,"type":"s","subtype":98,"str":"01;36"}] +0x18db8=[{"size":6,"type":"s","subtype":98,"str":"01;35"}] +0x18dbe=[{"size":6,"type":"s","subtype":98,"str":"01;33"}] +0x18dc4=[{"size":6,"type":"s","subtype":98,"str":"01;32"}] +0x18dca=[{"size":6,"type":"s","subtype":98,"str":"37;41"}] +0x18dd0=[{"size":6,"type":"s","subtype":98,"str":"30;43"}] +0x18dd6=[{"size":6,"type":"s","subtype":98,"str":"37;44"}] +0x18ddc=[{"size":6,"type":"s","subtype":98,"str":"34;42"}] +0x18de2=[{"size":6,"type":"s","subtype":98,"str":"30;42"}] +0x18de8=[{"size":6,"type":"s","subtype":98,"str":"30;41"}] +0x18e0=[{"size":8,"type":"d","str":"8"}] +0x18e28=[{"size":6,"type":"s","subtype":98,"str":"slash"}] +0x18e2e=[{"size":9,"type":"s","subtype":98,"str":"long-iso"}] +0x18e38=[{"size":40,"type":"s","subtype":98,"str":"cannot determine device and inode of %s"}] +0x18e60=[{"size":41,"type":"s","subtype":98,"str":"%s: not listing already-listed directory"}] +0x18e8=[{"size":8,"type":"d","str":"8"}] +0x18e90=[{"size":39,"type":"s","subtype":98,"str":"Try '%s --help' for more information.\\n"}] +0x18eb8=[{"size":33,"type":"s","subtype":98,"str":"Usage: %s [OPTION]... [FILE]...\\n"}] +0x18ee0=[{"size":144,"type":"s","subtype":98,"str":"List information about the FILEs (the current directory by default).\\nSort entries alphabetically if none of -cftuvSUX nor --sort is specified.\\n"}] +0x18f0=[{"size":8,"type":"d","str":"8"}] +0x18f70=[{"size":75,"type":"s","subtype":98,"str":"\\nMandatory arguments to long options are mandatory for short options too.\\n"}] +0x18f8=[{"size":8,"type":"d","str":"8"}] +0x18fc0=[{"size":271,"type":"s","subtype":98,"str":" -a, --all do not ignore entries starting with .\\n -A, --almost-all do not list implied . and ..\\n --author with -l, print the author of each file\\n -b, --escape print C-style escapes for nongraphic characters\\n"}] +0x1900=[{"size":8,"type":"d","str":"8"}] +0x1908=[{"size":8,"type":"d","str":"8"}] +0x190d0=[{"size":156,"type":"s","subtype":98,"str":" --block-size=SIZE with -l, scale sizes by SIZE when printing them;\\n e.g., '--block-size=M'; see SIZE format below\\n"}] +0x1910=[{"size":8,"type":"d","str":"8"}] +0x19170=[{"size":362,"type":"s","subtype":98,"str":" -B, --ignore-backups do not list implied entries ending with ~\\n -c with -lt: sort by, and show, ctime (time of last\\n modification of file status information);\\n with -l: show ctime and sort by name;\\n otherwise: sort by ctime, newest first\\n"}] +0x1918=[{"size":8,"type":"d","str":"8"}] +0x1920=[{"size":8,"type":"d","str":"8"}] +0x1928=[{"size":8,"type":"d","str":"8"}] +0x192e0=[{"size":367,"type":"s","subtype":98,"str":" -C list entries by columns\\n --color[=WHEN] colorize the output; WHEN can be 'always' (default\\n if omitted), 'auto', or 'never'; more info below\\n -d, --directory list directories themselves, not their contents\\n -D, --dired generate output designed for Emacs' dired mode\\n"}] +0x1930=[{"size":8,"type":"d","str":"8"}] +0x1938=[{"size":8,"type":"d","str":"8"}] +0x1940=[{"size":8,"type":"d","str":"8"}] +0x19450=[{"size":419,"type":"s","subtype":98,"str":" -f do not sort, enable -aU, disable -ls --color\\n -F, --classify append indicator (one of */=>@|) to entries\\n --file-type likewise, except do not append '*'\\n --format=WORD across -x, commas -m, horizontal -x, long -l,\\n single-column -1, verbose -l, vertical -C\\n --full-time like -l --time-style=full-iso\\n"}] +0x1948=[{"size":8,"type":"d","str":"8"}] +0x1950=[{"size":8,"type":"d","str":"8"}] +0x1958=[{"size":8,"type":"d","str":"8"}] +0x195f8=[{"size":61,"type":"s","subtype":98,"str":" -g like -l, but do not list owner\\n"}] +0x1960=[{"size":8,"type":"d","str":"8"}] +0x19638=[{"size":245,"type":"s","subtype":98,"str":" --group-directories-first\\n group directories before files;\\n can be augmented with a --sort option, but any\\n use of --sort=none (-U) disables grouping\\n"}] +0x1968=[{"size":8,"type":"d","str":"8"}] +0x1970=[{"size":8,"type":"d","str":"8"}] +0x19730=[{"size":73,"type":"s","subtype":98,"str":" -G, --no-group in a long listing, don't print group names\\n"}] +0x1978=[{"size":8,"type":"d","str":"8"}] +0x19780=[{"size":150,"type":"s","subtype":98,"str":" -h, --human-readable with -l and -s, print sizes like 1K 234M 2G etc.\\n --si likewise, but use powers of 1000 not 1024\\n"}] +0x1980=[{"size":8,"type":"d","str":"8"}] +0x19818=[{"size":422,"type":"s","subtype":98,"str":" -H, --dereference-command-line\\n follow symbolic links listed on the command line\\n --dereference-command-line-symlink-to-dir\\n follow each command line symbolic link\\n that points to a directory\\n --hide=PATTERN do not list implied entries matching shell PATTERN\\n (overridden by -a or -A)\\n"}] +0x1988=[{"size":8,"type":"d","str":"8"}] +0x1990=[{"size":8,"type":"d","str":"8"}] +0x1998=[{"size":8,"type":"d","str":"8"}] +0x199c0=[{"size":145,"type":"s","subtype":98,"str":" --hyperlink[=WHEN] hyperlink file names; WHEN can be 'always'\\n (default if omitted), 'auto', or 'never'\\n"}] +0x19a0=[{"size":8,"type":"d","str":"8"}] +0x19a58=[{"size":354,"type":"s","subtype":98,"str":" --indicator-style=WORD append indicator with style WORD to entry names:\\n none (default), slash (-p),\\n file-type (--file-type), classify (-F)\\n -i, --inode print the index number of each file\\n -I, --ignore=PATTERN do not list implied entries matching shell PATTERN\\n"}] +0x19a8=[{"size":8,"type":"d","str":"8"}] +0x19b0=[{"size":8,"type":"d","str":"8"}] +0x19b8=[{"size":8,"type":"d","str":"8"}] +0x19bc0=[{"size":148,"type":"s","subtype":98,"str":" -k, --kibibytes default to 1024-byte blocks for disk usage;\\n used only with -s and per directory totals\\n"}] +0x19c0=[{"size":8,"type":"d","str":"8"}] +0x19c58=[{"size":359,"type":"s","subtype":98,"str":" -l use a long listing format\\n -L, --dereference when showing file information for a symbolic\\n link, show information for the file the link\\n references rather than for the link itself\\n -m fill width with a comma separated list of entries\\n"}] +0x19c8=[{"size":8,"type":"d","str":"8"}] +0x19d0=[{"size":8,"type":"d","str":"8"}] +0x19d8=[{"size":8,"type":"d","str":"8"}] +0x19dc0=[{"size":303,"type":"s","subtype":98,"str":" -n, --numeric-uid-gid like -l, but list numeric user and group IDs\\n -N, --literal print entry names without quoting\\n -o like -l, but do not list group information\\n -p, --indicator-style=slash\\n append / indicator to directories\\n"}] +0x19e0=[{"size":8,"type":"d","str":"8"}] +0x19e8=[{"size":8,"type":"d","str":"8"}] +0x19ef0=[{"size":585,"type":"s","subtype":98,"str":" -q, --hide-control-chars print ? instead of nongraphic characters\\n --show-control-chars show nongraphic characters as-is (the default,\\n unless program is 'ls' and output is a terminal)\\n -Q, --quote-name enclose entry names in double quotes\\n --quoting-style=WORD use quoting style WORD for entry names:\\n literal, locale, shell, shell-always,\\n shell-escape, shell-escape-always, c, escape\\n (overrides QUOTING_STYLE environment variable)\\n"}] +0x19f0=[{"size":8,"type":"d","str":"8"}] +0x19f8=[{"size":8,"type":"d","str":"8"}] +0x1a00=[{"size":8,"type":"d","str":"8"}] +0x1a08=[{"size":8,"type":"d","str":"8"}] +0x1a10=[{"size":8,"type":"d","str":"8"}] +0x1a140=[{"size":197,"type":"s","subtype":98,"str":" -r, --reverse reverse order while sorting\\n -R, --recursive list subdirectories recursively\\n -s, --size print the allocated size of each file, in blocks\\n"}] +0x1a18=[{"size":8,"type":"d","str":"8"}] +0x1a20=[{"size":8,"type":"d","str":"8"}] +0x1a208=[{"size":519,"type":"s","subtype":98,"str":" -S sort by file size, largest first\\n --sort=WORD sort by WORD instead of name: none (-U), size (-S),\\n time (-t), version (-v), extension (-X)\\n --time=WORD with -l, show time as WORD instead of default\\n modification time: atime or access or use (-u);\\n ctime or status (-c); also use specified time\\n as sort key if --sort=time (newest first)\\n"}] +0x1a28=[{"size":8,"type":"d","str":"8"}] +0x1a30=[{"size":8,"type":"d","str":"8"}] +0x1a38=[{"size":8,"type":"d","str":"8"}] +0x1a40=[{"size":8,"type":"d","str":"8"}] +0x1a410=[{"size":79,"type":"s","subtype":98,"str":" --time-style=TIME_STYLE time/date format with -l; see TIME_STYLE below\\n"}] +0x1a460=[{"size":142,"type":"s","subtype":98,"str":" -t sort by modification time, newest first\\n -T, --tabsize=COLS assume tab stops at each COLS instead of 8\\n"}] +0x1a48=[{"size":8,"type":"d","str":"8"}] +0x1a4f0=[{"size":372,"type":"s","subtype":98,"str":" -u with -lt: sort by, and show, access time;\\n with -l: show access time and sort by name;\\n otherwise: sort by access time, newest first\\n -U do not sort; list entries in directory order\\n -v natural sort of (version) numbers within text\\n"}] +0x1a50=[{"size":8,"type":"d","str":"8"}] +0x1a58=[{"size":8,"type":"d","str":"8"}] +0x1a60=[{"size":8,"type":"d","str":"8"}] +0x1a668=[{"size":363,"type":"s","subtype":98,"str":" -w, --width=COLS set output width to COLS. 0 means no limit\\n -x list entries by lines instead of by columns\\n -X sort alphabetically by entry extension\\n -Z, --context print any security context of each file\\n -1 list one file per line. Avoid '\\\\n' with -q or -b\\n"}] +0x1a68=[{"size":8,"type":"d","str":"8"}] +0x1a70=[{"size":8,"type":"d","str":"8"}] +0x1a78=[{"size":8,"type":"d","str":"8"}] +0x1a7d8=[{"size":45,"type":"s","subtype":98,"str":" --help display this help and exit\\n"}] +0x1a80=[{"size":8,"type":"d","str":"8"}] +0x1a808=[{"size":54,"type":"s","subtype":98,"str":" --version output version information and exit\\n"}] +0x1a840=[{"size":153,"type":"s","subtype":98,"str":"\\nThe SIZE argument is an integer and optional unit (example: 10K is 10*1024).\\nUnits are K,M,G,T,P,E,Z,Y (powers of 1024) or KB,MB,... (powers of 1000).\\n"}] +0x1a88=[{"size":8,"type":"d","str":"8"}] +0x1a8e0=[{"size":376,"type":"s","subtype":98,"str":"\\nThe TIME_STYLE argument can be full-iso, long-iso, iso, locale, or +FORMAT.\\nFORMAT is interpreted like in date(1). If FORMAT is FORMAT1FORMAT2,\\nthen FORMAT1 applies to non-recent files and FORMAT2 to recent files.\\nTIME_STYLE prefixed with 'posix-' takes effect only outside the POSIX locale.\\nAlso the TIME_STYLE environment variable sets the default style to use.\\n"}] +0x1a90=[{"size":8,"type":"d","str":"8"}] +0x1a98=[{"size":8,"type":"d","str":"8"}] +0x1aa0=[{"size":8,"type":"d","str":"8"}] +0x1aa58=[{"size":286,"type":"s","subtype":98,"str":"\\nUsing color to distinguish file types is disabled both by default and\\nwith --color=never. With --color=auto, ls emits color codes only when\\nstandard output is connected to a terminal. The LS_COLORS environment\\nvariable can change the settings. Use the dircolors command to set it.\\n"}] +0x1aa8=[{"size":8,"type":"d","str":"8"}] +0x1ab0=[{"size":8,"type":"d","str":"8"}] +0x1ab78=[{"size":152,"type":"s","subtype":98,"str":"\\nExit status:\\n 0 if OK,\\n 1 if minor problems (e.g., cannot access subdirectory),\\n 2 if serious trouble (e.g., cannot access command-line argument).\\n"}] +0x1ab8=[{"size":8,"type":"d","str":"8"}] +0x1ac0=[{"size":8,"type":"d","str":"8"}] +0x1ac10=[{"size":40,"type":"s","subtype":98,"str":"https://www.gnu.org/software/coreutils/"}] +0x1ac38=[{"size":70,"type":"s","subtype":98,"str":"Report %s translation bugs to \\n"}] +0x1ac8=[{"size":8,"type":"d","str":"8"}] +0x1ac80=[{"size":31,"type":"s","subtype":98,"str":"Full documentation at: <%s%s>\\n"}] +0x1aca0=[{"size":51,"type":"s","subtype":98,"str":"or available locally via: info '(coreutils) %s%s'\\n"}] +0x1acd8=[{"size":65,"type":"s","subtype":98,"str":"ignoring invalid value of environment variable QUOTING_STYLE: %s"}] +0x1ad0=[{"size":8,"type":"d","str":"8"}] +0x1ad20=[{"size":59,"type":"s","subtype":98,"str":"ignoring invalid width in environment variable COLUMNS: %s"}] +0x1ad60=[{"size":62,"type":"s","subtype":98,"str":"ignoring invalid tab size in environment variable TABSIZE: %s"}] +0x1ad8=[{"size":8,"type":"d","str":"8"}] +0x1ada0=[{"size":44,"type":"s","subtype":98,"str":"abcdfghiklmnopqrstuvw:xABCDFGHI:LNQRST:UXZ1"}] +0x1add0=[{"size":54,"type":"s","subtype":98,"str":" - +FORMAT (e.g., +%H:%M) for a 'date'-style format\\n"}] +0x1ae0=[{"size":8,"type":"d","str":"8"}] +0x1ae08=[{"size":55,"type":"s","subtype":98,"str":"dev_ino_size <= obstack_object_size (&dev_ino_obstack)"}] +0x1ae40=[{"size":38,"type":"s","subtype":98,"str":"//DIRED-OPTIONS// --quoting-style=%s\\n"}] +0x1ae68=[{"size":41,"type":"s","subtype":98,"str":"hash_get_n_entries (active_dir_set) == 0"}] +0x1ae8=[{"size":8,"type":"d","str":"8"}] +0x1ae98=[{"size":52,"type":"s","subtype":98,"str":"unparsable value for LS_COLORS environment variable"}] +0x1aed0=[{"size":40,"type":"s","subtype":98,"str":"dereference-command-line-symlink-to-dir"}] +0x1aef8=[{"size":5,"type":"s","subtype":98,"str":"8.30"}] +0x1aefd=[{"size":27,"type":"s","subtype":98,"str":"invalid argument %s for %s"}] +0x1af0=[{"size":8,"type":"d","str":"8"}] +0x1af18=[{"size":29,"type":"s","subtype":98,"str":"ambiguous argument %s for %s"}] +0x1af35=[{"size":21,"type":"s","subtype":98,"str":"Valid arguments are:"}] +0x1af4a=[{"size":8,"type":"s","subtype":98,"str":"\\n - %s"}] +0x1af52=[{"size":5,"type":"s","subtype":98,"str":", %s"}] +0x1af57=[{"size":12,"type":"s","subtype":98,"str":"write error"}] +0x1af63=[{"size":24,"type":"s","subtype":98,"str":"system.posix_acl_access"}] +0x1af7b=[{"size":25,"type":"s","subtype":98,"str":"system.posix_acl_default"}] +0x1af8=[{"size":8,"type":"d","str":"8"}] +0x1af99=[{"size":6,"type":"s","subtype":98,"str":"POSIX"}] +0x1af9f=[{"size":24,"type":"s","subtype":98,"str":"# entries: %lu\\n"}] +0x1afb7=[{"size":24,"type":"s","subtype":98,"str":"# buckets: %lu\\n"}] +0x1afcf=[{"size":24,"type":"s","subtype":98,"str":"max bucket length: %lu\\n"}] +0x1afe8=[{"size":33,"type":"s","subtype":98,"str":"# buckets used: %lu (%.2f%%)\\n"}] +0x1b00=[{"size":8,"type":"d","str":"8"}] +0x1b027=[{"size":6,"type":"s","subtype":98,"str":"=fff?"}] +0x1b04e=[{"size":8,"type":"s","subtype":98,"str":"Y@%.0Lf"}] +0x1b056=[{"size":6,"type":"s","subtype":98,"str":"%.1Lf"}] +0x1b05c=[{"size":10,"type":"s","subtype":98,"str":"BLOCKSIZE"}] +0x1b066=[{"size":16,"type":"s","subtype":98,"str":"POSIXLY_CORRECT"}] +0x1b076=[{"size":18,"type":"s","subtype":98,"str":"eEgGkKmMpPtTyYzZ0"}] +0x1b08=[{"size":8,"type":"d","str":"8"}] +0x1b091=[{"size":9,"type":"s","subtype":98,"str":"KMGTPEZY"}] +0x1b0b0=[{"size":9,"type":"s","subtype":98,"str":"%H:%M:%S"}] +0x1b0b9=[{"size":9,"type":"s","subtype":98,"str":"%m/%d/%y"}] +0x1b0c2=[{"size":9,"type":"s","subtype":98,"str":"%Y-%m-%d"}] +0x1b10=[{"size":8,"type":"d","str":"8"}] +0x1b18=[{"size":8,"type":"d","str":"8"}] +0x1b20=[{"size":8,"type":"d","str":"8"}] +0x1b28=[{"size":8,"type":"d","str":"8"}] +0x1b2b8=[{"size":56,"type":"s","subtype":98,"str":"A NULL argv[0] was passed through an exec system call.\\n"}] +0x1b2f0=[{"size":8,"type":"s","subtype":98,"str":"/.libs/"}] +0x1b30=[{"size":8,"type":"d","str":"8"}] +0x1b30f=[{"size":6,"type":"s","subtype":98,"str":"shell"}] +0x1b315=[{"size":13,"type":"s","subtype":98,"str":"shell-always"}] +0x1b322=[{"size":13,"type":"s","subtype":98,"str":"shell-escape"}] +0x1b32f=[{"size":20,"type":"s","subtype":98,"str":"shell-escape-always"}] +0x1b343=[{"size":8,"type":"s","subtype":98,"str":"c-maybe"}] +0x1b34b=[{"size":8,"type":"s","subtype":98,"str":"clocale"}] +0x1b38=[{"size":8,"type":"d","str":"8"}] +0x1b40=[{"size":8,"type":"d","str":"8"}] +0x1b48=[{"size":8,"type":"d","str":"8"}] +0x1b50=[{"size":8,"type":"d","str":"8"}] +0x1b58=[{"size":8,"type":"d","str":"8"}] +0x1b60=[{"size":8,"type":"d","str":"8"}] +0x1b68=[{"size":8,"type":"d","str":"8"}] +0x1b70=[{"size":8,"type":"d","str":"8"}] +0x1b78=[{"size":8,"type":"d","str":"8"}] +0x1b80=[{"size":8,"type":"d","str":"8"}] +0x1b88=[{"size":8,"type":"d","str":"8"}] +0x1b90=[{"size":8,"type":"d","str":"8"}] +0x1b98=[{"size":8,"type":"d","str":"8"}] +0x1b999=[{"size":20,"type":"s","subtype":78,"str":"\\u0007\\b\\t%"}] +0x1b9ad=[{"size":7,"type":"s","subtype":98,"str":"s) %s\\n"}] +0x1b9b4=[{"size":7,"type":"s","subtype":98,"str":"%s %s\\n"}] +0x1b9bf=[{"size":16,"type":"s","subtype":98,"str":"Written by %s.\\n"}] +0x1b9cf=[{"size":23,"type":"s","subtype":98,"str":"Written by %s and %s.\\n"}] +0x1b9e6=[{"size":28,"type":"s","subtype":98,"str":"Written by %s, %s, and %s.\\n"}] +0x1ba0=[{"size":8,"type":"d","str":"8"}] +0x1ba02=[{"size":21,"type":"s","subtype":98,"str":"\\nReport bugs to: %s\\n"}] +0x1ba17=[{"size":22,"type":"s","subtype":98,"str":"bug-coreutils@gnu.org"}] +0x1ba2d=[{"size":20,"type":"s","subtype":98,"str":"%s home page: <%s>\\n"}] +0x1ba48=[{"size":204,"type":"s","subtype":98,"str":"\\nLicense GPLv3+: GNU GPL version 3 or later .\\nThis is free software: you are free to change and redistribute it.\\nThere is NO WARRANTY, to the extent permitted by law.\\n\\n"}] +0x1ba8=[{"size":8,"type":"d","str":"8"}] +0x1bb0=[{"size":8,"type":"d","str":"8"}] +0x1bb18=[{"size":32,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\nand %s.\\n"}] +0x1bb38=[{"size":36,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\n%s, and %s.\\n"}] +0x1bb60=[{"size":40,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\n%s, %s, and %s.\\n"}] +0x1bb8=[{"size":8,"type":"d","str":"8"}] +0x1bb88=[{"size":44,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\n%s, %s, %s, and %s.\\n"}] +0x1bbb8=[{"size":48,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\n%s, %s, %s, %s,\\nand %s.\\n"}] +0x1bbe8=[{"size":52,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\n%s, %s, %s, %s,\\n%s, and %s.\\n"}] +0x1bc0=[{"size":8,"type":"d","str":"8"}] +0x1bc20=[{"size":60,"type":"s","subtype":98,"str":"Written by %s, %s, %s,\\n%s, %s, %s, %s,\\n%s, %s, and others.\\n"}] +0x1bc60=[{"size":65,"type":"s","subtype":98,"str":"General help using GNU software: \\n"}] +0x1bc8=[{"size":8,"type":"d","str":"8"}] +0x1bce0=[{"size":47,"type":"s","subtype":98,"str":"Copyright %s %d Free Software Foundation, Inc."}] +0x1bd0=[{"size":8,"type":"d","str":"8"}] +0x1bd0f=[{"size":17,"type":"s","subtype":98,"str":"memory exhausted"}] +0x1bd20=[{"size":14,"type":"s","subtype":98,"str":"lib/xstrtol.c"}] +0x1bd30=[{"size":38,"type":"s","subtype":98,"str":"0 <= strtol_base && strtol_base <= 36"}] +0x1bd8=[{"size":8,"type":"d","str":"8"}] +0x1be0=[{"size":8,"type":"d","str":"8"}] +0x1be8=[{"size":8,"type":"d","str":"8"}] +0x1bef0=[{"size":9,"type":"s","subtype":98,"str":"xstrtoul"}] +0x1bef9=[{"size":29,"type":"s","subtype":98,"str":"%s%s argument '%s' too large"}] +0x1bf0=[{"size":8,"type":"d","str":"8"}] +0x1bf16=[{"size":27,"type":"s","subtype":98,"str":"invalid %s%s argument '%s'"}] +0x1bf38=[{"size":37,"type":"s","subtype":98,"str":"invalid suffix in %s%s argument '%s'"}] +0x1bf8=[{"size":8,"type":"d","str":"8"}] +0x1c00=[{"size":8,"type":"d","str":"8"}] +0x1c08=[{"size":8,"type":"d","str":"8"}] +0x1c0f8=[{"size":11,"type":"s","subtype":98,"str":"xstrtoumax"}] +0x1c10=[{"size":8,"type":"d","str":"8"}] +0x1c103=[{"size":6,"type":"s","subtype":98,"str":"ASCII"}] +0x1c10c=[{"type":"C","str":"[13] -r-- section size 2244 named .eh_frame_hdr"}] +0x1c18=[{"size":8,"type":"d","str":"8"}] +0x1c20=[{"size":8,"type":"d","str":"8"}] +0x1c28=[{"size":8,"type":"d","str":"8"}] +0x1c30=[{"size":8,"type":"d","str":"8"}] +0x1c38=[{"size":8,"type":"d","str":"8"}] +0x1c40=[{"size":8,"type":"d","str":"8"}] +0x1c48=[{"size":8,"type":"d","str":"8"}] +0x1c50=[{"size":8,"type":"d","str":"8"}] +0x1c58=[{"size":8,"type":"d","str":"8"}] +0x1c60=[{"size":8,"type":"d","str":"8"}] +0x1c68=[{"size":8,"type":"d","str":"8"}] +0x1c70=[{"size":8,"type":"d","str":"8"}] +0x1c78=[{"size":8,"type":"d","str":"8"}] +0x1c80=[{"size":8,"type":"d","str":"8"}] +0x1c88=[{"size":8,"type":"d","str":"8"}] +0x1c90=[{"size":8,"type":"d","str":"8"}] +0x1c98=[{"size":8,"type":"d","str":"8"}] +0x1c9d0=[{"type":"C","str":"[14] -r-- section size 11760 named .eh_frame"}] +0x1ca0=[{"size":8,"type":"d","str":"8"}] +0x1ca8=[{"size":8,"type":"d","str":"8"}] +0x1cb0=[{"size":8,"type":"d","str":"8"}] +0x1cb8=[{"size":8,"type":"d","str":"8"}] +0x1cc0=[{"size":8,"type":"d","str":"8"}] +0x1cc8=[{"size":8,"type":"d","str":"8"}] +0x1cd0=[{"size":8,"type":"d","str":"8"}] +0x1cd8=[{"size":8,"type":"d","str":"8"}] +0x1ce0=[{"size":8,"type":"d","str":"8"}] +0x1ce8=[{"size":8,"type":"d","str":"8"}] +0x1cf0=[{"size":8,"type":"d","str":"8"}] +0x1cf8=[{"size":8,"type":"d","str":"8"}] +0x1d00=[{"size":8,"type":"d","str":"8"}] +0x1d08=[{"size":8,"type":"d","str":"8"}] +0x1d10=[{"size":8,"type":"d","str":"8"}] +0x1d18=[{"size":8,"type":"d","str":"8"}] +0x1d20=[{"size":8,"type":"d","str":"8"}] +0x1d28=[{"size":8,"type":"d","str":"8"}] +0x1d30=[{"size":8,"type":"d","str":"8"}] +0x1d38=[{"size":8,"type":"d","str":"8"}] +0x1d40=[{"size":8,"type":"d","str":"8"}] +0x1d48=[{"size":8,"type":"d","str":"8"}] +0x1d50=[{"size":8,"type":"d","str":"8"}] +0x1d58=[{"size":8,"type":"d","str":"8"}] +0x1d60=[{"size":8,"type":"d","str":"8"}] +0x1d68=[{"size":8,"type":"d","str":"8"}] +0x1d70=[{"size":8,"type":"d","str":"8"}] +0x1d78=[{"size":8,"type":"d","str":"8"}] +0x1d80=[{"size":8,"type":"d","str":"8"}] +0x1d88=[{"size":8,"type":"d","str":"8"}] +0x1d90=[{"size":8,"type":"d","str":"8"}] +0x1d98=[{"size":8,"type":"d","str":"8"}] +0x1da0=[{"size":8,"type":"d","str":"8"}] +0x1da8=[{"size":8,"type":"d","str":"8"}] +0x1db0=[{"size":8,"type":"d","str":"8"}] +0x1db8=[{"size":8,"type":"d","str":"8"}] +0x1dc0=[{"size":8,"type":"d","str":"8"}] +0x1dc8=[{"size":8,"type":"d","str":"8"}] +0x1dd0=[{"size":8,"type":"d","str":"8"}] +0x1dd8=[{"size":8,"type":"d","str":"8"}] +0x1de0=[{"size":8,"type":"d","str":"8"}] +0x1de8=[{"size":8,"type":"d","str":"8"}] +0x1df0=[{"size":8,"type":"d","str":"8"}] +0x1df8=[{"size":8,"type":"d","str":"8"}] +0x1e00=[{"size":8,"type":"d","str":"8"}] +0x1e08=[{"size":8,"type":"d","str":"8"}] +0x1e10=[{"size":8,"type":"d","str":"8"}] +0x1e18=[{"size":8,"type":"d","str":"8"}] +0x1e20=[{"size":8,"type":"d","str":"8"}] +0x1e28=[{"size":8,"type":"d","str":"8"}] +0x1e30=[{"size":8,"type":"d","str":"8"}] +0x1e38=[{"size":8,"type":"d","str":"8"}] +0x1e40=[{"size":8,"type":"d","str":"8"}] +0x1e48=[{"size":8,"type":"d","str":"8"}] +0x1e50=[{"size":8,"type":"d","str":"8"}] +0x1e58=[{"size":8,"type":"d","str":"8"}] +0x1e60=[{"size":8,"type":"d","str":"8"}] +0x1e68=[{"size":8,"type":"d","str":"8"}] +0x1e70=[{"size":8,"type":"d","str":"8"}] +0x1e78=[{"size":8,"type":"d","str":"8"}] +0x1e80=[{"size":8,"type":"d","str":"8"}] +0x1e88=[{"size":8,"type":"d","str":"8"}] +0x1e90=[{"size":8,"type":"d","str":"8"}] +0x1e98=[{"size":8,"type":"d","str":"8"}] +0x1ea0=[{"size":8,"type":"d","str":"8"}] +0x1ea8=[{"size":8,"type":"d","str":"8"}] +0x1eb0=[{"size":8,"type":"d","str":"8"}] +0x1eb8=[{"size":8,"type":"d","str":"8"}] +0x1ec0=[{"size":8,"type":"d","str":"8"}] +0x1ec8=[{"size":8,"type":"d","str":"8"}] +0x1ed0=[{"size":8,"type":"d","str":"8"}] +0x1ed8=[{"size":8,"type":"d","str":"8"}] +0x1ee0=[{"size":8,"type":"d","str":"8"}] +0x1ee8=[{"size":8,"type":"d","str":"8"}] +0x1ef0=[{"size":8,"type":"d","str":"8"}] +0x1ef8=[{"size":8,"type":"d","str":"8"}] +0x1f00=[{"size":8,"type":"d","str":"8"}] +0x1f08=[{"size":8,"type":"d","str":"8"}] +0x1f10=[{"size":8,"type":"d","str":"8"}] +0x1f18=[{"size":8,"type":"d","str":"8"}] +0x1f20=[{"size":8,"type":"d","str":"8"}] +0x1f28=[{"size":8,"type":"d","str":"8"}] +0x1f30=[{"size":8,"type":"d","str":"8"}] +0x1f38=[{"size":8,"type":"d","str":"8"}] +0x1f40=[{"size":8,"type":"d","str":"8"}] +0x1f48=[{"size":8,"type":"d","str":"8"}] +0x1f50=[{"size":8,"type":"d","str":"8"}] +0x1f58=[{"size":8,"type":"d","str":"8"}] +0x1f60=[{"size":8,"type":"d","str":"8"}] +0x1f68=[{"size":8,"type":"d","str":"8"}] +0x1f70=[{"size":8,"type":"d","str":"8"}] +0x1f78=[{"size":8,"type":"d","str":"8"}] +0x1f80=[{"size":8,"type":"d","str":"8"}] +0x1f88=[{"size":8,"type":"d","str":"8"}] +0x1f90=[{"size":8,"type":"d","str":"8"}] +0x1f98=[{"size":8,"type":"d","str":"8"}] +0x1fa0=[{"size":8,"type":"d","str":"8"}] +0x1fa8=[{"size":8,"type":"d","str":"8"}] +0x1fb0=[{"size":8,"type":"d","str":"8"}] +0x1fb8=[{"size":8,"type":"d","str":"8"}] +0x1fc0=[{"size":8,"type":"d","str":"8"}] +0x1fc8=[{"size":8,"type":"d","str":"8"}] +0x1fd0=[{"size":8,"type":"d","str":"8"}] +0x1fd8=[{"size":8,"type":"d","str":"8"}] +0x1fe0=[{"size":8,"type":"d","str":"8"}] +0x1fe8=[{"size":8,"type":"d","str":"8"}] +0x1ff0=[{"size":8,"type":"d","str":"8"}] +0x1ff8=[{"size":8,"type":"d","str":"8"}] +0x2000=[{"size":8,"type":"d","str":"8"}] +0x2008=[{"size":8,"type":"d","str":"8"}] +0x2010=[{"size":8,"type":"d","str":"8"}] +0x2018=[{"size":8,"type":"d","str":"8"}] +0x2020=[{"size":8,"type":"d","str":"8"}] +0x2028=[{"size":8,"type":"d","str":"8"}] +0x2030=[{"size":8,"type":"d","str":"8"}] +0x2038=[{"size":8,"type":"d","str":"8"}] +0x2040=[{"size":8,"type":"d","str":"8"}] +0x2048=[{"size":8,"type":"d","str":"8"}] +0x2050=[{"size":8,"type":"d","str":"8"}] +0x2058=[{"size":8,"type":"d","str":"8"}] +0x2060=[{"size":8,"type":"d","str":"8"}] +0x2068=[{"size":8,"type":"d","str":"8"}] +0x2070=[{"size":8,"type":"d","str":"8"}] +0x2078=[{"size":8,"type":"d","str":"8"}] +0x2080=[{"size":8,"type":"d","str":"8"}] +0x2088=[{"size":8,"type":"d","str":"8"}] +0x2090=[{"size":8,"type":"d","str":"8"}] +0x2098=[{"size":8,"type":"d","str":"8"}] +0x20a0=[{"size":8,"type":"d","str":"8"}] +0x20a8=[{"size":8,"type":"d","str":"8"}] +0x20b0=[{"size":8,"type":"d","str":"8"}] +0x20b8=[{"size":8,"type":"d","str":"8"}] +0x20c0=[{"size":8,"type":"d","str":"8"}] +0x20c8=[{"size":8,"type":"d","str":"8"}] +0x20d0=[{"size":8,"type":"d","str":"8"}] +0x20d8=[{"size":8,"type":"d","str":"8"}] +0x20e0=[{"size":8,"type":"d","str":"8"}] +0x20e8=[{"size":8,"type":"d","str":"8"}] +0x20f0=[{"size":8,"type":"d","str":"8"}] +0x20f8=[{"size":8,"type":"d","str":"8"}] +0x2100=[{"size":8,"type":"d","str":"8"}] +0x21050=[{"size":8,"type":"d"},{"type":"C","str":"[15] -rw- section size 8 named .init_array"}] +0x21058=[{"size":8,"type":"d"},{"type":"C","str":"[16] -rw- section size 8 named .fini_array"}] +0x21060=[{"size":8,"type":"d"},{"type":"C","str":"[17] -rw- section size 2616 named .data.rel.ro"}] +0x21068=[{"size":8,"type":"d"}] +0x21070=[{"size":8,"type":"d"}] +0x21078=[{"size":8,"type":"d"}] +0x2108=[{"size":8,"type":"d","str":"8"}] +0x21080=[{"size":8,"type":"d"}] +0x21088=[{"size":8,"type":"d"}] +0x21090=[{"size":8,"type":"d"}] +0x21098=[{"size":8,"type":"d"}] +0x210a0=[{"size":8,"type":"d"}] +0x210a8=[{"size":8,"type":"d"}] +0x210b0=[{"size":8,"type":"d"}] +0x210b8=[{"size":8,"type":"d"}] +0x210c0=[{"size":8,"type":"d"}] +0x210c8=[{"size":8,"type":"d"}] +0x210d0=[{"size":8,"type":"d"}] +0x210d8=[{"size":8,"type":"d"}] +0x210e0=[{"size":8,"type":"d"}] +0x210e8=[{"size":8,"type":"d"}] +0x210f0=[{"size":8,"type":"d"}] +0x210f8=[{"size":8,"type":"d"}] +0x2110=[{"size":8,"type":"d","str":"8"}] +0x21100=[{"size":8,"type":"d"}] +0x21108=[{"size":8,"type":"d"}] +0x21110=[{"size":8,"type":"d"}] +0x21118=[{"size":8,"type":"d"}] +0x21120=[{"size":8,"type":"d"}] +0x21128=[{"size":8,"type":"d"}] +0x21130=[{"size":8,"type":"d"}] +0x21138=[{"size":8,"type":"d"}] +0x21140=[{"size":8,"type":"d","str":"8"}] +0x21148=[{"size":8,"type":"d","str":"8"}] +0x21150=[{"size":8,"type":"d","str":"8"}] +0x21158=[{"size":8,"type":"d","str":"8"}] +0x21160=[{"size":8,"type":"d"}] +0x21168=[{"size":8,"type":"d"}] +0x21170=[{"size":8,"type":"d"}] +0x21178=[{"size":8,"type":"d"}] +0x2118=[{"size":8,"type":"d","str":"8"}] +0x21180=[{"size":8,"type":"d"}] +0x21188=[{"size":8,"type":"d"}] +0x21190=[{"size":8,"type":"d"}] +0x21198=[{"size":8,"type":"d"}] +0x211a0=[{"size":8,"type":"d"}] +0x211a8=[{"size":8,"type":"d"}] +0x211b0=[{"size":8,"type":"d"}] +0x211b8=[{"size":8,"type":"d"}] +0x211c0=[{"size":8,"type":"d"}] +0x211c8=[{"size":8,"type":"d"}] +0x211d0=[{"size":8,"type":"d"}] +0x211d8=[{"size":8,"type":"d"}] +0x211e0=[{"size":8,"type":"d"}] +0x211e8=[{"size":8,"type":"d"}] +0x211f0=[{"size":8,"type":"d"}] +0x211f8=[{"size":8,"type":"d"}] +0x2120=[{"size":8,"type":"d","str":"8"}] +0x21200=[{"size":8,"type":"d"}] +0x21208=[{"size":8,"type":"d"}] +0x21210=[{"size":8,"type":"d"}] +0x21218=[{"size":8,"type":"d"}] +0x21220=[{"size":8,"type":"d"}] +0x21228=[{"size":8,"type":"d"}] +0x21230=[{"size":8,"type":"d"}] +0x21238=[{"size":8,"type":"d"}] +0x21240=[{"size":8,"type":"d"}] +0x21248=[{"size":8,"type":"d"}] +0x21250=[{"size":8,"type":"d"}] +0x21258=[{"size":8,"type":"d"}] +0x21260=[{"size":8,"type":"d"}] +0x21268=[{"size":8,"type":"d","str":"8"}] +0x21270=[{"size":8,"type":"d","str":"8"}] +0x21278=[{"size":8,"type":"d","str":"8"}] +0x2128=[{"size":8,"type":"d","str":"8"}] +0x21280=[{"size":8,"type":"d"}] +0x21288=[{"size":8,"type":"d"}] +0x21290=[{"size":8,"type":"d"}] +0x21298=[{"size":8,"type":"d"}] +0x212a0=[{"size":8,"type":"d"}] +0x212a8=[{"size":8,"type":"d","str":"8"}] +0x212b0=[{"size":8,"type":"d","str":"8"}] +0x212b8=[{"size":8,"type":"d","str":"8"}] +0x212c0=[{"size":8,"type":"d"}] +0x212c8=[{"size":8,"type":"d"}] +0x212d0=[{"size":8,"type":"d"}] +0x212d8=[{"size":8,"type":"d"}] +0x212e0=[{"size":8,"type":"d"}] +0x212e8=[{"size":8,"type":"d","str":"8"}] +0x212f0=[{"size":8,"type":"d","str":"8"}] +0x212f8=[{"size":8,"type":"d","str":"8"}] +0x2130=[{"size":8,"type":"d","str":"8"}] +0x21300=[{"size":8,"type":"d"}] +0x21308=[{"size":8,"type":"d"}] +0x21310=[{"size":8,"type":"d"}] +0x21318=[{"size":8,"type":"d"}] +0x21320=[{"size":8,"type":"d"}] +0x21328=[{"size":8,"type":"d"}] +0x21330=[{"size":8,"type":"d"}] +0x21338=[{"size":8,"type":"d","str":"8"}] +0x21340=[{"size":8,"type":"d"}] +0x21348=[{"size":8,"type":"d","str":"8"}] +0x21350=[{"size":8,"type":"d","str":"8"}] +0x21358=[{"size":8,"type":"d","str":"8"}] +0x21360=[{"size":8,"type":"d"}] +0x21368=[{"size":8,"type":"d","str":"8"}] +0x21370=[{"size":8,"type":"d","str":"8"}] +0x21378=[{"size":8,"type":"d","str":"8"}] +0x2138=[{"size":8,"type":"d","str":"8"}] +0x21380=[{"size":8,"type":"d"}] +0x21388=[{"size":8,"type":"d","str":"8"}] +0x21390=[{"size":8,"type":"d","str":"8"}] +0x21398=[{"size":8,"type":"d","str":"8"}] +0x213a0=[{"size":8,"type":"d"}] +0x213a8=[{"size":8,"type":"d","str":"8"}] +0x213b0=[{"size":8,"type":"d","str":"8"}] +0x213b8=[{"size":8,"type":"d","str":"8"}] +0x213c0=[{"size":8,"type":"d"}] +0x213c8=[{"size":8,"type":"d","str":"8"}] +0x213d0=[{"size":8,"type":"d","str":"8"}] +0x213d8=[{"size":8,"type":"d","str":"8"}] +0x213e0=[{"size":8,"type":"d"}] +0x213e8=[{"size":8,"type":"d","str":"8"}] +0x213f0=[{"size":8,"type":"d","str":"8"}] +0x213f8=[{"size":8,"type":"d","str":"8"}] +0x2140=[{"size":8,"type":"d","str":"8"}] +0x21400=[{"size":8,"type":"d"}] +0x21408=[{"size":8,"type":"d","str":"8"}] +0x21410=[{"size":8,"type":"d","str":"8"}] +0x21418=[{"size":8,"type":"d","str":"8"}] +0x21420=[{"size":8,"type":"d"}] +0x21428=[{"size":8,"type":"d","str":"8"}] +0x21430=[{"size":8,"type":"d","str":"8"}] +0x21438=[{"size":8,"type":"d","str":"8"}] +0x21440=[{"size":8,"type":"d"}] +0x21448=[{"size":8,"type":"d","str":"8"}] +0x21450=[{"size":8,"type":"d","str":"8"}] +0x21458=[{"size":8,"type":"d","str":"8"}] +0x21460=[{"size":8,"type":"d"}] +0x21468=[{"size":8,"type":"d","str":"8"}] +0x21470=[{"size":8,"type":"d","str":"8"}] +0x21478=[{"size":8,"type":"d","str":"8"}] +0x2148=[{"size":8,"type":"d","str":"8"}] +0x21480=[{"size":8,"type":"d"}] +0x21488=[{"size":8,"type":"d","str":"8"}] +0x21490=[{"size":8,"type":"d","str":"8"}] +0x21498=[{"size":8,"type":"d","str":"8"}] +0x214a0=[{"size":8,"type":"d"}] +0x214a8=[{"size":8,"type":"d","str":"8"}] +0x214b0=[{"size":8,"type":"d","str":"8"}] +0x214b8=[{"size":8,"type":"d","str":"8"}] +0x214c0=[{"size":8,"type":"d"}] +0x214c8=[{"size":8,"type":"d","str":"8"}] +0x214d0=[{"size":8,"type":"d","str":"8"}] +0x214d8=[{"size":8,"type":"d","str":"8"}] +0x214e0=[{"size":8,"type":"d"}] +0x214e8=[{"size":8,"type":"d","str":"8"}] +0x214f0=[{"size":8,"type":"d","str":"8"}] +0x214f8=[{"size":8,"type":"d","str":"8"}] +0x2150=[{"size":8,"type":"d","str":"8"}] +0x21500=[{"size":8,"type":"d"}] +0x21508=[{"size":8,"type":"d","str":"8"}] +0x21510=[{"size":8,"type":"d","str":"8"}] +0x21518=[{"size":8,"type":"d","str":"8"}] +0x21520=[{"size":8,"type":"d"}] +0x21528=[{"size":8,"type":"d","str":"8"}] +0x21530=[{"size":8,"type":"d","str":"8"}] +0x21538=[{"size":8,"type":"d","str":"8"}] +0x21540=[{"size":8,"type":"d"}] +0x21548=[{"size":8,"type":"d","str":"8"}] +0x21550=[{"size":8,"type":"d","str":"8"}] +0x21558=[{"size":8,"type":"d","str":"8"}] +0x21560=[{"size":8,"type":"d"}] +0x21568=[{"size":8,"type":"d","str":"8"}] +0x21570=[{"size":8,"type":"d","str":"8"}] +0x21578=[{"size":8,"type":"d","str":"8"}] +0x2158=[{"size":8,"type":"d","str":"8"}] +0x21580=[{"size":8,"type":"d"}] +0x21588=[{"size":8,"type":"d","str":"8"}] +0x21590=[{"size":8,"type":"d","str":"8"}] +0x21598=[{"size":8,"type":"d","str":"8"}] +0x215a0=[{"size":8,"type":"d"}] +0x215a8=[{"size":8,"type":"d","str":"8"}] +0x215b0=[{"size":8,"type":"d","str":"8"}] +0x215b8=[{"size":8,"type":"d","str":"8"}] +0x215c0=[{"size":8,"type":"d"}] +0x215c8=[{"size":8,"type":"d","str":"8"}] +0x215d0=[{"size":8,"type":"d","str":"8"}] +0x215d8=[{"size":8,"type":"d","str":"8"}] +0x215e0=[{"size":8,"type":"d"}] +0x215e8=[{"size":8,"type":"d","str":"8"}] +0x215f0=[{"size":8,"type":"d","str":"8"}] +0x215f8=[{"size":8,"type":"d","str":"8"}] +0x2160=[{"size":8,"type":"d","str":"8"}] +0x21600=[{"size":8,"type":"d"}] +0x21608=[{"size":8,"type":"d","str":"8"}] +0x21610=[{"size":8,"type":"d","str":"8"}] +0x21618=[{"size":8,"type":"d","str":"8"}] +0x21620=[{"size":8,"type":"d"}] +0x21628=[{"size":8,"type":"d","str":"8"}] +0x21630=[{"size":8,"type":"d","str":"8"}] +0x21638=[{"size":8,"type":"d","str":"8"}] +0x21640=[{"size":8,"type":"d"}] +0x21648=[{"size":8,"type":"d","str":"8"}] +0x21650=[{"size":8,"type":"d","str":"8"}] +0x21658=[{"size":8,"type":"d","str":"8"}] +0x21660=[{"size":8,"type":"d"}] +0x21668=[{"size":8,"type":"d","str":"8"}] +0x21670=[{"size":8,"type":"d","str":"8"}] +0x21678=[{"size":8,"type":"d","str":"8"}] +0x2168=[{"size":8,"type":"d","str":"8"}] +0x21680=[{"size":8,"type":"d"}] +0x21688=[{"size":8,"type":"d","str":"8"}] +0x21690=[{"size":8,"type":"d","str":"8"}] +0x21698=[{"size":8,"type":"d","str":"8"}] +0x216a0=[{"size":8,"type":"d"}] +0x216a8=[{"size":8,"type":"d","str":"8"}] +0x216b0=[{"size":8,"type":"d","str":"8"}] +0x216b8=[{"size":8,"type":"d","str":"8"}] +0x216c0=[{"size":8,"type":"d"}] +0x216c8=[{"size":8,"type":"d","str":"8"}] +0x216d0=[{"size":8,"type":"d","str":"8"}] +0x216d8=[{"size":8,"type":"d","str":"8"}] +0x216e0=[{"size":8,"type":"d"}] +0x216e8=[{"size":8,"type":"d","str":"8"}] +0x216f0=[{"size":8,"type":"d","str":"8"}] +0x216f8=[{"size":8,"type":"d","str":"8"}] +0x2170=[{"size":8,"type":"d","str":"8"}] +0x21700=[{"size":8,"type":"d"}] +0x21708=[{"size":8,"type":"d","str":"8"}] +0x21710=[{"size":8,"type":"d","str":"8"}] +0x21718=[{"size":8,"type":"d","str":"8"}] +0x21720=[{"size":8,"type":"d"}] +0x21728=[{"size":8,"type":"d","str":"8"}] +0x21730=[{"size":8,"type":"d","str":"8"}] +0x21738=[{"size":8,"type":"d","str":"8"}] +0x21740=[{"size":8,"type":"d"}] +0x21748=[{"size":8,"type":"d","str":"8"}] +0x21750=[{"size":8,"type":"d","str":"8"}] +0x21758=[{"size":8,"type":"d","str":"8"}] +0x21760=[{"size":8,"type":"d"}] +0x21768=[{"size":8,"type":"d","str":"8"}] +0x21770=[{"size":8,"type":"d","str":"8"}] +0x21778=[{"size":8,"type":"d","str":"8"}] +0x2178=[{"size":8,"type":"d","str":"8"}] +0x21780=[{"size":8,"type":"d"}] +0x21788=[{"size":8,"type":"d","str":"8"}] +0x21790=[{"size":8,"type":"d","str":"8"}] +0x21798=[{"size":8,"type":"d","str":"8"}] +0x217a0=[{"size":8,"type":"d"}] +0x217a8=[{"size":8,"type":"d","str":"8"}] +0x217b0=[{"size":8,"type":"d","str":"8"}] +0x217b8=[{"size":8,"type":"d","str":"8"}] +0x217c0=[{"size":8,"type":"d"}] +0x217c8=[{"size":8,"type":"d","str":"8"}] +0x217d0=[{"size":8,"type":"d","str":"8"}] +0x217d8=[{"size":8,"type":"d","str":"8"}] +0x217e0=[{"size":8,"type":"d"}] +0x217e8=[{"size":8,"type":"d","str":"8"}] +0x217f0=[{"size":8,"type":"d","str":"8"}] +0x217f8=[{"size":8,"type":"d","str":"8"}] +0x2180=[{"size":8,"type":"d","str":"8"}] +0x21800=[{"size":8,"type":"d"}] +0x21808=[{"size":8,"type":"d","str":"8"}] +0x21810=[{"size":8,"type":"d","str":"8"}] +0x21818=[{"size":8,"type":"d","str":"8"}] +0x21820=[{"size":8,"type":"d"}] +0x21828=[{"size":8,"type":"d","str":"8"}] +0x21830=[{"size":8,"type":"d","str":"8"}] +0x21838=[{"size":8,"type":"d","str":"8"}] +0x21840=[{"size":8,"type":"d"}] +0x21848=[{"size":8,"type":"d","str":"8"}] +0x21850=[{"size":8,"type":"d","str":"8"}] +0x21858=[{"size":8,"type":"d","str":"8"}] +0x21860=[{"size":8,"type":"d"}] +0x21868=[{"size":8,"type":"d","str":"8"}] +0x21870=[{"size":8,"type":"d","str":"8"}] +0x21878=[{"size":8,"type":"d","str":"8"}] +0x2188=[{"size":8,"type":"d","str":"8"}] +0x21880=[{"size":8,"type":"d"}] +0x21888=[{"size":8,"type":"d","str":"8"}] +0x21890=[{"size":8,"type":"d","str":"8"}] +0x21898=[{"size":8,"type":"d","str":"8"}] +0x218a0=[{"size":8,"type":"d","str":"8"}] +0x218a8=[{"size":8,"type":"d","str":"8"}] +0x218b0=[{"size":8,"type":"d","str":"8"}] +0x218b8=[{"size":8,"type":"d","str":"8"}] +0x218c0=[{"size":8,"type":"d"}] +0x218c8=[{"size":8,"type":"d"}] +0x218d0=[{"size":8,"type":"d"}] +0x218d8=[{"size":8,"type":"d"}] +0x218e0=[{"size":8,"type":"d"}] +0x218e8=[{"size":8,"type":"d"}] +0x218f0=[{"size":8,"type":"d"}] +0x218f8=[{"size":8,"type":"d"}] +0x2190=[{"size":8,"type":"d","str":"8"}] +0x21900=[{"size":8,"type":"d"}] +0x21908=[{"size":8,"type":"d"}] +0x21910=[{"size":8,"type":"d"}] +0x21918=[{"size":8,"type":"d"}] +0x21920=[{"size":8,"type":"d"}] +0x21928=[{"size":8,"type":"d"}] +0x21930=[{"size":8,"type":"d"}] +0x21938=[{"size":8,"type":"d"}] +0x21940=[{"size":8,"type":"d"}] +0x21948=[{"size":8,"type":"d"}] +0x21950=[{"size":8,"type":"d"}] +0x21958=[{"size":8,"type":"d"}] +0x21960=[{"size":8,"type":"d"}] +0x21968=[{"size":8,"type":"d"}] +0x21970=[{"size":8,"type":"d"}] +0x21978=[{"size":8,"type":"d"}] +0x2198=[{"size":8,"type":"d","str":"8"}] +0x21980=[{"size":8,"type":"d","str":"8"}] +0x21988=[{"size":8,"type":"d","str":"8"}] +0x21990=[{"size":8,"type":"d","str":"8"}] +0x21998=[{"size":8,"type":"d","str":"8"}] +0x219a0=[{"size":8,"type":"d"}] +0x219a8=[{"size":8,"type":"d"}] +0x219b0=[{"size":8,"type":"d"}] +0x219b8=[{"size":8,"type":"d"}] +0x219c0=[{"size":8,"type":"d","str":"8"}] +0x219c8=[{"size":8,"type":"d","str":"8"}] +0x219d0=[{"size":8,"type":"d","str":"8"}] +0x219d8=[{"size":8,"type":"d","str":"8"}] +0x219e0=[{"size":8,"type":"d"}] +0x219e8=[{"size":8,"type":"d"}] +0x219f0=[{"size":8,"type":"d"}] +0x219f8=[{"size":8,"type":"d"}] +0x21a0=[{"size":8,"type":"d","str":"8"}] +0x21a00=[{"size":8,"type":"d","str":"8"}] +0x21a08=[{"size":8,"type":"d","str":"8"}] +0x21a10=[{"size":8,"type":"d"}] +0x21a18=[{"size":8,"type":"d"}] +0x21a20=[{"size":8,"type":"d","str":"8"}] +0x21a28=[{"size":8,"type":"d","str":"8"}] +0x21a30=[{"size":8,"type":"d","str":"8"}] +0x21a38=[{"size":8,"type":"d","str":"8"}] +0x21a40=[{"size":8,"type":"d"}] +0x21a48=[{"size":8,"type":"d"}] +0x21a50=[{"size":8,"type":"d"}] +0x21a58=[{"size":8,"type":"d"}] +0x21a60=[{"size":8,"type":"d"}] +0x21a68=[{"size":8,"type":"d"}] +0x21a70=[{"size":8,"type":"d"}] +0x21a78=[{"size":8,"type":"d"}] +0x21a8=[{"size":8,"type":"d","str":"8"}] +0x21a80=[{"size":8,"type":"d"}] +0x21a88=[{"size":8,"type":"d"}] +0x21a90=[{"size":8,"type":"d","str":"8"}] +0x21a98=[{"size":8,"type":"d","str":"8"},{"type":"C","str":"[18] -rw- section size 448 named .dynamic"}] +0x21aa0=[{"size":8,"type":"d","str":"8"}] +0x21aa8=[{"size":8,"type":"d","str":"8"}] +0x21ab0=[{"size":8,"type":"d","str":"8"}] +0x21ab8=[{"size":8,"type":"d","str":"8"}] +0x21ac0=[{"size":8,"type":"d","str":"8"}] +0x21ac8=[{"size":8,"type":"d","str":"8"}] +0x21ad0=[{"size":8,"type":"d","str":"8"}] +0x21ad8=[{"size":8,"type":"d","str":"8"}] +0x21ae0=[{"size":8,"type":"d","str":"8"}] +0x21ae8=[{"size":8,"type":"d","str":"8"}] +0x21af0=[{"size":8,"type":"d","str":"8"}] +0x21af8=[{"size":8,"type":"d","str":"8"}] +0x21b0=[{"size":8,"type":"d","str":"8"}] +0x21b00=[{"size":8,"type":"d","str":"8"}] +0x21b08=[{"size":8,"type":"d","str":"8"}] +0x21b10=[{"size":8,"type":"d","str":"8"}] +0x21b18=[{"size":8,"type":"d","str":"8"}] +0x21b20=[{"size":8,"type":"d","str":"8"}] +0x21b28=[{"size":8,"type":"d","str":"8"}] +0x21b30=[{"size":8,"type":"d","str":"8"}] +0x21b38=[{"size":8,"type":"d","str":"8"}] +0x21b40=[{"size":8,"type":"d","str":"8"}] +0x21b48=[{"size":8,"type":"d","str":"8"}] +0x21b50=[{"size":8,"type":"d","str":"8"}] +0x21b58=[{"size":8,"type":"d","str":"8"}] +0x21b60=[{"size":8,"type":"d","str":"8"}] +0x21b68=[{"size":8,"type":"d","str":"8"}] +0x21b70=[{"size":8,"type":"d","str":"8"}] +0x21b78=[{"size":8,"type":"d","str":"8"}] +0x21b8=[{"size":8,"type":"d","str":"8"}] +0x21b80=[{"size":8,"type":"d","str":"8"}] +0x21b88=[{"size":8,"type":"d","str":"8"}] +0x21b90=[{"size":8,"type":"d","str":"8"}] +0x21b98=[{"size":8,"type":"d","str":"8"}] +0x21ba0=[{"size":8,"type":"d","str":"8"}] +0x21ba8=[{"size":8,"type":"d","str":"8"}] +0x21bb0=[{"size":8,"type":"d","str":"8"}] +0x21bb8=[{"size":8,"type":"d","str":"8"}] +0x21bc0=[{"size":8,"type":"d","str":"8"}] +0x21bc8=[{"size":8,"type":"d","str":"8"}] +0x21bd0=[{"size":8,"type":"d","str":"8"}] +0x21bd8=[{"size":8,"type":"d","str":"8"}] +0x21be0=[{"size":8,"type":"d","str":"8"}] +0x21be8=[{"size":8,"type":"d","str":"8"}] +0x21bf0=[{"size":8,"type":"d","str":"8"}] +0x21bf8=[{"size":8,"type":"d","str":"8"}] +0x21c0=[{"size":8,"type":"d","str":"8"}] +0x21c00=[{"size":8,"type":"d","str":"8"}] +0x21c08=[{"size":8,"type":"d","str":"8"}] +0x21c10=[{"size":8,"type":"d","str":"8"}] +0x21c18=[{"size":8,"type":"d","str":"8"}] +0x21c20=[{"size":8,"type":"d","str":"8"}] +0x21c28=[{"size":8,"type":"d","str":"8"}] +0x21c30=[{"size":8,"type":"d","str":"8"}] +0x21c38=[{"size":8,"type":"d","str":"8"}] +0x21c40=[{"size":8,"type":"d","str":"8"}] +0x21c48=[{"size":8,"type":"d","str":"8"}] +0x21c50=[{"size":8,"type":"d","str":"8"}] +0x21c58=[{"size":8,"type":"d","str":"8"},{"type":"C","str":"[19] -rw- section size 920 named .got"}] +0x21c60=[{"size":8,"type":"d","str":"8"}] +0x21c68=[{"size":8,"type":"d","str":"8"}] +0x21c70=[{"size":8,"type":"d"}] +0x21c78=[{"size":8,"type":"d"}] +0x21c8=[{"size":8,"type":"d","str":"8"}] +0x21c80=[{"size":8,"type":"d"}] +0x21c88=[{"size":8,"type":"d"}] +0x21c90=[{"size":8,"type":"d"}] +0x21c98=[{"size":8,"type":"d"}] +0x21ca0=[{"size":8,"type":"d"}] +0x21ca8=[{"size":8,"type":"d"}] +0x21cb0=[{"size":8,"type":"d"}] +0x21cb8=[{"size":8,"type":"d"}] +0x21cc0=[{"size":8,"type":"d"}] +0x21cc8=[{"size":8,"type":"d"}] +0x21cd0=[{"size":8,"type":"d"}] +0x21cd8=[{"size":8,"type":"d"}] +0x21ce0=[{"size":8,"type":"d"}] +0x21ce8=[{"size":8,"type":"d"}] +0x21cf0=[{"size":8,"type":"d"}] +0x21cf8=[{"size":8,"type":"d"}] +0x21d0=[{"size":8,"type":"d","str":"8"}] +0x21d00=[{"size":8,"type":"d"}] +0x21d08=[{"size":8,"type":"d"}] +0x21d10=[{"size":8,"type":"d"}] +0x21d18=[{"size":8,"type":"d"}] +0x21d20=[{"size":8,"type":"d"}] +0x21d28=[{"size":8,"type":"d"}] +0x21d30=[{"size":8,"type":"d"}] +0x21d38=[{"size":8,"type":"d"}] +0x21d40=[{"size":8,"type":"d"}] +0x21d48=[{"size":8,"type":"d"}] +0x21d50=[{"size":8,"type":"d"}] +0x21d58=[{"size":8,"type":"d"}] +0x21d60=[{"size":8,"type":"d"}] +0x21d68=[{"size":8,"type":"d"}] +0x21d70=[{"size":8,"type":"d"}] +0x21d78=[{"size":8,"type":"d"}] +0x21d8=[{"size":8,"type":"d","str":"8"}] +0x21d80=[{"size":8,"type":"d"}] +0x21d88=[{"size":8,"type":"d"}] +0x21d90=[{"size":8,"type":"d"}] +0x21d98=[{"size":8,"type":"d"}] +0x21da0=[{"size":8,"type":"d"}] +0x21da8=[{"size":8,"type":"d"}] +0x21db0=[{"size":8,"type":"d"}] +0x21db8=[{"size":8,"type":"d"}] +0x21dc0=[{"size":8,"type":"d"}] +0x21dc8=[{"size":8,"type":"d"}] +0x21dd0=[{"size":8,"type":"d"}] +0x21dd8=[{"size":8,"type":"d"}] +0x21de0=[{"size":8,"type":"d"}] +0x21de8=[{"size":8,"type":"d"}] +0x21df0=[{"size":8,"type":"d"}] +0x21df8=[{"size":8,"type":"d"}] +0x21e0=[{"size":8,"type":"d","str":"8"}] +0x21e00=[{"size":8,"type":"d"}] +0x21e08=[{"size":8,"type":"d"}] +0x21e10=[{"size":8,"type":"d"}] +0x21e18=[{"size":8,"type":"d"}] +0x21e20=[{"size":8,"type":"d"}] +0x21e28=[{"size":8,"type":"d"}] +0x21e30=[{"size":8,"type":"d"}] +0x21e38=[{"size":8,"type":"d"}] +0x21e40=[{"size":8,"type":"d"}] +0x21e48=[{"size":8,"type":"d"}] +0x21e50=[{"size":8,"type":"d"}] +0x21e58=[{"size":8,"type":"d"}] +0x21e60=[{"size":8,"type":"d"}] +0x21e68=[{"size":8,"type":"d"}] +0x21e70=[{"size":8,"type":"d"}] +0x21e78=[{"size":8,"type":"d"}] +0x21e8=[{"size":8,"type":"d","str":"8"}] +0x21e80=[{"size":8,"type":"d"}] +0x21e88=[{"size":8,"type":"d"}] +0x21e90=[{"size":8,"type":"d"}] +0x21e98=[{"size":8,"type":"d"}] +0x21ea0=[{"size":8,"type":"d"}] +0x21ea8=[{"size":8,"type":"d"}] +0x21eb0=[{"size":8,"type":"d"}] +0x21eb8=[{"size":8,"type":"d"}] +0x21ec0=[{"size":8,"type":"d"}] +0x21ec8=[{"size":8,"type":"d"}] +0x21ed0=[{"size":8,"type":"d"}] +0x21ed8=[{"size":8,"type":"d"}] +0x21ee0=[{"size":8,"type":"d"}] +0x21ee8=[{"size":8,"type":"d"}] +0x21ef0=[{"size":8,"type":"d"}] +0x21ef8=[{"size":8,"type":"d"}] +0x21f0=[{"size":8,"type":"d","str":"8"}] +0x21f00=[{"size":8,"type":"d"}] +0x21f08=[{"size":8,"type":"d"}] +0x21f10=[{"size":8,"type":"d"}] +0x21f18=[{"size":8,"type":"d"}] +0x21f20=[{"size":8,"type":"d"}] +0x21f28=[{"size":8,"type":"d"}] +0x21f30=[{"size":8,"type":"d"}] +0x21f38=[{"size":8,"type":"d"}] +0x21f40=[{"size":8,"type":"d"}] +0x21f48=[{"size":8,"type":"d"}] +0x21f50=[{"size":8,"type":"d"}] +0x21f58=[{"size":8,"type":"d"}] +0x21f60=[{"size":8,"type":"d"}] +0x21f68=[{"size":8,"type":"d"}] +0x21f70=[{"size":8,"type":"d"}] +0x21f78=[{"size":8,"type":"d"}] +0x21f8=[{"size":8,"type":"d","str":"8"}] +0x21f80=[{"size":8,"type":"d"}] +0x21f88=[{"size":8,"type":"d"}] +0x21f90=[{"size":8,"type":"d"}] +0x21f98=[{"size":8,"type":"d"}] +0x21fa0=[{"size":8,"type":"d"}] +0x21fa8=[{"size":8,"type":"d"}] +0x21fb0=[{"size":8,"type":"d"}] +0x21fb8=[{"size":8,"type":"d"}] +0x21fc0=[{"size":8,"type":"d"}] +0x21fc8=[{"size":8,"type":"d"}] +0x21fd0=[{"size":8,"type":"d"}] +0x21fd8=[{"size":8,"type":"d"}] +0x21fe0=[{"size":8,"type":"d"}] +0x21fe8=[{"size":8,"type":"d"}] +0x2200=[{"size":8,"type":"d","str":"8"}] +0x22000=[{"type":"C","str":"[20] -rw- section size 616 named .data"}] +0x22008=[{"size":8,"type":"d"}] +0x22040=[{"size":8,"type":"d"}] +0x22048=[{"size":8,"type":"d"}] +0x22068=[{"size":8,"type":"d"}] +0x22078=[{"size":8,"type":"d"}] +0x2208=[{"size":8,"type":"d","str":"8"}] +0x22098=[{"size":8,"type":"d"}] +0x220c8=[{"size":8,"type":"d"}] +0x220d8=[{"size":8,"type":"d"}] +0x220e8=[{"size":8,"type":"d"}] +0x220f8=[{"size":8,"type":"d"}] +0x2210=[{"size":8,"type":"d","str":"8"}] +0x22108=[{"size":8,"type":"d"}] +0x22118=[{"size":8,"type":"d"}] +0x22148=[{"size":8,"type":"d"}] +0x22158=[{"size":8,"type":"d"}] +0x22168=[{"size":8,"type":"d"}] +0x22178=[{"size":8,"type":"d"}] +0x2218=[{"size":8,"type":"d","str":"8"}] +0x22188=[{"size":8,"type":"d"}] +0x22198=[{"size":8,"type":"d"}] +0x221a8=[{"size":8,"type":"d"}] +0x221b8=[{"size":8,"type":"d"}] +0x221d8=[{"size":8,"type":"d"}] +0x221e8=[{"size":8,"type":"d"}] +0x221f0=[{"size":8,"type":"d"}] +0x2220=[{"size":8,"type":"d","str":"8"}] +0x22240=[{"size":8,"type":"d"}] +0x22258=[{"size":8,"type":"d"}] +0x22260=[{"size":8,"type":"d"}] +0x2228=[{"size":8,"type":"d","str":"8"}] +0x22280=[{"type":"C","str":"[21] -rw- section size 4824 named .bss"},{"size":8,"type":"d"}] +0x22288=[{"size":8,"type":"d"}] +0x22290=[{"size":8,"type":"d"}] +0x22298=[{"size":8,"type":"d"}] +0x222a0=[{"size":8,"type":"d"}] +0x222c0=[{"size":8,"type":"d"}] +0x2230=[{"size":8,"type":"d","str":"8"}] +0x2238=[{"size":8,"type":"d","str":"8"}] +0x2240=[{"size":8,"type":"d","str":"8"}] +0x2248=[{"size":8,"type":"d","str":"8"}] +0x2250=[{"size":8,"type":"d","str":"8"}] +0x2258=[{"size":8,"type":"d","str":"8"}] +0x2260=[{"size":8,"type":"d","str":"8"}] +0x2268=[{"size":8,"type":"d","str":"8"}] +0x2270=[{"size":8,"type":"d","str":"8"}] +0x2278=[{"size":8,"type":"d","str":"8"}] +0x2280=[{"size":8,"type":"d","str":"8"}] +0x2288=[{"size":8,"type":"d","str":"8"}] +0x2290=[{"size":8,"type":"d","str":"8"}] +0x2298=[{"size":8,"type":"d","str":"8"}] +0x22a0=[{"size":8,"type":"d","str":"8"}] +0x22a8=[{"size":8,"type":"d","str":"8"}] +0x22b0=[{"size":8,"type":"d","str":"8"}] +0x22b8=[{"size":8,"type":"d","str":"8"}] +0x22c0=[{"size":8,"type":"d","str":"8"}] +0x22c8=[{"size":8,"type":"d","str":"8"}] +0x22d0=[{"size":8,"type":"d","str":"8"}] +0x22d8=[{"size":8,"type":"d","str":"8"}] +0x22e0=[{"size":8,"type":"d","str":"8"}] +0x22e8=[{"size":8,"type":"d","str":"8"}] +0x22f0=[{"size":8,"type":"d","str":"8"}] +0x22f8=[{"size":8,"type":"d","str":"8"}] +0x2300=[{"size":8,"type":"d","str":"8"}] +0x2308=[{"size":8,"type":"d","str":"8"}] +0x2310=[{"size":8,"type":"d","str":"8"}] +0x2318=[{"size":8,"type":"d","str":"8"}] +0x2320=[{"size":8,"type":"d","str":"8"}] +0x2328=[{"size":8,"type":"d","str":"8"}] +0x2330=[{"size":8,"type":"d","str":"8"}] +0x2338=[{"size":8,"type":"d","str":"8"}] +0x2340=[{"size":8,"type":"d","str":"8"}] +0x2348=[{"size":8,"type":"d","str":"8"}] +0x2350=[{"size":8,"type":"d","str":"8"}] +0x23560=[{"size":8,"type":"d"}] +0x23568=[{"size":8,"type":"d"}] +0x23570=[{"size":8,"type":"d"}] +0x23578=[{"size":8,"type":"d"}] +0x2358=[{"size":8,"type":"d","str":"8"}] +0x23580=[{"size":8,"type":"d"}] +0x23588=[{"size":8,"type":"d"}] +0x23590=[{"size":8,"type":"d"}] +0x23598=[{"size":8,"type":"d"}] +0x235a0=[{"size":8,"type":"d"}] +0x235a8=[{"size":8,"type":"d"}] +0x235b0=[{"size":8,"type":"d"}] +0x235b8=[{"size":8,"type":"d"}] +0x235c0=[{"size":8,"type":"d"}] +0x235c8=[{"size":8,"type":"d"}] +0x235d0=[{"size":8,"type":"d"}] +0x235d8=[{"size":8,"type":"d"}] +0x235e0=[{"size":8,"type":"d"}] +0x235e8=[{"size":8,"type":"d"}] +0x235f0=[{"size":8,"type":"d"}] +0x235f8=[{"size":8,"type":"d"}] +0x2360=[{"size":8,"type":"d","str":"8"}] +0x23600=[{"size":8,"type":"d"}] +0x23608=[{"size":8,"type":"d"}] +0x23610=[{"size":8,"type":"d"}] +0x23618=[{"size":8,"type":"d"}] +0x23620=[{"size":8,"type":"d"}] +0x23628=[{"size":8,"type":"d"}] +0x23630=[{"size":8,"type":"d"}] +0x23638=[{"size":8,"type":"d"}] +0x23640=[{"size":8,"type":"d"}] +0x23648=[{"size":8,"type":"d"}] +0x23650=[{"size":8,"type":"d"}] +0x23658=[{"size":8,"type":"d"}] +0x23660=[{"size":8,"type":"d"}] +0x23668=[{"size":8,"type":"d"}] +0x23670=[{"size":8,"type":"d"}] +0x23678=[{"size":8,"type":"d"}] +0x2368=[{"size":8,"type":"d","str":"8"}] +0x23680=[{"size":8,"type":"d"}] +0x23688=[{"size":8,"type":"d"}] +0x23690=[{"size":8,"type":"d"}] +0x23698=[{"size":8,"type":"d"}] +0x236a0=[{"size":8,"type":"d"}] +0x236a8=[{"size":8,"type":"d"}] +0x236b0=[{"size":8,"type":"d"}] +0x236b8=[{"size":8,"type":"d"}] +0x236c0=[{"size":8,"type":"d"}] +0x236c8=[{"size":8,"type":"d"}] +0x236d0=[{"size":8,"type":"d"}] +0x236d8=[{"size":8,"type":"d"}] +0x236e0=[{"size":8,"type":"d"}] +0x236e8=[{"size":8,"type":"d"}] +0x236f0=[{"size":8,"type":"d"}] +0x236f8=[{"size":8,"type":"d"}] +0x2370=[{"size":8,"type":"d","str":"8"}] +0x23700=[{"size":8,"type":"d"}] +0x23708=[{"size":8,"type":"d"}] +0x23710=[{"size":8,"type":"d"}] +0x23718=[{"size":8,"type":"d"}] +0x23720=[{"size":8,"type":"d"}] +0x23728=[{"size":8,"type":"d"}] +0x23730=[{"size":8,"type":"d"}] +0x23738=[{"size":8,"type":"d"}] +0x23740=[{"size":8,"type":"d"}] +0x23748=[{"size":8,"type":"d"}] +0x23750=[{"size":8,"type":"d"}] +0x23758=[{"size":8,"type":"d"}] +0x23760=[{"size":8,"type":"d"}] +0x23768=[{"size":8,"type":"d"}] +0x23770=[{"size":8,"type":"d"}] +0x23778=[{"size":8,"type":"d"}] +0x2378=[{"size":8,"type":"d","str":"8"}] +0x23780=[{"size":8,"type":"d"}] +0x23788=[{"size":8,"type":"d"}] +0x23790=[{"size":8,"type":"d"}] +0x23798=[{"size":8,"type":"d"}] +0x237a0=[{"size":8,"type":"d"}] +0x237a8=[{"size":8,"type":"d"}] +0x237b0=[{"size":8,"type":"d"}] +0x237b8=[{"size":8,"type":"d"}] +0x237c0=[{"size":8,"type":"d"}] +0x237c8=[{"size":8,"type":"d"}] +0x237d0=[{"size":8,"type":"d"}] +0x237d8=[{"size":8,"type":"d"}] +0x237e0=[{"size":8,"type":"d"}] +0x237e8=[{"size":8,"type":"d"}] +0x237f0=[{"size":8,"type":"d"}] +0x237f8=[{"size":8,"type":"d"}] +0x2380=[{"size":8,"type":"d","str":"8"}] +0x23800=[{"size":8,"type":"d"}] +0x23808=[{"size":8,"type":"d"}] +0x23810=[{"size":8,"type":"d"}] +0x23818=[{"size":8,"type":"d"}] +0x23820=[{"size":8,"type":"d"}] +0x23828=[{"size":8,"type":"d"}] +0x23830=[{"size":8,"type":"d"}] +0x23838=[{"size":8,"type":"d"}] +0x23840=[{"size":8,"type":"d"}] +0x23848=[{"size":8,"type":"d"}] +0x23850=[{"size":8,"type":"d"}] +0x23858=[{"size":8,"type":"d"}] +0x23860=[{"size":8,"type":"d"}] +0x23868=[{"size":8,"type":"d"}] +0x23870=[{"size":8,"type":"d"}] +0x23878=[{"size":8,"type":"d"}] +0x2388=[{"size":8,"type":"d","str":"8"}] +0x23880=[{"size":8,"type":"d"}] +0x23888=[{"size":8,"type":"d"}] +0x23890=[{"size":8,"type":"d"}] +0x23898=[{"size":8,"type":"d"}] +0x238a0=[{"size":8,"type":"d"}] +0x238a8=[{"size":8,"type":"d"}] +0x238b0=[{"size":8,"type":"d"}] +0x238b8=[{"size":8,"type":"d"}] +0x238c0=[{"size":8,"type":"d"}] +0x238c8=[{"size":8,"type":"d"}] +0x238d0=[{"size":8,"type":"d"}] +0x238d8=[{"size":8,"type":"d"}] +0x2390=[{"size":8,"type":"d","str":"8"}] +0x2398=[{"size":8,"type":"d","str":"8"}] +0x23a0=[{"size":8,"type":"d","str":"8"}] +0x23a8=[{"size":8,"type":"d","str":"8"}] +0x23b0=[{"size":8,"type":"d","str":"8"}] +0x23b8=[{"size":8,"type":"d","str":"8"}] +0x23c0=[{"size":8,"type":"d","str":"8"}] +0x23c8=[{"size":8,"type":"d","str":"8"}] +0x23d0=[{"size":8,"type":"d","str":"8"}] +0x23d8=[{"size":8,"type":"d","str":"8"}] +0x23e0=[{"size":8,"type":"d","str":"8"}] +0x23e8=[{"size":8,"type":"d","str":"8"}] +0x23f0=[{"size":8,"type":"d","str":"8"}] +0x23f8=[{"size":8,"type":"d","str":"8"}] +0x2400=[{"size":8,"type":"d","str":"8"}] +0x2408=[{"size":8,"type":"d","str":"8"}] +0x2410=[{"size":8,"type":"d","str":"8"}] +0x2418=[{"size":8,"type":"d","str":"8"}] +0x2420=[{"size":8,"type":"d","str":"8"}] +0x2428=[{"size":8,"type":"d","str":"8"}] +0x2430=[{"size":8,"type":"d","str":"8"}] +0x2438=[{"size":8,"type":"d","str":"8"}] +0x2440=[{"size":8,"type":"d","str":"8"}] +0x2448=[{"size":8,"type":"d","str":"8"}] +0x2450=[{"size":8,"type":"d","str":"8"}] +0x2458=[{"size":8,"type":"d","str":"8"}] +0x2460=[{"size":8,"type":"d","str":"8"}] +0x2468=[{"size":8,"type":"d","str":"8"}] +0x2470=[{"size":8,"type":"d","str":"8"}] +0x2478=[{"size":8,"type":"d","str":"8"}] +0x2480=[{"size":8,"type":"d","str":"8"}] +0x2488=[{"size":8,"type":"d","str":"8"}] +0x2490=[{"size":8,"type":"d","str":"8"}] +0x2498=[{"size":8,"type":"d","str":"8"}] +0x24a0=[{"size":8,"type":"d","str":"8"}] +0x24a8=[{"size":8,"type":"d","str":"8"}] +0x24b0=[{"size":8,"type":"d","str":"8"}] +0x24b8=[{"size":8,"type":"d","str":"8"}] +0x24c0=[{"size":8,"type":"d","str":"8"}] +0x24c8=[{"size":8,"type":"d","str":"8"}] +0x24d0=[{"size":8,"type":"d","str":"8"}] +0x24d8=[{"size":8,"type":"d","str":"8"}] +0x24e0=[{"size":8,"type":"d","str":"8"}] +0x24e8=[{"size":8,"type":"d","str":"8"}] +0x24f0=[{"size":8,"type":"d","str":"8"}] +0x24f8=[{"size":8,"type":"d","str":"8"}] +0x2500=[{"size":8,"type":"d","str":"8"}] +0x2508=[{"size":8,"type":"d","str":"8"}] +0x2510=[{"size":8,"type":"d","str":"8"}] +0x2518=[{"size":8,"type":"d","str":"8"}] +0x2520=[{"size":8,"type":"d","str":"8"}] +0x2528=[{"size":8,"type":"d","str":"8"}] +0x2530=[{"size":8,"type":"d","str":"8"}] +0x2538=[{"size":8,"type":"d","str":"8"}] +0x2540=[{"size":8,"type":"d","str":"8"}] +0x2548=[{"size":8,"type":"d","str":"8"}] +0x2550=[{"size":8,"type":"d","str":"8"}] +0x2558=[{"size":8,"type":"d","str":"8"}] +0x2560=[{"size":8,"type":"d","str":"8"}] +0x2568=[{"size":8,"type":"d","str":"8"}] +0x2570=[{"size":8,"type":"d","str":"8"}] +0x2578=[{"size":8,"type":"d","str":"8"}] +0x2580=[{"size":8,"type":"d","str":"8"}] +0x2588=[{"size":8,"type":"d","str":"8"}] +0x2590=[{"size":8,"type":"d","str":"8"}] +0x2598=[{"size":8,"type":"d","str":"8"}] +0x25a0=[{"size":8,"type":"d","str":"8"}] +0x25a8=[{"size":8,"type":"d","str":"8"}] +0x25b0=[{"size":8,"type":"d","str":"8"}] +0x25b8=[{"size":8,"type":"d","str":"8"}] +0x25c0=[{"size":8,"type":"d","str":"8"}] +0x25c8=[{"size":8,"type":"d","str":"8"}] +0x25d0=[{"size":8,"type":"d","str":"8"}] +0x25d8=[{"size":8,"type":"d","str":"8"}] +0x25e0=[{"size":8,"type":"d","str":"8"}] +0x25e8=[{"size":8,"type":"d","str":"8"}] +0x25f0=[{"size":8,"type":"d","str":"8"}] +0x25f8=[{"size":8,"type":"d","str":"8"}] +0x2600=[{"size":8,"type":"d","str":"8"}] +0x2608=[{"size":8,"type":"d","str":"8"}] +0x2610=[{"size":8,"type":"d","str":"8"}] +0x2618=[{"size":8,"type":"d","str":"8"}] +0x2620=[{"size":8,"type":"d","str":"8"}] +0x2628=[{"size":8,"type":"d","str":"8"}] +0x2630=[{"size":8,"type":"d","str":"8"}] +0x2638=[{"size":8,"type":"d","str":"8"}] +0x2640=[{"size":8,"type":"d","str":"8"}] +0x2648=[{"size":8,"type":"d","str":"8"}] +0x2650=[{"size":8,"type":"d","str":"8"}] +0x2658=[{"size":8,"type":"d","str":"8"}] +0x2660=[{"size":8,"type":"d","str":"8"}] +0x2668=[{"size":8,"type":"d","str":"8"}] +0x2670=[{"size":8,"type":"d","str":"8"}] +0x2678=[{"size":8,"type":"d","str":"8"}] +0x2680=[{"size":8,"type":"d","str":"8"}] +0x2688=[{"size":8,"type":"d","str":"8"}] +0x2690=[{"size":8,"type":"d","str":"8"}] +0x2698=[{"size":8,"type":"d","str":"8"}] +0x26a0=[{"size":8,"type":"d","str":"8"}] +0x26a8=[{"size":8,"type":"d","str":"8"}] +0x26b0=[{"size":8,"type":"d","str":"8"}] +0x26b8=[{"size":8,"type":"d","str":"8"}] +0x26c0=[{"size":8,"type":"d","str":"8"}] +0x26c8=[{"size":8,"type":"d","str":"8"}] +0x26d0=[{"size":8,"type":"d","str":"8"}] +0x26d8=[{"size":8,"type":"d","str":"8"}] +0x26e0=[{"size":8,"type":"d","str":"8"}] +0x26e8=[{"size":8,"type":"d","str":"8"}] +0x26f0=[{"size":8,"type":"d","str":"8"}] +0x26f8=[{"size":8,"type":"d","str":"8"}] +0x2700=[{"size":8,"type":"d","str":"8"}] +0x2708=[{"size":8,"type":"d","str":"8"}] +0x2710=[{"size":8,"type":"d","str":"8"}] +0x2718=[{"size":8,"type":"d","str":"8"}] +0x2720=[{"size":8,"type":"d","str":"8"}] +0x2728=[{"size":8,"type":"d","str":"8"}] +0x2730=[{"size":8,"type":"d","str":"8"}] +0x2738=[{"size":8,"type":"d","str":"8"}] +0x2740=[{"size":8,"type":"d","str":"8"}] +0x2748=[{"size":8,"type":"d","str":"8"}] +0x2750=[{"size":8,"type":"d","str":"8"}] +0x2758=[{"size":8,"type":"d","str":"8"}] +0x2760=[{"size":8,"type":"d","str":"8"}] +0x2768=[{"size":8,"type":"d","str":"8"}] +0x2770=[{"size":8,"type":"d","str":"8"}] +0x2778=[{"size":8,"type":"d","str":"8"}] +0x2780=[{"size":8,"type":"d","str":"8"}] +0x2788=[{"size":8,"type":"d","str":"8"}] +0x2790=[{"size":8,"type":"d","str":"8"}] +0x2798=[{"size":8,"type":"d","str":"8"}] +0x27a0=[{"size":8,"type":"d","str":"8"}] +0x27a8=[{"size":8,"type":"d","str":"8"}] +0x27b0=[{"size":8,"type":"d","str":"8"}] +0x27b8=[{"size":8,"type":"d","str":"8"}] +0x27c0=[{"size":8,"type":"d","str":"8"}] +0x27c8=[{"size":8,"type":"d","str":"8"}] +0x27d0=[{"size":8,"type":"d","str":"8"}] +0x27d8=[{"size":8,"type":"d","str":"8"}] +0x27e0=[{"size":8,"type":"d","str":"8"}] +0x27e8=[{"size":8,"type":"d","str":"8"}] +0x27f0=[{"size":8,"type":"d","str":"8"}] +0x27f8=[{"size":8,"type":"d","str":"8"}] +0x2800=[{"size":8,"type":"d","str":"8"}] +0x2808=[{"size":8,"type":"d","str":"8"}] +0x2810=[{"size":8,"type":"d","str":"8"}] +0x2818=[{"size":8,"type":"d","str":"8"}] +0x2820=[{"size":8,"type":"d","str":"8"}] +0x2828=[{"size":8,"type":"d","str":"8"}] +0x2830=[{"size":8,"type":"d","str":"8"}] +0x2838=[{"size":8,"type":"d","str":"8"}] +0x2840=[{"size":8,"type":"d","str":"8"}] +0x2848=[{"size":8,"type":"d","str":"8"}] +0x2850=[{"size":8,"type":"d","str":"8"}] +0x2858=[{"size":8,"type":"d","str":"8"}] +0x2860=[{"size":8,"type":"d","str":"8"}] +0x2868=[{"size":8,"type":"d","str":"8"}] +0x2870=[{"size":8,"type":"d","str":"8"}] +0x2878=[{"size":8,"type":"d","str":"8"}] +0x2880=[{"size":8,"type":"d","str":"8"}] +0x2888=[{"size":8,"type":"d","str":"8"}] +0x2890=[{"size":8,"type":"d","str":"8"}] +0x2898=[{"size":8,"type":"d","str":"8"}] +0x28a0=[{"size":8,"type":"d","str":"8"}] +0x28a8=[{"size":8,"type":"d","str":"8"}] +0x28b0=[{"size":8,"type":"d","str":"8"}] +0x28b8=[{"size":8,"type":"d","str":"8"}] +0x28c0=[{"size":8,"type":"d","str":"8"}] +0x28c8=[{"size":8,"type":"d","str":"8"}] +0x28d0=[{"size":8,"type":"d","str":"8"}] +0x28d8=[{"size":8,"type":"d","str":"8"}] +0x28e0=[{"size":8,"type":"d","str":"8"}] +0x28e8=[{"size":8,"type":"d","str":"8"}] +0x28f0=[{"size":8,"type":"d","str":"8"}] +0x28f8=[{"size":8,"type":"d","str":"8"}] +0x2900=[{"size":8,"type":"d","str":"8"}] +0x2908=[{"size":8,"type":"d","str":"8"}] +0x2910=[{"size":8,"type":"d","str":"8"}] +0x2918=[{"size":8,"type":"d","str":"8"}] +0x2920=[{"size":8,"type":"d","str":"8"}] +0x2928=[{"size":8,"type":"d","str":"8"}] +0x2930=[{"size":8,"type":"d","str":"8"}] +0x2938=[{"size":8,"type":"d","str":"8"}] +0x2940=[{"size":8,"type":"d","str":"8"}] +0x2948=[{"size":8,"type":"d","str":"8"}] +0x2950=[{"size":8,"type":"d","str":"8"}] +0x2958=[{"size":8,"type":"d","str":"8"}] +0x2960=[{"size":8,"type":"d","str":"8"}] +0x2968=[{"size":8,"type":"d","str":"8"}] +0x2970=[{"size":8,"type":"d","str":"8"}] +0x2978=[{"size":8,"type":"d","str":"8"}] +0x2980=[{"size":8,"type":"d","str":"8"}] +0x2988=[{"size":8,"type":"d","str":"8"}] +0x2990=[{"size":8,"type":"d","str":"8"}] +0x2998=[{"size":8,"type":"d","str":"8"}] +0x29a0=[{"size":8,"type":"d","str":"8"}] +0x29a8=[{"size":8,"type":"d","str":"8"}] +0x29b0=[{"size":8,"type":"d","str":"8"}] +0x29b8=[{"size":8,"type":"d","str":"8"}] +0x29c0=[{"size":8,"type":"d","str":"8"}] +0x29c8=[{"size":8,"type":"d","str":"8"}] +0x29d0=[{"size":8,"type":"d","str":"8"}] +0x29d8=[{"size":8,"type":"d","str":"8"}] +0x29e0=[{"size":8,"type":"d","str":"8"}] +0x29e8=[{"size":8,"type":"d","str":"8"}] +0x29f0=[{"size":8,"type":"d","str":"8"}] +0x29f8=[{"size":8,"type":"d","str":"8"}] +0x2a00=[{"size":8,"type":"d","str":"8"}] +0x2a08=[{"size":8,"type":"d","str":"8"}] +0x2a10=[{"size":8,"type":"d","str":"8"}] +0x2a18=[{"size":8,"type":"d","str":"8"}] +0x2a20=[{"size":8,"type":"d","str":"8"}] +0x2a28=[{"size":8,"type":"d","str":"8"}] +0x2a30=[{"size":8,"type":"d","str":"8"}] +0x2a38=[{"size":8,"type":"d","str":"8"}] +0x2a40=[{"size":8,"type":"d","str":"8"}] +0x2a48=[{"size":8,"type":"d","str":"8"}] +0x2a50=[{"size":8,"type":"d","str":"8"}] +0x2a58=[{"size":8,"type":"d","str":"8"}] +0x2a60=[{"size":8,"type":"d","str":"8"}] +0x2a68=[{"size":8,"type":"d","str":"8"}] +0x2a70=[{"size":8,"type":"d","str":"8"}] +0x2a78=[{"size":8,"type":"d","str":"8"}] +0x2a8=[{"type":"C","str":"[00] -r-- section size 28 named .interp"}] +0x2a80=[{"size":8,"type":"d","str":"8"}] +0x2a88=[{"size":8,"type":"d","str":"8"}] +0x2a90=[{"size":8,"type":"d","str":"8"}] +0x2a98=[{"size":8,"type":"d","str":"8"}] +0x2aa0=[{"size":8,"type":"d","str":"8"}] +0x2aa8=[{"size":8,"type":"d","str":"8"}] +0x2ab0=[{"size":8,"type":"d","str":"8"}] +0x2ab8=[{"size":8,"type":"d","str":"8"}] +0x2ac0=[{"size":8,"type":"d","str":"8"}] +0x2ac8=[{"size":8,"type":"d","str":"8"}] +0x2ad0=[{"size":8,"type":"d","str":"8"}] +0x2ad8=[{"size":8,"type":"d","str":"8"}] +0x2ae0=[{"size":8,"type":"d","str":"8"}] +0x2ae8=[{"size":8,"type":"d","str":"8"}] +0x2af0=[{"size":8,"type":"d","str":"8"}] +0x2af8=[{"size":8,"type":"d","str":"8"}] +0x2b00=[{"size":8,"type":"d","str":"8"}] +0x2b08=[{"size":8,"type":"d","str":"8"}] +0x2b10=[{"size":8,"type":"d","str":"8"}] +0x2b18=[{"size":8,"type":"d","str":"8"}] +0x2b20=[{"size":8,"type":"d","str":"8"}] +0x2b28=[{"size":8,"type":"d","str":"8"}] +0x2b30=[{"size":8,"type":"d","str":"8"}] +0x2b38=[{"size":8,"type":"d","str":"8"}] +0x2b40=[{"size":8,"type":"d","str":"8"}] +0x2b48=[{"size":8,"type":"d","str":"8"}] +0x2b50=[{"size":8,"type":"d","str":"8"}] +0x2b58=[{"size":8,"type":"d","str":"8"}] +0x2b60=[{"size":8,"type":"d","str":"8"}] +0x2b68=[{"size":8,"type":"d","str":"8"}] +0x2b70=[{"size":8,"type":"d","str":"8"}] +0x2b78=[{"size":8,"type":"d","str":"8"}] +0x2b80=[{"size":8,"type":"d","str":"8"}] +0x2b88=[{"size":8,"type":"d","str":"8"}] +0x2b90=[{"size":8,"type":"d","str":"8"}] +0x2b98=[{"size":8,"type":"d","str":"8"}] +0x2ba0=[{"size":8,"type":"d","str":"8"}] +0x2ba8=[{"size":8,"type":"d","str":"8"}] +0x2bb0=[{"size":8,"type":"d","str":"8"}] +0x2bb8=[{"size":8,"type":"d","str":"8"}] +0x2bc0=[{"size":8,"type":"d","str":"8"}] +0x2bc8=[{"size":8,"type":"d","str":"8"}] +0x2bd0=[{"size":8,"type":"d","str":"8"}] +0x2bd8=[{"size":8,"type":"d","str":"8"}] +0x2be0=[{"size":8,"type":"d","str":"8"}] +0x2be8=[{"size":8,"type":"d","str":"8"}] +0x2bf0=[{"size":8,"type":"d","str":"8"}] +0x2bf8=[{"size":8,"type":"d","str":"8"}] +0x2c00=[{"size":8,"type":"d","str":"8"}] +0x2c08=[{"size":8,"type":"d","str":"8"}] +0x2c10=[{"size":8,"type":"d","str":"8"}] +0x2c18=[{"size":8,"type":"d","str":"8"}] +0x2c20=[{"size":8,"type":"d","str":"8"}] +0x2c28=[{"size":8,"type":"d","str":"8"}] +0x2c30=[{"size":8,"type":"d","str":"8"}] +0x2c38=[{"size":8,"type":"d","str":"8"}] +0x2c4=[{"type":"C","str":"[01] -r-- section size 32 named .note.ABI-tag"}] +0x2c40=[{"size":8,"type":"d","str":"8"}] +0x2c48=[{"size":8,"type":"d","str":"8"}] +0x2c50=[{"size":8,"type":"d","str":"8"}] +0x2c58=[{"size":8,"type":"d","str":"8"}] +0x2c60=[{"size":8,"type":"d","str":"8"}] +0x2c68=[{"size":8,"type":"d","str":"8"}] +0x2c70=[{"size":8,"type":"d","str":"8"}] +0x2c78=[{"size":8,"type":"d","str":"8"}] +0x2c80=[{"size":8,"type":"d","str":"8"}] +0x2c88=[{"size":8,"type":"d","str":"8"}] +0x2c90=[{"size":8,"type":"d","str":"8"}] +0x2c98=[{"size":8,"type":"d","str":"8"}] +0x2ca0=[{"size":8,"type":"d","str":"8"}] +0x2ca8=[{"size":8,"type":"d","str":"8"}] +0x2cb0=[{"size":8,"type":"d","str":"8"}] +0x2cb8=[{"size":8,"type":"d","str":"8"}] +0x2cc0=[{"size":8,"type":"d","str":"8"}] +0x2cc8=[{"size":8,"type":"d","str":"8"}] +0x2cd0=[{"size":8,"type":"d","str":"8"}] +0x2cd8=[{"size":8,"type":"d","str":"8"}] +0x2ce0=[{"size":8,"type":"d","str":"8"}] +0x2ce8=[{"size":8,"type":"d","str":"8"}] +0x2cf0=[{"size":8,"type":"d","str":"8"}] +0x2cf8=[{"size":8,"type":"d","str":"8"}] +0x2d00=[{"size":8,"type":"d","str":"8"}] +0x2d08=[{"size":8,"type":"d","str":"8"}] +0x2d10=[{"size":8,"type":"d","str":"8"}] +0x2d18=[{"size":8,"type":"d","str":"8"}] +0x2d20=[{"size":8,"type":"d","str":"8"}] +0x2d28=[{"size":8,"type":"d","str":"8"}] +0x2d30=[{"size":8,"type":"d","str":"8"}] +0x2d38=[{"size":8,"type":"d","str":"8"}] +0x2d40=[{"size":8,"type":"d","str":"8"}] +0x2d48=[{"size":8,"type":"d","str":"8"}] +0x2d50=[{"size":8,"type":"d","str":"8"}] +0x2d58=[{"size":8,"type":"d","str":"8"}] +0x2d60=[{"size":8,"type":"d","str":"8"}] +0x2d68=[{"size":8,"type":"d","str":"8"}] +0x2d70=[{"size":8,"type":"d","str":"8"}] +0x2d78=[{"size":8,"type":"d","str":"8"}] +0x2d80=[{"size":8,"type":"d","str":"8"}] +0x2d88=[{"size":8,"type":"d","str":"8"}] +0x2d90=[{"size":8,"type":"d","str":"8"}] +0x2d98=[{"size":8,"type":"d","str":"8"}] +0x2da0=[{"size":8,"type":"d","str":"8"}] +0x2da8=[{"size":8,"type":"d","str":"8"}] +0x2db0=[{"size":8,"type":"d","str":"8"}] +0x2db8=[{"size":8,"type":"d","str":"8"}] +0x2dc0=[{"size":8,"type":"d","str":"8"}] +0x2dc8=[{"size":8,"type":"d","str":"8"}] +0x2dd0=[{"size":8,"type":"d","str":"8"}] +0x2dd8=[{"size":8,"type":"d","str":"8"}] +0x2de0=[{"size":8,"type":"d","str":"8"}] +0x2de8=[{"size":8,"type":"d","str":"8"}] +0x2df0=[{"size":8,"type":"d","str":"8"}] +0x2df8=[{"size":8,"type":"d","str":"8"}] +0x2e00=[{"size":8,"type":"d","str":"8"}] +0x2e08=[{"size":8,"type":"d","str":"8"}] +0x2e10=[{"size":8,"type":"d","str":"8"}] +0x2e18=[{"size":8,"type":"d","str":"8"}] +0x2e20=[{"size":8,"type":"d","str":"8"}] +0x2e28=[{"size":8,"type":"d","str":"8"}] +0x2e30=[{"size":8,"type":"d","str":"8"}] +0x2e38=[{"size":8,"type":"d","str":"8"}] +0x2e4=[{"type":"C","str":"[02] -r-- section size 36 named .note.gnu.build-id"}] +0x2e40=[{"size":8,"type":"d","str":"8"}] +0x2e48=[{"size":8,"type":"d","str":"8"}] +0x2e50=[{"size":8,"type":"d","str":"8"}] +0x2e58=[{"size":8,"type":"d","str":"8"}] +0x2e60=[{"size":8,"type":"d","str":"8"}] +0x2e68=[{"size":8,"type":"d","str":"8"}] +0x2e70=[{"size":8,"type":"d","str":"8"}] +0x2e78=[{"size":8,"type":"d","str":"8"}] +0x2e80=[{"size":8,"type":"d","str":"8"}] +0x2e88=[{"size":8,"type":"d","str":"8"}] +0x2e90=[{"size":8,"type":"d","str":"8"}] +0x2e98=[{"size":8,"type":"d","str":"8"}] +0x2ea0=[{"size":8,"type":"d","str":"8"}] +0x2ea8=[{"size":8,"type":"d","str":"8"}] +0x2eb0=[{"size":8,"type":"d","str":"8"}] +0x2eb8=[{"size":8,"type":"d","str":"8"}] +0x2ec0=[{"size":8,"type":"d","str":"8"}] +0x2ec8=[{"size":8,"type":"d","str":"8"}] +0x2ed0=[{"size":8,"type":"d","str":"8"}] +0x2ed8=[{"size":8,"type":"d","str":"8"}] +0x2ee0=[{"size":8,"type":"d","str":"8"}] +0x2ee8=[{"size":8,"type":"d","str":"8"}] +0x2ef0=[{"size":8,"type":"d","str":"8"}] +0x2ef8=[{"size":8,"type":"d","str":"8"}] +0x2f00=[{"size":8,"type":"d","str":"8"}] +0x2f08=[{"size":8,"type":"d","str":"8"}] +0x2f10=[{"size":8,"type":"d","str":"8"}] +0x2f18=[{"size":8,"type":"d","str":"8"}] +0x2f20=[{"size":8,"type":"d","str":"8"}] +0x2f28=[{"size":8,"type":"d","str":"8"}] +0x2f30=[{"size":8,"type":"d","str":"8"}] +0x2f38=[{"size":8,"type":"d","str":"8"}] +0x2f40=[{"size":8,"type":"d","str":"8"}] +0x2f48=[{"size":8,"type":"d","str":"8"}] +0x2f50=[{"size":8,"type":"d","str":"8"}] +0x2f58=[{"size":8,"type":"d","str":"8"}] +0x2f60=[{"size":8,"type":"d","str":"8"}] +0x2f68=[{"size":8,"type":"d","str":"8"}] +0x2f70=[{"size":8,"type":"d","str":"8"}] +0x2f78=[{"size":8,"type":"d","str":"8"}] +0x2f80=[{"size":8,"type":"d","str":"8"}] +0x2f88=[{"size":8,"type":"d","str":"8"}] +0x2f90=[{"size":8,"type":"d","str":"8"}] +0x2f98=[{"size":8,"type":"d","str":"8"}] +0x2fa0=[{"size":8,"type":"d","str":"8"}] +0x2fa8=[{"size":8,"type":"d","str":"8"}] +0x2fb0=[{"size":8,"type":"d","str":"8"}] +0x2fb8=[{"size":8,"type":"d","str":"8"}] +0x2fc0=[{"size":8,"type":"d","str":"8"}] +0x2fc8=[{"size":8,"type":"d","str":"8"}] +0x2fd0=[{"size":8,"type":"d","str":"8"}] +0x2fd8=[{"size":8,"type":"d","str":"8"}] +0x2fe0=[{"size":8,"type":"d","str":"8"}] +0x2fe8=[{"size":8,"type":"d","str":"8"}] +0x2ff0=[{"size":8,"type":"d","str":"8"}] +0x2ff8=[{"size":8,"type":"d","str":"8"}] +0x3000=[{"size":8,"type":"d","str":"8"}] +0x3008=[{"size":8,"type":"d","str":"8"}] +0x3010=[{"size":8,"type":"d","str":"8"}] +0x3018=[{"size":8,"type":"d","str":"8"}] +0x3020=[{"size":8,"type":"d","str":"8"}] +0x3028=[{"size":8,"type":"d","str":"8"}] +0x3030=[{"size":8,"type":"d","str":"8"}] +0x3038=[{"size":8,"type":"d","str":"8"}] +0x3040=[{"size":8,"type":"d","str":"8"}] +0x3048=[{"size":8,"type":"d","str":"8"}] +0x3050=[{"size":8,"type":"d","str":"8"}] +0x3058=[{"size":8,"type":"d","str":"8"}] +0x3060=[{"size":8,"type":"d","str":"8"}] +0x3068=[{"size":8,"type":"d","str":"8"}] +0x3070=[{"size":8,"type":"d","str":"8"}] +0x3078=[{"size":8,"type":"d","str":"8"}] +0x308=[{"type":"C","str":"[03] -r-- section size 200 named .gnu.hash"}] +0x3080=[{"size":8,"type":"d","str":"8"}] +0x3088=[{"size":8,"type":"d","str":"8"}] +0x3090=[{"size":8,"type":"d","str":"8"}] +0x3098=[{"size":8,"type":"d","str":"8"}] +0x30a0=[{"size":8,"type":"d","str":"8"}] +0x30a8=[{"size":8,"type":"d","str":"8"}] +0x30b0=[{"size":8,"type":"d","str":"8"}] +0x30b8=[{"size":8,"type":"d","str":"8"}] +0x30c0=[{"size":8,"type":"d","str":"8"}] +0x30c8=[{"size":8,"type":"d","str":"8"}] +0x30d0=[{"size":8,"type":"d","str":"8"}] +0x30d8=[{"size":8,"type":"d","str":"8"}] +0x30e0=[{"size":8,"type":"d","str":"8"}] +0x30e8=[{"size":8,"type":"d","str":"8"}] +0x30f0=[{"size":8,"type":"d","str":"8"}] +0x30f8=[{"size":8,"type":"d","str":"8"}] +0x3100=[{"size":8,"type":"d","str":"8"}] +0x3108=[{"size":8,"type":"d","str":"8"}] +0x3110=[{"size":8,"type":"d","str":"8"}] +0x3118=[{"size":8,"type":"d","str":"8"}] +0x3120=[{"size":8,"type":"d","str":"8"}] +0x3128=[{"size":8,"type":"d","str":"8"}] +0x3130=[{"size":8,"type":"d","str":"8"}] +0x3138=[{"size":8,"type":"d","str":"8"}] +0x3140=[{"size":8,"type":"d","str":"8"}] +0x3148=[{"size":8,"type":"d","str":"8"}] +0x3150=[{"size":8,"type":"d","str":"8"}] +0x3158=[{"size":8,"type":"d","str":"8"}] +0x3160=[{"size":8,"type":"d","str":"8"}] +0x3168=[{"size":8,"type":"d","str":"8"}] +0x3170=[{"size":8,"type":"d","str":"8"}] +0x3178=[{"size":8,"type":"d","str":"8"}] +0x3180=[{"size":8,"type":"d","str":"8"}] +0x3188=[{"size":8,"type":"d","str":"8"}] +0x3190=[{"size":8,"type":"d","str":"8"}] +0x3198=[{"size":8,"type":"d","str":"8"}] +0x31a0=[{"size":8,"type":"d","str":"8"}] +0x31a8=[{"size":8,"type":"d","str":"8"}] +0x31b0=[{"size":8,"type":"d","str":"8"}] +0x31b8=[{"size":8,"type":"d","str":"8"}] +0x31c0=[{"size":8,"type":"d","str":"8"}] +0x31c8=[{"size":8,"type":"d","str":"8"}] +0x31d0=[{"size":8,"type":"d","str":"8"}] +0x31d8=[{"size":8,"type":"d","str":"8"}] +0x31e0=[{"size":8,"type":"d","str":"8"}] +0x31e8=[{"size":8,"type":"d","str":"8"}] +0x31f0=[{"size":8,"type":"d","str":"8"}] +0x31f8=[{"size":8,"type":"d","str":"8"}] +0x3200=[{"size":8,"type":"d","str":"8"}] +0x3208=[{"size":8,"type":"d","str":"8"}] +0x3210=[{"size":8,"type":"d","str":"8"}] +0x3218=[{"size":8,"type":"d","str":"8"}] +0x3220=[{"size":8,"type":"d","str":"8"}] +0x3228=[{"size":8,"type":"d","str":"8"}] +0x3230=[{"size":8,"type":"d","str":"8"}] +0x3238=[{"size":8,"type":"d","str":"8"}] +0x3240=[{"size":8,"type":"d","str":"8"}] +0x3248=[{"size":8,"type":"d","str":"8"}] +0x3250=[{"size":8,"type":"d","str":"8"}] +0x3258=[{"size":8,"type":"d","str":"8"}] +0x3260=[{"size":8,"type":"d","str":"8"}] +0x3268=[{"size":8,"type":"d","str":"8"}] +0x3270=[{"size":8,"type":"d","str":"8"}] +0x3278=[{"size":8,"type":"d","str":"8"}] +0x3280=[{"size":8,"type":"d","str":"8"}] +0x3288=[{"size":8,"type":"d","str":"8"}] +0x3290=[{"size":8,"type":"d","str":"8"}] +0x3298=[{"size":8,"type":"d","str":"8"}] +0x32a0=[{"size":8,"type":"d","str":"8"}] +0x32a8=[{"size":8,"type":"d","str":"8"}] +0x32b0=[{"size":8,"type":"d","str":"8"}] +0x32b8=[{"size":8,"type":"d","str":"8"}] +0x32c0=[{"size":8,"type":"d","str":"8"}] +0x32c8=[{"size":8,"type":"d","str":"8"}] +0x32d0=[{"size":8,"type":"d","str":"8"}] +0x32d8=[{"size":8,"type":"d","str":"8"}] +0x32e0=[{"size":8,"type":"d","str":"8"}] +0x32e8=[{"size":8,"type":"d","str":"8"}] +0x32f0=[{"size":8,"type":"d","str":"8"}] +0x32f8=[{"size":8,"type":"d","str":"8"}] +0x3300=[{"size":8,"type":"d","str":"8"}] +0x3308=[{"size":8,"type":"d","str":"8"}] +0x3310=[{"size":8,"type":"d","str":"8"}] +0x3318=[{"size":8,"type":"d","str":"8"}] +0x3320=[{"size":8,"type":"d","str":"8"}] +0x3328=[{"size":8,"type":"d","str":"8"}] +0x3330=[{"size":8,"type":"d","str":"8"}] +0x3338=[{"size":8,"type":"d","str":"8"}] +0x3340=[{"size":8,"type":"d","str":"8"}] +0x3348=[{"size":8,"type":"d","str":"8"}] +0x3350=[{"size":8,"type":"d","str":"8"}] +0x3358=[{"size":8,"type":"d","str":"8"}] +0x3360=[{"size":8,"type":"d","str":"8"}] +0x3368=[{"size":8,"type":"d","str":"8"}] +0x3370=[{"size":8,"type":"d","str":"8"}] +0x3378=[{"size":8,"type":"d","str":"8"}] +0x3380=[{"size":8,"type":"d","str":"8"}] +0x3388=[{"size":8,"type":"d","str":"8"}] +0x3390=[{"size":8,"type":"d","str":"8"}] +0x3398=[{"size":8,"type":"d","str":"8"}] +0x33a0=[{"size":8,"type":"d","str":"8"}] +0x33a8=[{"size":8,"type":"d","str":"8"}] +0x33b0=[{"size":8,"type":"d","str":"8"}] +0x33b8=[{"size":8,"type":"d","str":"8"}] +0x33c0=[{"size":8,"type":"d","str":"8"}] +0x33c8=[{"size":8,"type":"d","str":"8"}] +0x33d0=[{"size":8,"type":"d","str":"8"}] +0x33d8=[{"size":8,"type":"d","str":"8"}] +0x33e0=[{"size":8,"type":"d","str":"8"}] +0x33e8=[{"size":8,"type":"d","str":"8"}] +0x33f0=[{"size":8,"type":"d","str":"8"}] +0x33f8=[{"size":8,"type":"d","str":"8"}] +0x3400=[{"size":8,"type":"d","str":"8"}] +0x3408=[{"size":8,"type":"d","str":"8"}] +0x3410=[{"size":8,"type":"d","str":"8"}] +0x3418=[{"size":8,"type":"d","str":"8"}] +0x3420=[{"size":8,"type":"d","str":"8"}] +0x3428=[{"size":8,"type":"d","str":"8"}] +0x3430=[{"size":8,"type":"d","str":"8"}] +0x3438=[{"size":8,"type":"d","str":"8"}] +0x3440=[{"size":8,"type":"d","str":"8"}] +0x3448=[{"size":8,"type":"d","str":"8"}] +0x3450=[{"size":8,"type":"d","str":"8"}] +0x3458=[{"size":8,"type":"d","str":"8"}] +0x3460=[{"size":8,"type":"d","str":"8"}] +0x3468=[{"size":8,"type":"d","str":"8"}] +0x3470=[{"size":8,"type":"d","str":"8"}] +0x3478=[{"size":8,"type":"d","str":"8"}] +0x3d0=[{"type":"C","str":"[04] -r-- section size 3144 named .dynsym"}] +0x4000=[{"type":"C","str":"[09] -r-x section size 27 named .init"}] +0x4020=[{"type":"C","str":"[10] -r-x section size 75619 named .text"}] + +/core/analysis/meta/spaces +name=CS +spacestack=["*"] + +/core/analysis/meta/spaces/spaces +bin=s + +/core/analysis/noreturn + +/core/analysis/types +FILE=typedef +__div_t=struct +__idtype=enum +__imaxdiv_t=struct +__ldiv_t=struct +__lldiv_t=struct +__siginfo_t=struct +__sigset_t=struct +_fd_set=struct +access_perm=enum +bool=type +char=type +char *=type +char16_t=type +char32_t=type +char8_t=type +clock_t=typedef +div_t=typedef +double=type +enum.__idtype=P_ALL,P_GID,P_PGID +enum.__idtype.0x0=P_ALL +enum.__idtype.0x1=P_GID +enum.__idtype.0x2=P_PGID +enum.__idtype.P_ALL=0x0 +enum.__idtype.P_GID=0x1 +enum.__idtype.P_PGID=0x2 +enum.access_perm=F_OK,X_OK,W_OK,R_OK,WX_OK,RX_OK,RW_OK,RWX_OK +enum.access_perm.0x0=F_OK +enum.access_perm.0x1=X_OK +enum.access_perm.0x2=W_OK +enum.access_perm.0x3=WX_OK +enum.access_perm.0x4=R_OK +enum.access_perm.0x5=RX_OK +enum.access_perm.0x6=RW_OK +enum.access_perm.0x7=RWX_OK +enum.access_perm.F_OK=0x0 +enum.access_perm.RWX_OK=0x7 +enum.access_perm.RW_OK=0x6 +enum.access_perm.RX_OK=0x5 +enum.access_perm.R_OK=0x4 +enum.access_perm.WX_OK=0x3 +enum.access_perm.W_OK=0x2 +enum.access_perm.X_OK=0x1 +enum.sock_domain=AF_UNIX,AF_INET,AF_AX25,AF_IPX,AF_APPLETALK,AF_X25,AF_INET6,AF_DECnet,AF_KEY,AF_NETLINK,AF_PACKET,AF_RDS,AF_PPPOX,AF_LLC,AF_IB,AF_MPLS,AF_CAN,AF_TIPC,AF_BLUETOOTH,AF_ALG,AF_VSOCK,AF_KCM,AF_XDP +enum.sock_domain.0x1=AF_UNIX +enum.sock_domain.0x10=AF_INET6 +enum.sock_domain.0x12=AF_DECnet +enum.sock_domain.0x15=AF_KEY +enum.sock_domain.0x16=AF_NETLINK +enum.sock_domain.0x17=AF_PACKET +enum.sock_domain.0x2=AF_INET +enum.sock_domain.0x21=AF_RDS +enum.sock_domain.0x24=AF_PPPOX +enum.sock_domain.0x26=AF_LLC +enum.sock_domain.0x27=AF_IB +enum.sock_domain.0x28=AF_MPLS +enum.sock_domain.0x29=AF_CAN +enum.sock_domain.0x3=AF_AX25 +enum.sock_domain.0x30=AF_TIPC +enum.sock_domain.0x31=AF_BLUETOOTH +enum.sock_domain.0x38=AF_ALG +enum.sock_domain.0x4=AF_IPX +enum.sock_domain.0x40=AF_VSOCK +enum.sock_domain.0x41=AF_KCM +enum.sock_domain.0x44=AF_XDP +enum.sock_domain.0x5=AF_APPLETALK +enum.sock_domain.0x9=AF_X25 +enum.sock_domain.AF_ALG=0x38 +enum.sock_domain.AF_APPLETALK=0x5 +enum.sock_domain.AF_AX25=0x3 +enum.sock_domain.AF_BLUETOOTH=0x31 +enum.sock_domain.AF_CAN=0x29 +enum.sock_domain.AF_DECnet=0x12 +enum.sock_domain.AF_IB=0x27 +enum.sock_domain.AF_INET=0x2 +enum.sock_domain.AF_INET6=0x10 +enum.sock_domain.AF_IPX=0x4 +enum.sock_domain.AF_KCM=0x41 +enum.sock_domain.AF_KEY=0x15 +enum.sock_domain.AF_LLC=0x26 +enum.sock_domain.AF_MPLS=0x28 +enum.sock_domain.AF_NETLINK=0x16 +enum.sock_domain.AF_PACKET=0x17 +enum.sock_domain.AF_PPPOX=0x24 +enum.sock_domain.AF_RDS=0x21 +enum.sock_domain.AF_TIPC=0x30 +enum.sock_domain.AF_UNIX=0x1 +enum.sock_domain.AF_VSOCK=0x40 +enum.sock_domain.AF_X25=0x9 +enum.sock_domain.AF_XDP=0x44 +enum.sock_type=SOCK_STREAM,SOCK_DGRAM,SOCK_SEQPACKET,SOCK_RAW,SOCK_RDM,SOCK_PACKET,SOCK_DCCP +enum.sock_type.0x1=SOCK_DGRAM +enum.sock_type.0x2=SOCK_STREAM +enum.sock_type.0x3=SOCK_RAW +enum.sock_type.0x4=SOCK_RDM +enum.sock_type.0x5=SOCK_SEQPACKET +enum.sock_type.0x6=SOCK_DCCP +enum.sock_type.0x7=SOCK_PACKET +enum.sock_type.SOCK_DCCP=0x6 +enum.sock_type.SOCK_DGRAM=0x1 +enum.sock_type.SOCK_PACKET=0x7 +enum.sock_type.SOCK_RAW=0x3 +enum.sock_type.SOCK_RDM=0x4 +enum.sock_type.SOCK_SEQPACKET=0x5 +enum.sock_type.SOCK_STREAM=0x2 +fd_mask=typedef +fd_set=typedef +fenv_t=typedef +fexcept_t=typedef +float=type +fpos_t=typedef +gid_t=type +id_t=type +idtype_t=typedef +imaxdiv_t=typedef +int=type +int16_t=type +int32_t=type +int64_t=type +int8_t=type +intmax_t=type +intptr_t=type +jmp_buf=typedef +lconv=struct +ldiv_t=typedef +lldiv_t=typedef +locale_t=typedef +long=type +long double=type +long int=type +long long=type +long long int=type +mbstate_t=typedef +nl_item=typedef +pid_t=type +ptrdiff_t=type +short=type +sigaction=struct +siginfo_t=typedef +sigset_t=typedef +sigval=union +size_t=type +sock_domain=enum +sock_type=enum +sockaddr=struct +socklen_t=typedef +ssize_t=type +std__type_info=struct +struct.__div_t=quot,rem +struct.__div_t.quot=int,0,0 +struct.__div_t.rem=int,2,0 +struct.__imaxdiv_t=quot,rem +struct.__imaxdiv_t.quot=intmax_t,0,0 +struct.__imaxdiv_t.rem=intmax_t,8,0 +struct.__ldiv_t=quot,rem +struct.__ldiv_t.quot=long int,0,0 +struct.__ldiv_t.rem=long int,4,0 +struct.__lldiv_t=quot,rem +struct.__lldiv_t.quot=long long int,0,0 +struct.__lldiv_t.rem=long long int,4,0 +struct.__siginfo_t=si_signo,si_code,si_value,si_errno,si_pid,si_uid,si_addr,si_status,si_band +struct.__siginfo_t.si_addr=void *,28,0 +struct.__siginfo_t.si_band=int,36,0 +struct.__siginfo_t.si_code=int,4,0 +struct.__siginfo_t.si_errno=int,16,0 +struct.__siginfo_t.si_pid=pid_t,20,0 +struct.__siginfo_t.si_signo=int,0,0 +struct.__siginfo_t.si_status=int,32,0 +struct.__siginfo_t.si_uid=uid_t,24,0 +struct.__siginfo_t.si_value=union sigval,8,0 +struct.__sigset_t=sig +struct.__sigset_t.sig=unsigned long,0,0 +struct._fd_set=fds_bits +struct._fd_set.fds_bits=fd_mask,0,0 +struct.sigaction=sa_handler,sa_flags,sa_restorer,sa_mask +struct.sigaction.sa_flags=unsigned long,8,0 +struct.sigaction.sa_handler=void *,0,0 +struct.sigaction.sa_mask=sigset_t,20,0 +struct.sigaction.sa_restorer=void *,12,0 +struct.timespec=tv_sec,tv_nsec +struct.timespec.tv_nsec=long,8,0 +struct.timespec.tv_sec=time_t,0,0 +struct.timeval=tv_sec,tv_usec +struct.timeval.tv_sec=time_t,0,0 +struct.timeval.tv_usec=suseconds_t,8,0 +struct.tm=tm_sec,tm_min,tm_hour,tm_mday,tm_mon,tm_year,tm_wday,tm_yday,tm_isdst +struct.tm.tm_hour=int,8,0 +struct.tm.tm_isdst=int,32,0 +struct.tm.tm_mday=int,12,0 +struct.tm.tm_min=int,4,0 +struct.tm.tm_mon=int,16,0 +struct.tm.tm_sec=int,0,0 +struct.tm.tm_wday=int,24,0 +struct.tm.tm_yday=int,28,0 +struct.tm.tm_year=int,20,0 +suseconds_t=typedef +time_t=typedef +timespec=struct +timeval=struct +tm=struct +type.bool=b +type.bool.size=8 +type.bool.typeclass=None +type.char=c +type.char *=z +type.char *.size=64 +type.char *.typeclass=None +type.char.size=8 +type.char.typeclass=Signed Integral +type.char16_t=c +type.char16_t.size=16 +type.char16_t.typeclass=Signed Integral +type.char32_t=c +type.char32_t.size=32 +type.char32_t.typeclass=Signed Integral +type.char8_t=c +type.char8_t.size=8 +type.char8_t.typeclass=Signed Integral +type.double=F +type.double.size=64 +type.double.typeclass=Floating +type.float=f +type.float.size=32 +type.float.typeclass=Floating +type.gid_t=q +type.gid_t.size=64 +type.gid_t.typeclass=Integral +type.id_t=q +type.id_t.size=64 +type.id_t.typeclass=Integral +type.int=d +type.int.size=32 +type.int.typeclass=Signed Integral +type.int16_t=w +type.int16_t.size=16 +type.int16_t.typeclass=Signed Integral +type.int32_t=d +type.int32_t.size=32 +type.int32_t.typeclass=Signed Integral +type.int64_t=q +type.int64_t.size=64 +type.int64_t.typeclass=Signed Integral +type.int8_t=b +type.int8_t.size=8 +type.int8_t.typeclass=Signed Integral +type.intmax_t=q +type.intmax_t.size=64 +type.intmax_t.typeclass=Signed Integral +type.intptr_t=q +type.intptr_t.size=64 +type.intptr_t.typeclass=Signed Integral +type.long=x +type.long double=F +type.long double.size=64 +type.long double.typeclass=Floating +type.long int=x +type.long int.size=64 +type.long int.typeclass=Signed Integral +type.long long=q +type.long long int=q +type.long long int.size=64 +type.long long int.typeclass=Signed Integral +type.long long.size=64 +type.long long.typeclass=Signed Integral +type.long.size=64 +type.long.typeclass=Signed Integral +type.pid_t=q +type.pid_t.size=64 +type.pid_t.typeclass=Integral +type.ptrdiff_t=q +type.ptrdiff_t.size=64 +type.ptrdiff_t.typeclass=Integral +type.short=w +type.short.size=16 +type.short.typeclass=Signed Integral +type.size_t=q +type.size_t.size=64 +type.size_t.typeclass=Unsigned Integral +type.ssize_t=q +type.ssize_t.size=64 +type.ssize_t.typeclass=Signed Integral +type.uid_t=q +type.uid_t.size=64 +type.uid_t.typeclass=Integral +type.uint16_t=w +type.uint16_t.size=16 +type.uint16_t.typeclass=Unsigned Integral +type.uint32_t=d +type.uint32_t.size=32 +type.uint32_t.typeclass=Unsigned Integral +type.uint64_t=q +type.uint64_t.size=64 +type.uint64_t.typeclass=Unsigned Integral +type.uint8_t=b +type.uint8_t.size=8 +type.uint8_t.typeclass=Unsigned Integral +type.uintmax_t=q +type.uintmax_t.size=64 +type.uintmax_t.typeclass=Unsigned Integral +type.uintptr_t=q +type.uintptr_t.size=64 +type.uintptr_t.typeclass=Unsigned Integral +type.unknown_t=q +type.unknown_t.size=64 +type.unknown_t.typeclass=Integral +type.unsigned char=b +type.unsigned char.size=8 +type.unsigned char.typeclass=Unsigned Integral +type.unsigned int=i +type.unsigned int.size=32 +type.unsigned int.typeclass=Unsigned Integral +type.unsigned long=d +type.unsigned long long=q +type.unsigned long long.size=64 +type.unsigned long long.typeclass=Unsigned Integral +type.unsigned long.size=32 +type.unsigned long.typeclass=Unsigned Integral +type.unsigned short=w +type.unsigned short.size=16 +type.unsigned short.typeclass=Unsigned Integral +type.void *=p +type.void *.size=64 +type.void *.typeclass=None +type.void.size=0 +type.void.typeclass=None +typedef.FILE=void +typedef.clock_t=void +typedef.div_t=struct __div_t +typedef.fd_mask=long int +typedef.fd_set=struct _fd_set +typedef.fenv_t=void +typedef.fexcept_t=void +typedef.fpos_t=void +typedef.idtype_t=enum __idtype +typedef.imaxdiv_t=struct __imaxdiv_t +typedef.jmp_buf=void +typedef.ldiv_t=struct __ldiv_t +typedef.lldiv_t=struct __lldiv_t +typedef.locale_t=void +typedef.mbstate_t=void +typedef.nl_item=int +typedef.siginfo_t=struct __siginfo_t +typedef.sigset_t=struct __sigset_t +typedef.socklen_t=int +typedef.suseconds_t=long +typedef.time_t=long +typedef.va_list=char * +typedef.wchar_t=int +typedef.wctrans_t=unsigned int +typedef.wctype_t=int +typedef.wint_t=int +uid_t=type +uint16_t=type +uint32_t=type +uint64_t=type +uint8_t=type +uintmax_t=type +uintptr_t=type +union.sigval=sival_int,sival_ptr +union.sigval.sival_int=int,0,0 +union.sigval.sival_ptr=void *,0,0 +unknown_t=type +unsigned char=type +unsigned int=type +unsigned long=type +unsigned long long=type +unsigned short=type +va_list=typedef +void=type +void *=type +wchar_t=typedef +wctrans_t=typedef +wctype_t=typedef +wint_t=typedef + +/core/analysis/vars + +/core/analysis/xrefs + +/core/config +analysis.apply.signature=true +analysis.arch=x86 +analysis.armthumb=false +analysis.autoname=false +analysis.bb.maxsize=512K +analysis.brokenrefs=false +analysis.calls=false +analysis.cpp.abi=itanium +analysis.cpu=x86 +analysis.datarefs=false +analysis.delay=true +analysis.depth=64 +analysis.detectwrites=false +analysis.esil=false +analysis.fcnprefix=fcn +analysis.from=0xffffffffffffffff +analysis.gp=0 +analysis.gpfixed=true +analysis.graph_depth=256 +analysis.hasnext=false +analysis.hpskip=false +analysis.ignbithints=false +analysis.in=io.maps.x +analysis.jmp.above=true +analysis.jmp.after=true +analysis.jmp.cref=false +analysis.jmp.indir=false +analysis.jmp.mid=true +analysis.jmp.ref=true +analysis.jmp.retpoline=true +analysis.jmp.tailcall=0 +analysis.jmp.tbl=true +analysis.jmp.tblmax=512 +analysis.jmp.tblmaxoffset=0x00001000 +analysis.limits=false +analysis.loads=false +analysis.nonull=0 +analysis.nopskip=true +analysis.norevisit=false +analysis.prelude.limit=0x01400000 +analysis.ptrdepth=3 +analysis.pushret=false +analysis.recont=false +analysis.refstr=false +analysis.resolve.pointers=true +analysis.rnr=false +analysis.roregs=gp,zero +analysis.sleep=0 +analysis.strings=false +analysis.timeout=0 +analysis.to=0xffffffffffffffff +analysis.trap.after=false +analysis.trycatch=false +analysis.types.constraint=false +analysis.types.spec=gcc +analysis.types.verbose=false +analysis.vars=true +analysis.vinfun=true +analysis.vinfunrange=false +asm.analysis=false +asm.arch=x86 +asm.bb.line=false +asm.bb.middle=true +asm.bits=64 +asm.bytes=false +asm.bytes.right=false +asm.bytes.space=false +asm.calls=true +asm.capitalize=false +asm.cmt.col=71 +asm.cmt.esil=false +asm.cmt.flgrefs=true +asm.cmt.il=false +asm.cmt.off=nodup +asm.cmt.patch=false +asm.cmt.refs=false +asm.cmt.right=true +asm.comments=true +asm.cpu=arm +asm.cycles=false +asm.cyclespace=false +asm.debuginfo=false +asm.debuginfo.abspath=false +asm.debuginfo.file=true +asm.debuginfo.lines=true +asm.decode=false +asm.decoff=false +asm.demangle=true +asm.describe=false +asm.emu=false +asm.esil=false +asm.family=false +asm.fcn.signature=true +asm.fcn.size=false +asm.flags=true +asm.flags.inbytes=false +asm.flags.inline=false +asm.flags.limit=0 +asm.flags.maxname=0 +asm.flags.middle=2 +asm.flags.offset=false +asm.flags.real=false +asm.functions=true +asm.hint.call=true +asm.hint.call.indirect=true +asm.hint.cdiv=false +asm.hint.emu=false +asm.hint.jmp=false +asm.hint.lea=false +asm.hint.pos=1 +asm.hints=true +asm.imm.hash=0 +asm.imm.str=true +asm.imm.trim=false +asm.indent=false +asm.indentspace=2 +asm.instr=true +asm.invhex=false +asm.lbytes=true +asm.lines=true +asm.lines.bb=true +asm.lines.call=false +asm.lines.fcn=true +asm.lines.maxref=0 +asm.lines.out=true +asm.lines.ret=false +asm.lines.right=false +asm.lines.wide=false +asm.lines.width=7 +asm.marks=true +asm.meta=true +asm.midcursor=false +asm.middle=false +asm.minicols=false +asm.nbytes=6 +asm.nodup=false +asm.noisy=true +asm.offset=true +asm.optype=false +asm.os=linux +asm.parser=x86.pseudo +asm.payloads=false +asm.pcalign=0 +asm.pseudo=false +asm.refptr=true +asm.reloff=false +asm.reloff.flags=false +asm.section=false +asm.section.col=30 +asm.section.name=true +asm.section.perm=false +asm.seggrn=4 +asm.segoff=false +asm.size=false +asm.slow=true +asm.stackptr=true +asm.sub.jmp=true +asm.sub.names=true +asm.sub.reg=false +asm.sub.rel=true +asm.sub.section=false +asm.sub.tail=false +asm.sub.var=true +asm.sub.varmin=256 +asm.sub.varonly=true +asm.symbol=false +asm.symbol.col=40 +asm.syntax=intel +asm.tabs=6 +asm.tabs.off=0 +asm.tabs.once=true +asm.trace=false +asm.tracespace=false +asm.types=1 +asm.ucase=false +asm.usercomments=false +asm.var=true +asm.var.access=false +asm.var.fold=none +asm.var.summary=0 +asm.xrefs=true +asm.xrefs.code=true +asm.xrefs.fold=5 +asm.xrefs.max=20 +basefind.alignment=0x00001000 +basefind.max.threads=0 +basefind.min.score=1 +basefind.min.string=10 +basefind.progress=false +basefind.search.end=0xf0000000 +basefind.search.start=0 +bin.at=false +bin.b64str=false +bin.baddr=0 +bin.classes=true +bin.dbginfo=true +bin.debase64=false +bin.demangle=true +bin.demangle.flags=base +bin.demangle.libs=false +bin.filter=true +bin.hashlimit=10M +bin.laddr=0 +bin.lang=c +bin.libs=false +bin.maxstr=0 +bin.maxstrbuf=0x00a00000 +bin.minstr=0 +bin.relocs=true +bin.str.enc=guess +bin.strings=true +bin.usextr=true +bin.verbose=false +cfg.bigendian=false +cfg.cpuaffinity=0 +cfg.debug=false +cfg.editor=nvim +cfg.fortunes=true +cfg.fortunes.clippy=false +cfg.fortunes.file=tips +cfg.newtab=false +cfg.plugins=true +cfg.prefixdump=dump +cfg.seek.histsize=63 +cfg.seek.silent=false +cfg.user=pid19132 +cfg.wseek=false +cmd.depth=10 +cmd.hitinfo=1 +cmd.repeat=false +dbg.aftersyscall=true +dbg.backend=native +dbg.bep=loader +dbg.bpinmaps=true +dbg.bpsysign=false +dbg.btalgo=fuzzy +dbg.btdepth=128 +dbg.clone=false +dbg.consbreak=false +dbg.create_new_console=true +dbg.execs=false +dbg.exitkills=true +dbg.follow=32 +dbg.follow.child=false +dbg.forks=false +dbg.funcarg=false +dbg.gdb.page_size=0x00001000 +dbg.gdb.retries=10 +dbg.glibc.fastbinmax=10 +dbg.glibc.fc_offset=328 +dbg.glibc.ma_offset=0x001bb000 +dbg.glibc.tcache=false +dbg.hwbp=0 +dbg.malloc=jemalloc +dbg.rebase=true +dbg.skipover=false +dbg.slow=false +dbg.status=false +dbg.swstep=false +dbg.threads=false +dbg.trace=false +dbg.trace.inrange=false +dbg.trace.libs=true +dbg.trace.tag=0 +dbg.trace_continue=true +dbg.verbose=false +diff.bare=false +diff.from=0 +diff.sort=addr +diff.to=0 +dir.depth=10 +dir.home=/data/data/com.termux/files/home +dir.magic=/data/data/com.termux/files/home/.local/opt/rizin/share/rizin/magic +dir.plugins=/data/data/com.termux/files/home/.local/opt/rizin/lib/rizin/plugins +dir.prefix=/data/data/com.termux/files/home/.local/opt/rizin +dir.projects=/data/data/com.termux/files/home/Code/rizin +dir.tmp=/data/data/com.termux/files/usr/tmp +dir.types=/usr/include +elf.checks.sections=true +elf.checks.segments=true +elf.load.sections=true +emu.lazy=false +emu.pre=false +emu.skip=ds +emu.ssa=false +emu.stack=false +emu.str=false +emu.str.flag=true +emu.str.inv=true +emu.str.lea=true +emu.str.off=false +emu.write=false +esil.addr.size=64 +esil.breakoninvalid=false +esil.exectrap=false +esil.gotolimit=0x00001000 +esil.iotrap=true +esil.nonull=false +esil.prestep=true +esil.romem=false +esil.stack.addr=0x00100000 +esil.stack.depth=256 +esil.stack.pattern=0 +esil.stack.size=0x000f0000 +esil.stats=false +esil.timeout=0 +esil.verbose=0 +file.info=true +file.lastpath=/data/data/com.termux/files/home/Code/rizin/test/bins/elf/ls +file.loadalign=0x00000400 +file.openmany=1 +file.path=/data/data/com.termux/files/home/Code/rizin/test/bins/elf/ls +file.type=elf +flirt.ignore.unknown=true +flirt.node.optimize=2 +flirt.sig.deflate=false +flirt.sig.file=all +flirt.sig.library=Built with rizin 0.7.0 +flirt.sig.os=all +flirt.sig.version=10 +flirt.sigdb.load.extra=true +flirt.sigdb.load.home=true +flirt.sigdb.load.system=true +graph.aeab=false +graph.body=true +graph.bytes=false +graph.cmtright=false +graph.comments=true +graph.dotted=false +graph.dummy=true +graph.edges=2 +graph.few=false +graph.font=Courier +graph.from=0xffffffffffffffff +graph.gv.current=false +graph.gv.format=gif +graph.hints=true +graph.invscroll=false +graph.json.usenames=true +graph.layout=0 +graph.linemode=1 +graph.nodejmps=true +graph.ntitles=true +graph.offset=false +graph.refs=false +graph.scroll=5 +graph.to=0xffffffffffffffff +graph.trace=false +hex.align=false +hex.ascii=true +hex.bytes=true +hex.cols=16 +hex.comments=true +hex.compact=false +hex.depth=5 +hex.flagsz=0 +hex.hdroff=false +hex.header=true +hex.offset=true +hex.onechar=false +hex.pairs=true +hex.section=false +hex.stride=0 +hex.style=false +http.auth=false +http.bind=localhost +http.browser=LD_LIBRARY_PATH=/system/lib am start -a android.intent.action.VIEW -d +http.colon=false +http.cors=false +http.dirlist=false +http.homeroot=/data/data/com.termux/files/home/.local/share/rizin/www +http.index=index.html +http.log=true +http.maxsize=0 +http.port=9090 +http.root=/data/data/org.rizin.rizininstaller/www +http.stop.after=0 +http.timeout=3 +http.upget=false +http.upload=false +http.uproot=/data/data/com.termux/files/usr/tmp +http.verbose=false +io.0xff=255 +io.aslr=false +io.autofd=true +io.cache=false +io.cache.auto=false +io.cache.read=false +io.cache.write=false +io.exec=true +io.ff=true +io.pava=false +io.pcache=false +io.pcache.read=false +io.pcache.write=false +io.unalloc=false +io.unalloc.ch=. +io.va=true +log.colors=false +log.events=false +log.level=4 +log.srcinfo=false +log.traplevel=6 +magic.depth=100 +pdb.autoload=0 +pdb.extract=1 +pdb.server=https://msdl.microsoft.com/download/symbols +pdb.symstore=/data/data/com.termux/files/home/.local/share/rizin/pdb +prj.compress=false +prj.file=./test/prj/v15-seek-history.rzdb +rap.loop=true +rop.comments=false +rop.conditional=false +rop.db=true +rop.len=5 +rop.sdb=false +rop.subchains=false +rzil.step.events.read=false +rzil.step.events.write=true +scr.bgfill=false +scr.breaklines=false +scr.color=3 +scr.color.args=true +scr.color.bytes=true +scr.color.grep=false +scr.color.ops=true +scr.color.pipe=false +scr.columns=0 +scr.confirmquit=false +scr.dumpcols=false +scr.echo=false +scr.feedback=1 +scr.fgets=false +scr.fix.columns=0 +scr.fix.rows=0 +scr.flush=false +scr.gadgets=true +scr.highlight.grep=false +scr.hist.block=true +scr.histsave=true +scr.html=false +scr.interactive=true +scr.last=true +scr.linesleep=0 +scr.maxtab=0x00001000 +scr.nkey=flag +scr.null=false +scr.pagesize=1 +scr.panelborder=false +scr.prompt=true +scr.prompt.file=false +scr.prompt.flag=false +scr.prompt.flag.only=false +scr.prompt.mode=false +scr.prompt.popup=false +scr.prompt.sect=false +scr.prompt.vi=false +scr.rainbow=false +scr.randpal=false +scr.responsive=true +scr.rows=0 +scr.scrollbar=0 +scr.slow=true +scr.square=true +scr.strconv=asciiesc +scr.utf8=true +scr.utf8.curvy=true +scr.visual.mode=0 +scr.wheel=true +scr.wheel.nkey=false +scr.wheel.speed=1 +scr.wideoff=false +search.align=0 +search.case_sensitive=smart +search.chunk=0 +search.contiguous=true +search.distance=0 +search.esilcombo=8 +search.flags=true +search.from=0xffffffffffffffff +search.in=io.maps +search.kwidx=0 +search.maxhits=0 +search.overlap=false +search.prefix=hit +search.show=true +search.to=0xffffffffffffffff +stack.anotated=false +stack.bytes=true +stack.delta=0 +stack.reg=SP +stack.size=64 +str.escbslash=false +str.search.check_ascii_freq=true +tcp.islocal=false +time.fmt=%Y-%m-%d %H:%M:%S %z +time.zone=0 +zoom.byte=h +zoom.from=0 +zoom.in=io.map +zoom.maxsz=512 +zoom.to=0 + +/core/debug + +/core/debug/breakpoints + +/core/file +absolute=/data/data/com.termux/files/home/Code/rizin/test/bins/elf/ls +raw=test/bins/elf/ls +relative=../bins/elf/ls + +/core/flags +base=0 +realnames=0 + +/core/flags/flags +entry.fini0={"realname":"entry.fini0","demangled":false,"offset":23424,"size":1,"space":"symbols"} +entry.init0={"realname":"entry.init0","demangled":false,"offset":23504,"size":1,"space":"symbols"} +entry0={"realname":"entry0","demangled":false,"offset":23264,"size":1,"space":"symbols"} +loc.__bss_start={"realname":"__bss_start","demangled":false,"offset":139880,"size":0,"space":"symbols"} +loc._edata={"realname":"_edata","demangled":false,"offset":139880,"size":0,"space":"symbols"} +loc._end={"realname":"_end","demangled":false,"offset":144728,"size":0,"space":"symbols"} +main={"realname":"main","demangled":false,"offset":16496,"size":256,"space":"symbols"} +obj.__progname={"realname":"__progname","demangled":false,"offset":139904,"size":8,"space":"symbols"} +obj.__progname_full={"realname":"__progname_full","demangled":false,"offset":139936,"size":8,"space":"symbols"} +obj.obstack_alloc_failed_handler={"realname":"obstack_alloc_failed_handler","demangled":false,"offset":139872,"size":8,"space":"symbols"} +obj.optarg={"realname":"optarg","demangled":false,"offset":139928,"size":8,"space":"symbols"} +obj.optind={"realname":"optind","demangled":false,"offset":139920,"size":4,"space":"symbols"} +obj.program_invocation_name={"realname":"program_invocation_name","demangled":false,"offset":139936,"size":8,"space":"symbols"} +obj.program_invocation_short_name={"realname":"program_invocation_short_name","demangled":false,"offset":139904,"size":8,"space":"symbols"} +obj.stderr={"realname":"stderr","demangled":false,"offset":139968,"size":8,"space":"symbols"} +obj.stdout={"realname":"stdout","demangled":false,"offset":139912,"size":8,"space":"symbols"} +reloc._ITM_deregisterTMCloneTable={"realname":"_ITM_deregisterTMCloneTable","demangled":false,"offset":138432,"size":8,"space":"relocs"} +reloc._ITM_registerTMCloneTable={"realname":"_ITM_registerTMCloneTable","demangled":false,"offset":139176,"size":8,"space":"relocs"} +reloc.__assert_fail={"realname":"__assert_fail","demangled":false,"offset":138712,"size":8,"space":"relocs"} +reloc.__ctype_b_loc={"realname":"__ctype_b_loc","demangled":false,"offset":139232,"size":8,"space":"relocs"} +reloc.__ctype_get_mb_cur_max={"realname":"__ctype_get_mb_cur_max","demangled":false,"offset":138592,"size":8,"space":"relocs"} +reloc.__ctype_tolower_loc={"realname":"__ctype_tolower_loc","demangled":false,"offset":139224,"size":8,"space":"relocs"} +reloc.__ctype_toupper_loc={"realname":"__ctype_toupper_loc","demangled":false,"offset":138352,"size":8,"space":"relocs"} +reloc.__cxa_atexit={"realname":"__cxa_atexit","demangled":false,"offset":139112,"size":8,"space":"relocs"} +reloc.__cxa_finalize={"realname":"__cxa_finalize","demangled":false,"offset":139208,"size":8,"space":"relocs"} +reloc.__errno_location={"realname":"__errno_location","demangled":false,"offset":138416,"size":8,"space":"relocs"} +reloc.__fpending={"realname":"__fpending","demangled":false,"offset":138464,"size":8,"space":"relocs"} +reloc.__fprintf_chk={"realname":"__fprintf_chk","demangled":false,"offset":139168,"size":8,"space":"relocs"} +reloc.__freading={"realname":"__freading","demangled":false,"offset":138984,"size":8,"space":"relocs"} +reloc.__fxstat={"realname":"__fxstat","demangled":false,"offset":138960,"size":8,"space":"relocs"} +reloc.__fxstatat={"realname":"__fxstatat","demangled":false,"offset":138656,"size":8,"space":"relocs"} +reloc.__gmon_start={"realname":"__gmon_start__","demangled":false,"offset":138864,"size":8,"space":"relocs"} +reloc.__libc_start_main={"realname":"__libc_start_main","demangled":false,"offset":138776,"size":8,"space":"relocs"} +reloc.__lxstat={"realname":"__lxstat","demangled":false,"offset":138608,"size":8,"space":"relocs"} +reloc.__memcpy_chk={"realname":"__memcpy_chk","demangled":false,"offset":138848,"size":8,"space":"relocs"} +reloc.__overflow={"realname":"__overflow","demangled":false,"offset":138672,"size":8,"space":"relocs"} +reloc.__printf_chk={"realname":"__printf_chk","demangled":false,"offset":139024,"size":8,"space":"relocs"} +reloc.__progname={"realname":"__progname","demangled":false,"offset":139904,"size":8,"space":"relocs"} +reloc.__progname_full={"realname":"__progname_full","demangled":false,"offset":139936,"size":8,"space":"relocs"} +reloc.__snprintf_chk={"realname":"__snprintf_chk","demangled":false,"offset":138384,"size":8,"space":"relocs"} +reloc.__sprintf_chk={"realname":"__sprintf_chk","demangled":false,"offset":139240,"size":8,"space":"relocs"} +reloc.__stack_chk_fail={"realname":"__stack_chk_fail","demangled":false,"offset":138616,"size":8,"space":"relocs"} +reloc.__strtoul_internal={"realname":"__strtoul_internal","demangled":false,"offset":138720,"size":8,"space":"relocs"} +reloc.__xstat={"realname":"__xstat","demangled":false,"offset":138912,"size":8,"space":"relocs"} +reloc._exit={"realname":"_exit","demangled":false,"offset":138448,"size":8,"space":"relocs"} +reloc._setjmp={"realname":"_setjmp","demangled":false,"offset":138792,"size":8,"space":"relocs"} +reloc.abort={"realname":"abort","demangled":false,"offset":138408,"size":8,"space":"relocs"} +reloc.bindtextdomain={"realname":"bindtextdomain","demangled":false,"offset":138576,"size":8,"space":"relocs"} +reloc.calloc={"realname":"calloc","demangled":false,"offset":138808,"size":8,"space":"relocs"} +reloc.cap_free={"realname":"cap_free","demangled":false,"offset":139096,"size":8,"space":"relocs"} +reloc.cap_get_file={"realname":"cap_get_file","demangled":false,"offset":139080,"size":8,"space":"relocs"} +reloc.cap_to_text={"realname":"cap_to_text","demangled":false,"offset":138368,"size":8,"space":"relocs"} +reloc.clock_gettime={"realname":"clock_gettime","demangled":false,"offset":138528,"size":8,"space":"relocs"} +reloc.closedir={"realname":"closedir","demangled":false,"offset":138768,"size":8,"space":"relocs"} +reloc.dcgettext={"realname":"dcgettext","demangled":false,"offset":138584,"size":8,"space":"relocs"} +reloc.dirfd={"realname":"dirfd","demangled":false,"offset":138832,"size":8,"space":"relocs"} +reloc.error={"realname":"error","demangled":false,"offset":139064,"size":8,"space":"relocs"} +reloc.exit={"realname":"exit","demangled":false,"offset":139152,"size":8,"space":"relocs"} +reloc.fclose={"realname":"fclose","demangled":false,"offset":138552,"size":8,"space":"relocs"} +reloc.fflush={"realname":"fflush","demangled":false,"offset":138944,"size":8,"space":"relocs"} +reloc.fflush_unlocked={"realname":"fflush_unlocked","demangled":false,"offset":139184,"size":8,"space":"relocs"} +reloc.fileno={"realname":"fileno","demangled":false,"offset":138896,"size":8,"space":"relocs"} +reloc.fnmatch={"realname":"fnmatch","demangled":false,"offset":138728,"size":8,"space":"relocs"} +reloc.fputs_unlocked={"realname":"fputs_unlocked","demangled":false,"offset":138800,"size":8,"space":"relocs"} +reloc.free={"realname":"free","demangled":false,"offset":138400,"size":8,"space":"relocs"} +reloc.fseeko={"realname":"fseeko","demangled":false,"offset":139072,"size":8,"space":"relocs"} +reloc.fwrite={"realname":"fwrite","demangled":false,"offset":139160,"size":8,"space":"relocs"} +reloc.fwrite_unlocked={"realname":"fwrite_unlocked","demangled":false,"offset":138992,"size":8,"space":"relocs"} +reloc.getcwd={"realname":"getcwd","demangled":false,"offset":138752,"size":8,"space":"relocs"} +reloc.getenv={"realname":"getenv","demangled":false,"offset":138360,"size":8,"space":"relocs"} +reloc.getgrgid={"realname":"getgrgid","demangled":false,"offset":138648,"size":8,"space":"relocs"} +reloc.getgrnam={"realname":"getgrnam","demangled":false,"offset":138880,"size":8,"space":"relocs"} +reloc.gethostname={"realname":"gethostname","demangled":false,"offset":139136,"size":8,"space":"relocs"} +reloc.getopt_long={"realname":"getopt_long","demangled":false,"offset":138624,"size":8,"space":"relocs"} +reloc.getpwnam={"realname":"getpwnam","demangled":false,"offset":138840,"size":8,"space":"relocs"} +reloc.getpwuid={"realname":"getpwuid","demangled":false,"offset":138568,"size":8,"space":"relocs"} +reloc.gettimeofday={"realname":"gettimeofday","demangled":false,"offset":138704,"size":8,"space":"relocs"} +reloc.getxattr={"realname":"getxattr","demangled":false,"offset":139128,"size":8,"space":"relocs"} +reloc.gmtime_r={"realname":"gmtime_r","demangled":false,"offset":138688,"size":8,"space":"relocs"} +reloc.ioctl={"realname":"ioctl","demangled":false,"offset":138744,"size":8,"space":"relocs"} +reloc.isatty={"realname":"isatty","demangled":false,"offset":138472,"size":8,"space":"relocs"} +reloc.iswcntrl={"realname":"iswcntrl","demangled":false,"offset":138488,"size":8,"space":"relocs"} +reloc.iswprint={"realname":"iswprint","demangled":false,"offset":139200,"size":8,"space":"relocs"} +reloc.localeconv={"realname":"localeconv","demangled":false,"offset":138504,"size":8,"space":"relocs"} +reloc.localtime_r={"realname":"localtime_r","demangled":false,"offset":138440,"size":8,"space":"relocs"} +reloc.lseek={"realname":"lseek","demangled":false,"offset":138696,"size":8,"space":"relocs"} +reloc.malloc={"realname":"malloc","demangled":false,"offset":138936,"size":8,"space":"relocs"} +reloc.mbrtowc={"realname":"mbrtowc","demangled":false,"offset":138632,"size":8,"space":"relocs"} +reloc.mbsinit={"realname":"mbsinit","demangled":false,"offset":139192,"size":8,"space":"relocs"} +reloc.mbstowcs={"realname":"mbstowcs","demangled":false,"offset":138512,"size":8,"space":"relocs"} +reloc.memcmp={"realname":"memcmp","demangled":false,"offset":138784,"size":8,"space":"relocs"} +reloc.memcpy={"realname":"memcpy","demangled":false,"offset":138872,"size":8,"space":"relocs"} +reloc.memmove={"realname":"memmove","demangled":false,"offset":139056,"size":8,"space":"relocs"} +reloc.mempcpy={"realname":"mempcpy","demangled":false,"offset":139048,"size":8,"space":"relocs"} +reloc.memset={"realname":"memset","demangled":false,"offset":138736,"size":8,"space":"relocs"} +reloc.mktime={"realname":"mktime","demangled":false,"offset":138976,"size":8,"space":"relocs"} +reloc.nl_langinfo={"realname":"nl_langinfo","demangled":false,"offset":138952,"size":8,"space":"relocs"} +reloc.opendir={"realname":"opendir","demangled":false,"offset":138560,"size":8,"space":"relocs"} +reloc.optarg={"realname":"optarg","demangled":false,"offset":139928,"size":8,"space":"relocs"} +reloc.optind={"realname":"optind","demangled":false,"offset":139920,"size":8,"space":"relocs"} +reloc.raise={"realname":"raise","demangled":false,"offset":138392,"size":8,"space":"relocs"} +reloc.readdir={"realname":"readdir","demangled":false,"offset":138920,"size":8,"space":"relocs"} +reloc.readlink={"realname":"readlink","demangled":false,"offset":138520,"size":8,"space":"relocs"} +reloc.realloc={"realname":"realloc","demangled":false,"offset":139000,"size":8,"space":"relocs"} +reloc.setenv={"realname":"setenv","demangled":false,"offset":138536,"size":8,"space":"relocs"} +reloc.setlocale={"realname":"setlocale","demangled":false,"offset":139016,"size":8,"space":"relocs"} +reloc.sigaction={"realname":"sigaction","demangled":false,"offset":138480,"size":8,"space":"relocs"} +reloc.sigaddset={"realname":"sigaddset","demangled":false,"offset":139216,"size":8,"space":"relocs"} +reloc.sigemptyset={"realname":"sigemptyset","demangled":false,"offset":138856,"size":8,"space":"relocs"} +reloc.sigismember={"realname":"sigismember","demangled":false,"offset":139144,"size":8,"space":"relocs"} +reloc.signal={"realname":"signal","demangled":false,"offset":138824,"size":8,"space":"relocs"} +reloc.sigprocmask={"realname":"sigprocmask","demangled":false,"offset":138376,"size":8,"space":"relocs"} +reloc.snprintf={"realname":"snprintf","demangled":false,"offset":138664,"size":8,"space":"relocs"} +reloc.stderr={"realname":"stderr","demangled":false,"offset":139968,"size":8,"space":"relocs"} +reloc.stdout={"realname":"stdout","demangled":false,"offset":139912,"size":8,"space":"relocs"} +reloc.stpncpy={"realname":"stpncpy","demangled":false,"offset":139008,"size":8,"space":"relocs"} +reloc.strchr={"realname":"strchr","demangled":false,"offset":138640,"size":8,"space":"relocs"} +reloc.strcmp={"realname":"strcmp","demangled":false,"offset":138816,"size":8,"space":"relocs"} +reloc.strcoll={"realname":"strcoll","demangled":false,"offset":138968,"size":8,"space":"relocs"} +reloc.strcpy={"realname":"strcpy","demangled":false,"offset":138456,"size":8,"space":"relocs"} +reloc.strftime={"realname":"strftime","demangled":false,"offset":139040,"size":8,"space":"relocs"} +reloc.strlen={"realname":"strlen","demangled":false,"offset":138600,"size":8,"space":"relocs"} +reloc.strncmp={"realname":"strncmp","demangled":false,"offset":138424,"size":8,"space":"relocs"} +reloc.strrchr={"realname":"strrchr","demangled":false,"offset":138680,"size":8,"space":"relocs"} +reloc.strspn={"realname":"strspn","demangled":false,"offset":138760,"size":8,"space":"relocs"} +reloc.strtoul={"realname":"strtoul","demangled":false,"offset":139104,"size":8,"space":"relocs"} +reloc.target._ITM_deregisterTMCloneTable={"realname":"_ITM_deregisterTMCloneTable","demangled":false,"offset":144816,"size":8,"space":"relocs"} +reloc.target._ITM_registerTMCloneTable={"realname":"_ITM_registerTMCloneTable","demangled":false,"offset":145560,"size":8,"space":"relocs"} +reloc.target.__assert_fail={"realname":"__assert_fail","demangled":false,"offset":145096,"size":8,"space":"relocs"} +reloc.target.__ctype_b_loc={"realname":"__ctype_b_loc","demangled":false,"offset":145616,"size":8,"space":"relocs"} +reloc.target.__ctype_get_mb_cur_max={"realname":"__ctype_get_mb_cur_max","demangled":false,"offset":144976,"size":8,"space":"relocs"} +reloc.target.__ctype_tolower_loc={"realname":"__ctype_tolower_loc","demangled":false,"offset":145608,"size":8,"space":"relocs"} +reloc.target.__ctype_toupper_loc={"realname":"__ctype_toupper_loc","demangled":false,"offset":144736,"size":8,"space":"relocs"} +reloc.target.__cxa_atexit={"realname":"__cxa_atexit","demangled":false,"offset":145496,"size":8,"space":"relocs"} +reloc.target.__cxa_finalize={"realname":"__cxa_finalize","demangled":false,"offset":145592,"size":8,"space":"relocs"} +reloc.target.__errno_location={"realname":"__errno_location","demangled":false,"offset":144800,"size":8,"space":"relocs"} +reloc.target.__fpending={"realname":"__fpending","demangled":false,"offset":144848,"size":8,"space":"relocs"} +reloc.target.__fprintf_chk={"realname":"__fprintf_chk","demangled":false,"offset":145552,"size":8,"space":"relocs"} +reloc.target.__freading={"realname":"__freading","demangled":false,"offset":145368,"size":8,"space":"relocs"} +reloc.target.__fxstat={"realname":"__fxstat","demangled":false,"offset":145344,"size":8,"space":"relocs"} +reloc.target.__fxstatat={"realname":"__fxstatat","demangled":false,"offset":145040,"size":8,"space":"relocs"} +reloc.target.__gmon_start={"realname":"__gmon_start__","demangled":false,"offset":145248,"size":8,"space":"relocs"} +reloc.target.__libc_start_main={"realname":"__libc_start_main","demangled":false,"offset":145160,"size":8,"space":"relocs"} +reloc.target.__lxstat={"realname":"__lxstat","demangled":false,"offset":144992,"size":8,"space":"relocs"} +reloc.target.__memcpy_chk={"realname":"__memcpy_chk","demangled":false,"offset":145232,"size":8,"space":"relocs"} +reloc.target.__overflow={"realname":"__overflow","demangled":false,"offset":145056,"size":8,"space":"relocs"} +reloc.target.__printf_chk={"realname":"__printf_chk","demangled":false,"offset":145408,"size":8,"space":"relocs"} +reloc.target.__progname={"realname":"__progname","demangled":false,"offset":139904,"size":8,"space":"relocs"} +reloc.target.__progname_full={"realname":"__progname_full","demangled":false,"offset":139936,"size":8,"space":"relocs"} +reloc.target.__snprintf_chk={"realname":"__snprintf_chk","demangled":false,"offset":144768,"size":8,"space":"relocs"} +reloc.target.__sprintf_chk={"realname":"__sprintf_chk","demangled":false,"offset":145624,"size":8,"space":"relocs"} +reloc.target.__stack_chk_fail={"realname":"__stack_chk_fail","demangled":false,"offset":145000,"size":8,"space":"relocs"} +reloc.target.__strtoul_internal={"realname":"__strtoul_internal","demangled":false,"offset":145104,"size":8,"space":"relocs"} +reloc.target.__xstat={"realname":"__xstat","demangled":false,"offset":145296,"size":8,"space":"relocs"} +reloc.target._exit={"realname":"_exit","demangled":false,"offset":144832,"size":8,"space":"relocs"} +reloc.target._setjmp={"realname":"_setjmp","demangled":false,"offset":145176,"size":8,"space":"relocs"} +reloc.target.abort={"realname":"abort","demangled":false,"offset":144792,"size":8,"space":"relocs"} +reloc.target.bindtextdomain={"realname":"bindtextdomain","demangled":false,"offset":144960,"size":8,"space":"relocs"} +reloc.target.calloc={"realname":"calloc","demangled":false,"offset":145192,"size":8,"space":"relocs"} +reloc.target.cap_free={"realname":"cap_free","demangled":false,"offset":145480,"size":8,"space":"relocs"} +reloc.target.cap_get_file={"realname":"cap_get_file","demangled":false,"offset":145464,"size":8,"space":"relocs"} +reloc.target.cap_to_text={"realname":"cap_to_text","demangled":false,"offset":144752,"size":8,"space":"relocs"} +reloc.target.clock_gettime={"realname":"clock_gettime","demangled":false,"offset":144912,"size":8,"space":"relocs"} +reloc.target.closedir={"realname":"closedir","demangled":false,"offset":145152,"size":8,"space":"relocs"} +reloc.target.dcgettext={"realname":"dcgettext","demangled":false,"offset":144968,"size":8,"space":"relocs"} +reloc.target.dirfd={"realname":"dirfd","demangled":false,"offset":145216,"size":8,"space":"relocs"} +reloc.target.error={"realname":"error","demangled":false,"offset":145448,"size":8,"space":"relocs"} +reloc.target.exit={"realname":"exit","demangled":false,"offset":145536,"size":8,"space":"relocs"} +reloc.target.fclose={"realname":"fclose","demangled":false,"offset":144936,"size":8,"space":"relocs"} +reloc.target.fflush={"realname":"fflush","demangled":false,"offset":145328,"size":8,"space":"relocs"} +reloc.target.fflush_unlocked={"realname":"fflush_unlocked","demangled":false,"offset":145568,"size":8,"space":"relocs"} +reloc.target.fileno={"realname":"fileno","demangled":false,"offset":145280,"size":8,"space":"relocs"} +reloc.target.fnmatch={"realname":"fnmatch","demangled":false,"offset":145112,"size":8,"space":"relocs"} +reloc.target.fputs_unlocked={"realname":"fputs_unlocked","demangled":false,"offset":145184,"size":8,"space":"relocs"} +reloc.target.free={"realname":"free","demangled":false,"offset":144784,"size":8,"space":"relocs"} +reloc.target.fseeko={"realname":"fseeko","demangled":false,"offset":145456,"size":8,"space":"relocs"} +reloc.target.fwrite={"realname":"fwrite","demangled":false,"offset":145544,"size":8,"space":"relocs"} +reloc.target.fwrite_unlocked={"realname":"fwrite_unlocked","demangled":false,"offset":145376,"size":8,"space":"relocs"} +reloc.target.getcwd={"realname":"getcwd","demangled":false,"offset":145136,"size":8,"space":"relocs"} +reloc.target.getenv={"realname":"getenv","demangled":false,"offset":144744,"size":8,"space":"relocs"} +reloc.target.getgrgid={"realname":"getgrgid","demangled":false,"offset":145032,"size":8,"space":"relocs"} +reloc.target.getgrnam={"realname":"getgrnam","demangled":false,"offset":145264,"size":8,"space":"relocs"} +reloc.target.gethostname={"realname":"gethostname","demangled":false,"offset":145520,"size":8,"space":"relocs"} +reloc.target.getopt_long={"realname":"getopt_long","demangled":false,"offset":145008,"size":8,"space":"relocs"} +reloc.target.getpwnam={"realname":"getpwnam","demangled":false,"offset":145224,"size":8,"space":"relocs"} +reloc.target.getpwuid={"realname":"getpwuid","demangled":false,"offset":144952,"size":8,"space":"relocs"} +reloc.target.gettimeofday={"realname":"gettimeofday","demangled":false,"offset":145088,"size":8,"space":"relocs"} +reloc.target.getxattr={"realname":"getxattr","demangled":false,"offset":145512,"size":8,"space":"relocs"} +reloc.target.gmtime_r={"realname":"gmtime_r","demangled":false,"offset":145072,"size":8,"space":"relocs"} +reloc.target.ioctl={"realname":"ioctl","demangled":false,"offset":145128,"size":8,"space":"relocs"} +reloc.target.isatty={"realname":"isatty","demangled":false,"offset":144856,"size":8,"space":"relocs"} +reloc.target.iswcntrl={"realname":"iswcntrl","demangled":false,"offset":144872,"size":8,"space":"relocs"} +reloc.target.iswprint={"realname":"iswprint","demangled":false,"offset":145584,"size":8,"space":"relocs"} +reloc.target.localeconv={"realname":"localeconv","demangled":false,"offset":144888,"size":8,"space":"relocs"} +reloc.target.localtime_r={"realname":"localtime_r","demangled":false,"offset":144824,"size":8,"space":"relocs"} +reloc.target.lseek={"realname":"lseek","demangled":false,"offset":145080,"size":8,"space":"relocs"} +reloc.target.malloc={"realname":"malloc","demangled":false,"offset":145320,"size":8,"space":"relocs"} +reloc.target.mbrtowc={"realname":"mbrtowc","demangled":false,"offset":145016,"size":8,"space":"relocs"} +reloc.target.mbsinit={"realname":"mbsinit","demangled":false,"offset":145576,"size":8,"space":"relocs"} +reloc.target.mbstowcs={"realname":"mbstowcs","demangled":false,"offset":144896,"size":8,"space":"relocs"} +reloc.target.memcmp={"realname":"memcmp","demangled":false,"offset":145168,"size":8,"space":"relocs"} +reloc.target.memcpy={"realname":"memcpy","demangled":false,"offset":145256,"size":8,"space":"relocs"} +reloc.target.memmove={"realname":"memmove","demangled":false,"offset":145440,"size":8,"space":"relocs"} +reloc.target.mempcpy={"realname":"mempcpy","demangled":false,"offset":145432,"size":8,"space":"relocs"} +reloc.target.memset={"realname":"memset","demangled":false,"offset":145120,"size":8,"space":"relocs"} +reloc.target.mktime={"realname":"mktime","demangled":false,"offset":145360,"size":8,"space":"relocs"} +reloc.target.nl_langinfo={"realname":"nl_langinfo","demangled":false,"offset":145336,"size":8,"space":"relocs"} +reloc.target.opendir={"realname":"opendir","demangled":false,"offset":144944,"size":8,"space":"relocs"} +reloc.target.optarg={"realname":"optarg","demangled":false,"offset":139928,"size":8,"space":"relocs"} +reloc.target.optind={"realname":"optind","demangled":false,"offset":139920,"size":8,"space":"relocs"} +reloc.target.raise={"realname":"raise","demangled":false,"offset":144776,"size":8,"space":"relocs"} +reloc.target.readdir={"realname":"readdir","demangled":false,"offset":145304,"size":8,"space":"relocs"} +reloc.target.readlink={"realname":"readlink","demangled":false,"offset":144904,"size":8,"space":"relocs"} +reloc.target.realloc={"realname":"realloc","demangled":false,"offset":145384,"size":8,"space":"relocs"} +reloc.target.setenv={"realname":"setenv","demangled":false,"offset":144920,"size":8,"space":"relocs"} +reloc.target.setlocale={"realname":"setlocale","demangled":false,"offset":145400,"size":8,"space":"relocs"} +reloc.target.sigaction={"realname":"sigaction","demangled":false,"offset":144864,"size":8,"space":"relocs"} +reloc.target.sigaddset={"realname":"sigaddset","demangled":false,"offset":145600,"size":8,"space":"relocs"} +reloc.target.sigemptyset={"realname":"sigemptyset","demangled":false,"offset":145240,"size":8,"space":"relocs"} +reloc.target.sigismember={"realname":"sigismember","demangled":false,"offset":145528,"size":8,"space":"relocs"} +reloc.target.signal={"realname":"signal","demangled":false,"offset":145208,"size":8,"space":"relocs"} +reloc.target.sigprocmask={"realname":"sigprocmask","demangled":false,"offset":144760,"size":8,"space":"relocs"} +reloc.target.snprintf={"realname":"snprintf","demangled":false,"offset":145048,"size":8,"space":"relocs"} +reloc.target.stderr={"realname":"stderr","demangled":false,"offset":139968,"size":8,"space":"relocs"} +reloc.target.stdout={"realname":"stdout","demangled":false,"offset":139912,"size":8,"space":"relocs"} +reloc.target.stpncpy={"realname":"stpncpy","demangled":false,"offset":145392,"size":8,"space":"relocs"} +reloc.target.strchr={"realname":"strchr","demangled":false,"offset":145024,"size":8,"space":"relocs"} +reloc.target.strcmp={"realname":"strcmp","demangled":false,"offset":145200,"size":8,"space":"relocs"} +reloc.target.strcoll={"realname":"strcoll","demangled":false,"offset":145352,"size":8,"space":"relocs"} +reloc.target.strcpy={"realname":"strcpy","demangled":false,"offset":144840,"size":8,"space":"relocs"} +reloc.target.strftime={"realname":"strftime","demangled":false,"offset":145424,"size":8,"space":"relocs"} +reloc.target.strlen={"realname":"strlen","demangled":false,"offset":144984,"size":8,"space":"relocs"} +reloc.target.strncmp={"realname":"strncmp","demangled":false,"offset":144808,"size":8,"space":"relocs"} +reloc.target.strrchr={"realname":"strrchr","demangled":false,"offset":145064,"size":8,"space":"relocs"} +reloc.target.strspn={"realname":"strspn","demangled":false,"offset":145144,"size":8,"space":"relocs"} +reloc.target.strtoul={"realname":"strtoul","demangled":false,"offset":145488,"size":8,"space":"relocs"} +reloc.target.tcgetpgrp={"realname":"tcgetpgrp","demangled":false,"offset":145288,"size":8,"space":"relocs"} +reloc.target.textdomain={"realname":"textdomain","demangled":false,"offset":144928,"size":8,"space":"relocs"} +reloc.target.timegm={"realname":"timegm","demangled":false,"offset":145416,"size":8,"space":"relocs"} +reloc.target.tzset={"realname":"tzset","demangled":false,"offset":145272,"size":8,"space":"relocs"} +reloc.target.unsetenv={"realname":"unsetenv","demangled":false,"offset":145472,"size":8,"space":"relocs"} +reloc.target.wcstombs={"realname":"wcstombs","demangled":false,"offset":145504,"size":8,"space":"relocs"} +reloc.target.wcswidth={"realname":"wcswidth","demangled":false,"offset":144880,"size":8,"space":"relocs"} +reloc.target.wcwidth={"realname":"wcwidth","demangled":false,"offset":145312,"size":8,"space":"relocs"} +reloc.tcgetpgrp={"realname":"tcgetpgrp","demangled":false,"offset":138904,"size":8,"space":"relocs"} +reloc.textdomain={"realname":"textdomain","demangled":false,"offset":138544,"size":8,"space":"relocs"} +reloc.timegm={"realname":"timegm","demangled":false,"offset":139032,"size":8,"space":"relocs"} +reloc.tzset={"realname":"tzset","demangled":false,"offset":138888,"size":8,"space":"relocs"} +reloc.unsetenv={"realname":"unsetenv","demangled":false,"offset":139088,"size":8,"space":"relocs"} +reloc.wcstombs={"realname":"wcstombs","demangled":false,"offset":139120,"size":8,"space":"relocs"} +reloc.wcswidth={"realname":"wcswidth","demangled":false,"offset":138496,"size":8,"space":"relocs"} +reloc.wcwidth={"realname":"wcwidth","demangled":false,"offset":138928,"size":8,"space":"relocs"} +section..bss={"realname":"section..bss","demangled":false,"offset":139904,"size":4824,"space":"sections"} +section..data={"realname":"section..data","demangled":false,"offset":139264,"size":616,"space":"sections"} +section..data.rel.ro={"realname":"section..data.rel.ro","demangled":false,"offset":135264,"size":2616,"space":"sections"} +section..dynamic={"realname":"section..dynamic","demangled":false,"offset":137880,"size":448,"space":"sections"} +section..dynstr={"realname":"section..dynstr","demangled":false,"offset":4120,"size":1482,"space":"sections"} +section..dynsym={"realname":"section..dynsym","demangled":false,"offset":976,"size":3144,"space":"sections"} +section..eh_frame={"realname":"section..eh_frame","demangled":false,"offset":117200,"size":11760,"space":"sections"} +section..eh_frame_hdr={"realname":"section..eh_frame_hdr","demangled":false,"offset":114956,"size":2244,"space":"sections"} +section..fini={"realname":"section..fini","demangled":false,"offset":92036,"size":13,"space":"sections"} +section..fini_array={"realname":"section..fini_array","demangled":false,"offset":135256,"size":8,"space":"sections"} +section..gnu.hash={"realname":"section..gnu.hash","demangled":false,"offset":776,"size":200,"space":"sections"} +section..gnu.version={"realname":"section..gnu.version","demangled":false,"offset":5602,"size":262,"space":"sections"} +section..gnu.version_r={"realname":"section..gnu.version_r","demangled":false,"offset":5864,"size":112,"space":"sections"} +section..got={"realname":"section..got","demangled":false,"offset":138328,"size":920,"space":"sections"} +section..init={"realname":"section..init","demangled":false,"offset":16384,"size":27,"space":"sections"} +section..init_array={"realname":"section..init_array","demangled":false,"offset":135248,"size":8,"space":"sections"} +section..interp={"realname":"section..interp","demangled":false,"offset":680,"size":28,"space":"sections"} +section..note.ABI_tag={"realname":"section..note.ABI_tag","demangled":false,"offset":708,"size":32,"space":"sections"} +section..note.gnu.build_id={"realname":"section..note.gnu.build_id","demangled":false,"offset":740,"size":36,"space":"sections"} +section..rela.dyn={"realname":"section..rela.dyn","demangled":false,"offset":5976,"size":7464,"space":"sections"} +section..rodata={"realname":"section..rodata","demangled":false,"offset":94208,"size":20745,"space":"sections"} +section..text={"realname":"section..text","demangled":false,"offset":16416,"size":75619,"space":"sections"} +segment.DYNAMIC={"realname":"segment.DYNAMIC","demangled":false,"offset":137880,"size":448,"space":"segments"} +segment.GNU_EH_FRAME={"realname":"segment.GNU_EH_FRAME","demangled":false,"offset":114956,"size":2244,"space":"segments"} +segment.GNU_RELRO={"realname":"segment.GNU_RELRO","demangled":false,"offset":135248,"size":4016,"space":"segments"} +segment.GNU_STACK={"realname":"segment.GNU_STACK","demangled":false,"offset":0,"size":0,"space":"segments"} +segment.INTERP={"realname":"segment.INTERP","demangled":false,"offset":680,"size":28,"space":"segments"} +segment.LOAD0={"realname":"segment.LOAD0","demangled":false,"offset":0,"size":13440,"space":"segments"} +segment.LOAD1={"realname":"segment.LOAD1","demangled":false,"offset":16384,"size":75665,"space":"segments"} +segment.LOAD2={"realname":"segment.LOAD2","demangled":false,"offset":94208,"size":34752,"space":"segments"} +segment.LOAD3={"realname":"segment.LOAD3","demangled":false,"offset":135248,"size":9480,"space":"segments"} +segment.NOTE={"realname":"segment.NOTE","demangled":false,"offset":708,"size":68,"space":"segments"} +segment.PHDR={"realname":"segment.PHDR","demangled":false,"offset":64,"size":616,"space":"segments"} +segment.ehdr={"realname":"segment.ehdr","demangled":false,"offset":0,"size":64,"space":"segments"} +str.={"realname":"str.","demangled":false,"offset":113049,"size":20,"space":"strings"} +str..1Lf={"realname":"str..1Lf","demangled":false,"offset":110678,"size":6,"space":"strings"} +str..7z_01_31={"realname":"str..7z_01_31","demangled":false,"offset":99512,"size":10,"space":"strings"} +str.._s_s_s={"realname":"str.._s_s_s","demangled":false,"offset":100455,"size":9,"space":"strings"} +str..aac_00_36={"realname":"str..aac_00_36","demangled":false,"offset":100219,"size":11,"space":"strings"} +str..ace_01_31={"realname":"str..ace_01_31","demangled":false,"offset":99478,"size":11,"space":"strings"} +str..alz_01_31={"realname":"str..alz_01_31","demangled":false,"offset":99467,"size":11,"space":"strings"} +str..arc_01_31={"realname":"str..arc_01_31","demangled":false,"offset":99109,"size":11,"space":"strings"} +str..arj_01_31={"realname":"str..arj_01_31","demangled":false,"offset":99120,"size":11,"space":"strings"} +str..asf_01_35={"realname":"str..asf_01_35","demangled":false,"offset":99974,"size":11,"space":"strings"} +str..au_00_36={"realname":"str..au_00_36","demangled":false,"offset":100230,"size":10,"space":"strings"} +str..avi_01_35={"realname":"str..avi_01_35","demangled":false,"offset":100018,"size":11,"space":"strings"} +str..bat_01_32={"realname":"str..bat_01_32","demangled":false,"offset":98916,"size":12,"space":"strings"} +str..bmp_01_35={"realname":"str..bmp_01_35","demangled":false,"offset":99662,"size":11,"space":"strings"} +str..btm_01_32={"realname":"str..btm_01_32","demangled":false,"offset":98904,"size":12,"space":"strings"} +str..bz2_01_31={"realname":"str..bz2_01_31","demangled":false,"offset":99336,"size":11,"space":"strings"} +str..bz_01_31={"realname":"str..bz_01_31","demangled":false,"offset":99347,"size":10,"space":"strings"} +str..cab_01_31={"realname":"str..cab_01_31","demangled":false,"offset":99532,"size":11,"space":"strings"} +str..cgm_01_35={"realname":"str..cgm_01_35","demangled":false,"offset":100104,"size":11,"space":"strings"} +str..cmd_01_32___executables__bright_green={"realname":"str..cmd_01_32___executables__bright_green","demangled":false,"offset":98839,"size":41,"space":"strings"} +str..com_01_32={"realname":"str..com_01_32","demangled":false,"offset":98892,"size":12,"space":"strings"} +str..cpio_01_31={"realname":"str..cpio_01_31","demangled":false,"offset":99500,"size":12,"space":"strings"} +str..csh_01_32={"realname":"str..csh_01_32","demangled":false,"offset":99036,"size":12,"space":"strings"} +str..deb_01_31={"realname":"str..deb_01_31","demangled":false,"offset":99390,"size":11,"space":"strings"} +str..dl_01_35={"realname":"str..dl_01_35","demangled":false,"offset":100061,"size":10,"space":"strings"} +str..dwm_01_31={"realname":"str..dwm_01_31","demangled":false,"offset":99565,"size":11,"space":"strings"} +str..dz_01_31={"realname":"str..dz_01_31","demangled":false,"offset":99251,"size":10,"space":"strings"} +str..ear_01_31={"realname":"str..ear_01_31","demangled":false,"offset":99434,"size":11,"space":"strings"} +str..emf_01_35={"realname":"str..emf_01_35","demangled":false,"offset":100115,"size":11,"space":"strings"} +str..esd_01_31={"realname":"str..esd_01_31","demangled":false,"offset":99576,"size":11,"space":"strings"} +str..exe_01_32={"realname":"str..exe_01_32","demangled":false,"offset":98880,"size":12,"space":"strings"} +str..flac_00_36={"realname":"str..flac_00_36","demangled":false,"offset":100240,"size":12,"space":"strings"} +str..flc_01_35={"realname":"str..flc_01_35","demangled":false,"offset":100007,"size":11,"space":"strings"} +str..fli_01_35={"realname":"str..fli_01_35","demangled":false,"offset":100029,"size":11,"space":"strings"} +str..flv_01_35={"realname":"str..flv_01_35","demangled":false,"offset":100040,"size":11,"space":"strings"} +str..gif_01_35={"realname":"str..gif_01_35","demangled":false,"offset":99651,"size":11,"space":"strings"} +str..gl_01_35={"realname":"str..gl_01_35","demangled":false,"offset":100051,"size":10,"space":"strings"} +str..gz_01_31={"realname":"str..gz_01_31","demangled":false,"offset":99261,"size":10,"space":"strings"} +str..jar_01_31={"realname":"str..jar_01_31","demangled":false,"offset":99412,"size":11,"space":"strings"} +str..jpeg_01_35={"realname":"str..jpeg_01_35","demangled":false,"offset":99614,"size":12,"space":"strings"} +str..jpg_01_35={"realname":"str..jpg_01_35","demangled":false,"offset":99603,"size":11,"space":"strings"} +str..lha_01_31={"realname":"str..lha_01_31","demangled":false,"offset":99142,"size":11,"space":"strings"} +str..libs={"realname":"str..libs","demangled":false,"offset":111344,"size":8,"space":"strings"} +str..lrz_01_31={"realname":"str..lrz_01_31","demangled":false,"offset":99271,"size":11,"space":"strings"} +str..lz4_01_31={"realname":"str..lz4_01_31","demangled":false,"offset":99153,"size":11,"space":"strings"} +str..lz_01_31={"realname":"str..lz_01_31","demangled":false,"offset":99282,"size":10,"space":"strings"} +str..lzh_01_31={"realname":"str..lzh_01_31","demangled":false,"offset":99164,"size":11,"space":"strings"} +str..lzma_01_31={"realname":"str..lzma_01_31","demangled":false,"offset":99175,"size":12,"space":"strings"} +str..lzo_01_31={"realname":"str..lzo_01_31","demangled":false,"offset":99292,"size":11,"space":"strings"} +str..m2v_01_35={"realname":"str..m2v_01_35","demangled":false,"offset":99852,"size":11,"space":"strings"} +str..m4a_00_36={"realname":"str..m4a_00_36","demangled":false,"offset":100252,"size":11,"space":"strings"} +str..m4v_01_35={"realname":"str..m4v_01_35","demangled":false,"offset":99908,"size":11,"space":"strings"} +str..mid_00_36={"realname":"str..mid_00_36","demangled":false,"offset":100263,"size":11,"space":"strings"} +str..midi_00_36={"realname":"str..midi_00_36","demangled":false,"offset":100274,"size":12,"space":"strings"} +str..mjpeg_01_35={"realname":"str..mjpeg_01_35","demangled":false,"offset":99638,"size":13,"space":"strings"} +str..mjpg_01_35={"realname":"str..mjpg_01_35","demangled":false,"offset":99626,"size":12,"space":"strings"} +str..mka_00_36={"realname":"str..mka_00_36","demangled":false,"offset":100286,"size":11,"space":"strings"} +str..mkv_01_35={"realname":"str..mkv_01_35","demangled":false,"offset":99863,"size":11,"space":"strings"} +str..mng_01_35={"realname":"str..mng_01_35","demangled":false,"offset":99796,"size":11,"space":"strings"} +str..mov_01_35={"realname":"str..mov_01_35","demangled":false,"offset":99818,"size":11,"space":"strings"} +str..mp3_00_36={"realname":"str..mp3_00_36","demangled":false,"offset":100297,"size":11,"space":"strings"} +str..mp4_01_35={"realname":"str..mp4_01_35","demangled":false,"offset":99897,"size":11,"space":"strings"} +str..mp4v_01_35={"realname":"str..mp4v_01_35","demangled":false,"offset":99919,"size":12,"space":"strings"} +str..mpc_00_36={"realname":"str..mpc_00_36","demangled":false,"offset":100308,"size":11,"space":"strings"} +str..mpeg_01_35={"realname":"str..mpeg_01_35","demangled":false,"offset":99840,"size":12,"space":"strings"} +str..mpg_01_35={"realname":"str..mpg_01_35","demangled":false,"offset":99829,"size":11,"space":"strings"} +str..nuv_01_35={"realname":"str..nuv_01_35","demangled":false,"offset":99952,"size":11,"space":"strings"} +str..oga_00_36={"realname":"str..oga_00_36","demangled":false,"offset":100406,"size":11,"space":"strings"} +str..ogg_00_36={"realname":"str..ogg_00_36","demangled":false,"offset":100319,"size":11,"space":"strings"} +str..ogm_01_35={"realname":"str..ogm_01_35","demangled":false,"offset":99886,"size":11,"space":"strings"} +str..ogv_01_35={"realname":"str..ogv_01_35","demangled":false,"offset":100181,"size":11,"space":"strings"} +str..ogx_01_35={"realname":"str..ogx_01_35","demangled":false,"offset":100192,"size":11,"space":"strings"} +str..opus_00_36={"realname":"str..opus_00_36","demangled":false,"offset":100417,"size":12,"space":"strings"} +str..pbm_01_35={"realname":"str..pbm_01_35","demangled":false,"offset":99673,"size":11,"space":"strings"} +str..pcx_01_35={"realname":"str..pcx_01_35","demangled":false,"offset":99807,"size":11,"space":"strings"} +str..pgm_01_35={"realname":"str..pgm_01_35","demangled":false,"offset":99684,"size":11,"space":"strings"} +str..png_01_35={"realname":"str..png_01_35","demangled":false,"offset":99762,"size":11,"space":"strings"} +str..ppm_01_35={"realname":"str..ppm_01_35","demangled":false,"offset":99695,"size":11,"space":"strings"} +str..qt_01_35={"realname":"str..qt_01_35","demangled":false,"offset":99942,"size":10,"space":"strings"} +str..ra_00_36={"realname":"str..ra_00_36","demangled":false,"offset":100330,"size":10,"space":"strings"} +str..rar_01_31={"realname":"str..rar_01_31","demangled":false,"offset":99456,"size":11,"space":"strings"} +str..rm_01_35={"realname":"str..rm_01_35","demangled":false,"offset":99985,"size":10,"space":"strings"} +str..rmvb_01_35={"realname":"str..rmvb_01_35","demangled":false,"offset":99995,"size":12,"space":"strings"} +str..rpm_01_31={"realname":"str..rpm_01_31","demangled":false,"offset":99401,"size":11,"space":"strings"} +str..rz_01_31={"realname":"str..rz_01_31","demangled":false,"offset":99522,"size":10,"space":"strings"} +str..sar_01_31={"realname":"str..sar_01_31","demangled":false,"offset":99445,"size":11,"space":"strings"} +str..sh_01_32={"realname":"str..sh_01_32","demangled":false,"offset":99025,"size":11,"space":"strings"} +str..spx_00_36={"realname":"str..spx_00_36","demangled":false,"offset":100429,"size":11,"space":"strings"} +str..svg_01_35={"realname":"str..svg_01_35","demangled":false,"offset":99773,"size":11,"space":"strings"} +str..svgz_01_35={"realname":"str..svgz_01_35","demangled":false,"offset":99784,"size":12,"space":"strings"} +str..swm_01_31={"realname":"str..swm_01_31","demangled":false,"offset":99554,"size":11,"space":"strings"} +str..t7z_01_31={"realname":"str..t7z_01_31","demangled":false,"offset":99220,"size":11,"space":"strings"} +str..tar_01_31={"realname":"str..tar_01_31","demangled":false,"offset":99087,"size":11,"space":"strings"} +str..taz_01_31={"realname":"str..taz_01_31","demangled":false,"offset":99131,"size":11,"space":"strings"} +str..tbz2_01_31={"realname":"str..tbz2_01_31","demangled":false,"offset":99368,"size":12,"space":"strings"} +str..tbz_01_31={"realname":"str..tbz_01_31","demangled":false,"offset":99357,"size":11,"space":"strings"} +str..tga_01_35={"realname":"str..tga_01_35","demangled":false,"offset":99706,"size":11,"space":"strings"} +str..tgz_01_31={"realname":"str..tgz_01_31","demangled":false,"offset":99098,"size":11,"space":"strings"} +str..tif_01_35={"realname":"str..tif_01_35","demangled":false,"offset":99739,"size":11,"space":"strings"} +str..tiff_01_35={"realname":"str..tiff_01_35","demangled":false,"offset":99750,"size":12,"space":"strings"} +str..tlz_01_31={"realname":"str..tlz_01_31","demangled":false,"offset":99187,"size":11,"space":"strings"} +str..txz_01_31={"realname":"str..txz_01_31","demangled":false,"offset":99198,"size":11,"space":"strings"} +str..tz_01_31={"realname":"str..tz_01_31","demangled":false,"offset":99380,"size":10,"space":"strings"} +str..tzo_01_31={"realname":"str..tzo_01_31","demangled":false,"offset":99209,"size":11,"space":"strings"} +str..tzst_01_31={"realname":"str..tzst_01_31","demangled":false,"offset":99324,"size":12,"space":"strings"} +str..vob_01_35={"realname":"str..vob_01_35","demangled":false,"offset":99931,"size":11,"space":"strings"} +str..war_01_31={"realname":"str..war_01_31","demangled":false,"offset":99423,"size":11,"space":"strings"} +str..wav_00_36={"realname":"str..wav_00_36","demangled":false,"offset":100340,"size":11,"space":"strings"} +str..webm_01_35={"realname":"str..webm_01_35","demangled":false,"offset":99874,"size":12,"space":"strings"} +str..wim_01_31={"realname":"str..wim_01_31","demangled":false,"offset":99543,"size":11,"space":"strings"} +str..wmv_01_35={"realname":"str..wmv_01_35","demangled":false,"offset":99963,"size":11,"space":"strings"} +str..xbm_01_35={"realname":"str..xbm_01_35","demangled":false,"offset":99717,"size":11,"space":"strings"} +str..xcf_01_35={"realname":"str..xcf_01_35","demangled":false,"offset":100071,"size":11,"space":"strings"} +str..xpm_01_35={"realname":"str..xpm_01_35","demangled":false,"offset":99728,"size":11,"space":"strings"} +str..xspf_00_36={"realname":"str..xspf_00_36","demangled":false,"offset":100440,"size":12,"space":"strings"} +str..xwd_01_35={"realname":"str..xwd_01_35","demangled":false,"offset":100082,"size":11,"space":"strings"} +str..xz_01_31={"realname":"str..xz_01_31","demangled":false,"offset":99303,"size":10,"space":"strings"} +str..yuv_01_35={"realname":"str..yuv_01_35","demangled":false,"offset":100093,"size":11,"space":"strings"} +str..z_01_31={"realname":"str..z_01_31","demangled":false,"offset":99242,"size":9,"space":"strings"} +str..zip_01_31={"realname":"str..zip_01_31","demangled":false,"offset":99231,"size":11,"space":"strings"} +str..zoo_01_31={"realname":"str..zoo_01_31","demangled":false,"offset":99489,"size":11,"space":"strings"} +str..zst_01_31={"realname":"str..zst_01_31","demangled":false,"offset":99313,"size":11,"space":"strings"} +str.00_none_01_bold_04_underscore_05_blink_07_reverse_08_concealed={"realname":"str.00_none_01_bold_04_underscore_05_blink_07_reverse_08_concealed","demangled":false,"offset":97344,"size":65,"space":"strings"} +str.01_32={"realname":"str.01_32","demangled":false,"offset":101828,"size":6,"space":"strings"} +str.01_33={"realname":"str.01_33","demangled":false,"offset":101822,"size":6,"space":"strings"} +str.01_34={"realname":"str.01_34","demangled":false,"offset":101804,"size":6,"space":"strings"} +str.01_35={"realname":"str.01_35","demangled":false,"offset":101816,"size":6,"space":"strings"} +str.01_36={"realname":"str.01_36","demangled":false,"offset":101810,"size":6,"space":"strings"} +str.02x={"realname":"str.02x","demangled":false,"offset":100464,"size":7,"space":"strings"} +str.0____strtol_base____strtol_base____36={"realname":"str.0____strtol_base____strtol_base____36","demangled":false,"offset":113968,"size":38,"space":"strings"} +str.30_41={"realname":"str.30_41","demangled":false,"offset":101864,"size":6,"space":"strings"} +str.30_42={"realname":"str.30_42","demangled":false,"offset":101858,"size":6,"space":"strings"} +str.30_43={"realname":"str.30_43","demangled":false,"offset":101840,"size":6,"space":"strings"} +str.30_black_31_red_32_green_33_yellow_34_blue_35_magenta_36_cyan_37_white={"realname":"str.30_black_31_red_32_green_33_yellow_34_blue_35_magenta_36_cyan_37_white","demangled":false,"offset":97429,"size":73,"space":"strings"} +str.34_42={"realname":"str.34_42","demangled":false,"offset":101852,"size":6,"space":"strings"} +str.37_41={"realname":"str.37_41","demangled":false,"offset":101834,"size":6,"space":"strings"} +str.37_44={"realname":"str.37_44","demangled":false,"offset":101846,"size":6,"space":"strings"} +str.40_black_41_red_42_green_43_yellow_44_blue_45_magenta_46_cyan_47_white={"realname":"str.40_black_41_red_42_green_43_yellow_44_blue_45_magenta_46_cyan_47_white","demangled":false,"offset":97528,"size":73,"space":"strings"} +str.8={"realname":"str.8","demangled":false,"offset":100539,"size":7,"space":"strings"} +str.8.30={"realname":"str.8.30","demangled":false,"offset":110328,"size":5,"space":"strings"} +str.8__file:___s_s_s={"realname":"str.8__file:___s_s_s","demangled":false,"offset":100519,"size":20,"space":"strings"} +str.ASCII={"realname":"str.ASCII","demangled":false,"offset":114947,"size":6,"space":"strings"} +str.A_NULL_argv_0__was_passed_through_an_exec_system_call.={"realname":"str.A_NULL_argv_0__was_passed_through_an_exec_system_call.","demangled":false,"offset":111288,"size":56,"space":"strings"} +str.Attribute_codes:={"realname":"str.Attribute_codes:","demangled":false,"offset":97325,"size":19,"space":"strings"} +str.BLK_40_33_01___block_device_driver={"realname":"str.BLK_40_33_01___block_device_driver","demangled":false,"offset":97980,"size":35,"space":"strings"} +str.BLOCKSIZE={"realname":"str.BLOCKSIZE","demangled":false,"offset":110684,"size":10,"space":"strings"} +str.B____ignore_backups_______do_not_list_implied_entries_ending_with______c_________________________with__lt:_sort_by__and_show__ctime__time_of_last________________________________modification_of_file_status_information__________________________________with__l:_show_ctime_and_sort_by_name_________________________________otherwise:_sort_by_ctime__newest_first={"realname":"str.B____ignore_backups_______do_not_list_implied_entries_ending_with______c_________________________with__lt:_sort_by__and_show__ctime__time_of_last________________________________modification_of_file_status_information__________________________________with__l:_show_ctime_and_sort_by_name_________________________________otherwise:_sort_by_ctime__newest_first","demangled":false,"offset":102768,"size":362,"space":"strings"} +str.Background_color_codes:={"realname":"str.Background_color_codes:","demangled":false,"offset":97502,"size":26,"space":"strings"} +str.Below_are_TERM_entries__which_can_be_a_glob_patterns__to_match={"realname":"str.Below_are_TERM_entries__which_can_be_a_glob_patterns__to_match","demangled":false,"offset":96754,"size":65,"space":"strings"} +str.Below_are_the_color_init_strings_for_the_basic_file_types._A_color_init={"realname":"str.Below_are_the_color_init_strings_for_the_basic_file_types._A_color_init","demangled":false,"offset":97186,"size":74,"space":"strings"} +str.CAPABILITY_30_41___file_with_capability={"realname":"str.CAPABILITY_30_41___file_with_capability","demangled":false,"offset":98254,"size":40,"space":"strings"} +str.CHR_40_33_01___character_device_driver={"realname":"str.CHR_40_33_01___character_device_driver","demangled":false,"offset":98015,"size":39,"space":"strings"} +str.COLORTERM={"realname":"str.COLORTERM","demangled":false,"offset":101242,"size":10,"space":"strings"} +str.COLUMNS={"realname":"str.COLUMNS","demangled":false,"offset":100898,"size":8,"space":"strings"} +str.C_________________________list_entries_by_columns_________color__WHEN__________colorize_the_output__WHEN_can_be__always___default________________________________if_omitted____auto___or__never___more_info_below____d____directory____________list_directories_themselves__not_their_contents____D____dired________________generate_output_designed_for_Emacs__dired_mode={"realname":"str.C_________________________list_entries_by_columns_________color__WHEN__________colorize_the_output__WHEN_can_be__always___default________________________________if_omitted____auto___or__never___more_info_below____d____directory____________list_directories_themselves__not_their_contents____D____dired________________generate_output_designed_for_Emacs__dired_mode","demangled":false,"offset":103136,"size":367,"space":"strings"} +str.Configuration_file_for_dircolors__a_utility_to_help_you_set_the={"realname":"str.Configuration_file_for_dircolors__a_utility_to_help_you_set_the","demangled":false,"offset":96288,"size":66,"space":"strings"} +str.Copying_and_distribution_of_this_file__with_or_without_modification={"realname":"str.Copying_and_distribution_of_this_file__with_or_without_modification","demangled":false,"offset":96484,"size":71,"space":"strings"} +str.Copyright__C__1996_2018_Free_Software_Foundation__Inc.={"realname":"str.Copyright__C__1996_2018_Free_Software_Foundation__Inc.","demangled":false,"offset":96427,"size":57,"space":"strings"} +str.Copyright__s__d_Free_Software_Foundation__Inc.={"realname":"str.Copyright__s__d_Free_Software_Foundation__Inc.","demangled":false,"offset":113888,"size":47,"space":"strings"} +str.DIRED={"realname":"str.DIRED","demangled":false,"offset":101298,"size":10,"space":"strings"} +str.DIRED_OPTIONS_____quoting_style__s={"realname":"str.DIRED_OPTIONS_____quoting_style__s","demangled":false,"offset":110144,"size":38,"space":"strings"} +str.DIR_01_34___directory={"realname":"str.DIR_01_34___directory","demangled":false,"offset":97714,"size":22,"space":"strings"} +str.DOOR_01_35___door={"realname":"str.DOOR_01_35___door","demangled":false,"offset":97962,"size":18,"space":"strings"} +str.David_MacKenzie={"realname":"str.David_MacKenzie","demangled":false,"offset":101038,"size":16,"space":"strings"} +str.EXEC_01_32={"realname":"str.EXEC_01_32","demangled":false,"offset":98558,"size":11,"space":"strings"} +str.Exit_status:__0__if_OK___1__if_minor_problems__e.g.__cannot_access_subdirectory____2__if_serious_trouble__e.g.__cannot_access_command_line_argument_.={"realname":"str.Exit_status:__0__if_OK___1__if_minor_problems__e.g.__cannot_access_subdirectory____2__if_serious_trouble__e.g.__cannot_access_command_line_argument_.","demangled":false,"offset":109432,"size":152,"space":"strings"} +str.FIFO_40_33___pipe={"realname":"str.FIFO_40_33___pipe","demangled":false,"offset":97924,"size":18,"space":"strings"} +str.FILE_00___regular_file:_use_no_color_at_all={"realname":"str.FILE_00___regular_file:_use_no_color_at_all","demangled":false,"offset":97635,"size":45,"space":"strings"} +str.FORMAT__e.g.____H:_M__for_a__date__style_format={"realname":"str.FORMAT__e.g.____H:_M__for_a__date__style_format","demangled":false,"offset":110032,"size":54,"space":"strings"} +str.Full_documentation_at:___s_s={"realname":"str.Full_documentation_at:___s_s","demangled":false,"offset":109696,"size":31,"space":"strings"} +str.GNU_coreutils={"realname":"str.GNU_coreutils","demangled":false,"offset":100836,"size":14,"space":"strings"} +str.G____no_group_____________in_a_long_listing__don_t_print_group_names={"realname":"str.G____no_group_____________in_a_long_listing__don_t_print_group_names","demangled":false,"offset":104240,"size":73,"space":"strings"} +str.General_help_using_GNU_software:__https:__www.gnu.org_gethelp={"realname":"str.General_help_using_GNU_software:__https:__www.gnu.org_gethelp","demangled":false,"offset":113760,"size":65,"space":"strings"} +str.H:_M:_S={"realname":"str.H:_M:_S","demangled":false,"offset":110768,"size":9,"space":"strings"} +str.H____dereference_command_line______________________________follow_symbolic_links_listed_on_the_command_line_________dereference_command_line_symlink_to_dir______________________________follow_each_command_line_symbolic_link________________________________that_points_to_a_directory_________hide_PATTERN_________do_not_list_implied_entries_matching_shell_PATTERN_________________________________overridden_by__a_or__A={"realname":"str.H____dereference_command_line______________________________follow_symbolic_links_listed_on_the_command_line_________dereference_command_line_symlink_to_dir______________________________follow_each_command_line_symbolic_link________________________________that_points_to_a_directory_________hide_PATTERN_________do_not_list_implied_entries_matching_shell_PATTERN_________________________________overridden_by__a_or__A","demangled":false,"offset":104472,"size":422,"space":"strings"} +str.If_you_use_DOS_style_suffixes__you_may_want_to_uncomment_the_following:={"realname":"str.If_you_use_DOS_style_suffixes__you_may_want_to_uncomment_the_following:","demangled":false,"offset":98765,"size":74,"space":"strings"} +str.KMGTPEZY={"realname":"str.KMGTPEZY","demangled":false,"offset":110737,"size":9,"space":"strings"} +str.LINK_01_36___symbolic_link.__If_you_set_this_to__target__instead_of_a={"realname":"str.LINK_01_36___symbolic_link.__If_you_set_this_to__target__instead_of_a","demangled":false,"offset":97736,"size":70,"space":"strings"} +str.LS_BLOCK_SIZE={"realname":"str.LS_BLOCK_SIZE","demangled":false,"offset":101074,"size":14,"space":"strings"} +str.LS_COLORS={"realname":"str.LS_COLORS","demangled":false,"offset":101232,"size":10,"space":"strings"} +str.LS_COLORS_environment_variable_used_by_GNU_ls_with_the___color_option.={"realname":"str.LS_COLORS_environment_variable_used_by_GNU_ls_with_the___color_option.","demangled":false,"offset":96354,"size":73,"space":"strings"} +str.License_GPLv3_:_GNU_GPL_version_3_or_later__https:__gnu.org_licenses_gpl.html_._This_is_free_software:_you_are_free_to_change_and_redistribute_it._There_is_NO_WARRANTY__to_the_extent_permitted_by_law.={"realname":"str.License_GPLv3_:_GNU_GPL_version_3_or_later__https:__gnu.org_licenses_gpl.html_._This_is_free_software:_you_are_free_to_change_and_redistribute_it._There_is_NO_WARRANTY__to_the_extent_permitted_by_law.","demangled":false,"offset":113224,"size":204,"space":"strings"} +str.List_any_file_extensions_like__.gz__or__.tar__that_you_would_like_ls={"realname":"str.List_any_file_extensions_like__.gz__or__.tar__that_you_would_like_ls","demangled":false,"offset":98569,"size":71,"space":"strings"} +str.List_information_about_the_FILEs__the_current_directory_by_default_._Sort_entries_alphabetically_if_none_of__cftuvSUX_nor___sort_is_specified.={"realname":"str.List_information_about_the_FILEs__the_current_directory_by_default_._Sort_entries_alphabetically_if_none_of__cftuvSUX_nor___sort_is_specified.","demangled":false,"offset":102112,"size":144,"space":"strings"} +str.MISSING_00___..._and_the_files_they_point_to={"realname":"str.MISSING_00___..._and_the_files_they_point_to","demangled":false,"offset":98127,"size":45,"space":"strings"} +str.MULTIHARDLINK_00___regular_file_with_more_than_one_link={"realname":"str.MULTIHARDLINK_00___regular_file_with_more_than_one_link","demangled":false,"offset":97868,"size":56,"space":"strings"} +str.Mandatory_arguments_to_long_options_are_mandatory_for_short_options_too.={"realname":"str.Mandatory_arguments_to_long_options_are_mandatory_for_short_options_too.","demangled":false,"offset":102256,"size":75,"space":"strings"} +str.Multi_call_invocation={"realname":"str.Multi_call_invocation","demangled":false,"offset":100736,"size":22,"space":"strings"} +str.NORMAL_00___no_color_code_at_all={"realname":"str.NORMAL_00___no_color_code_at_all","demangled":false,"offset":97601,"size":34,"space":"strings"} +str.ORPHAN_40_31_01___symlink_to_nonexistent_file__or_non_stat_able_file_...={"realname":"str.ORPHAN_40_31_01___symlink_to_nonexistent_file__or_non_stat_able_file_...","demangled":false,"offset":98054,"size":73,"space":"strings"} +str.OTHER_WRITABLE_34_42___dir_that_is_other_writable__o_w__and_not_sticky={"realname":"str.OTHER_WRITABLE_34_42___dir_that_is_other_writable__o_w__and_not_sticky","demangled":false,"offset":98371,"size":71,"space":"strings"} +str.Or_if_you_want_to_colorize_scripts_even_if_they_do_not_have_the={"realname":"str.Or_if_you_want_to_colorize_scripts_even_if_they_do_not_have_the","demangled":false,"offset":98928,"size":66,"space":"strings"} +str.POSIX={"realname":"str.POSIX","demangled":false,"offset":110489,"size":6,"space":"strings"} +str.POSIXLY_CORRECT={"realname":"str.POSIXLY_CORRECT","demangled":false,"offset":110694,"size":16,"space":"strings"} +str.QUOTING_STYLE={"realname":"str.QUOTING_STYLE","demangled":false,"offset":100884,"size":14,"space":"strings"} +str.RESET_0___reset_to__normal__color={"realname":"str.RESET_0___reset_to__normal__color","demangled":false,"offset":97680,"size":34,"space":"strings"} +str.Report__s_translation_bugs_to__https:__translationproject.org_team={"realname":"str.Report__s_translation_bugs_to__https:__translationproject.org_team","demangled":false,"offset":109624,"size":70,"space":"strings"} +str.Report_bugs_to:__s={"realname":"str.Report_bugs_to:__s","demangled":false,"offset":113154,"size":21,"space":"strings"} +str.Richard_M._Stallman={"realname":"str.Richard_M._Stallman","demangled":false,"offset":101054,"size":20,"space":"strings"} +str.SETGID_30_43___file_that_is_setgid__g_s={"realname":"str.SETGID_30_43___file_that_is_setgid__g_s","demangled":false,"offset":98213,"size":41,"space":"strings"} +str.SETUID_37_41___file_that_is_setuid__u_s={"realname":"str.SETUID_37_41___file_that_is_setuid__u_s","demangled":false,"offset":98172,"size":41,"space":"strings"} +str.SOCK_01_35___socket={"realname":"str.SOCK_01_35___socket","demangled":false,"offset":97942,"size":20,"space":"strings"} +str.STICKY_37_44___dir_with_the_sticky_bit_set___t__and_not_other_writable={"realname":"str.STICKY_37_44___dir_with_the_sticky_bit_set___t__and_not_other_writable","demangled":false,"offset":98442,"size":71,"space":"strings"} +str.STICKY_OTHER_WRITABLE_30_42___dir_that_is_sticky_and_other_writable___t_o_w={"realname":"str.STICKY_OTHER_WRITABLE_30_42___dir_that_is_sticky_and_other_writable___t_o_w","demangled":false,"offset":98294,"size":77,"space":"strings"} +str.SUBDIRED={"realname":"str.SUBDIRED","demangled":false,"offset":101308,"size":13,"space":"strings"} +str.S_________________________sort_by_file_size__largest_first_________sort_WORD____________sort_by_WORD_instead_of_name:_none___U___size___S__________________________________time___t___version___v___extension___X__________time_WORD____________with__l__show_time_as_WORD_instead_of_default________________________________modification_time:_atime_or_access_or_use___u__________________________________ctime_or_status___c___also_use_specified_time________________________________as_sort_key_if___sort_time__newest_first={"realname":"str.S_________________________sort_by_file_size__largest_first_________sort_WORD____________sort_by_WORD_instead_of_name:_none___U___size___S__________________________________time___t___version___v___extension___X__________time_WORD____________with__l__show_time_as_WORD_instead_of_default________________________________modification_time:_atime_or_access_or_use___u__________________________________ctime_or_status___c___also_use_specified_time________________________________as_sort_key_if___sort_time__newest_first","demangled":false,"offset":107016,"size":519,"space":"strings"} +str.TABSIZE={"realname":"str.TABSIZE","demangled":false,"offset":100906,"size":8,"space":"strings"} +str.TERM={"realname":"str.TERM","demangled":false,"offset":101252,"size":6,"space":"strings"} +str.TERM_Eterm={"realname":"str.TERM_Eterm","demangled":false,"offset":96894,"size":11,"space":"strings"} +str.TERM__color={"realname":"str.TERM__color","demangled":false,"offset":96915,"size":13,"space":"strings"} +str.TERM_ansi={"realname":"str.TERM_ansi","demangled":false,"offset":96905,"size":10,"space":"strings"} +str.TERM_con_0_9__x_0_9={"realname":"str.TERM_con_0_9__x_0_9","demangled":false,"offset":96928,"size":22,"space":"strings"} +str.TERM_cons25={"realname":"str.TERM_cons25","demangled":false,"offset":96950,"size":12,"space":"strings"} +str.TERM_console={"realname":"str.TERM_console","demangled":false,"offset":96962,"size":13,"space":"strings"} +str.TERM_cygwin={"realname":"str.TERM_cygwin","demangled":false,"offset":96975,"size":12,"space":"strings"} +str.TERM_dtterm={"realname":"str.TERM_dtterm","demangled":false,"offset":96987,"size":12,"space":"strings"} +str.TERM_gnome={"realname":"str.TERM_gnome","demangled":false,"offset":96999,"size":11,"space":"strings"} +str.TERM_hurd={"realname":"str.TERM_hurd","demangled":false,"offset":97010,"size":10,"space":"strings"} +str.TERM_jfbterm={"realname":"str.TERM_jfbterm","demangled":false,"offset":97020,"size":13,"space":"strings"} +str.TERM_konsole={"realname":"str.TERM_konsole","demangled":false,"offset":97033,"size":13,"space":"strings"} +str.TERM_kterm={"realname":"str.TERM_kterm","demangled":false,"offset":97046,"size":11,"space":"strings"} +str.TERM_linux={"realname":"str.TERM_linux","demangled":false,"offset":97057,"size":11,"space":"strings"} +str.TERM_linux_c={"realname":"str.TERM_linux_c","demangled":false,"offset":97068,"size":13,"space":"strings"} +str.TERM_mlterm={"realname":"str.TERM_mlterm","demangled":false,"offset":97081,"size":12,"space":"strings"} +str.TERM_putty={"realname":"str.TERM_putty","demangled":false,"offset":97093,"size":11,"space":"strings"} +str.TERM_rxvt={"realname":"str.TERM_rxvt","demangled":false,"offset":97104,"size":11,"space":"strings"} +str.TERM_screen={"realname":"str.TERM_screen","demangled":false,"offset":97115,"size":13,"space":"strings"} +str.TERM_st={"realname":"str.TERM_st","demangled":false,"offset":97128,"size":8,"space":"strings"} +str.TERM_terminator={"realname":"str.TERM_terminator","demangled":false,"offset":97136,"size":16,"space":"strings"} +str.TERM_tmux={"realname":"str.TERM_tmux","demangled":false,"offset":97152,"size":11,"space":"strings"} +str.TERM_vt100={"realname":"str.TERM_vt100","demangled":false,"offset":97163,"size":11,"space":"strings"} +str.TERM_xterm={"realname":"str.TERM_xterm","demangled":false,"offset":97174,"size":12,"space":"strings"} +str.TIME_STYLE={"realname":"str.TIME_STYLE","demangled":false,"offset":101094,"size":11,"space":"strings"} +str.Text_color_codes:={"realname":"str.Text_color_codes:","demangled":false,"offset":97409,"size":20,"space":"strings"} +str.The_SIZE_argument_is_an_integer_and_optional_unit__example:_10K_is_10_1024_._Units_are_K_M_G_T_P_E_Z_Y__powers_of_1024__or_KB_MB_...__powers_of_1000_.={"realname":"str.The_SIZE_argument_is_an_integer_and_optional_unit__example:_10K_is_10_1024_._Units_are_K_M_G_T_P_E_Z_Y__powers_of_1024__or_KB_MB_...__powers_of_1000_.","demangled":false,"offset":108608,"size":153,"space":"strings"} +str.The_TIME_STYLE_argument_can_be_full_iso__long_iso__iso__locale__or__FORMAT._FORMAT_is_interpreted_like_in_date_1_.__If_FORMAT_is_FORMAT1_newline_FORMAT2__then_FORMAT1_applies_to_non_recent_files_and_FORMAT2_to_recent_files._TIME_STYLE_prefixed_with__posix___takes_effect_only_outside_the_POSIX_locale._Also_the_TIME_STYLE_environment_variable_sets_the_default_style_to_use.={"realname":"str.The_TIME_STYLE_argument_can_be_full_iso__long_iso__iso__locale__or__FORMAT._FORMAT_is_interpreted_like_in_date_1_.__If_FORMAT_is_FORMAT1_newline_FORMAT2__then_FORMAT1_applies_to_non_recent_files_and_FORMAT2_to_recent_files._TIME_STYLE_prefixed_with__posix___takes_effect_only_outside_the_POSIX_locale._Also_the_TIME_STYLE_environment_variable_sets_the_default_style_to_use.","demangled":false,"offset":108768,"size":376,"space":"strings"} +str.The_keywords_COLOR__OPTIONS__and_EIGHTBIT__honored_by_the={"realname":"str.The_keywords_COLOR__OPTIONS__and_EIGHTBIT__honored_by_the","demangled":false,"offset":96632,"size":60,"space":"strings"} +str.This_is_for_files_with_execute_permission:={"realname":"str.This_is_for_files_with_execute_permission:","demangled":false,"offset":98513,"size":45,"space":"strings"} +str.Try___s___help__for_more_information.={"realname":"str.Try___s___help__for_more_information.","demangled":false,"offset":102032,"size":39,"space":"strings"} +str.Usage:__s__OPTION_...__FILE_...={"realname":"str.Usage:__s__OPTION_...__FILE_...","demangled":false,"offset":102072,"size":33,"space":"strings"} +str.Using_color_to_distinguish_file_types_is_disabled_both_by_default_and_with___color_never.__With___color_auto__ls_emits_color_codes_only_when_standard_output_is_connected_to_a_terminal.__The_LS_COLORS_environment_variable_can_change_the_settings.__Use_the_dircolors_command_to_set_it.={"realname":"str.Using_color_to_distinguish_file_types_is_disabled_both_by_default_and_with___color_never.__With___color_auto__ls_emits_color_codes_only_when_standard_output_is_connected_to_a_terminal.__The_LS_COLORS_environment_variable_can_change_the_settings.__Use_the_dircolors_command_to_set_it.","demangled":false,"offset":109144,"size":286,"space":"strings"} +str.Valid_arguments_are:={"realname":"str.Valid_arguments_are:","demangled":false,"offset":110389,"size":21,"space":"strings"} +str.Written_by__s.={"realname":"str.Written_by__s.","demangled":false,"offset":113087,"size":16,"space":"strings"} +str.Written_by__s___s___s___s___s___s___s___s___s__and_others.={"realname":"str.Written_by__s___s___s___s___s___s___s___s___s__and_others.","demangled":false,"offset":113696,"size":60,"space":"strings"} +str.Written_by__s___s___s___s___s___s___s___s__and__s.={"realname":"str.Written_by__s___s___s___s___s___s___s___s__and__s.","demangled":false,"offset":113640,"size":52,"space":"strings"} +str.Written_by__s___s___s___s___s___s___s__and__s.={"realname":"str.Written_by__s___s___s___s___s___s___s__and__s.","demangled":false,"offset":113592,"size":48,"space":"strings"} +str.Written_by__s___s___s___s___s___s__and__s.={"realname":"str.Written_by__s___s___s___s___s___s__and__s.","demangled":false,"offset":113544,"size":44,"space":"strings"} +str.Written_by__s___s___s___s___s__and__s.={"realname":"str.Written_by__s___s___s___s___s__and__s.","demangled":false,"offset":113504,"size":40,"space":"strings"} +str.Written_by__s___s___s___s__and__s.={"realname":"str.Written_by__s___s___s___s__and__s.","demangled":false,"offset":113464,"size":36,"space":"strings"} +str.Written_by__s___s___s__and__s.={"realname":"str.Written_by__s___s___s__and__s.","demangled":false,"offset":113432,"size":32,"space":"strings"} +str.Written_by__s___s__and__s.={"realname":"str.Written_by__s___s__and__s.","demangled":false,"offset":113126,"size":28,"space":"strings"} +str.Written_by__s_and__s.={"realname":"str.Written_by__s_and__s.","demangled":false,"offset":113103,"size":23,"space":"strings"} +str.Y__.0Lf={"realname":"str.Y__.0Lf","demangled":false,"offset":110670,"size":8,"space":"strings"} +str.Y__m__d={"realname":"str.Y__m__d","demangled":false,"offset":110786,"size":9,"space":"strings"} +str.Y__m__d__H:_M={"realname":"str.Y__m__d__H:_M","demangled":false,"offset":101207,"size":15,"space":"strings"} +str.Y__m__d__H:_M:_S._N__z={"realname":"str.Y__m__d__H:_M:_S._N__z","demangled":false,"offset":101183,"size":24,"space":"strings"} +str.a____all__________________do_not_ignore_entries_starting_with_.____A____almost_all___________do_not_list_implied_._and_.._________author_______________with__l__print_the_author_of_each_file____b____escape_______________print_C_style_escapes_for_nongraphic_characters={"realname":"str.a____all__________________do_not_ignore_entries_starting_with_.____A____almost_all___________do_not_list_implied_._and_.._________author_______________with__l__print_the_author_of_each_file____b____escape_______________print_C_style_escapes_for_nongraphic_characters","demangled":false,"offset":102336,"size":271,"space":"strings"} +str.abcdfghiklmnopqrstuvw:xABCDFGHI:LNQRST:UXZ1={"realname":"str.abcdfghiklmnopqrstuvw:xABCDFGHI:LNQRST:UXZ1","demangled":false,"offset":109984,"size":44,"space":"strings"} +str.across={"realname":"str.across","demangled":false,"offset":101421,"size":7,"space":"strings"} +str.against_the_TERM_environment_variable_to_determine_if_it_is_colorizable.={"realname":"str.against_the_TERM_environment_variable_to_determine_if_it_is_colorizable.","demangled":false,"offset":96819,"size":75,"space":"strings"} +str.almost_all={"realname":"str.almost_all","demangled":false,"offset":101584,"size":11,"space":"strings"} +str.ambiguous_argument__s_for__s={"realname":"str.ambiguous_argument__s_for__s","demangled":false,"offset":110360,"size":29,"space":"strings"} +str.and_any_comments_you_want_to_add_after_a={"realname":"str.and_any_comments_you_want_to_add_after_a","demangled":false,"offset":98716,"size":49,"space":"strings"} +str.archives_or_compressed__bright_red={"realname":"str.archives_or_compressed__bright_red","demangled":false,"offset":99048,"size":39,"space":"strings"} +str.are_permitted_provided_the_copyright_notice_and_this_notice_are_preserved.={"realname":"str.are_permitted_provided_the_copyright_notice_and_this_notice_are_preserved.","demangled":false,"offset":96555,"size":77,"space":"strings"} +str.atime={"realname":"str.atime","demangled":false,"offset":101357,"size":6,"space":"strings"} +str.audio_formats={"realname":"str.audio_formats","demangled":false,"offset":100203,"size":16,"space":"strings"} +str.author={"realname":"str.author","demangled":false,"offset":101767,"size":7,"space":"strings"} +str.auto={"realname":"str.auto","demangled":false,"offset":101345,"size":5,"space":"strings"} +str.b__e__H:_M={"realname":"str.b__e__H:_M","demangled":false,"offset":101789,"size":12,"space":"strings"} +str.b__e___Y={"realname":"str.b__e___Y","demangled":false,"offset":101779,"size":10,"space":"strings"} +str.block_size={"realname":"str.block_size","demangled":false,"offset":101748,"size":11,"space":"strings"} +str.block_size_SIZE______with__l__scale_sizes_by_SIZE_when_printing_them_________________________________e.g._____block_size_M___see_SIZE_format_below={"realname":"str.block_size_SIZE______with__l__scale_sizes_by_SIZE_when_printing_them_________________________________e.g._____block_size_M___see_SIZE_format_below","demangled":false,"offset":102608,"size":156,"space":"strings"} +str.buckets:__________lu={"realname":"str.buckets:__________lu","demangled":false,"offset":110519,"size":24,"space":"strings"} +str.buckets_used:_____lu___.2f={"realname":"str.buckets_used:_____lu___.2f","demangled":false,"offset":110568,"size":33,"space":"strings"} +str.bug_coreutils_gnu.org={"realname":"str.bug_coreutils_gnu.org","demangled":false,"offset":113175,"size":22,"space":"strings"} +str.c_maybe={"realname":"str.c_maybe","demangled":false,"offset":111427,"size":8,"space":"strings"} +str.cannot_access__s={"realname":"str.cannot_access__s","demangled":false,"offset":100596,"size":17,"space":"strings"} +str.cannot_determine_device_and_inode_of__s={"realname":"str.cannot_determine_device_and_inode_of__s","demangled":false,"offset":101944,"size":40,"space":"strings"} +str.cannot_open_directory__s={"realname":"str.cannot_open_directory__s","demangled":false,"offset":100642,"size":25,"space":"strings"} +str.cannot_read_symbolic_link__s={"realname":"str.cannot_read_symbolic_link__s","demangled":false,"offset":100613,"size":29,"space":"strings"} +str.classify={"realname":"str.classify","demangled":false,"offset":101610,"size":9,"space":"strings"} +str.clocale={"realname":"str.clocale","demangled":false,"offset":111435,"size":8,"space":"strings"} +str.closing_directory__s={"realname":"str.closing_directory__s","demangled":false,"offset":100688,"size":21,"space":"strings"} +str.color={"realname":"str.color","demangled":false,"offset":100984,"size":8,"space":"strings"} +str.commas={"realname":"str.commas","demangled":false,"offset":101403,"size":7,"space":"strings"} +str.context={"realname":"str.context","demangled":false,"offset":101759,"size":8,"space":"strings"} +str.ctime={"realname":"str.ctime","demangled":false,"offset":101367,"size":6,"space":"strings"} +str.dereference={"realname":"str.dereference","demangled":false,"offset":101669,"size":12,"space":"strings"} +str.dereference_command_line={"realname":"str.dereference_command_line","demangled":false,"offset":101632,"size":25,"space":"strings"} +str.dereference_command_line_symlink_to_dir={"realname":"str.dereference_command_line_symlink_to_dir","demangled":false,"offset":110288,"size":40,"space":"strings"} +str.dev_ino_pop={"realname":"str.dev_ino_pop","demangled":false,"offset":95928,"size":12,"space":"strings"} +str.dev_ino_size____obstack_object_size___dev_ino_obstack={"realname":"str.dev_ino_size____obstack_object_size___dev_ino_obstack","demangled":false,"offset":110088,"size":55,"space":"strings"} +str.directory={"realname":"str.directory","demangled":false,"offset":101451,"size":10,"space":"strings"} +str.dired={"realname":"str.dired","demangled":false,"offset":101461,"size":6,"space":"strings"} +str.eEgGkKmMpPtTyYzZ0={"realname":"str.eEgGkKmMpPtTyYzZ0","demangled":false,"offset":110710,"size":18,"space":"strings"} +str.entries:__________lu={"realname":"str.entries:__________lu","demangled":false,"offset":110495,"size":24,"space":"strings"} +str.error_canonicalizing__s={"realname":"str.error_canonicalizing__s","demangled":false,"offset":100572,"size":24,"space":"strings"} +str.executable_bit_actually_set.={"realname":"str.executable_bit_actually_set.","demangled":false,"offset":98994,"size":31,"space":"strings"} +str.extension={"realname":"str.extension","demangled":false,"offset":101380,"size":10,"space":"strings"} +str.f_________________________do_not_sort__enable__aU__disable__ls___color____F____classify_____________append_indicator__one_of_________to_entries_________file_type____________likewise__except_do_not_append_____________format_WORD__________across__x__commas__m__horizontal__x__long__l_________________________________single_column__1__verbose__l__vertical__C_________full_time____________like__l___time_style_full_iso={"realname":"str.f_________________________do_not_sort__enable__aU__disable__ls___color____F____classify_____________append_indicator__one_of_________to_entries_________file_type____________likewise__except_do_not_append_____________format_WORD__________across__x__commas__m__horizontal__x__long__l_________________________________single_column__1__verbose__l__vertical__C_________full_time____________like__l___time_style_full_iso","demangled":false,"offset":103504,"size":419,"space":"strings"} +str.fff={"realname":"str.fff","demangled":false,"offset":110631,"size":6,"space":"strings"} +str.file_type={"realname":"str.file_type","demangled":false,"offset":101619,"size":10,"space":"strings"} +str.force={"realname":"str.force","demangled":false,"offset":101325,"size":6,"space":"strings"} +str.format={"realname":"str.format","demangled":false,"offset":100975,"size":9,"space":"strings"} +str.found={"realname":"str.found","demangled":false,"offset":101292,"size":6,"space":"strings"} +str.full_iso={"realname":"str.full_iso","demangled":false,"offset":100854,"size":9,"space":"strings"} +str.full_time={"realname":"str.full_time","demangled":false,"offset":101467,"size":10,"space":"strings"} +str.g_________________________like__l__but_do_not_list_owner={"realname":"str.g_________________________like__l__but_do_not_list_owner","demangled":false,"offset":103928,"size":61,"space":"strings"} +str.group_directories_first={"realname":"str.group_directories_first","demangled":false,"offset":101477,"size":24,"space":"strings"} +str.group_directories_first______________________________group_directories_before_files_________________________________can_be_augmented_with_a___sort_option__but_any________________________________use_of___sort_none___U__disables_grouping={"realname":"str.group_directories_first______________________________group_directories_before_files_________________________________can_be_augmented_with_a___sort_option__but_any________________________________use_of___sort_none___U__disables_grouping","demangled":false,"offset":103992,"size":245,"space":"strings"} +str.h____human_readable_______with__l_and__s__print_sizes_like_1K_234M_2G_etc._________si___________________likewise__but_use_powers_of_1000_not_1024={"realname":"str.h____human_readable_______with__l_and__s__print_sizes_like_1K_234M_2G_etc._________si___________________likewise__but_use_powers_of_1000_not_1024","demangled":false,"offset":104320,"size":150,"space":"strings"} +str.hash_get_n_entries__active_dir_set_____0={"realname":"str.hash_get_n_entries__active_dir_set_____0","demangled":false,"offset":110184,"size":41,"space":"strings"} +str.help={"realname":"str.help","demangled":false,"offset":101774,"size":5,"space":"strings"} +str.help_____display_this_help_and_exit={"realname":"str.help_____display_this_help_and_exit","demangled":false,"offset":108504,"size":45,"space":"strings"} +str.hide={"realname":"str.hide","demangled":false,"offset":101657,"size":5,"space":"strings"} +str.hide_control_chars={"realname":"str.hide_control_chars","demangled":false,"offset":101557,"size":19,"space":"strings"} +str.horizontal={"realname":"str.horizontal","demangled":false,"offset":101410,"size":11,"space":"strings"} +str.https:__wiki.xiph.org_MIME_Types_and_File_Extensions={"realname":"str.https:__wiki.xiph.org_MIME_Types_and_File_Extensions","demangled":false,"offset":100351,"size":55,"space":"strings"} +str.https:__www.gnu.org_software_coreutils={"realname":"str.https:__www.gnu.org_software_coreutils","demangled":false,"offset":109584,"size":40,"space":"strings"} +str.human_readable={"realname":"str.human_readable","demangled":false,"offset":101501,"size":15,"space":"strings"} +str.hyperlink={"realname":"str.hyperlink","demangled":false,"offset":100992,"size":12,"space":"strings"} +str.hyperlink__WHEN______hyperlink_file_names__WHEN_can_be__always__________________________________default_if_omitted____auto___or__never={"realname":"str.hyperlink__WHEN______hyperlink_file_names__WHEN_can_be__always__________________________________default_if_omitted____auto___or__never","demangled":false,"offset":104896,"size":145,"space":"strings"} +str.if_tty={"realname":"str.if_tty","demangled":false,"offset":101350,"size":7,"space":"strings"} +str.ignore={"realname":"str.ignore","demangled":false,"offset":101662,"size":7,"space":"strings"} +str.ignore_backups={"realname":"str.ignore_backups","demangled":false,"offset":101595,"size":15,"space":"strings"} +str.ignoring_invalid_tab_size_in_environment_variable_TABSIZE:__s={"realname":"str.ignoring_invalid_tab_size_in_environment_variable_TABSIZE:__s","demangled":false,"offset":109920,"size":62,"space":"strings"} +str.ignoring_invalid_value_of_environment_variable_QUOTING_STYLE:__s={"realname":"str.ignoring_invalid_value_of_environment_variable_QUOTING_STYLE:__s","demangled":false,"offset":109784,"size":65,"space":"strings"} +str.ignoring_invalid_width_in_environment_variable_COLUMNS:__s={"realname":"str.ignoring_invalid_width_in_environment_variable_COLUMNS:__s","demangled":false,"offset":109856,"size":59,"space":"strings"} +str.image_formats={"realname":"str.image_formats","demangled":false,"offset":99587,"size":16,"space":"strings"} +str.indicator_style={"realname":"str.indicator_style","demangled":false,"offset":101004,"size":18,"space":"strings"} +str.indicator_style_WORD__append_indicator_with_style_WORD_to_entry_names:________________________________none__default___slash___p__________________________________file_type____file_type___classify___F_____i____inode________________print_the_index_number_of_each_file____I____ignore_PATTERN_______do_not_list_implied_entries_matching_shell_PATTERN={"realname":"str.indicator_style_WORD__append_indicator_with_style_WORD_to_entry_names:________________________________none__default___slash___p__________________________________file_type____file_type___classify___F_____i____inode________________print_the_index_number_of_each_file____I____ignore_PATTERN_______do_not_list_implied_entries_matching_shell_PATTERN","demangled":false,"offset":105048,"size":354,"space":"strings"} +str.inode={"realname":"str.inode","demangled":false,"offset":101516,"size":6,"space":"strings"} +str.invalid__s_s_argument___s={"realname":"str.invalid__s_s_argument___s","demangled":false,"offset":114454,"size":27,"space":"strings"} +str.invalid_argument__s_for__s={"realname":"str.invalid_argument__s_for__s","demangled":false,"offset":110333,"size":27,"space":"strings"} +str.invalid_line_width={"realname":"str.invalid_line_width","demangled":false,"offset":100914,"size":19,"space":"strings"} +str.invalid_suffix_in__s_s_argument___s={"realname":"str.invalid_suffix_in__s_s_argument___s","demangled":false,"offset":114488,"size":37,"space":"strings"} +str.invalid_tab_size={"realname":"str.invalid_tab_size","demangled":false,"offset":100944,"size":17,"space":"strings"} +str.invalid_time_style_format__s={"realname":"str.invalid_time_style_format__s","demangled":false,"offset":101105,"size":29,"space":"strings"} +str.k____kibibytes____________default_to_1024_byte_blocks_for_disk_usage_________________________________used_only_with__s_and_per_directory_totals={"realname":"str.k____kibibytes____________default_to_1024_byte_blocks_for_disk_usage_________________________________used_only_with__s_and_per_directory_totals","demangled":false,"offset":105408,"size":148,"space":"strings"} +str.kibibytes={"realname":"str.kibibytes","demangled":false,"offset":101522,"size":10,"space":"strings"} +str.l_________________________use_a_long_listing_format____L____dereference__________when_showing_file_information_for_a_symbolic________________________________link__show_information_for_the_file_the_link________________________________references_rather_than_for_the_link_itself____m_________________________fill_width_with_a_comma_separated_list_of_entries={"realname":"str.l_________________________use_a_long_listing_format____L____dereference__________when_showing_file_information_for_a_symbolic________________________________link__show_information_for_the_file_the_link________________________________references_rather_than_for_the_link_itself____m_________________________fill_width_with_a_comma_separated_list_of_entries","demangled":false,"offset":105560,"size":359,"space":"strings"} +str.lib_xstrtol.c={"realname":"str.lib_xstrtol.c","demangled":false,"offset":113952,"size":14,"space":"strings"} +str.literal={"realname":"str.literal","demangled":false,"offset":101681,"size":8,"space":"strings"} +str.long={"realname":"str.long","demangled":false,"offset":101398,"size":5,"space":"strings"} +str.long_iso={"realname":"str.long_iso","demangled":false,"offset":101934,"size":9,"space":"strings"} +str.lu={"realname":"str.lu","demangled":false,"offset":100511,"size":6,"space":"strings"} +str.m__d__y={"realname":"str.m__d__y","demangled":false,"offset":110777,"size":9,"space":"strings"} +str.main={"realname":"str.main","demangled":false,"offset":96090,"size":5,"space":"strings"} +str.max_bucket_length:__lu={"realname":"str.max_bucket_length:__lu","demangled":false,"offset":110543,"size":24,"space":"strings"} +str.memory_exhausted={"realname":"str.memory_exhausted","demangled":false,"offset":113935,"size":17,"space":"strings"} +str.n____numeric_uid_gid______like__l__but_list_numeric_user_and_group_IDs____N____literal______________print_entry_names_without_quoting____o_________________________like__l__but_do_not_list_group_information____p____indicator_style_slash______________________________append___indicator_to_directories={"realname":"str.n____numeric_uid_gid______like__l__but_list_numeric_user_and_group_IDs____N____literal______________print_entry_names_without_quoting____o_________________________like__l__but_do_not_list_group_information____p____indicator_style_slash______________________________append___indicator_to_directories","demangled":false,"offset":105920,"size":303,"space":"strings"} +str.never={"realname":"str.never","demangled":false,"offset":101331,"size":6,"space":"strings"} +str.no_group={"realname":"str.no_group","demangled":false,"offset":101548,"size":9,"space":"strings"} +str.none={"realname":"str.none","demangled":false,"offset":101340,"size":5,"space":"strings"} +str.numeric_uid_gid={"realname":"str.numeric_uid_gid","demangled":false,"offset":101532,"size":16,"space":"strings"} +str.numerical_value__the_color_is_as_for_the_file_pointed_to.={"realname":"str.numerical_value__the_color_is_as_for_the_file_pointed_to.","demangled":false,"offset":97806,"size":62,"space":"strings"} +str.or_available_locally_via:_info___coreutils___s_s={"realname":"str.or_available_locally_via:_info___coreutils___s_s","demangled":false,"offset":109728,"size":51,"space":"strings"} +str.pcdb_lswd={"realname":"str.pcdb_lswd","demangled":false,"offset":96272,"size":11,"space":"strings"} +str.posix={"realname":"str.posix","demangled":false,"offset":96083,"size":7,"space":"strings"} +str.posix___s={"realname":"str.posix___s","demangled":false,"offset":101167,"size":16,"space":"strings"} +str.q____hide_control_chars___print___instead_of_nongraphic_characters_________show_control_chars___show_nongraphic_characters_as_is__the_default_________________________________unless_program_is__ls__and_output_is_a_terminal_____Q____quote_name___________enclose_entry_names_in_double_quotes_________quoting_style_WORD___use_quoting_style_WORD_for_entry_names:________________________________literal__locale__shell__shell_always_________________________________shell_escape__shell_escape_always__c__escape_________________________________overrides_QUOTING_STYLE_environment_variable={"realname":"str.q____hide_control_chars___print___instead_of_nongraphic_characters_________show_control_chars___show_nongraphic_characters_as_is__the_default_________________________________unless_program_is__ls__and_output_is_a_terminal_____Q____quote_name___________enclose_entry_names_in_double_quotes_________quoting_style_WORD___use_quoting_style_WORD_for_entry_names:________________________________literal__locale__shell__shell_always_________________________________shell_escape__shell_escape_always__c__escape_________________________________overrides_QUOTING_STYLE_environment_variable","demangled":false,"offset":106224,"size":585,"space":"strings"} +str.quote_name={"realname":"str.quote_name","demangled":false,"offset":101689,"size":11,"space":"strings"} +str.quoting_style={"realname":"str.quoting_style","demangled":false,"offset":101022,"size":16,"space":"strings"} +str.r____reverse______________reverse_order_while_sorting____R____recursive____________list_subdirectories_recursively____s____size_________________print_the_allocated_size_of_each_file__in_blocks={"realname":"str.r____reverse______________reverse_order_while_sorting____R____recursive____________list_subdirectories_recursively____s____size_________________print_the_allocated_size_of_each_file__in_blocks","demangled":false,"offset":106816,"size":197,"space":"strings"} +str.reading_directory__s={"realname":"str.reading_directory__s","demangled":false,"offset":100667,"size":21,"space":"strings"} +str.recursive={"realname":"str.recursive","demangled":false,"offset":101700,"size":10,"space":"strings"} +str.reverse={"realname":"str.reverse","demangled":false,"offset":101576,"size":8,"space":"strings"} +str.s={"realname":"str.s","demangled":false,"offset":110418,"size":5,"space":"strings"} +str.s:__s={"realname":"str.s:__s","demangled":false,"offset":100933,"size":7,"space":"strings"} +str.s:_not_listing_already_listed_directory={"realname":"str.s:_not_listing_already_listed_directory","demangled":false,"offset":101984,"size":41,"space":"strings"} +str.s____s={"realname":"str.s____s","demangled":false,"offset":100557,"size":10,"space":"strings"} +str.s___s={"realname":"str.s___s","demangled":false,"offset":113069,"size":7,"space":"strings"} +str.s__s={"realname":"str.s__s","demangled":false,"offset":113076,"size":7,"space":"strings"} +str.s_home_page:___s={"realname":"str.s_home_page:___s","demangled":false,"offset":113197,"size":20,"space":"strings"} +str.s_online_help:___s={"realname":"str.s_online_help:___s","demangled":false,"offset":100813,"size":23,"space":"strings"} +str.s_s_argument___s__too_large={"realname":"str.s_s_argument___s__too_large","demangled":false,"offset":114425,"size":29,"space":"strings"} +str.sha224sum={"realname":"str.sha224sum","demangled":false,"offset":100758,"size":10,"space":"strings"} +str.sha256sum={"realname":"str.sha256sum","demangled":false,"offset":100783,"size":10,"space":"strings"} +str.sha2_utilities={"realname":"str.sha2_utilities","demangled":false,"offset":100768,"size":15,"space":"strings"} +str.sha384sum={"realname":"str.sha384sum","demangled":false,"offset":100793,"size":10,"space":"strings"} +str.sha512sum={"realname":"str.sha512sum","demangled":false,"offset":100803,"size":10,"space":"strings"} +str.shell={"realname":"str.shell","demangled":false,"offset":111375,"size":6,"space":"strings"} +str.shell_always={"realname":"str.shell_always","demangled":false,"offset":111381,"size":13,"space":"strings"} +str.shell_escape={"realname":"str.shell_escape","demangled":false,"offset":111394,"size":13,"space":"strings"} +str.shell_escape_always={"realname":"str.shell_escape_always","demangled":false,"offset":111407,"size":20,"space":"strings"} +str.show_control_chars={"realname":"str.show_control_chars","demangled":false,"offset":101710,"size":19,"space":"strings"} +str.single_column={"realname":"str.single_column","demangled":false,"offset":101437,"size":14,"space":"strings"} +str.slackware_version_of_dircolors__are_recognized_but_ignored.={"realname":"str.slackware_version_of_dircolors__are_recognized_but_ignored.","demangled":false,"offset":96692,"size":62,"space":"strings"} +str.slash={"realname":"str.slash","demangled":false,"offset":101928,"size":6,"space":"strings"} +str.sort={"realname":"str.sort","demangled":false,"offset":100961,"size":7,"space":"strings"} +str.sort_files={"realname":"str.sort_files","demangled":false,"offset":96072,"size":11,"space":"strings"} +str.sort_type____sort_version={"realname":"str.sort_type____sort_version","demangled":false,"offset":100480,"size":26,"space":"strings"} +str.src_ls.c={"realname":"str.src_ls.c","demangled":false,"offset":100471,"size":9,"space":"strings"} +str.status={"realname":"str.status","demangled":false,"offset":101373,"size":7,"space":"strings"} +str.string_consists_of_one_or_more_of_the_following_numeric_codes:={"realname":"str.string_consists_of_one_or_more_of_the_following_numeric_codes:","demangled":false,"offset":97260,"size":65,"space":"strings"} +str.system.posix_acl_access={"realname":"str.system.posix_acl_access","demangled":false,"offset":110435,"size":24,"space":"strings"} +str.system.posix_acl_default={"realname":"str.system.posix_acl_default","demangled":false,"offset":110459,"size":25,"space":"strings"} +str.t_________________________sort_by_modification_time__newest_first____T____tabsize_COLS_________assume_tab_stops_at_each_COLS_instead_of_8={"realname":"str.t_________________________sort_by_modification_time__newest_first____T____tabsize_COLS_________assume_tab_stops_at_each_COLS_instead_of_8","demangled":false,"offset":107616,"size":142,"space":"strings"} +str.tabsize={"realname":"str.tabsize","demangled":false,"offset":101729,"size":8,"space":"strings"} +str.target={"realname":"str.target","demangled":false,"offset":101282,"size":7,"space":"strings"} +str.test_invocation={"realname":"str.test_invocation","demangled":false,"offset":100720,"size":16,"space":"strings"} +str.time={"realname":"str.time","demangled":false,"offset":100968,"size":7,"space":"strings"} +str.time_style={"realname":"str.time_style","demangled":false,"offset":101737,"size":11,"space":"strings"} +str.time_style_TIME_STYLE__time_date_format_with__l__see_TIME_STYLE_below={"realname":"str.time_style_TIME_STYLE__time_date_format_with__l__see_TIME_STYLE_below","demangled":false,"offset":107536,"size":79,"space":"strings"} +str.to_colorize_below._Put_the_extension__a_space__and_the_color_init_string.={"realname":"str.to_colorize_below._Put_the_extension__a_space__and_the_color_init_string.","demangled":false,"offset":98640,"size":76,"space":"strings"} +str.total={"realname":"str.total","demangled":false,"offset":100709,"size":6,"space":"strings"} +str.u_________________________with__lt:_sort_by__and_show__access_time_________________________________with__l:_show_access_time_and_sort_by_name_________________________________otherwise:_sort_by_access_time__newest_first____U_________________________do_not_sort__list_entries_in_directory_order____v_________________________natural_sort_of__version__numbers_within_text={"realname":"str.u_________________________with__lt:_sort_by__and_show__access_time_________________________________with__l:_show_access_time_and_sort_by_name_________________________________otherwise:_sort_by_access_time__newest_first____U_________________________do_not_sort__list_entries_in_directory_order____v_________________________natural_sort_of__version__numbers_within_text","demangled":false,"offset":107760,"size":372,"space":"strings"} +str.unparsable_value_for_LS_COLORS_environment_variable={"realname":"str.unparsable_value_for_LS_COLORS_environment_variable","demangled":false,"offset":110232,"size":52,"space":"strings"} +str.unrecognized_prefix:__s={"realname":"str.unrecognized_prefix:__s","demangled":false,"offset":101258,"size":24,"space":"strings"} +str.usr_share_locale={"realname":"str.usr_share_locale","demangled":false,"offset":100866,"size":18,"space":"strings"} +str.vdir={"realname":"str.vdir","demangled":false,"offset":100715,"size":5,"space":"strings"} +str.verbose={"realname":"str.verbose","demangled":false,"offset":101390,"size":8,"space":"strings"} +str.version__output_version_information_and_exit={"realname":"str.version__output_version_information_and_exit","demangled":false,"offset":108552,"size":54,"space":"strings"} +str.vertical={"realname":"str.vertical","demangled":false,"offset":101428,"size":9,"space":"strings"} +str.w____width_COLS___________set_output_width_to_COLS.__0_means_no_limit____x_________________________list_entries_by_lines_instead_of_by_columns____X_________________________sort_alphabetically_by_entry_extension____Z____context______________print_any_security_context_of_each_file____1_________________________list_one_file_per_line.__Avoid______with__q_or__b={"realname":"str.w____width_COLS___________set_output_width_to_COLS.__0_means_no_limit____x_________________________list_entries_by_lines_instead_of_by_columns____X_________________________sort_alphabetically_by_entry_extension____Z____context______________print_any_security_context_of_each_file____1_________________________list_one_file_per_line.__Avoid______with__q_or__b","demangled":false,"offset":108136,"size":363,"space":"strings"} +str.write_error={"realname":"str.write_error","demangled":false,"offset":110423,"size":12,"space":"strings"} +str.xstrtoul={"realname":"str.xstrtoul","demangled":false,"offset":114416,"size":9,"space":"strings"} +str.xstrtoumax={"realname":"str.xstrtoumax","demangled":false,"offset":114936,"size":11,"space":"strings"} +sym._obstack_allocated_p={"realname":"_obstack_allocated_p","demangled":false,"offset":89536,"size":55,"space":"symbols"} +sym._obstack_begin={"realname":"_obstack_begin","demangled":false,"offset":89216,"size":17,"space":"symbols"} +sym._obstack_begin_1={"realname":"_obstack_begin_1","demangled":false,"offset":89248,"size":21,"space":"symbols"} +sym._obstack_free={"realname":"_obstack_free","demangled":false,"offset":89600,"size":101,"space":"symbols"} +sym._obstack_memory_used={"realname":"_obstack_memory_used","demangled":false,"offset":89712,"size":41,"space":"symbols"} +sym._obstack_newchunk={"realname":"_obstack_newchunk","demangled":false,"offset":89280,"size":251,"space":"symbols"} + +/core/flags/spaces +name=fs +spacestack=["*"] + +/core/flags/spaces/spaces +classes=s +relocs=s +sections=s +segments=s +strings=s +symbols=s + +/core/flags/tags +tag.alloc=malloc free$ calloc kalloc realloc +tag.dylib=dlopen dlsym dlclose mmap LoadLibrary GetProcAddress +tag.env=getenv putenv unsetenv setenv GetEnvironmentVariable SetEnvironmentVariable ExpandEnvironmentStrings +tag.fs=open$ close read$ write CloseHandle FindFirstFileW _wfopen _wstat ftruncate lseek _chsize GetFullPathName realpath RemoveDirectory DeleteFile CreateFile WriteFile UnmapViewOfFile CreateFileMapping MapViewOfFile readlink chmod fchmod chown stat fstat lstat fstatat lstat64 stat64 chflags fchflags lchflags +tag.network=socket connect bind$ listen accept sendto recvfrom gethostbyname htons ntohs +tag.process=getpid getppid kill exit abort assert gethostid sethostid sysctl +tag.stdout=^printf puts write +tag.string=strcat strcpy strncpy strlen strtok strstr strlcpy asprintf sprintf snprintf +tag.threads=pthread_create pthread_mutex_init pthread_cond_init CreateThread TerminateThread WaitForSingleObject GetCurrentThreadId +tag.time=settimeofday gettimeofday time adjtime ctime timed date$ sleep Sleep usleep clock_nanosleep localtime asctime difftime gmtime mktime timelocal timegm tzfile tzset + +/core/flags/zones + +/core/seek +-1={"offset":23264,"cursor":1,"current":false} +0={"offset":23280,"cursor":2,"current":true} +1={"offset":23296,"cursor":3,"current":false} +2={"offset":23312,"cursor":4,"current":false}