nx_concentration.nx
buildroot/runtime/nx_concentration.nx
about
nx_concentration.nx -- WHY the capture is POSSIBLE: market concentration. Reads knowledge/anatomy/concentration.txt
(CR4 = the top-4-firm market share per sector), lists sectors, flags those at/above the oligopoly line (CR4>=50,
the DOJ/FTC scrutiny zone), and shows that the margin/markup capture traced by nx_capture_trace concentrates
exactly where the MARKET is concentrated: a few firms with pricing power on the output side and monopsony over
farmers and workers on the input side. LIAR-KILLED: every CR4 in [0,100], the threshold discriminates (a high
value flags, a low value does not), >=1 grounded source, sectors>=3.
Build: _offc/nx_sov_build_run.elf nx_concentration license_tier: ORIGINAL
dependencies 1 imports · 0 importers
imports: nx_syscalls.nx
imported by: nobody (leaf or entry point)
call flow from main pre-order; caps 40 nodes / depth 6 declared; ↻ = already shown
structs
| none |
consts
| none |
functions
| 10 | func gp(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } sys_write(1, s, n); return 0 } |
| 11 | func gn(v0: i64) -> i64 |
| 17 | func ev_read(path: *u8, buf: *u8, cap: i64) -> i64 |
| 23 | func field_count(line: *u8, ln: i64) -> i64 { var n: i64 = 1; var i: i64 = 0; while i < ln { if line[i] == (124 as u8) { n = n + 1 } i = i + 1 } return n } called by 1: main |
| 24 | func field_k(line: *u8, ln: i64, kk: i64, dst: *u8, cap: i64) -> i64 called by 1: main |
| 37 | func pint(s: *u8) -> i64 { var v: i64 = 0; var i: i64 = 0; while s[i] != (0 as u8) { let c: i64 = s[i] as i64; if c >= 48 { if c <= 57 { v = v * 10 + (c - 48) } } i = i + 1 } return v } called by 1: main |
| 39 | func slen_of(s: *u8) -> i64 { var n: i64 = 0; while s[n] != (0 as u8) { n = n + 1 } return n } called by 1: main |
| 40 | func flag(cr4: i64) -> i64 { if cr4 >= 50 { return 1 } return 0 } called by 1: main |
| 42 | func main() -> i64 |